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
+
1
7
// fusion table with cimis station locations
2
8
// from https://github.com/ssj-delta-cu/ssj-weather/blob/master/cimis/station_locations.csv
3
9
var cimis_locations = ee.FeatureCollection('ft:1q_KywBuLzzRzfBlwrMkiLKxcLcbptq6ALO7Lzguu');
@@ -9,7 +15,8 @@ var DSAregion = ee.FeatureCollection('ft:1VnIrhkVHzFfej6PC0eDEW5ywS3Hjw9Fm0abHZl
9
15
Map.addLayer(DSAregion,{color: 'FF0000'}, 'DSA boundary');
10
16
11
17
// 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];
13
20
14
21
// filter cimis locations to the ones covered by the DSA
15
22
var filtered = cimis_locations.filter(ee.Filter.inList('id', station_list));
@@ -43,4 +50,4 @@ CIMISTimeSeries.setOptions({
43
50
pointSize: 4,
44
51
});
45
52
46
- print(CIMISTimeSeries);
53
+ print(CIMISTimeSeries);
0 commit comments