26
26
27
27
'''
28
28
29
- class plot_2D_obs_initial :
29
+ class plot_2D_obs :
30
30
31
31
def __init__ (self , file_path ):
32
32
@@ -45,6 +45,10 @@ def bytes_to_string(self, bytes):
45
45
self .QC_strings = bytes_to_string (self , self .dataset ['QCMetaData' ].values )
46
46
self .obs_types_meta_indexer = self .dataset ['ObsTypes' ]
47
47
48
+ #map obs type strings to the obs type integers that observations actually have
49
+ self .obs_type_dict = dict ([(type_string , index + 1 )
50
+ for index , type_string in enumerate (self .obs_type_strings )])
51
+
48
52
49
53
self .times = self .dataset ['time' ]
50
54
self .obs_types = self .dataset ['obs_type' ]
@@ -133,7 +137,7 @@ def map_advanced(array):
133
137
134
138
135
139
136
- def filter (self , conditions ):
140
+ def filter_range (self , conditions ):
137
141
'''Take list of tuples of form ('category_name', min, max) and return lons, lats, and
138
142
observation values satisfying these conditions'''
139
143
@@ -170,7 +174,49 @@ def filter(self, conditions):
170
174
171
175
return data
172
176
177
+ def filter_disjoint (self , conditions ):
178
+ '''Take list of tuples of form ('category_name', [values]) and return lons, lats, and
179
+ observation values satisfying these conditions'''
180
+
181
+ data = self .data
182
+
183
+ cat_dict = {
184
+
185
+ 'obs_types' : data .obs_types ,
186
+ 'times' : data .times ,
187
+ 'lons' : data .lons ,
188
+ 'lats' : data .lats ,
189
+ 'z' : data .z ,
190
+ 'qc_DATA' : data .qc_DATA ,
191
+ 'qc_DART' : data .qc_DART ,
192
+ 'vert_types' : data .vert_types
193
+
194
+ }
195
+
196
+ data_building = data
197
+
198
+ for (category_name , values ) in conditions :
199
+
200
+ category = cat_dict [category_name ]
201
+
202
+ #this form may not work but maybe it will
203
+
204
+ #data = data.where(category == values[, drop = True)
205
+
206
+
207
+ #slower less pythonic version
208
+ data_building = data_building .where (category == values [0 ], drop = True )
209
+ i = 1
210
+
211
+ while i < len (values ):
212
+
213
+ data_building = xa .concat ([data_building , data .where (category == values [i ], drop = True )], dim = 'dim_0' )
214
+ i += 1
215
+
216
+ data = data_building
173
217
218
+ print (data )
219
+ return data
174
220
175
221
def plot (self , * args ):
176
222
'''Each argument represents a range of values to be passed to filter. Any argument given
@@ -179,7 +225,7 @@ def plot(self, *args):
179
225
qc_DATA, qc_DART, vert_types'''
180
226
181
227
print ('at plot' )
182
- data = self .filter (args )
228
+ data = self .filter_disjoint (args )
183
229
print ('at plot further' )
184
230
ax = plt .axes (projection = ccrs .PlateCarree ())
185
231
ax .stock_img ()
@@ -190,11 +236,11 @@ def plot(self, *args):
190
236
plt .tight_layout ()
191
237
plt .show ()
192
238
193
-
194
- plotter = plot_2D_obs_initial ('../obs_series/obs_epoch_001.nc' )
239
+ '''
240
+ plotter = plot_2D_obs ('../obs_series/obs_epoch_001.nc')
195
241
#plotter.plot(('obs_types', 10, 20))
196
- plotter .plot (('obs_types' , 1 , 60 ))
197
-
242
+ plotter.plot(('obs_types', [3, 4, 5, 6, 7, 8] ))
243
+ '''
198
244
199
245
200
246
0 commit comments