-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_metadata.py
465 lines (377 loc) · 15.4 KB
/
test_metadata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
"""
Test all things from the metadata.py file
"""
from os.path import abspath, dirname, join
import numpy as np
import pandas as pd
import pytest
import pytz
from snowex_db.metadata import *
dt = datetime.datetime(2020, 2, 5, 20, 30, 0, 0, pytz.timezone('UTC'))
info = {'site_name': 'Grand Mesa',
'site_id': '1N20',
'pit_id': 'COGM1N20_20200205',
'date': dt.date(),
'time': dt.timetz(),
'utm_zone': 12,
'easting': 743281.0,
'northing': 4324005.0,
'latitude': 39.03126190934254,
'longitude': -108.18948133421802,
}
class DataHeaderTestBase:
depth_is_metadata = True
kwargs = {'in_timezone': 'US/Mountain'}
def setup_class(self):
"""
columns: list of column names
multi_sample_profiles: Boolean indicating whether to average samples
data_names: list of names of profiles to upload
header_pos: int of the index in the lines of the file where the columns are found
info: Dictionary of the header information
file: Basename of the file were testing in the data folder
depth_is_metadata: Boolean indicating whether to include depth as a main variable
"""
data = abspath(join(dirname(__file__), 'data'))
self.header = DataHeader(join(data, self.file), depth_is_metadata=self.depth_is_metadata, **self.kwargs)
self.name = self.file.split('.')[0]
def assert_header_attribute(self, attr):
"""
Assert that the header class has an specific attribute
"""
data = getattr(self.header, attr)
expected = getattr(self, attr)
dtype = type(expected)
if dtype == list:
# Assert they are the same length
assert len(data) == len(expected)
for e in expected:
assert e in data
elif dtype == dict:
received_keys = list(data.keys())
for k, v in expected.items():
assert k in received_keys
# Skip geom for now
if k != 'geom':
self.assert_single_value(data[k], expected[k])
else:
self.assert_single_value(data, expected)
def assert_single_value(self, value, expected):
"""
Handle assert on floats and everything else
"""
dtype = type(expected)
if dtype == float:
np.testing.assert_almost_equal(value, expected, decimal=3)
else:
assert value == expected
def test_columns(self):
"""
Test the csv column names were correctly interpreted
"""
self.assert_header_attribute('columns')
def test_data_names(self):
"""
Test the csv column names were correctly interpreted
"""
self.assert_header_attribute('data_names')
def test_info(self):
self.assert_header_attribute('info')
def test_multisample_profile(self):
self.assert_header_attribute('multi_sample_profiles')
def test_header_pos(self):
"""
Test the location of the in the file of the column header (Nth line)
"""
self.assert_header_attribute('multi_sample_profiles')
class TestDensityHeader(DataHeaderTestBase):
def setup_class(self):
self.file = 'density.csv'
self.data_names = ['density']
self.columns = ['depth', 'bottom_depth', 'density_sample_a', 'density_sample_b', 'density_sample_c']
self.multi_sample_profiles = ['density']
self.info = info.copy()
super().setup_class(self)
class TestLWCHeader(DataHeaderTestBase):
"""
Class for testing the header reading of the first type of lwc files that
parsed.
"""
def setup_class(self):
self.file = 'LWC.csv'
self.data_names = ['permittivity']
self.columns = ['depth', 'bottom_depth', 'permittivity_sample_a', 'permittivity_sample_b']
self.multi_sample_profiles = ['permittivity']
info = {'site_name': 'Grand Mesa',
'site_id': '1N20',
'pit_id': 'COGM1N20_20200205',
'date': dt.date(),
'time': dt.timetz(),
'utm_zone': 12,
'easting': 743281.0,
'northing': 4324005.0,
'latitude': 39.03126190934254,
'longitude': -108.18948133421802,
}
self.info = info.copy()
super().setup_class(self)
class TestLWCHeaderB(DataHeaderTestBase):
"""
Class for testing the other type of LWC headers that contain two multi sampled
profiles.
"""
dt = datetime.datetime(2020, 3, 12, 20, 45, 0, 0, pytz.timezone('UTC'))
info = {
'site_name': 'Grand Mesa',
'site_id': 'Skyway Tree',
'pit_id': 'COGMST_20200312',
'date': dt.date(),
'time': dt.timetz(),
'utm_zone': 12,
'easting': 754173,
'northing': 4325871,
'latitude': 39.044956500842126,
'longitude': -108.0631059755992
}
def setup_class(self):
self.file = 'LWC2.csv'
self.data_names = ['permittivity', 'lwc_vol', 'density']
self.columns = ['depth', 'bottom_depth', 'density', 'permittivity_sample_a', 'permittivity_sample_b',
'lwc_vol_sample_a', 'lwc_vol_sample_b']
self.multi_sample_profiles = ['permittivity', 'lwc_vol']
super().setup_class(self)
class TestStratigraphyHeader(DataHeaderTestBase):
def setup_class(self):
self.file = 'stratigraphy.csv'
self.data_names = ['hand_hardness', 'grain_size', 'grain_type', 'manual_wetness']
self.columns = ['depth', 'bottom_depth', 'comments'] + self.data_names
self.multi_sample_profiles = []
self.info = info.copy()
super().setup_class(self)
class TestTemperatureHeader(DataHeaderTestBase):
def setup_class(self):
self.file = 'temperature.csv'
self.data_names = ['temperature']
self.columns = ['depth'] + self.data_names
self.multi_sample_profiles = []
self.info = info.copy()
super().setup_class(self)
class TestSSAHeader(DataHeaderTestBase):
def setup_class(self):
dt = datetime.datetime(2020, 2, 5, 20, 40, 0, 0, pytz.timezone('UTC'))
self.file = 'SSA.csv'
self.data_names = ['specific_surface_area', 'reflectance', 'sample_signal', 'equivalent_diameter']
self.columns = ['depth', 'comments'] + self.data_names
self.multi_sample_profiles = []
self.info = info.copy()
self.info['instrument'] = 'IS3-SP-11-01F'
self.info['profile_id'] = 'N/A'
self.info['observers'] = 'Juha Lemmetyinen'
self.info['timing'] = 'N/A'
self.info['site_notes'] = 'layer at 15 and 20 cm had exact same SSA'
self.info['total_depth'] = '80'
self.info['time'] = dt.timetz()
super().setup_class(self)
class TestSiteDetailsHeader(DataHeaderTestBase):
def setup_class(self):
self.file = 'site_details.csv'
self.data_names = None
self.columns = None
self.multi_sample_profiles = []
self.info = info.copy()
self.info['observers'] = "Chris Hiemstra, Hans Lievens"
self.info['weather_description'] = 'Sunny, cold, gusts'
self.info['ground_roughness'] = 'rough, rocks in places'
self.info['precip'] = None
self.info['sky_cover'] = 'Few (< 1/4 of sky)'
self.info['ground_condition'] = 'Frozen'
self.info['ground_vegetation'] = '[Grass]'
self.info['vegetation_height'] = '5, nan'
self.info['wind'] = 'Moderate'
self.info['tree_canopy'] = 'No Trees'
self.info['comments'] = ('Start temperature measurements (top) 13:48'
' End temperature measurements (bottom) 13:53'
' LWC sampler broke, no measurements were'
' possible')
self.info['slope_angle'] = 5.0
self.info['aspect'] = 180
self.info['air_temp'] = None
self.info['total_depth'] = '35'
super().setup_class(self)
class TestDepthsHeader(DataHeaderTestBase):
depth_is_metadata = False
def setup_class(self):
self.file = 'depths.csv'
self.data_names = ['depth']
self.columns = ['id', 'instrument', 'date', 'time', 'longitude',
'latitude', 'easting', 'northing', 'elevation',
'equipment', 'version_number'] + self.data_names
self.multi_sample_profiles = []
# No header in the depths file
self.info = {}
super().setup_class(self)
class TestGPRHeader(DataHeaderTestBase):
"""
Test the header information can be interpreted correctly in the GPR data
"""
depth_is_metadata = False
def setup_class(self):
self.file = 'gpr.csv'
self.data_names = ['density', 'depth', 'swe', 'two_way_travel']
self.columns = ['utcyear', 'utcdoy', 'utctod', 'utm_zone', 'easting',
'northing', 'elevation', 'avgvelocity'] + self.data_names
self.multi_sample_profiles = []
# no header in the GPR file
self.info = {}
super().setup_class(self)
class TestUNMGPRHeader(DataHeaderTestBase):
"""
Test the header information can be interpreted correctly in the UNM GPR data
"""
depth_is_metadata = False
def setup_class(self):
self.file = 'unm_gpr.csv'
self.data_names = ['depth', 'swe', 'two_way_travel']
self.columns = ['date', 'time', 'utm_zone', 'easting', 'latitude','longitude',
'northing', 'elevation', 'freq_mhz'] + self.data_names
self.multi_sample_profiles = []
# no header in the GPR file
self.info = {}
super().setup_class(self)
class TestSMPHeader(DataHeaderTestBase):
"""
Test interpreting an SMP header without a SMP Log file
"""
depth_is_metadata = True
def setup_class(self):
self.file = 'S19M1013_5S21_20200201.CSV'
self.data_names = ['force']
self.columns = ['original_index', 'depth'] + self.data_names
self.multi_sample_profiles = []
data = abspath(join(dirname(__file__), 'data'))
self.header = DataHeader(join(data, self.file), instrument='snowmicropen', header_sep=':', in_timezone='UTC',
out_timezone='MST', depth_is_metadata=self.depth_is_metadata)
self.name = self.file.split('.')[0]
self.dt = datetime.datetime(
2020, 2, 1, 23, 16, 49, 0, pytz.timezone('UTC')
)
self.info = {'date': self.dt.date(),
'time': self.dt.timetz(),
'utm_zone': 12,
'easting': 744567.291603435,
'northing': 4322689.382277083,
'latitude': 39.01906204223633,
'longitude': -108.17510986328125,
'instrument': 'snowmicropen',
'original_total_samples': '242000',
'data_subsampled_to': 'Every 1000th',
}
class TestSMPMeasurementLog():
"""
Class for testing the snowex_db.metadata.SMPMeasurementLog class.
"""
@classmethod
def setup_class(self):
self.data = abspath(join(dirname(__file__), 'data'))
self.smp_log = SMPMeasurementLog(join(self.data, 'smp_log.csv'))
self.df = self.smp_log.df
@pytest.mark.parametrize('column, index, expected', [
('observers', -1, 'HP Marshall'),
('observers', 0, 'Ioanna Merkouriadi'),
])
def test_value(self, column, index, expected):
"""
Test observerss initials are renamed correctly
"""
assert self.df[column].iloc[index] == expected
@pytest.mark.parametrize("count_column, expected_count", [
# Assert there are 2 observers listed in the log
('observers', 2),
# Assert there are two dates in the log
('date', 2),
# Assert there is 4 suffixes in the log (e.g. all of them)
('fname_sufix', 4),
])
def test_unique_count(self, count_column, expected_count):
"""
Test observerss initials are renamed correctly
"""
assert len((self.df[count_column]).unique()) == expected_count
class TestReadInSarAnnotation():
"""
Tests if we read in an annotation file correctly.
"""
@classmethod
def setup_class(self):
"""
Read in the insar annotation file and test its values
"""
f = join(dirname(__file__), 'data', 'uavsar.ann')
self.desc = read_InSar_annotation(f)
def test_dict_attr(self):
"""
Test the desc diction is structured the way we expect
"""
d = self.desc['Interferogram Bytes Per Pixel'.lower()]
# An entry has the correcy dict keys
for k in ['value', 'units', 'comment']:
assert k in d.keys()
@pytest.mark.parametrize("key, subkey, expected", [
# Test interpretting an int value
('Interferogram Bytes Per Pixel'.lower(), 'value', 8),
# Test a comment assignment
('Ground Range Data Starting Latitude'.lower(), 'comment', 'center of upper left ground range pixel'),
# Test a units assignment
('Ground Range Data Latitude Spacing'.lower(), 'units', 'deg'),
# Test a datetime assignment
('Start Time of Acquisition for Pass 1'.lower(), 'value', pd.to_datetime('2020-2-1 2:13:16 UTC'))
])
def test_desc_value(self, key, subkey, expected):
"""
Test each value is interpreted as expected from the ANN file
"""
data = self.desc[key][subkey]
dtype = type(data)
# Assert value is as expected
assert data == expected
# Assert the data type is expected
assert dtype == type(expected)
class TestHardHeader(DataHeaderTestBase):
kwargs = {'epsg': 26913, 'in_timezone': 'MST'}
def setup_class(self):
self.file = 'hard_header.csv'
self.data_names = ['temperature']
self.columns = ['depth'] + self.data_names
self.multi_sample_profiles = []
self.info = dict(site_name='East River',
site_id='Forest 14',
date=datetime.date(2020, 2, 1),
time=datetime.time(20, 0, tzinfo=pytz.timezone('UTC')),
utm_zone=13,
easting=328570.77309727005,
northing=4310748.280792163,
latitude=38.92892,
longitude=-106.97768,
flags=None)
# Depth (cm),Temperature (deg C)
super().setup_class(self)
class TestPerimeter(DataHeaderTestBase):
kwargs = {'in_timezone': 'US/Pacific'}
depth_is_metadata = False
def setup_class(self):
self.file = 'perimeters.csv'
self.data_names = ['depth']
self.columns = ['depth'] + self.data_names
self.multi_sample_profiles = []
self.info = dict(site_name='American River Basin',
site_id='Caples Lake',
date=datetime.date(2019, 12, 20),
time=datetime.time(21, 0, tzinfo=pytz.timezone('UTC')),
utm_zone=10,
easting=757215.9386982679,
northing=4288786.9467831645,
latitude=38.71033,
longitude=-120.04187,
flags="BDG, MW")
# Depth (cm),Temperature (deg C)
super().setup_class(self)