disdrodb 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- disdrodb/__init__.py +1 -1
- disdrodb/_version.py +2 -2
- disdrodb/api/io.py +12 -2
- disdrodb/l0/check_standards.py +15 -10
- disdrodb/l0/configs/LPM/l0a_encodings.yml +4 -4
- disdrodb/l0/configs/LPM/l0b_cf_attrs.yml +22 -6
- disdrodb/l0/configs/LPM/l0b_encodings.yml +41 -0
- disdrodb/l0/configs/LPM/raw_data_format.yml +40 -0
- disdrodb/l0/configs/PARSIVEL/l0b_cf_attrs.yml +1 -1
- disdrodb/l0/configs/PARSIVEL/raw_data_format.yml +1 -1
- disdrodb/l0/configs/PARSIVEL2/l0b_cf_attrs.yml +4 -4
- disdrodb/l0/configs/PARSIVEL2/raw_data_format.yml +10 -10
- disdrodb/l0/configs/PWS100/bins_diameter.yml +173 -0
- disdrodb/l0/configs/PWS100/bins_velocity.yml +173 -0
- disdrodb/l0/configs/PWS100/l0a_encodings.yml +19 -0
- disdrodb/l0/configs/PWS100/l0b_cf_attrs.yml +76 -0
- disdrodb/l0/configs/PWS100/l0b_encodings.yml +176 -0
- disdrodb/l0/configs/PWS100/raw_data_format.yml +182 -0
- disdrodb/l0/configs/RD80/raw_data_format.yml +2 -6
- disdrodb/l0/l0b_nc_processing.py +1 -1
- disdrodb/l0/l0b_processing.py +12 -10
- disdrodb/l0/readers/LPM/AUSTRALIA/MELBOURNE_2007_LPM.py +23 -13
- disdrodb/l0/readers/LPM/BRAZIL/CHUVA_LPM.py +3 -3
- disdrodb/l0/readers/LPM/BRAZIL/GOAMAZON_LPM.py +5 -3
- disdrodb/l0/readers/LPM/ITALY/GID_LPM.py +36 -20
- disdrodb/l0/readers/LPM/ITALY/GID_LPM_W.py +210 -0
- disdrodb/l0/readers/LPM/KIT/CHWALA.py +225 -0
- disdrodb/l0/readers/LPM/SLOVENIA/ARSO.py +197 -0
- disdrodb/l0/readers/LPM/SLOVENIA/CRNI_VRH.py +197 -0
- disdrodb/l0/readers/PARSIVEL/KIT/BURKINA_FASO.py +133 -0
- disdrodb/l0/readers/PARSIVEL/NCAR/PECAN_MOBILE.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2009.py +1 -1
- disdrodb/l0/readers/PARSIVEL/SLOVENIA/UL_FGG.py +121 -0
- disdrodb/l0/readers/PARSIVEL2/FRANCE/ENPC_PARSIVEL2.py +189 -0
- disdrodb/l0/readers/PARSIVEL2/NCAR/PECAN_FP3.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_P2.py +1 -1
- disdrodb/l0/readers/PWS100/FRANCE/ENPC_PWS100.py +150 -0
- disdrodb/l0/readers/RD80/NOAA/PSL_RD80.py +274 -0
- disdrodb/l0/readers/template_reader_raw_netcdf_data.py +1 -1
- disdrodb/l0/standards.py +7 -4
- disdrodb/l0/template_tools.py +2 -2
- disdrodb/l1/encoding_attrs.py +21 -6
- disdrodb/l1/processing.py +6 -4
- disdrodb/l1/resampling.py +1 -1
- disdrodb/l1/routines.py +2 -1
- disdrodb/l2/empirical_dsd.py +100 -2
- disdrodb/l2/event.py +3 -3
- disdrodb/l2/processing.py +21 -12
- disdrodb/l2/processing_options.py +7 -7
- disdrodb/l2/routines.py +3 -3
- disdrodb/metadata/checks.py +15 -6
- disdrodb/metadata/manipulation.py +2 -2
- disdrodb/metadata/standards.py +83 -79
- disdrodb/metadata/writer.py +2 -2
- disdrodb/routines.py +246 -10
- disdrodb/scattering/routines.py +1 -1
- disdrodb/utils/dataframe.py +342 -0
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/METADATA +34 -61
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/RECORD +63 -47
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/WHEEL +1 -1
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/entry_points.txt +3 -3
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/licenses/LICENSE +0 -0
- {disdrodb-0.1.0.dist-info → disdrodb-0.1.1.dist-info}/top_level.txt +0 -0
disdrodb/__init__.py
CHANGED
|
@@ -73,7 +73,7 @@ DIAMETER_COORDS = ["diameter_bin_center", "diameter_bin_width", "diameter_bin_lo
|
|
|
73
73
|
VELOCITY_COORDS = ["velocity_bin_center", "velocity_bin_width", "velocity_bin_lower", "velocity_bin_upper"]
|
|
74
74
|
VELOCITY_DIMENSION = "velocity_bin_center"
|
|
75
75
|
DIAMETER_DIMENSION = "diameter_bin_center"
|
|
76
|
-
OPTICAL_SENSORS = ["PARSIVEL", "PARSIVEL2", "LPM"]
|
|
76
|
+
OPTICAL_SENSORS = ["PARSIVEL", "PARSIVEL2", "LPM", "PWS100"]
|
|
77
77
|
IMPACT_SENSORS = ["RD80"]
|
|
78
78
|
|
|
79
79
|
|
disdrodb/_version.py
CHANGED
disdrodb/api/io.py
CHANGED
|
@@ -141,6 +141,7 @@ def open_dataset(
|
|
|
141
141
|
product_kwargs=None,
|
|
142
142
|
debugging_mode: bool = False,
|
|
143
143
|
data_archive_dir: Optional[str] = None,
|
|
144
|
+
parallel=False,
|
|
144
145
|
**open_kwargs,
|
|
145
146
|
):
|
|
146
147
|
"""Retrieve DISDRODB product files for a give station.
|
|
@@ -205,8 +206,17 @@ def open_dataset(
|
|
|
205
206
|
# Open DISDRODB netCDF files using xarray
|
|
206
207
|
# - TODO: parallel option and add closers !
|
|
207
208
|
# - decode_timedelta -- > sample_interval not decoded to timedelta !
|
|
208
|
-
list_ds = [xr.open_dataset(fpath, decode_timedelta=False, **open_kwargs) for fpath in filepaths]
|
|
209
|
-
ds = xr.concat(list_ds, dim="time")
|
|
209
|
+
# list_ds = [xr.open_dataset(fpath, decode_timedelta=False, **open_kwargs) for fpath in filepaths]
|
|
210
|
+
# ds = xr.concat(list_ds, dim="time")
|
|
211
|
+
ds = xr.open_mfdataset(
|
|
212
|
+
filepaths,
|
|
213
|
+
engine="netcdf4",
|
|
214
|
+
combine="nested", # 'by_coords',
|
|
215
|
+
concat_dim="time",
|
|
216
|
+
decode_timedelta=False,
|
|
217
|
+
parallel=parallel,
|
|
218
|
+
**open_kwargs,
|
|
219
|
+
)
|
|
210
220
|
return ds
|
|
211
221
|
|
|
212
222
|
|
disdrodb/l0/check_standards.py
CHANGED
|
@@ -80,7 +80,12 @@ def _check_valid_values(df, dict_valid_values):
|
|
|
80
80
|
raise ValueError(f"Columns {list_wrong_columns} have invalid values.")
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
def _check_raw_fields_available(
|
|
83
|
+
def _check_raw_fields_available(
|
|
84
|
+
df: pd.DataFrame,
|
|
85
|
+
sensor_name: str, # noqa: ARG001
|
|
86
|
+
logger=None, # noqa: ARG001
|
|
87
|
+
verbose: bool = False, # noqa: ARG001
|
|
88
|
+
) -> None:
|
|
84
89
|
"""Check the presence of the raw spectrum data according to the type of sensor.
|
|
85
90
|
|
|
86
91
|
Parameters
|
|
@@ -95,22 +100,22 @@ def _check_raw_fields_available(df: pd.DataFrame, sensor_name: str, logger=None,
|
|
|
95
100
|
ValueError
|
|
96
101
|
Error if the ``raw_drop_number`` field is missing.
|
|
97
102
|
"""
|
|
98
|
-
from disdrodb.l0.standards import get_raw_array_nvalues
|
|
99
|
-
|
|
100
|
-
# Retrieve raw arrays that could be available (based on sensor_name)
|
|
101
|
-
n_bins_dict = get_raw_array_nvalues(sensor_name=sensor_name)
|
|
102
|
-
raw_vars = np.array(list(n_bins_dict.keys()))
|
|
103
|
+
# from disdrodb.l0.standards import get_raw_array_nvalues
|
|
103
104
|
|
|
104
105
|
# Check that raw_drop_number is present
|
|
105
106
|
if "raw_drop_number" not in df.columns:
|
|
106
107
|
msg = "The 'raw_drop_number' column is not present in the dataframe."
|
|
107
108
|
raise ValueError(msg)
|
|
108
109
|
|
|
110
|
+
# Retrieve raw arrays that could be available (based on sensor_name)
|
|
111
|
+
# n_bins_dict = get_raw_array_nvalues(sensor_name=sensor_name)
|
|
112
|
+
|
|
109
113
|
# Report additional raw arrays that are missing
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
+
# raw_vars = np.array(list(n_bins_dict.keys()))
|
|
115
|
+
# missing_vars = raw_vars[np.isin(raw_vars, list(df.columns), invert=True)]
|
|
116
|
+
# if len(missing_vars) > 0:
|
|
117
|
+
# msg = f"The following raw array variable are missing: {missing_vars}"
|
|
118
|
+
# log_info(logger=logger, msg=msg, verbose=verbose)
|
|
114
119
|
|
|
115
120
|
|
|
116
121
|
def check_l0a_column_names(df: pd.DataFrame, sensor_name: str) -> None:
|
|
@@ -74,7 +74,7 @@ number_particles_class_8_internal_data: "float32"
|
|
|
74
74
|
number_particles_class_9: "float32" # 'uint16'
|
|
75
75
|
number_particles_class_9_internal_data: "float32"
|
|
76
76
|
raw_drop_number: "str"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
77
|
+
air_temperature: "float32"
|
|
78
|
+
relative_humidity: "float32"
|
|
79
|
+
wind_speed: "float32"
|
|
80
|
+
wind_direction: "float32"
|
|
@@ -127,13 +127,13 @@ reserve_status:
|
|
|
127
127
|
long_name: Reserve status
|
|
128
128
|
units: ""
|
|
129
129
|
temperature_interior:
|
|
130
|
-
description: "Interior temperature [
|
|
130
|
+
description: "Interior temperature [C] (NNN)"
|
|
131
131
|
long_name: Interior temperature
|
|
132
|
-
units: "
|
|
132
|
+
units: "C"
|
|
133
133
|
laser_temperature:
|
|
134
|
-
description: "Temperature of laser driver 0-
|
|
134
|
+
description: "Temperature of laser driver 0-80C (NN)"
|
|
135
135
|
long_name: Temperature of laser driver
|
|
136
|
-
units: "
|
|
136
|
+
units: "C"
|
|
137
137
|
laser_current_average:
|
|
138
138
|
description: Mean value laser current [1/100 mA] (NNNN)
|
|
139
139
|
long_name: Mean value laser current
|
|
@@ -159,9 +159,9 @@ current_heating_pane_receiver_head:
|
|
|
159
159
|
long_name: Current pane heating receiver head
|
|
160
160
|
units: mA
|
|
161
161
|
temperature_ambient:
|
|
162
|
-
description: "Ambient temperature [
|
|
162
|
+
description: "Ambient temperature [C] (NNN.N)"
|
|
163
163
|
long_name: Ambient temperature
|
|
164
|
-
units: "
|
|
164
|
+
units: "C"
|
|
165
165
|
current_heating_voltage_supply:
|
|
166
166
|
description:
|
|
167
167
|
Voltage Heating supply [1/10 V] (only 5.4110.x1.xxx, otherwise "999")
|
|
@@ -308,3 +308,19 @@ raw_drop_number:
|
|
|
308
308
|
description: Precipitation spectrum
|
|
309
309
|
long_name: Precipitation spectrum
|
|
310
310
|
units: ""
|
|
311
|
+
air_temperature:
|
|
312
|
+
description: "Air temperature in degrees Celsius (C)"
|
|
313
|
+
long_name: Air temperature
|
|
314
|
+
units: "C"
|
|
315
|
+
relative_humidity:
|
|
316
|
+
description: "Relative humidity in percent (%)"
|
|
317
|
+
long_name: Relative humidity
|
|
318
|
+
units: "%"
|
|
319
|
+
wind_speed:
|
|
320
|
+
description: "Wind speed in m/s"
|
|
321
|
+
long_name: Wind speed
|
|
322
|
+
units: "m/s"
|
|
323
|
+
wind_direction:
|
|
324
|
+
description: "Wind direction in degrees (0-360)"
|
|
325
|
+
long_name: Wind direction
|
|
326
|
+
units: "degrees"
|
|
@@ -693,3 +693,44 @@ raw_drop_number:
|
|
|
693
693
|
- 5000
|
|
694
694
|
- 22 # diameter
|
|
695
695
|
- 20 # velocity
|
|
696
|
+
air_temperature:
|
|
697
|
+
dtype: uint16
|
|
698
|
+
scale_factor: 0.1
|
|
699
|
+
add_offset: -99.9
|
|
700
|
+
zlib: true
|
|
701
|
+
complevel: 3
|
|
702
|
+
shuffle: true
|
|
703
|
+
fletcher32: false
|
|
704
|
+
contiguous: false
|
|
705
|
+
_FillValue: 65535
|
|
706
|
+
chunksizes: 5000
|
|
707
|
+
relative_humidity:
|
|
708
|
+
dtype: uint16
|
|
709
|
+
scale_factor: 0.01
|
|
710
|
+
zlib: true
|
|
711
|
+
complevel: 3
|
|
712
|
+
shuffle: true
|
|
713
|
+
fletcher32: false
|
|
714
|
+
contiguous: false
|
|
715
|
+
_FillValue: 65535
|
|
716
|
+
chunksizes: 5000
|
|
717
|
+
wind_speed:
|
|
718
|
+
dtype: uint16
|
|
719
|
+
scale_factor: 0.1
|
|
720
|
+
add_offset: -99.9
|
|
721
|
+
zlib: true
|
|
722
|
+
complevel: 3
|
|
723
|
+
shuffle: true
|
|
724
|
+
fletcher32: false
|
|
725
|
+
contiguous: false
|
|
726
|
+
_FillValue: 65535
|
|
727
|
+
chunksizes: 5000
|
|
728
|
+
wind_direction:
|
|
729
|
+
dtype: uint16
|
|
730
|
+
zlib: true
|
|
731
|
+
complevel: 3
|
|
732
|
+
shuffle: true
|
|
733
|
+
fletcher32: false
|
|
734
|
+
contiguous: false
|
|
735
|
+
_FillValue: 65535
|
|
736
|
+
chunksizes: 5000
|
|
@@ -828,3 +828,43 @@ raw_drop_number:
|
|
|
828
828
|
- velocity_bin_center
|
|
829
829
|
n_values: 440
|
|
830
830
|
field_number: "81"
|
|
831
|
+
air_temperature:
|
|
832
|
+
n_digits: 4
|
|
833
|
+
n_characters: 5
|
|
834
|
+
n_decimals: 1
|
|
835
|
+
n_naturals: 2
|
|
836
|
+
data_range:
|
|
837
|
+
- -40
|
|
838
|
+
- 70
|
|
839
|
+
nan_flags: 99999
|
|
840
|
+
field_number: "521"
|
|
841
|
+
relative_humidity:
|
|
842
|
+
n_digits: 5
|
|
843
|
+
n_characters: 5
|
|
844
|
+
n_decimals: 0
|
|
845
|
+
n_naturals: 5
|
|
846
|
+
data_range:
|
|
847
|
+
- 0
|
|
848
|
+
- 99999
|
|
849
|
+
nan_flags: 99999
|
|
850
|
+
field_number: "522"
|
|
851
|
+
wind_speed:
|
|
852
|
+
n_digits: 3
|
|
853
|
+
n_characters: 4
|
|
854
|
+
n_decimals: 1
|
|
855
|
+
n_naturals: 2
|
|
856
|
+
data_range:
|
|
857
|
+
- 0
|
|
858
|
+
- 60
|
|
859
|
+
nan_flags: null
|
|
860
|
+
field_number: "523"
|
|
861
|
+
wind_direction:
|
|
862
|
+
n_digits: 3
|
|
863
|
+
n_characters: 3
|
|
864
|
+
n_decimals: 0
|
|
865
|
+
n_naturals: 3
|
|
866
|
+
data_range:
|
|
867
|
+
- 0
|
|
868
|
+
- 360
|
|
869
|
+
nan_flags: 999
|
|
870
|
+
field_number: "524"
|
|
@@ -47,7 +47,7 @@ number_particles:
|
|
|
47
47
|
sensor_temperature:
|
|
48
48
|
description: Temperature in sensor housing
|
|
49
49
|
long_name: Temperature of the sensor
|
|
50
|
-
units: "
|
|
50
|
+
units: "C"
|
|
51
51
|
sensor_serial_number:
|
|
52
52
|
description: Sensor serial number
|
|
53
53
|
long_name: Serial number of the sensor
|
|
@@ -47,7 +47,7 @@ number_particles:
|
|
|
47
47
|
sensor_temperature:
|
|
48
48
|
description: Temperature in sensor housing
|
|
49
49
|
long_name: Temperature of the sensor
|
|
50
|
-
units: "
|
|
50
|
+
units: "C"
|
|
51
51
|
sensor_serial_number:
|
|
52
52
|
description: Sensor serial number
|
|
53
53
|
long_name: Serial number of the sensor
|
|
@@ -105,15 +105,15 @@ error_code:
|
|
|
105
105
|
sensor_temperature_pcb:
|
|
106
106
|
description: Temperature in printed circuit board
|
|
107
107
|
long_name: Sensor PCB temperature
|
|
108
|
-
units: "
|
|
108
|
+
units: "C"
|
|
109
109
|
sensor_temperature_receiver:
|
|
110
110
|
description: Temperature in right sensor head
|
|
111
111
|
long_name: Sensor receiver temperature
|
|
112
|
-
units: "
|
|
112
|
+
units: "C"
|
|
113
113
|
sensor_temperature_trasmitter:
|
|
114
114
|
description: Temperature in left sensor head
|
|
115
115
|
long_name: Sensor trasmitter temperature
|
|
116
|
-
units: "
|
|
116
|
+
units: "C"
|
|
117
117
|
rainfall_rate_16_bit_30:
|
|
118
118
|
description: Rainfall rate
|
|
119
119
|
long_name: Rainfall rate max 30 mm/h 16 bit
|
|
@@ -65,10 +65,10 @@ reflectivity_32bit:
|
|
|
65
65
|
nan_flags: null
|
|
66
66
|
field_number: "07"
|
|
67
67
|
mor_visibility:
|
|
68
|
-
n_digits:
|
|
69
|
-
n_characters:
|
|
68
|
+
n_digits: 5
|
|
69
|
+
n_characters: 5
|
|
70
70
|
n_decimals: 0
|
|
71
|
-
n_naturals:
|
|
71
|
+
n_naturals: 5
|
|
72
72
|
data_range:
|
|
73
73
|
- 0
|
|
74
74
|
- 20000
|
|
@@ -270,8 +270,8 @@ sensor_temperature_trasmitter:
|
|
|
270
270
|
rainfall_rate_16_bit_30:
|
|
271
271
|
n_digits: 5
|
|
272
272
|
n_characters: 6
|
|
273
|
-
n_decimals:
|
|
274
|
-
n_naturals:
|
|
273
|
+
n_decimals: 3
|
|
274
|
+
n_naturals: 2
|
|
275
275
|
data_range:
|
|
276
276
|
- 0
|
|
277
277
|
- 30
|
|
@@ -280,8 +280,8 @@ rainfall_rate_16_bit_30:
|
|
|
280
280
|
rainfall_rate_16_bit_1200:
|
|
281
281
|
n_digits: 5
|
|
282
282
|
n_characters: 6
|
|
283
|
-
n_decimals:
|
|
284
|
-
n_naturals:
|
|
283
|
+
n_decimals: 1
|
|
284
|
+
n_naturals: 4
|
|
285
285
|
data_range:
|
|
286
286
|
- 0
|
|
287
287
|
- 1200
|
|
@@ -310,11 +310,11 @@ reflectivity_16bit:
|
|
|
310
310
|
rain_kinetic_energy:
|
|
311
311
|
n_digits: 6
|
|
312
312
|
n_characters: 7
|
|
313
|
-
n_decimals:
|
|
314
|
-
n_naturals:
|
|
313
|
+
n_decimals: 2
|
|
314
|
+
n_naturals: 4
|
|
315
315
|
data_range:
|
|
316
316
|
- 0
|
|
317
|
-
-
|
|
317
|
+
- 9999.99
|
|
318
318
|
nan_flags: null
|
|
319
319
|
field_number: "34"
|
|
320
320
|
snowfall_rate:
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
center:
|
|
2
|
+
0: 0.05
|
|
3
|
+
1: 0.15
|
|
4
|
+
2: 0.25
|
|
5
|
+
3: 0.35
|
|
6
|
+
4: 0.45
|
|
7
|
+
5: 0.55
|
|
8
|
+
6: 0.65
|
|
9
|
+
7: 0.75
|
|
10
|
+
8: 0.85
|
|
11
|
+
9: 0.95
|
|
12
|
+
10: 1.1
|
|
13
|
+
11: 1.3
|
|
14
|
+
12: 1.5
|
|
15
|
+
13: 1.7
|
|
16
|
+
14: 1.9
|
|
17
|
+
15: 2.2
|
|
18
|
+
16: 2.6
|
|
19
|
+
17: 3.0
|
|
20
|
+
18: 3.4
|
|
21
|
+
19: 3.8
|
|
22
|
+
20: 4.4
|
|
23
|
+
21: 5.2
|
|
24
|
+
22: 6.0
|
|
25
|
+
23: 6.8
|
|
26
|
+
24: 7.6
|
|
27
|
+
25: 8.8
|
|
28
|
+
26: 10.4
|
|
29
|
+
27: 12.0
|
|
30
|
+
28: 13.6
|
|
31
|
+
29: 15.2
|
|
32
|
+
30: 17.6
|
|
33
|
+
31: 20.8
|
|
34
|
+
32: 24.0
|
|
35
|
+
33: 27.2
|
|
36
|
+
bounds:
|
|
37
|
+
0:
|
|
38
|
+
- 0.0
|
|
39
|
+
- 0.1
|
|
40
|
+
1:
|
|
41
|
+
- 0.1
|
|
42
|
+
- 0.2
|
|
43
|
+
2:
|
|
44
|
+
- 0.2
|
|
45
|
+
- 0.3
|
|
46
|
+
3:
|
|
47
|
+
- 0.3
|
|
48
|
+
- 0.4
|
|
49
|
+
4:
|
|
50
|
+
- 0.4
|
|
51
|
+
- 0.5
|
|
52
|
+
5:
|
|
53
|
+
- 0.5
|
|
54
|
+
- 0.6
|
|
55
|
+
6:
|
|
56
|
+
- 0.6
|
|
57
|
+
- 0.7
|
|
58
|
+
7:
|
|
59
|
+
- 0.7
|
|
60
|
+
- 0.8
|
|
61
|
+
8:
|
|
62
|
+
- 0.8
|
|
63
|
+
- 0.9
|
|
64
|
+
9:
|
|
65
|
+
- 0.9
|
|
66
|
+
- 1.0
|
|
67
|
+
10:
|
|
68
|
+
- 1.0
|
|
69
|
+
- 1.2
|
|
70
|
+
11:
|
|
71
|
+
- 1.2
|
|
72
|
+
- 1.4
|
|
73
|
+
12:
|
|
74
|
+
- 1.4
|
|
75
|
+
- 1.6
|
|
76
|
+
13:
|
|
77
|
+
- 1.6
|
|
78
|
+
- 1.8
|
|
79
|
+
14:
|
|
80
|
+
- 1.8
|
|
81
|
+
- 2.0
|
|
82
|
+
15:
|
|
83
|
+
- 2.0
|
|
84
|
+
- 2.4
|
|
85
|
+
16:
|
|
86
|
+
- 2.4
|
|
87
|
+
- 2.8
|
|
88
|
+
17:
|
|
89
|
+
- 2.8
|
|
90
|
+
- 3.2
|
|
91
|
+
18:
|
|
92
|
+
- 3.2
|
|
93
|
+
- 3.6
|
|
94
|
+
19:
|
|
95
|
+
- 3.6
|
|
96
|
+
- 4.0
|
|
97
|
+
20:
|
|
98
|
+
- 4.0
|
|
99
|
+
- 4.8
|
|
100
|
+
21:
|
|
101
|
+
- 4.8
|
|
102
|
+
- 5.6
|
|
103
|
+
22:
|
|
104
|
+
- 5.6
|
|
105
|
+
- 6.4
|
|
106
|
+
23:
|
|
107
|
+
- 6.4
|
|
108
|
+
- 7.2
|
|
109
|
+
24:
|
|
110
|
+
- 7.2
|
|
111
|
+
- 8.0
|
|
112
|
+
25:
|
|
113
|
+
- 8.0
|
|
114
|
+
- 9.6
|
|
115
|
+
26:
|
|
116
|
+
- 9.6
|
|
117
|
+
- 11.2
|
|
118
|
+
27:
|
|
119
|
+
- 11.2
|
|
120
|
+
- 12.8
|
|
121
|
+
28:
|
|
122
|
+
- 12.8
|
|
123
|
+
- 14.4
|
|
124
|
+
29:
|
|
125
|
+
- 14.4
|
|
126
|
+
- 16.0
|
|
127
|
+
30:
|
|
128
|
+
- 16.0
|
|
129
|
+
- 19.2
|
|
130
|
+
31:
|
|
131
|
+
- 19.2
|
|
132
|
+
- 22.4
|
|
133
|
+
32:
|
|
134
|
+
- 22.4
|
|
135
|
+
- 25.6
|
|
136
|
+
33:
|
|
137
|
+
- 25.6
|
|
138
|
+
- 28.8
|
|
139
|
+
width:
|
|
140
|
+
0: 0.1
|
|
141
|
+
1: 0.1
|
|
142
|
+
2: 0.1
|
|
143
|
+
3: 0.1
|
|
144
|
+
4: 0.1
|
|
145
|
+
5: 0.1
|
|
146
|
+
6: 0.1
|
|
147
|
+
7: 0.1
|
|
148
|
+
8: 0.1
|
|
149
|
+
9: 0.1
|
|
150
|
+
10: 0.2
|
|
151
|
+
11: 0.2
|
|
152
|
+
12: 0.2
|
|
153
|
+
13: 0.2
|
|
154
|
+
14: 0.2
|
|
155
|
+
15: 0.4
|
|
156
|
+
16: 0.4
|
|
157
|
+
17: 0.4
|
|
158
|
+
18: 0.4
|
|
159
|
+
19: 0.4
|
|
160
|
+
20: 0.8
|
|
161
|
+
21: 0.8
|
|
162
|
+
22: 0.8
|
|
163
|
+
23: 0.8
|
|
164
|
+
24: 0.8
|
|
165
|
+
25: 1.6
|
|
166
|
+
26: 1.6
|
|
167
|
+
27: 1.6
|
|
168
|
+
28: 1.6
|
|
169
|
+
29: 1.6
|
|
170
|
+
30: 3.2
|
|
171
|
+
31: 3.2
|
|
172
|
+
32: 3.2
|
|
173
|
+
33: 3.2
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
center:
|
|
2
|
+
0: 0.05
|
|
3
|
+
1: 0.15
|
|
4
|
+
2: 0.25
|
|
5
|
+
3: 0.35
|
|
6
|
+
4: 0.45
|
|
7
|
+
5: 0.55
|
|
8
|
+
6: 0.65
|
|
9
|
+
7: 0.75
|
|
10
|
+
8: 0.85
|
|
11
|
+
9: 0.95
|
|
12
|
+
10: 1.1
|
|
13
|
+
11: 1.3
|
|
14
|
+
12: 1.5
|
|
15
|
+
13: 1.7
|
|
16
|
+
14: 1.9
|
|
17
|
+
15: 2.2
|
|
18
|
+
16: 2.6
|
|
19
|
+
17: 3.0
|
|
20
|
+
18: 3.4
|
|
21
|
+
19: 3.8
|
|
22
|
+
20: 4.4
|
|
23
|
+
21: 5.2
|
|
24
|
+
22: 6.0
|
|
25
|
+
23: 6.8
|
|
26
|
+
24: 7.6
|
|
27
|
+
25: 8.8
|
|
28
|
+
26: 10.4
|
|
29
|
+
27: 12.0
|
|
30
|
+
28: 13.6
|
|
31
|
+
29: 15.2
|
|
32
|
+
30: 17.6
|
|
33
|
+
31: 20.8
|
|
34
|
+
32: 24.0
|
|
35
|
+
33: 27.2
|
|
36
|
+
bounds:
|
|
37
|
+
0:
|
|
38
|
+
- 0.0
|
|
39
|
+
- 0.1
|
|
40
|
+
1:
|
|
41
|
+
- 0.1
|
|
42
|
+
- 0.2
|
|
43
|
+
2:
|
|
44
|
+
- 0.2
|
|
45
|
+
- 0.3
|
|
46
|
+
3:
|
|
47
|
+
- 0.3
|
|
48
|
+
- 0.4
|
|
49
|
+
4:
|
|
50
|
+
- 0.4
|
|
51
|
+
- 0.5
|
|
52
|
+
5:
|
|
53
|
+
- 0.5
|
|
54
|
+
- 0.6
|
|
55
|
+
6:
|
|
56
|
+
- 0.6
|
|
57
|
+
- 0.7
|
|
58
|
+
7:
|
|
59
|
+
- 0.7
|
|
60
|
+
- 0.8
|
|
61
|
+
8:
|
|
62
|
+
- 0.8
|
|
63
|
+
- 0.9
|
|
64
|
+
9:
|
|
65
|
+
- 0.9
|
|
66
|
+
- 1.0
|
|
67
|
+
10:
|
|
68
|
+
- 1.0
|
|
69
|
+
- 1.2
|
|
70
|
+
11:
|
|
71
|
+
- 1.2
|
|
72
|
+
- 1.4
|
|
73
|
+
12:
|
|
74
|
+
- 1.4
|
|
75
|
+
- 1.6
|
|
76
|
+
13:
|
|
77
|
+
- 1.6
|
|
78
|
+
- 1.8
|
|
79
|
+
14:
|
|
80
|
+
- 1.8
|
|
81
|
+
- 2.0
|
|
82
|
+
15:
|
|
83
|
+
- 2.0
|
|
84
|
+
- 2.4
|
|
85
|
+
16:
|
|
86
|
+
- 2.4
|
|
87
|
+
- 2.8
|
|
88
|
+
17:
|
|
89
|
+
- 2.8
|
|
90
|
+
- 3.2
|
|
91
|
+
18:
|
|
92
|
+
- 3.2
|
|
93
|
+
- 3.6
|
|
94
|
+
19:
|
|
95
|
+
- 3.6
|
|
96
|
+
- 4.0
|
|
97
|
+
20:
|
|
98
|
+
- 4.0
|
|
99
|
+
- 4.8
|
|
100
|
+
21:
|
|
101
|
+
- 4.8
|
|
102
|
+
- 5.6
|
|
103
|
+
22:
|
|
104
|
+
- 5.6
|
|
105
|
+
- 6.4
|
|
106
|
+
23:
|
|
107
|
+
- 6.4
|
|
108
|
+
- 7.2
|
|
109
|
+
24:
|
|
110
|
+
- 7.2
|
|
111
|
+
- 8.0
|
|
112
|
+
25:
|
|
113
|
+
- 8.0
|
|
114
|
+
- 9.6
|
|
115
|
+
26:
|
|
116
|
+
- 9.6
|
|
117
|
+
- 11.2
|
|
118
|
+
27:
|
|
119
|
+
- 11.2
|
|
120
|
+
- 12.8
|
|
121
|
+
28:
|
|
122
|
+
- 12.8
|
|
123
|
+
- 14.4
|
|
124
|
+
29:
|
|
125
|
+
- 14.4
|
|
126
|
+
- 16.0
|
|
127
|
+
30:
|
|
128
|
+
- 16.0
|
|
129
|
+
- 19.2
|
|
130
|
+
31:
|
|
131
|
+
- 19.2
|
|
132
|
+
- 22.4
|
|
133
|
+
32:
|
|
134
|
+
- 22.4
|
|
135
|
+
- 25.6
|
|
136
|
+
33:
|
|
137
|
+
- 25.6
|
|
138
|
+
- 28.8
|
|
139
|
+
width:
|
|
140
|
+
0: 0.1
|
|
141
|
+
1: 0.1
|
|
142
|
+
2: 0.1
|
|
143
|
+
3: 0.1
|
|
144
|
+
4: 0.1
|
|
145
|
+
5: 0.1
|
|
146
|
+
6: 0.1
|
|
147
|
+
7: 0.1
|
|
148
|
+
8: 0.1
|
|
149
|
+
9: 0.1
|
|
150
|
+
10: 0.2
|
|
151
|
+
11: 0.2
|
|
152
|
+
12: 0.2
|
|
153
|
+
13: 0.2
|
|
154
|
+
14: 0.2
|
|
155
|
+
15: 0.4
|
|
156
|
+
16: 0.4
|
|
157
|
+
17: 0.4
|
|
158
|
+
18: 0.4
|
|
159
|
+
19: 0.4
|
|
160
|
+
20: 0.8
|
|
161
|
+
21: 0.8
|
|
162
|
+
22: 0.8
|
|
163
|
+
23: 0.8
|
|
164
|
+
24: 0.8
|
|
165
|
+
25: 1.6
|
|
166
|
+
26: 1.6
|
|
167
|
+
27: 1.6
|
|
168
|
+
28: 1.6
|
|
169
|
+
29: 1.6
|
|
170
|
+
30: 3.2
|
|
171
|
+
31: 3.2
|
|
172
|
+
32: 3.2
|
|
173
|
+
33: 3.2
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
mor_visibility: "float32"
|
|
2
|
+
weather_code_synop_4680: "float32" # 'uint32'
|
|
3
|
+
weather_code_metar_4678: "str"
|
|
4
|
+
weather_code_nws: "str"
|
|
5
|
+
alarms: "str"
|
|
6
|
+
sensor_status: "float32" # 'uint8'
|
|
7
|
+
air_temperature: "float32" # 'uint16'
|
|
8
|
+
relative_humidity: "float32" # 'uint16'
|
|
9
|
+
wetbulb_temperature: "float32" # 'uint16'
|
|
10
|
+
air_temperature_max: "float32" # 'uint16'
|
|
11
|
+
air_temperature_min: "float32" # 'uint16'
|
|
12
|
+
rainfall_rate: "float32" # 'uint16'
|
|
13
|
+
rainfall_accumulated: "float32" # 'uint16'
|
|
14
|
+
average_drop_velocity: "float32"
|
|
15
|
+
average_drop_size: "float32"
|
|
16
|
+
raw_drop_number: "str"
|
|
17
|
+
type_distribution: "str"
|
|
18
|
+
drop_size_distribution: "str"
|
|
19
|
+
peak_to_pedestal_hist: "str"
|