forked from cyborgsphinx/ios-inlets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinlets.py
More file actions
1111 lines (990 loc) · 37.9 KB
/
Copy pathinlets.py
File metadata and controls
1111 lines (990 loc) · 37.9 KB
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import convert
import csv
import datetime
import fnmatch
import gsw
import inlet_data
import itertools
import json
import logging
import math
import numpy
import os
import pandas
import re
from shapely.geometry import Point, Polygon
from typing import Dict, List
import xarray
import ios_shell.shell as ios
import erddap
from enum import Enum
EXCEPTIONALLY_BIG = 9.9e36
class Category(Enum):
IGNORE = 1
SURFACE = 2
SHALLOW = 3
USED_SURFACE = 4
DEEP = 5
DEEPER = 6
DEEPEST = 7
USED_DEEP = 8
ALL = 9
def get_length(arr):
if arr is None:
return 0
return arr.size if hasattr(arr, "size") else len(arr)
def is_in_bounds(val, lower, upper):
if upper is not None:
return lower <= val <= upper
else:
return lower <= val
def get_datetime(d):
return pandas.to_datetime(d).to_pydatetime()
def reinsert_nan(data, placeholder, length=None):
if length is None:
length = get_length(data)
return numpy.fromiter(
(numpy.nan if x == placeholder or x > EXCEPTIONALLY_BIG else x for x in data),
float,
count=length,
)
def get_scalar(array):
return array.item()
def get_array(array):
if isinstance(array, xarray.DataArray):
values = array.values
if values.size == 1:
values = numpy.full(1, get_scalar(values))
return reinsert_nan(values, -99.0) if values.dtype.kind == "f" else values
elif isinstance(array, (float, numpy.datetime64)):
return numpy.full(1, array)
else:
return array
def find_column(source, name: str, *units: str) -> int:
name_lower = name.lower()
potentials = [line for line in source if name_lower in line.name.lower()]
units_lower = [unit.lower() for unit in units]
with_units = [line for line in potentials if line.units.lower() in units_lower]
if len(with_units) > 0:
# pick first line with matching units
return with_units[0].no - 1
elif len(potentials) > 0:
# pick first line with matching name
return potentials[0].no - 1
else:
return -1
def to_float(source):
if isinstance(source, float) or isinstance(source, int):
return source
elif isinstance(source, bytes):
return (
numpy.nan
if source.strip() in [b"' '", b"n/a", b""]
else float(source.strip().decode("utf-8"))
)
elif isinstance(source, str):
return (
numpy.nan if source.strip() in ["' '", "n/a", ""] else float(source.strip())
)
else:
raise ValueError(f"to_float called on {source}")
def find_all(source, attrs):
out = []
for attr in attrs:
if hasattr(source, attr):
out.append(getattr(source, attr))
return out
def find_data(source, names, units):
potentials = find_all(source, names)
with_units = [
column
for column in potentials
if isinstance(column, float) or column.units.lower() in units
]
if len(with_units) > 0:
return with_units[0]
elif len(potentials) > 0:
return potentials[0]
else:
return None
def find_temperature_data(data):
temperature_names = [
"TEMPRTN1",
"TEMPST01",
"TEMPPR01",
"TEMPPR03",
"TEMPS901",
"TEMPS601",
]
temperature_units = ["C", "deg C", "degrees C"]
return find_data(data, temperature_names, temperature_units)
def find_salinity_data(data):
salinity_names = [
"PSLTZZ01",
"ODSDM021",
"SSALST01",
"PSALST01",
"PSALBST1",
"sea_water_practical_salinity",
]
salinity_units = ["PSU", "PSS-78"]
return find_data(data, salinity_names, salinity_units)
def find_oxygen_data(data):
oxygen_names = ["DOXYZZ01", "DOXMZZ01"]
oxygen_units = ["mL/L"]
return find_data(data, oxygen_names, oxygen_units)
def find_depth_data(data):
depth_names = ["depth", "depth_nominal", "instrument_depth", "PPSAADCP"]
depth_units = ["m", "metres"]
return find_data(data, depth_names, depth_units)
def find_pressure_data(data):
pressure_names = ["PRESPR01", "sea_water_pressure"]
pressure_units = ["dbar", "decibar", "decibars"]
return find_data(data, pressure_names, pressure_units)
def extend_arr(arr, length):
arr_length = get_length(arr)
return numpy.full(length, arr.item()) if arr_length == 1 else arr
def get_pad_value(info, index):
if index < 0 or info is None or len(info) == 0:
return None
return to_float(info[index].pad)
def has_quality(value_index, names):
quality_index = value_index + 1
return quality_index < len(names) and (
names[quality_index].startswith("Quality")
or names[quality_index].startswith("Flag")
)
def is_acceptable_quality(quality_value):
# 2 is "inconsistent with climatology" in the vast majority of observed cases
bad_qualities = [2, 3, 4]
return quality_value not in bad_qualities
def extract_data(source, index, replace):
if index < 0:
return None
return reinsert_nan(
(to_float(row[index]) for row in source),
replace,
length=len(source),
)
def warn_unknown_variable(data, var):
# check if there is a potential variable based on the broader name
var_list = []
for key in data.keys():
if re.search(var, getattr(data[key], "long_name", "").lower()):
var_list.append(key)
if len(var_list) != 0:
logging.warning(
f"{get_scalar(data.filename)} has unknown {var} variable. Possible values: {var_list}"
)
def warn_wrong_units(expected, actual, filename):
logging.warning(
f"Cowardly refusing to perform the conversion from {actual} to {expected} in {filename}"
)
def get_data(col, before=None, do_average=False):
data = [
[datum.time, datum.value]
for datum in col
if is_acceptable_quality(datum.quality)
]
if before is not None:
data = [[t, d] for t, d in data if t.year < before.year]
if do_average:
data_dict = {}
for t, d in data:
date = datetime.date(t.year, t.month, 1)
if date not in data_dict:
data_dict[date] = {"total": 0, "count": 0}
data_dict[date]["total"] += d
data_dict[date]["count"] += 1
data = [[key, elem["total"] / elem["count"]] for key, elem in data_dict.items()]
return zip(*data) if len(data) > 0 else [[], []]
def hakai_quality(quality):
del quality
# assume all qualities are good for now
return 1
class Inlet(object):
def __init__(
self,
name: str,
area: str,
polygon: Polygon,
boundaries: List[int],
limits: Dict[str, List[float]],
clear_old_data: bool = False,
db_name=None,
shallow: List[int] = [0, 30, 100],
seasons: List[int] = [],
):
self.name = name
self.area = area
self.deep_bounds = (boundaries[0], boundaries[1])
self.deeper_bounds = (boundaries[1], boundaries[2])
self.deepest_bounds = (
boundaries[2],
boundaries[3] if len(boundaries) > 3 else None,
)
self.polygon = polygon
self.limits = limits
self.used_files = set()
if db_name is not None:
self.data = inlet_data.InletDb(name, clear_old_data, db_name)
else:
self.data = inlet_data.InletDb(name, clear_old_data)
self.surface_bounds = (shallow[0], shallow[1])
if len(shallow) > 2:
self.shallow_bounds = (shallow[1], shallow[2])
else:
self.shallow_bounds = None
self.seasons = seasons
def __bucket_to_bounds(self, bucket: Category):
return (
(None, None)
if bucket == Category.ALL
else self.surface_bounds
if bucket == Category.SURFACE
or bucket == Category.USED_SURFACE
and self.shallow_bounds is None
else self.shallow_bounds
if bucket == Category.SHALLOW
else self.deep_bounds
if bucket == Category.DEEP
else self.deeper_bounds
if bucket == Category.DEEPER
else self.deepest_bounds
if bucket == Category.DEEPEST
else (self.shallow_bounds[1], self.deep_bounds[0])
if bucket == Category.IGNORE
else (self.surface_bounds[0], self.shallow_bounds[1])
if bucket == Category.USED_SURFACE
else (self.deep_bounds[0], self.deepest_bounds[1])
if bucket == Category.USED_DEEP
else None
)
def get_temperature_data(self, bucket: str, before=None, do_average=False):
if bucket == Category.SHALLOW and self.shallow_bounds is None:
return [[], []]
bounds = self.__bucket_to_bounds(bucket)
return get_data(
self.data.get_temperature_data(bounds, average=do_average),
before,
do_average,
)
def get_salinity_data(self, bucket: str, before=None, do_average=False):
if bucket == Category.SHALLOW and self.shallow_bounds is None:
return [[], []]
bounds = self.__bucket_to_bounds(bucket)
return get_data(
self.data.get_salinity_data(bounds, average=do_average), before, do_average
)
def get_oxygen_data(self, bucket: str, before=None, do_average=False):
if bucket == Category.SHALLOW and self.shallow_bounds is None:
return [[], []]
bounds = self.__bucket_to_bounds(bucket)
return get_data(
self.data.get_oxygen_data(bounds, average=do_average), before, do_average
)
def has_temperature_data(self):
bounds = self.__bucket_to_bounds(Category.ALL)
return len(self.data.get_temperature_data(bounds)) > 0
def has_salinity_data(self):
bounds = self.__bucket_to_bounds(Category.ALL)
return len(self.data.get_salinity_data(bounds)) > 0
def has_oxygen_data(self):
bounds = self.__bucket_to_bounds(Category.ALL)
return len(self.data.get_oxygen_data(bounds)) > 0
def has_data_from(self, file_name):
return os.path.basename(file_name).lower() in self.used_files
def get_station_data(self, before=None, by_month=False):
bounds = self.__bucket_to_bounds(Category.ALL)
data = self.data.get_temperature_data(bounds)
temperature_data = (
filter(lambda x: x.time.year < before.year, data)
if before is not None
else data
)
data = self.data.get_salinity_data(bounds)
salinity_data = (
filter(lambda x: x.time.year < before.year, data)
if before is not None
else data
)
data = self.data.get_oxygen_data(bounds)
oxygen_data = (
filter(lambda x: x.time.year < before.year, data)
if before is not None
else data
)
stations = {}
for datum in itertools.chain(temperature_data, salinity_data, oxygen_data):
if by_month:
time = datum.time.month
else:
time = datum.time.year
if time not in stations:
stations[time] = set()
stations[time].add(datum.source)
return stations
def contains(self, latitude=None, longitude=None):
if longitude is None:
logging.warning("data does not contain longitude information")
return False
if latitude is None:
logging.warning("data does not contain latitude information")
return False
return self.polygon.contains(Point(longitude, latitude))
def bounding_box(self):
min_lon, min_lat, max_lon, max_lat = self.polygon.bounds
return {
"min_lon": min_lon,
"max_lon": max_lon,
"min_lat": min_lat,
"max_lat": max_lat,
}
def is_surface(self, depth):
return is_in_bounds(depth, *self.surface_bounds)
def is_shallow(self, depth):
return self.shallow_bounds is not None and is_in_bounds(
depth, *self.shallow_bounds
)
def is_deep(self, depth):
return is_in_bounds(depth, *self.deep_bounds)
def is_deeper(self, depth):
return is_in_bounds(depth, *self.deeper_bounds)
def is_deepest(self, depth):
return is_in_bounds(depth, *self.deepest_bounds)
def get_seasons(self):
month_to_name = {
1: "J", 2: "F", 3: "M", 4: "A", 5: "M", 6: "J", 7: "J", 8: "A", 9: "S", 10: "O", 11: "N", 12: "D"
}
return zip(
self.seasons,
["".join([month_to_name[month] for month in season]) for season in self.seasons],
)
def produce_data(
self,
times,
depths,
data,
quality,
longitude,
latitude,
filename,
placeholder=-99.0,
computed=False,
assumed_density=False,
):
length = get_length(data)
times = extend_arr(times, length)
depths = extend_arr(depths, length)
if (get_length(times) != get_length(data)) or (
get_length(depths) != get_length(data)
):
logging.warning(
f"Data from {filename} contains times, depths, and data of different lengths"
)
out = []
once = [False] * 2
warn_unused = True
for t, d, datum, q in zip(times, depths, data, quality):
if math.isnan(datum):
# no warning since NaN data is incredibly common
# if a file winds up with no data because all the data was NaN, don't warn that it wasn't used
warn_unused = False
continue
# Some data, particularly salinity data, seems to be the result of performing calculations on NaN values.
# This data is consistently showing up as 9.96921e+36, which may relate to the "Fill Value" in creating netCDF files.
# In any case, it appears to be as invalid as NaN, so it's being filtered out accordingly
if datum > EXCEPTIONALLY_BIG or d > EXCEPTIONALLY_BIG:
if not once[0]:
logging.warning(
f"Data from {filename} is larger than 9.9e+36, it may have been calulated poorly"
)
once[0] = True
continue
if datum == placeholder or int(datum) == int(placeholder):
if not once[1]:
logging.warning(
f"Data from {filename} has value {datum}, which is likely a standin for NaN"
)
once[1] = True
continue
t = get_datetime(t)
if t.replace(tzinfo=None) > datetime.datetime.now():
logging.warning(f"Data from {filename} is from the future: {t}")
continue
out.append(
inlet_data.InletData(
t,
d,
datum,
q if q is not None and math.isfinite(q) else 0,
longitude,
latitude,
filename,
computed=computed,
assumed_density=assumed_density,
)
)
if len(out) == 0:
if warn_unused:
logging.warning(f"Data from {filename} not used")
else:
self.used_files.add(os.path.basename(filename).lower())
return out
def add_data_from_netcdf(self, data):
time, longitude, latitude, filename = (
get_array(data.time),
get_scalar(data.longitude),
get_scalar(data.latitude),
get_scalar(data.filename),
)
depth = find_depth_data(data)
if depth is None:
warn_unknown_variable(data, "depth")
temperature = find_temperature_data(data)
if temperature is None:
warn_unknown_variable(data, "temperature")
salinity = find_salinity_data(data)
if salinity is None:
warn_unknown_variable(data, "salinity")
oxygen = find_oxygen_data(data)
if oxygen is None:
warn_unknown_variable(data, "oxygen")
pressure = find_pressure_data(data)
if pressure is None:
warn_unknown_variable(data, "pressure")
if depth is None:
if pressure is not None:
depth = gsw.z_from_p(get_array(pressure), latitude) * -1
else:
logging.warning(
f"{get_scalar(data.filename)} does not have depth or pressure data. Treating depth as NaN"
)
depth = numpy.nan
salinity, salinity_computed = convert.convert_salinity(
salinity,
None if salinity is None or isinstance(salinity, float) else salinity.units,
filename,
)
oxygen, oxygen_computed, oxygen_assumed_density = convert.convert_oxygen(
oxygen,
None if oxygen is None or isinstance(oxygen, float) else oxygen.units,
longitude,
latitude,
temperature,
salinity,
pressure
if pressure is not None
else gsw.p_from_z(get_array(depth) * -1, latitude),
filename,
)
placeholder = -99
assumed_quality = 1 # assume good for netCDF data
if temperature is not None:
self.data.add_temperature_data(
self.produce_data(
get_array(time),
get_array(depth),
get_array(temperature),
numpy.full(get_length(temperature), assumed_quality),
longitude,
latitude,
filename,
placeholder=placeholder,
)
)
if salinity is not None:
self.data.add_salinity_data(
self.produce_data(
get_array(time),
get_array(depth),
get_array(salinity),
numpy.full(get_length(salinity), assumed_quality),
longitude,
latitude,
filename,
placeholder=placeholder,
computed=salinity_computed,
)
)
if oxygen is not None:
self.data.add_oxygen_data(
self.produce_data(
get_array(time),
get_array(depth),
get_array(oxygen),
numpy.full(get_length(oxygen), assumed_quality),
longitude,
latitude,
filename,
placeholder=placeholder,
computed=oxygen_computed,
assumed_density=oxygen_assumed_density,
)
)
def add_data_from_shell(self, data):
channels = data.file.channels
channel_details = data.file.channel_details
names = [channel.name for channel in channels]
units = [channel.units for channel in channels]
longitude, latitude = data.location.longitude, data.location.latitude
date_idx = find_column(channels, "Date")
if date_idx < 0:
# time not included in data, just use start date
time = numpy.full(len(data.data), data.get_time())
else:
time_idx = find_column(channels, "Time")
if time_idx < 0:
# only date included in data
time = [d[date_idx] for d in data.data]
else:
dates = [d[date_idx] for d in data.data]
times = [d[time_idx] for d in data.data]
time = [
datetime.datetime.combine(d, t, tzinfo=data.get_time().tzinfo)
for d, t in zip(dates, times)
]
depth_idx = find_column(channels, "Depth", "m", "metre")
depth_pad = get_pad_value(channel_details, depth_idx)
if depth_pad is None or numpy.isnan(depth_pad):
depth_pad = -99
depth_data = extract_data(data.data, depth_idx, depth_pad)
temperature_idx = find_column(channels, "Temperature", "C", "'deg C'")
temperature_pad = get_pad_value(channel_details, temperature_idx)
if temperature_pad is None or numpy.isnan(temperature_pad):
temperature_pad = -99
temperature_data = extract_data(data.data, temperature_idx, temperature_pad)
temperature_quality = [0] * get_length(temperature_data)
if has_quality(temperature_idx, names):
temperature_quality = extract_data(data.data, temperature_idx + 1, None)
salinity_idx = find_column(channels, "Salinity", "PSU", "PSS-78")
salinity_pad = get_pad_value(channel_details, salinity_idx)
if salinity_pad is None or numpy.isnan(salinity_pad):
salinity_pad = -99
salinity_data = extract_data(data.data, salinity_idx, salinity_pad)
salinity_quality = [0] * get_length(salinity_data)
if has_quality(salinity_idx, names):
salinity_quality = extract_data(data.data, salinity_idx + 1, None)
oxygen_idx = find_column(channels, "Oxygen", "mL/L")
oxygen_pad = get_pad_value(channel_details, oxygen_idx)
if oxygen_pad is None or numpy.isnan(oxygen_pad):
oxygen_pad = -99
oxygen_data = extract_data(data.data, oxygen_idx, oxygen_pad)
oxygen_quality = [0] * get_length(oxygen_data)
if has_quality(oxygen_idx, names):
oxygen_quality = extract_data(data.data, oxygen_idx + 1, None)
pressure_idx = find_column(channels, "Pressure", "dbar", "decibar")
pressure_pad = get_pad_value(channel_details, pressure_idx)
if pressure_pad is None or numpy.isnan(pressure_pad):
pressure_pad = -99
pressure_data = extract_data(data.data, pressure_idx, pressure_pad)
if (
depth_data is None
and data.instrument is not None
and not numpy.isnan(data.instrument.depth)
):
depth_data = numpy.full(1, float(data.instrument.raw["depth"]))
elif depth_data is None:
if pressure_data is not None:
depth_data = gsw.z_from_p(pressure_data, latitude) * -1
else:
logging.warning(
f"{data.filename} does not have depth or pressure data. Skipping"
)
return
elif pressure_data is None:
# depth_data is not None in this case
pressure_data = gsw.p_from_z(depth_data * -1, latitude)
salinity_data, salinity_computed = convert.convert_salinity(
salinity_data, units[salinity_idx].strip(), data.filename
)
oxygen_data, oxygen_computed, oxygen_assumed_density = convert.convert_oxygen(
oxygen_data,
units[oxygen_idx].strip(),
longitude,
latitude,
temperature_data,
salinity_data,
pressure_data
if pressure_data is not None
else gsw.p_from_z(depth_data * -1, latitude),
data.filename,
)
if temperature_data is not None:
self.data.add_temperature_data(
self.produce_data(
time,
depth_data,
temperature_data,
temperature_quality,
longitude,
latitude,
data.filename,
placeholder=temperature_pad,
)
)
if salinity_data is not None:
self.data.add_salinity_data(
self.produce_data(
time,
depth_data,
salinity_data,
salinity_quality,
longitude,
latitude,
data.filename,
placeholder=salinity_pad,
computed=salinity_computed,
)
)
if oxygen_data is not None:
self.data.add_oxygen_data(
self.produce_data(
time,
depth_data,
oxygen_data,
oxygen_quality,
longitude,
latitude,
data.filename,
placeholder=oxygen_pad,
computed=oxygen_computed,
assumed_density=oxygen_assumed_density,
)
)
def add_data_from_csv(self, data, filename):
time = pandas.to_datetime(data["Measurement time"])
longitude = data["Longitude"]
latitude = data["Latitude"]
depth = data["Depth (m)"]
temperature = data["Temperature (deg C)"]
temperature_flag = data["Temperature flag"].map(hakai_quality)
oxygen_ml_l = data["Dissolved O2 (mL/L)"]
oxygen_flag = data["Dissolved O2 (mL/L) flag"].map(hakai_quality)
salinity = data["Salinity (PSU)"]
salinity_flag = data["Salinity flag"].map(hakai_quality)
temperature_index = temperature.notna()
salinity_index = salinity.notna()
oxygen_index = oxygen_ml_l.notna()
self.data.add_temperature_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
)
for t, d, v, q, lon, lat in zip(
time[temperature_index],
depth[temperature_index],
temperature[temperature_index],
temperature_flag[temperature_index],
longitude[temperature_index],
latitude[temperature_index],
)
]
)
self.data.add_salinity_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
)
for t, d, v, q, lon, lat in zip(
time[salinity_index],
depth[salinity_index],
salinity[salinity_index],
salinity_flag[salinity_index],
longitude[salinity_index],
latitude[salinity_index],
)
]
)
self.data.add_oxygen_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
)
for t, d, v, q, lon, lat in zip(
time[oxygen_index],
depth[oxygen_index],
oxygen_ml_l[oxygen_index],
oxygen_flag[oxygen_index],
longitude[oxygen_index],
latitude[oxygen_index],
)
]
)
def add_data_from_erddap(self, data):
depth_index = data["depth"].map(math.isfinite)
temperature_index = (
data["aggregated_temperature"].map(math.isfinite) & depth_index
)
salinity_index = data["aggregated_salinity"].map(math.isfinite) & depth_index
oxygen_index = data["aggregated_oxygen"].map(math.isfinite) & depth_index
self.data.add_temperature_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
computed=computed,
assumed_density=assumed,
)
for t, d, v, q, lon, lat, filename, computed, assumed in zip(
data.loc[temperature_index, "time"].map(get_datetime),
data.loc[temperature_index, "depth"],
data.loc[temperature_index, "aggregated_temperature"],
data.loc[temperature_index, "aggregated_temperature_quality"],
data.loc[temperature_index, "longitude"],
data.loc[temperature_index, "latitude"],
data.loc[temperature_index, "source"],
data.loc[temperature_index, "aggregated_temperature_metadata"].map(
lambda x: x > 1
),
data.loc[temperature_index, "aggregated_temperature_metadata"].map(
lambda x: x > 2
),
)
]
)
self.data.add_salinity_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
computed=computed,
assumed_density=assumed,
)
for t, d, v, q, lon, lat, filename, computed, assumed in zip(
data.loc[salinity_index, "time"].map(get_datetime),
data.loc[salinity_index, "depth"],
data.loc[salinity_index, "aggregated_salinity"],
data.loc[salinity_index, "aggregated_salinity_quality"],
data.loc[salinity_index, "longitude"],
data.loc[salinity_index, "latitude"],
data.loc[salinity_index, "source"],
data.loc[salinity_index, "aggregated_salinity_metadata"].map(
lambda x: x > 1
),
data.loc[salinity_index, "aggregated_salinity_metadata"].map(
lambda x: x > 2
),
)
]
)
self.data.add_oxygen_data(
[
inlet_data.InletData(
time=t,
depth=d,
value=v,
quality=q,
longitude=lon,
latitude=lat,
source=filename,
computed=computed,
assumed_density=assumed,
)
for t, d, v, q, lon, lat, filename, computed, assumed in zip(
data.loc[oxygen_index, "time"].map(get_datetime),
data.loc[oxygen_index, "depth"],
data.loc[oxygen_index, "aggregated_oxygen"],
data.loc[oxygen_index, "aggregated_oxygen_quality"],
data.loc[oxygen_index, "longitude"],
data.loc[oxygen_index, "latitude"],
data.loc[oxygen_index, "source"],
data.loc[oxygen_index, "aggregated_oxygen_metadata"].map(
lambda x: x > 1
),
data.loc[oxygen_index, "aggregated_oxygen_metadata"].map(
lambda x: x > 2
),
)
]
)
def get_inlets(
data_dir,
from_saved=False,
from_netcdf=False,
from_erddap=False,
from_csv=False,
inlet_names=[],
drop_names=[],
keep_names=[],
geojson_file="inlets.geojson",
ignore_history=False
) -> List[Inlet]:
"""
If data_dir is provided and ignore_history=True, then ignore any files in data_dir
with "history" in its path.
"""
inlet_list = []
with open(geojson_file) as f:
contents = json.load(f)["features"]
for content in contents:
name = content["properties"]["name"]
if len(keep_names) > 0 and not all(
name_part in name for name_part in keep_names
):
continue
if len(inlet_names) > 0 and not any(
name_part in name for name_part in inlet_names
):
continue
if len(drop_names) > 0 and any(
name_part in name for name_part in drop_names
):
continue
area = content["properties"]["area"]
boundaries = content["properties"]["boundaries"]
seasons = (
content["properties"]["seasons"]
if "seasons" in content["properties"]
else []
)
limits = (
content["properties"]["limits"]
if "limits" in content["properties"]
else {}
)
polygon = Polygon(content["geometry"]["coordinates"][0])
if "shallow boundaries" in content["properties"]:
inlet_list.append(
Inlet(
name,
area,
polygon,
boundaries,
limits,
clear_old_data=not from_saved,
shallow=content["properties"]["shallow boundaries"],
seasons=seasons,
)
)
else: