Skip to content

Commit fe7ee9d

Browse files
William Downsjhendric
William Downs
authored andcommitted
merge maintenance
1 parent 9c39362 commit fe7ee9d

File tree

1 file changed

+53
-7
lines changed

1 file changed

+53
-7
lines changed

nCDF_initial_plots/plot_2D_obs_initial.py

+53-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2727
'''
2828

29-
class plot_2D_obs_initial:
29+
class plot_2D_obs:
3030

3131
def __init__(self, file_path):
3232

@@ -45,6 +45,10 @@ def bytes_to_string(self, bytes):
4545
self.QC_strings = bytes_to_string(self, self.dataset['QCMetaData'].values)
4646
self.obs_types_meta_indexer = self.dataset['ObsTypes']
4747

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+
4852

4953
self.times = self.dataset['time']
5054
self.obs_types = self.dataset['obs_type']
@@ -133,7 +137,7 @@ def map_advanced(array):
133137

134138

135139

136-
def filter(self, conditions):
140+
def filter_range(self, conditions):
137141
'''Take list of tuples of form ('category_name', min, max) and return lons, lats, and
138142
observation values satisfying these conditions'''
139143

@@ -170,7 +174,49 @@ def filter(self, conditions):
170174

171175
return data
172176

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
173217

218+
print(data)
219+
return data
174220

175221
def plot(self, *args):
176222
'''Each argument represents a range of values to be passed to filter. Any argument given
@@ -179,7 +225,7 @@ def plot(self, *args):
179225
qc_DATA, qc_DART, vert_types'''
180226

181227
print('at plot')
182-
data = self.filter(args)
228+
data = self.filter_disjoint(args)
183229
print('at plot further')
184230
ax = plt.axes(projection = ccrs.PlateCarree())
185231
ax.stock_img()
@@ -190,11 +236,11 @@ def plot(self, *args):
190236
plt.tight_layout()
191237
plt.show()
192238

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')
195241
#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+
'''
198244

199245

200246

0 commit comments

Comments
 (0)