Skip to content

Commit 75f9392

Browse files
author
ucd.cws.ee.data
committed
Updated CIMIS/cimis_stations_reduceSpatialCimis (added 10 lines, deleted 3 lines).
1 parent 1c25779 commit 75f9392

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

CIMIS/cimis_stations_reduceSpatialCimis

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// spatial cimis values at cimis stations
2+
// open the Earth Engine Chart and click download csv for the data
3+
// charts can only have 5000 elements so you might need to split the
4+
// station_list into two groups
5+
6+
17
// fusion table with cimis station locations
28
// from https://github.com/ssj-delta-cu/ssj-weather/blob/master/cimis/station_locations.csv
39
var cimis_locations = ee.FeatureCollection('ft:1q_KywBuLzzRzfBlwrMkiLKxcLcbptq6ALO7Lzguu');
@@ -9,7 +15,8 @@ var DSAregion = ee.FeatureCollection('ft:1VnIrhkVHzFfej6PC0eDEW5ywS3Hjw9Fm0abHZl
915
Map.addLayer(DSAregion,{color: 'FF0000'}, 'DSA boundary');
1016

1117
// There are seven (but several are close enough so really nine) stations in the delta (212, 47, 140, 167, 242, 243, 247, 248, and 249)
12-
var station_list = [47, 140, 167, 212, 242, 243, 247, 248, 249];
18+
//var station_list = [47, 140, 167, 212, 242, 243, 247, 248, 249];
19+
var station_list = [242, 243, 247, 248, 249];
1320

1421
// filter cimis locations to the ones covered by the DSA
1522
var filtered = cimis_locations.filter(ee.Filter.inList('id', station_list));
@@ -43,4 +50,4 @@ CIMISTimeSeries.setOptions({
4350
pointSize: 4,
4451
});
4552

46-
print(CIMISTimeSeries);
53+
print(CIMISTimeSeries);

0 commit comments

Comments
 (0)