disdrodb 0.1.5__py3-none-any.whl → 0.2.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.
Files changed (125) hide show
  1. disdrodb/__init__.py +1 -5
  2. disdrodb/_version.py +2 -2
  3. disdrodb/accessor/methods.py +22 -4
  4. disdrodb/api/checks.py +10 -0
  5. disdrodb/api/io.py +20 -18
  6. disdrodb/api/path.py +42 -77
  7. disdrodb/api/search.py +89 -23
  8. disdrodb/cli/disdrodb_create_summary.py +1 -1
  9. disdrodb/cli/disdrodb_run_l0.py +1 -1
  10. disdrodb/cli/disdrodb_run_l0a.py +1 -1
  11. disdrodb/cli/disdrodb_run_l0b.py +1 -1
  12. disdrodb/cli/disdrodb_run_l0c.py +1 -1
  13. disdrodb/cli/disdrodb_run_l1.py +1 -1
  14. disdrodb/cli/disdrodb_run_l2e.py +1 -1
  15. disdrodb/cli/disdrodb_run_l2m.py +1 -1
  16. disdrodb/configs.py +30 -83
  17. disdrodb/constants.py +4 -3
  18. disdrodb/data_transfer/download_data.py +4 -2
  19. disdrodb/docs.py +2 -2
  20. disdrodb/etc/products/L1/1MIN.yaml +13 -0
  21. disdrodb/etc/products/L1/LPM/1MIN.yaml +13 -0
  22. disdrodb/etc/products/L1/LPM_V0/1MIN.yaml +13 -0
  23. disdrodb/etc/products/L1/PARSIVEL/1MIN.yaml +13 -0
  24. disdrodb/etc/products/L1/PARSIVEL2/1MIN.yaml +13 -0
  25. disdrodb/etc/products/L1/PWS100/1MIN.yaml +13 -0
  26. disdrodb/etc/products/L1/RD80/1MIN.yaml +13 -0
  27. disdrodb/etc/products/L1/SWS250/1MIN.yaml +13 -0
  28. disdrodb/etc/products/L1/global.yaml +6 -0
  29. disdrodb/etc/products/L2E/10MIN.yaml +1 -12
  30. disdrodb/etc/products/L2E/global.yaml +1 -1
  31. disdrodb/etc/products/L2M/MODELS/NGAMMA_GS_R_MAE.yaml +6 -0
  32. disdrodb/etc/products/L2M/global.yaml +1 -1
  33. disdrodb/issue/checks.py +2 -2
  34. disdrodb/l0/check_configs.py +1 -1
  35. disdrodb/l0/configs/LPM/l0a_encodings.yml +0 -1
  36. disdrodb/l0/configs/LPM/l0b_cf_attrs.yml +0 -4
  37. disdrodb/l0/configs/LPM/l0b_encodings.yml +9 -9
  38. disdrodb/l0/configs/LPM/raw_data_format.yml +11 -11
  39. disdrodb/l0/configs/LPM_V0/bins_diameter.yml +103 -0
  40. disdrodb/l0/configs/LPM_V0/bins_velocity.yml +103 -0
  41. disdrodb/l0/configs/LPM_V0/l0a_encodings.yml +45 -0
  42. disdrodb/l0/configs/LPM_V0/l0b_cf_attrs.yml +180 -0
  43. disdrodb/l0/configs/LPM_V0/l0b_encodings.yml +410 -0
  44. disdrodb/l0/configs/LPM_V0/raw_data_format.yml +474 -0
  45. disdrodb/l0/configs/PARSIVEL/l0b_encodings.yml +1 -1
  46. disdrodb/l0/configs/PARSIVEL/raw_data_format.yml +8 -8
  47. disdrodb/l0/configs/PARSIVEL2/raw_data_format.yml +9 -9
  48. disdrodb/l0/l0_reader.py +2 -2
  49. disdrodb/l0/l0a_processing.py +6 -2
  50. disdrodb/l0/l0b_processing.py +26 -19
  51. disdrodb/l0/l0c_processing.py +17 -3
  52. disdrodb/l0/manuals/LPM_V0.pdf +0 -0
  53. disdrodb/l0/readers/LPM/ITALY/GID_LPM.py +15 -7
  54. disdrodb/l0/readers/LPM/ITALY/GID_LPM_PI.py +279 -0
  55. disdrodb/l0/readers/LPM/ITALY/GID_LPM_T.py +276 -0
  56. disdrodb/l0/readers/LPM/ITALY/GID_LPM_W.py +2 -2
  57. disdrodb/l0/readers/LPM/NETHERLANDS/DELFT_RWANDA_LPM_NC.py +103 -0
  58. disdrodb/l0/readers/LPM/NORWAY/HAUKELISETER_LPM.py +216 -0
  59. disdrodb/l0/readers/LPM/NORWAY/NMBU_LPM.py +208 -0
  60. disdrodb/l0/readers/LPM/UK/WITHWORTH_LPM.py +219 -0
  61. disdrodb/l0/readers/LPM/USA/CHARLESTON.py +229 -0
  62. disdrodb/l0/readers/{LPM → LPM_V0}/BELGIUM/ULIEGE.py +33 -49
  63. disdrodb/l0/readers/LPM_V0/ITALY/GID_LPM_V0.py +240 -0
  64. disdrodb/l0/readers/PARSIVEL/BASQUECOUNTRY/EUSKALMET_OTT.py +227 -0
  65. disdrodb/l0/readers/{PARSIVEL2 → PARSIVEL}/NASA/LPVEX.py +16 -28
  66. disdrodb/l0/readers/PARSIVEL/{GPM → NASA}/MC3E.py +1 -1
  67. disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2010_UF.py +3 -3
  68. disdrodb/l0/readers/PARSIVEL2/BASQUECOUNTRY/EUSKALMET_OTT2.py +232 -0
  69. disdrodb/l0/readers/PARSIVEL2/DENMARK/EROSION_raw.py +1 -1
  70. disdrodb/l0/readers/PARSIVEL2/JAPAN/PRECIP.py +155 -0
  71. disdrodb/l0/readers/PARSIVEL2/MPI/BCO_PARSIVEL2.py +14 -7
  72. disdrodb/l0/readers/PARSIVEL2/MPI/BOWTIE.py +8 -3
  73. disdrodb/l0/readers/PARSIVEL2/NASA/APU.py +28 -5
  74. disdrodb/l0/readers/PARSIVEL2/NCAR/RELAMPAGO_PARSIVEL2.py +1 -1
  75. disdrodb/l0/readers/PARSIVEL2/{GPM/GCPEX.py → NORWAY/UIB.py} +54 -29
  76. disdrodb/l0/readers/PARSIVEL2/PHILIPPINES/{PANGASA.py → PAGASA.py} +6 -3
  77. disdrodb/l0/readers/PARSIVEL2/SPAIN/GRANADA.py +1 -1
  78. disdrodb/l0/readers/PARSIVEL2/SWEDEN/SMHI.py +189 -0
  79. disdrodb/l0/readers/{PARSIVEL/GPM/PIERS.py → PARSIVEL2/USA/CSU.py} +62 -29
  80. disdrodb/l0/readers/PARSIVEL2/USA/{C3WE.py → CW3E.py} +51 -24
  81. disdrodb/l0/readers/{PARSIVEL/GPM/IFLOODS.py → RD80/BRAZIL/ATTO_RD80.py} +50 -34
  82. disdrodb/l0/readers/{SW250 → SWS250}/BELGIUM/KMI.py +1 -1
  83. disdrodb/l1/beard_model.py +45 -1
  84. disdrodb/l1/fall_velocity.py +1 -6
  85. disdrodb/l1/filters.py +2 -0
  86. disdrodb/l1/processing.py +6 -5
  87. disdrodb/l1/resampling.py +101 -38
  88. disdrodb/l2/empirical_dsd.py +12 -8
  89. disdrodb/l2/processing.py +4 -3
  90. disdrodb/metadata/search.py +3 -4
  91. disdrodb/routines/l0.py +4 -4
  92. disdrodb/routines/l1.py +173 -60
  93. disdrodb/routines/l2.py +121 -269
  94. disdrodb/routines/options.py +347 -0
  95. disdrodb/routines/wrappers.py +9 -1
  96. disdrodb/scattering/axis_ratio.py +3 -0
  97. disdrodb/scattering/routines.py +1 -1
  98. disdrodb/summary/routines.py +765 -724
  99. disdrodb/utils/archiving.py +51 -44
  100. disdrodb/utils/attrs.py +1 -1
  101. disdrodb/utils/compression.py +4 -2
  102. disdrodb/utils/dask.py +35 -15
  103. disdrodb/utils/dict.py +33 -0
  104. disdrodb/utils/encoding.py +1 -1
  105. disdrodb/utils/manipulations.py +7 -1
  106. disdrodb/utils/routines.py +9 -8
  107. disdrodb/utils/time.py +9 -1
  108. disdrodb/viz/__init__.py +0 -13
  109. disdrodb/viz/plots.py +209 -0
  110. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/METADATA +1 -1
  111. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/RECORD +124 -95
  112. disdrodb/l0/readers/PARSIVEL/GPM/LPVEX.py +0 -85
  113. /disdrodb/etc/products/L2M/{GAMMA_GS_ND_MAE.yaml → MODELS/GAMMA_GS_ND_MAE.yaml} +0 -0
  114. /disdrodb/etc/products/L2M/{GAMMA_ML.yaml → MODELS/GAMMA_ML.yaml} +0 -0
  115. /disdrodb/etc/products/L2M/{LOGNORMAL_GS_LOG_ND_MAE.yaml → MODELS/LOGNORMAL_GS_LOG_ND_MAE.yaml} +0 -0
  116. /disdrodb/etc/products/L2M/{LOGNORMAL_GS_ND_MAE.yaml → MODELS/LOGNORMAL_GS_ND_MAE.yaml} +0 -0
  117. /disdrodb/etc/products/L2M/{LOGNORMAL_ML.yaml → MODELS/LOGNORMAL_ML.yaml} +0 -0
  118. /disdrodb/etc/products/L2M/{NGAMMA_GS_LOG_ND_MAE.yaml → MODELS/NGAMMA_GS_LOG_ND_MAE.yaml} +0 -0
  119. /disdrodb/etc/products/L2M/{NGAMMA_GS_ND_MAE.yaml → MODELS/NGAMMA_GS_ND_MAE.yaml} +0 -0
  120. /disdrodb/etc/products/L2M/{NGAMMA_GS_Z_MAE.yaml → MODELS/NGAMMA_GS_Z_MAE.yaml} +0 -0
  121. /disdrodb/l0/readers/PARSIVEL2/{GPM → NASA}/NSSTC.py +0 -0
  122. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/WHEEL +0 -0
  123. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/entry_points.txt +0 -0
  124. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/licenses/LICENSE +0 -0
  125. {disdrodb-0.1.5.dist-info → disdrodb-0.2.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,13 @@
1
+ product_options:
2
+ fall_velocity_model: "Beard1976"
3
+ minimum_diameter: 0
4
+ maximum_diameter: 10
5
+ minimum_velocity: 0
6
+ maximum_velocity: 12
7
+ above_velocity_fraction: 0.5
8
+ above_velocity_tolerance: null
9
+ below_velocity_fraction: 0.5
10
+ below_velocity_tolerance: null
11
+ small_diameter_threshold: 1
12
+ small_velocity_threshold: 2.5
13
+ maintain_smallest_drops: True
@@ -1,3 +1,9 @@
1
+ temporal_resolutions: ["1MIN", "5MIN", "10MIN", "ROLL1MIN"]
2
+ archive_options:
3
+ strategy: time_block
4
+ strategy_options:
5
+ freq: day
6
+ folder_partitioning: "year"
1
7
  product_options:
2
8
  fall_velocity_model: "Beard1976"
3
9
  minimum_diameter: 0
@@ -1,12 +1 @@
1
- archive_options:
2
- strategy: event
3
- strategy_options:
4
- min_drops: 5
5
- neighbor_min_size: 2
6
- neighbor_time_interval: "5MIN"
7
- event_max_time_gap: "6H"
8
- event_min_duration: "5MIN"
9
- event_min_size: 3
10
- folder_partitioning: "year/month"
11
- product_options:
12
- minimum_ndrops: 0
1
+ radar_enabled: True
@@ -1,4 +1,4 @@
1
- temporal_resolutions: [1MIN"] # "5MIN", "10MIN", "ROLL1MIN"]
1
+ temporal_resolutions: ["1MIN", "5MIN", "10MIN", "ROLL1MIN"]
2
2
  archive_options:
3
3
  strategy: time_block
4
4
  strategy_options:
@@ -0,0 +1,6 @@
1
+ psd_model: "NormalizedGammaPSD"
2
+ optimization: "GS"
3
+ optimization_kwargs:
4
+ target: "R"
5
+ transformation: "identity"
6
+ error_order: 1
@@ -1,4 +1,4 @@
1
- temporal_resolutions: ["1MIN"] #, "5MIN", "10MIN"]
1
+ temporal_resolutions: ["1MIN", "5MIN", "10MIN"]
2
2
  models:
3
3
  [
4
4
  "GAMMA_ML",
disdrodb/issue/checks.py CHANGED
@@ -173,7 +173,7 @@ def check_time_periods(time_periods):
173
173
 
174
174
  def _get_issue_timesteps(issue_dict):
175
175
  """Get timesteps from issue dictionary."""
176
- timesteps = issue_dict.get("timesteps", None)
176
+ timesteps = issue_dict.get("timesteps")
177
177
  # Check validity
178
178
  timesteps = check_timesteps(timesteps)
179
179
  # Sort
@@ -183,7 +183,7 @@ def _get_issue_timesteps(issue_dict):
183
183
 
184
184
  def _get_issue_time_periods(issue_dict):
185
185
  """Get time_periods from issue dictionary."""
186
- time_periods = issue_dict.get("time_periods", None)
186
+ time_periods = issue_dict.get("time_periods")
187
187
  time_periods = check_time_periods(time_periods)
188
188
  return time_periods
189
189
 
@@ -251,7 +251,7 @@ class RawDataFormatSchema(BaseModel):
251
251
  n_decimals: Optional[int]
252
252
  n_naturals: Optional[int]
253
253
  data_range: Optional[list[float]]
254
- nan_flags: Optional[Union[int, str]] = None
254
+ nan_flags: Optional[Union[int, float, str]] = None
255
255
  valid_values: Optional[list[float]] = None
256
256
  dimension_order: Optional[list[str]] = None
257
257
  n_values: Optional[int] = None
@@ -1,4 +1,3 @@
1
- device_address: "float32" # 'uint8'
2
1
  weather_code_synop_4677_5min: "float32" # 'uint8'
3
2
  weather_code_synop_4680_5min: "float32" # 'uint8'
4
3
  weather_code_metar_4678_5min: "str"
@@ -1,7 +1,3 @@
1
- device_address:
2
- description: "Device address (factory setting \u201E00\") (NN)"
3
- long_name: Device address
4
- units: ""
5
1
  weather_code_synop_4677_5min:
6
2
  description: 5M SYNOP Tab.4677 (5 minutes mean value) (NN)
7
3
  long_name: 5 min SYNOP Tab.4677
@@ -7,15 +7,15 @@
7
7
  # contiguous: false
8
8
  # chunksizes: 5000
9
9
  # _FillValue: 255
10
- device_address:
11
- dtype: uint8
12
- zlib: true
13
- complevel: 3
14
- shuffle: true
15
- fletcher32: false
16
- contiguous: false
17
- chunksizes: 5000
18
- _FillValue: 255
10
+ # device_address:
11
+ # dtype: uint8
12
+ # zlib: true
13
+ # complevel: 3
14
+ # shuffle: true
15
+ # fletcher32: false
16
+ # contiguous: false
17
+ # chunksizes: 5000
18
+ # _FillValue: 255
19
19
  # sensor_serial_number:
20
20
  # dtype: uint16
21
21
  # zlib: false
@@ -73,7 +73,7 @@ weather_code_synop_4680_5min:
73
73
  - -1
74
74
  - 89
75
75
  nan_flags: -1
76
- field_number: 08
76
+ field_number: "08"
77
77
  weather_code_metar_4678_5min:
78
78
  n_digits: 0
79
79
  n_characters: 5
@@ -81,7 +81,7 @@ weather_code_metar_4678_5min:
81
81
  n_naturals: 0
82
82
  data_range: null
83
83
  nan_flags: null
84
- field_number: 09
84
+ field_number: "09"
85
85
  precipitation_rate_5min:
86
86
  n_digits: 6
87
87
  n_characters: 7
@@ -90,7 +90,7 @@ precipitation_rate_5min:
90
90
  data_range:
91
91
  - 0.0
92
92
  - 999.999
93
- nan_flags: null
93
+ nan_flags: 999.999
94
94
  field_number: "10"
95
95
  weather_code_synop_4677:
96
96
  n_digits: 0
@@ -128,7 +128,7 @@ precipitation_rate:
128
128
  data_range:
129
129
  - 0.0
130
130
  - 999.999
131
- nan_flags: null
131
+ nan_flags: 999.999
132
132
  field_number: "14"
133
133
  rainfall_rate:
134
134
  n_digits: 6
@@ -138,7 +138,7 @@ rainfall_rate:
138
138
  data_range:
139
139
  - 0.0
140
140
  - 999.999
141
- nan_flags: null
141
+ nan_flags: 999.999
142
142
  field_number: "15"
143
143
  snowfall_rate:
144
144
  n_digits: 6
@@ -148,7 +148,7 @@ snowfall_rate:
148
148
  data_range:
149
149
  - 0.0
150
150
  - 999.999
151
- nan_flags: null
151
+ nan_flags: 999.999
152
152
  field_number: "16"
153
153
  precipitation_accumulated:
154
154
  n_digits: 6
@@ -158,7 +158,7 @@ precipitation_accumulated:
158
158
  data_range:
159
159
  - 0.0
160
160
  - 9999.99
161
- nan_flags: null
161
+ nan_flags: 9999.99
162
162
  field_number: "17"
163
163
  mor_visibility:
164
164
  n_digits: 5
@@ -178,7 +178,7 @@ reflectivity:
178
178
  data_range:
179
179
  - -9.9
180
180
  - 99.9
181
- nan_flags: null
181
+ nan_flags: 99.9
182
182
  field_number: "19"
183
183
  quality_index:
184
184
  n_digits: 3
@@ -410,7 +410,7 @@ temperature_interior:
410
410
  data_range:
411
411
  - -30
412
412
  - 999
413
- nan_flags: null
413
+ nan_flags: 999
414
414
  field_number: "38"
415
415
  laser_temperature:
416
416
  n_digits: 2
@@ -430,7 +430,7 @@ laser_current_average:
430
430
  data_range:
431
431
  - 0
432
432
  - 9999
433
- nan_flags: null
433
+ nan_flags: 9999
434
434
  field_number: "40"
435
435
  control_voltage:
436
436
  n_digits: 4
@@ -448,7 +448,7 @@ optical_control_voltage_output:
448
448
  data_range:
449
449
  - 0
450
450
  - 9999
451
- nan_flags: null
451
+ nan_flags: 9999
452
452
  field_number: "42"
453
453
  sensor_voltage_supply:
454
454
  n_digits: 3
@@ -0,0 +1,103 @@
1
+ center:
2
+ 0: 0.1875
3
+ 1: 0.3125
4
+ 2: 0.4375
5
+ 3: 0.625
6
+ 4: 0.875
7
+ 5: 1.125
8
+ 6: 1.375
9
+ 7: 1.625
10
+ 8: 1.875
11
+ 9: 2.25
12
+ 10: 2.75
13
+ 11: 3.25
14
+ 12: 3.75
15
+ 13: 4.25
16
+ 14: 4.75
17
+ 15: 5.25
18
+ 16: 5.75
19
+ 17: 6.25
20
+ 18: 6.75
21
+ 19: 7.25
22
+ bounds:
23
+ 0:
24
+ - 0.125
25
+ - 0.25
26
+ 1:
27
+ - 0.25
28
+ - 0.375
29
+ 2:
30
+ - 0.375
31
+ - 0.5
32
+ 3:
33
+ - 0.5
34
+ - 0.75
35
+ 4:
36
+ - 0.75
37
+ - 1.0
38
+ 5:
39
+ - 1.0
40
+ - 1.25
41
+ 6:
42
+ - 1.25
43
+ - 1.5
44
+ 7:
45
+ - 1.5
46
+ - 1.75
47
+ 8:
48
+ - 1.75
49
+ - 2.0
50
+ 9:
51
+ - 2.0
52
+ - 2.5
53
+ 10:
54
+ - 2.5
55
+ - 3.0
56
+ 11:
57
+ - 3.0
58
+ - 3.5
59
+ 12:
60
+ - 3.5
61
+ - 4.0
62
+ 13:
63
+ - 4.0
64
+ - 4.5
65
+ 14:
66
+ - 4.5
67
+ - 5.0
68
+ 15:
69
+ - 5.0
70
+ - 5.5
71
+ 16:
72
+ - 5.5
73
+ - 6.0
74
+ 17:
75
+ - 6.0
76
+ - 6.5
77
+ 18:
78
+ - 6.5
79
+ - 7.0
80
+ 19:
81
+ - 7.0
82
+ - 7.5
83
+ width:
84
+ 0: 0.125
85
+ 1: 0.125
86
+ 2: 0.125
87
+ 3: 0.25
88
+ 4: 0.25
89
+ 5: 0.25
90
+ 6: 0.25
91
+ 7: 0.25
92
+ 8: 0.25
93
+ 9: 0.5
94
+ 10: 0.5
95
+ 11: 0.5
96
+ 12: 0.5
97
+ 13: 0.5
98
+ 14: 0.5
99
+ 15: 0.5
100
+ 16: 0.5
101
+ 17: 0.5
102
+ 18: 0.5
103
+ 19: 0.5
@@ -0,0 +1,103 @@
1
+ center:
2
+ 0: 0.1
3
+ 1: 0.3
4
+ 2: 0.5
5
+ 3: 0.7
6
+ 4: 0.9
7
+ 5: 1.2
8
+ 6: 1.6
9
+ 7: 2.0
10
+ 8: 2.4
11
+ 9: 2.8
12
+ 10: 3.2
13
+ 11: 3.8
14
+ 12: 4.6
15
+ 13: 5.4
16
+ 14: 6.2
17
+ 15: 7.0
18
+ 16: 7.8
19
+ 17: 8.6
20
+ 18: 9.5
21
+ 19: 15.0
22
+ bounds:
23
+ 0:
24
+ - 0.0
25
+ - 0.2
26
+ 1:
27
+ - 0.2
28
+ - 0.4
29
+ 2:
30
+ - 0.4
31
+ - 0.6
32
+ 3:
33
+ - 0.6
34
+ - 0.8
35
+ 4:
36
+ - 0.8
37
+ - 1.0
38
+ 5:
39
+ - 1.0
40
+ - 1.4
41
+ 6:
42
+ - 1.4
43
+ - 1.8
44
+ 7:
45
+ - 1.8
46
+ - 2.2
47
+ 8:
48
+ - 2.2
49
+ - 2.6
50
+ 9:
51
+ - 2.6
52
+ - 3.0
53
+ 10:
54
+ - 3.0
55
+ - 3.4
56
+ 11:
57
+ - 3.4
58
+ - 4.2
59
+ 12:
60
+ - 4.2
61
+ - 5.0
62
+ 13:
63
+ - 5.0
64
+ - 5.8
65
+ 14:
66
+ - 5.8
67
+ - 6.6
68
+ 15:
69
+ - 6.6
70
+ - 7.4
71
+ 16:
72
+ - 7.4
73
+ - 8.2
74
+ 17:
75
+ - 8.2
76
+ - 9.0
77
+ 18:
78
+ - 9.0
79
+ - 10.0
80
+ 19:
81
+ - 10.0
82
+ - 20.0
83
+ width:
84
+ 0: 0.2
85
+ 1: 0.2
86
+ 2: 0.2
87
+ 3: 0.2
88
+ 4: 0.2
89
+ 5: 0.4
90
+ 6: 0.4
91
+ 7: 0.4
92
+ 8: 0.4
93
+ 9: 0.4
94
+ 10: 0.4
95
+ 11: 0.8
96
+ 12: 0.8
97
+ 13: 0.8
98
+ 14: 0.8
99
+ 15: 0.8
100
+ 16: 0.8
101
+ 17: 0.8
102
+ 18: 1.0
103
+ 19: 10.0
@@ -0,0 +1,45 @@
1
+ weather_code_synop_4680_5min: "float32" # 'uint8'
2
+ weather_code_metar_4678_5min: "str"
3
+ precipitation_rate_5min: "float32"
4
+ weather_code_synop_4680: "float32" # 'uint8'
5
+ weather_code_metar_4678: "str"
6
+ precipitation_rate: "float32"
7
+ precipitation_accumulated: "float32"
8
+ temperature_interior: "float32" # 'uint16'
9
+ laser_temperature: "float32" # 'uint16'
10
+ laser_current_average: "float32" # 'uint16'
11
+ control_voltage: "float32"
12
+ optical_control_voltage_output: "float32"
13
+ number_particles: "float32" # 'uint16'
14
+ number_particles_internal_data: "float32"
15
+ number_particles_min_speed: "float32" # 'uint16'
16
+ number_particles_min_speed_internal_data: "float32"
17
+ number_particles_max_speed: "float32" # 'uint16'
18
+ number_particles_max_speed_internal_data: "float32"
19
+ number_particles_min_diameter: "float32" # 'uint16'
20
+ number_particles_min_diameter_internal_data: "float32"
21
+ number_particles_no_hydrometeor: "float32" # 'uint16'
22
+ number_particles_no_hydrometeor_internal_data: "float32"
23
+ number_particles_unknown_classification: "float32" # 'uint16'
24
+ total_gross_volume_unknown_classification: "float32"
25
+ number_particles_hail: "float32" # 'uint16'
26
+ total_gross_volume_hail: "float32"
27
+ number_particles_solid_precipitation: "float32" # 'uint16'
28
+ total_gross_volume_solid_precipitation: "float32"
29
+ number_particles_great_pellet: "float32" # 'uint16'
30
+ total_gross_volume_great_pellet: "float32"
31
+ number_particles_small_pellet: "float32" # 'uint16'
32
+ total_gross_volume_small_pellet: "float32"
33
+ number_particles_snowgrain: "float32" # 'uint16'
34
+ total_gross_volume_snowgrain: "float32"
35
+ number_particles_rain: "float32" # 'uint16'
36
+ total_gross_volume_rain: "float32"
37
+ number_particles_small_rain: "float32" # 'uint16'
38
+ total_gross_volume_small_rain: "float32"
39
+ number_particles_drizzle: "float32" # 'uint16'
40
+ total_gross_volume_drizzle: "float32"
41
+ raw_drop_number: "str"
42
+ air_temperature: "float32"
43
+ relative_humidity: "float32"
44
+ wind_speed: "float32"
45
+ wind_direction: "float32"
@@ -0,0 +1,180 @@
1
+ weather_code_synop_4680_5min:
2
+ description: 5M SYNOP Tab.4680 (5 minutes mean value) (NN)
3
+ long_name: 5 min SYNOP Tab.4680
4
+ units: ""
5
+ weather_code_metar_4678_5min:
6
+ description: 5M METAR Tab.4678 (5 minutes mean value) (AAAAA)
7
+ long_name: 5 min METAR Tab.4678
8
+ units: ""
9
+ precipitation_rate_5min:
10
+ description: "5M Intensit\xE4t [mm/h] (5 minutes mean value) (NNN.NNN)"
11
+ long_name: 5 min precipitation rate
12
+ units: mm/h
13
+ weather_code_synop_4680:
14
+ description: 1M SYNOP Tab.4680 (1 minute value) (NN)
15
+ long_name: SYNOP Tab.4680
16
+ units: ""
17
+ weather_code_metar_4678:
18
+ description: 1M METAR Tab.4678 (1 minute value) (AAAAA)
19
+ long_name: METAR Tab.4678
20
+ units: ""
21
+ precipitation_rate:
22
+ description: 1M Intensity [mm/h] total precipitation (1 minute value) (NNN.NNN)
23
+ long_name: Total precipitation intensity
24
+ units: mm/h
25
+ precipitation_accumulated:
26
+ description: "Precipitation amount [mm] (Reset with command \u201ERA\") (NNNN.NN)"
27
+ long_name: Precipitation amount
28
+ units: mm
29
+ temperature_interior:
30
+ description: "Interior temperature [C] (NNN)"
31
+ long_name: Interior temperature
32
+ units: "degC"
33
+ laser_temperature:
34
+ description: "Temperature of laser driver 0-80C (NN)"
35
+ long_name: Temperature of laser driver
36
+ units: "degC"
37
+ laser_current_average:
38
+ description: Mean value laser current [1/100 mA] (NNNN)
39
+ long_name: Mean value laser current
40
+ units: mA
41
+ control_voltage:
42
+ description: "Control voltage [mV] (reference value: 4010\xB15) (NNNN)"
43
+ long_name: Control voltage
44
+ units: mV
45
+ optical_control_voltage_output:
46
+ description: "Optical control output [mV] (2300 \u2026 6500) (NNNN)"
47
+ long_name: Optical control output
48
+ units: mV
49
+ number_particles:
50
+ description: Number of all measured particles (NNNNN)
51
+ long_name: Number of all measured particles
52
+ units: ""
53
+ number_particles_internal_data:
54
+ description: "\u201E00000.000\" (internal data)"
55
+ long_name: Number of all measured particles internal data
56
+ units: ""
57
+ number_particles_min_speed:
58
+ description: Number of particles < minimal speed (0.15m/s) (NNNNN)
59
+ long_name: Number of particles < minimal speed (0.15m/s)
60
+ units: ""
61
+ number_particles_min_speed_internal_data:
62
+ description: "\u201E00000.000\" (internal data)"
63
+ long_name: Number of particles < minimal speed (0.15m/s) internal data
64
+ units: ""
65
+ number_particles_max_speed:
66
+ description: Number of particles > maximal speed (20m/s) (NNNNN)
67
+ long_name: Number of particles > maximal speed (20m/s)
68
+ units: ""
69
+ number_particles_max_speed_internal_data:
70
+ description: "\u201E00000.000\" (internal data)"
71
+ long_name: Number of particles > maximal speed (20m/s) internal data
72
+ units: ""
73
+ number_particles_min_diameter:
74
+ description: Number of particles < minimal diameter (0.15mm) (NNNNN)
75
+ long_name: Number of particles < minimal diameter (0.15mm)
76
+ units: ""
77
+ number_particles_min_diameter_internal_data:
78
+ description: "\u201E00000.000\" (internal data)"
79
+ long_name: Number of particles < minimal diameter (0.15mm) internal data
80
+ units: ""
81
+ number_particles_no_hydrometeor:
82
+ description: Number of particles no hydrometeor
83
+ long_name: Number of particles no hydrometeor
84
+ units: ""
85
+ number_particles_no_hydrometeor_internal_data:
86
+ description: Total volume (gross) of this class
87
+ long_name: Total volume of this class
88
+ units: ""
89
+ number_particles_unknown_classification:
90
+ description: Number of particles classified as unknown
91
+ long_name: Number of particles classified as unknown
92
+ units: ""
93
+ total_gross_volume_unknown_classification:
94
+ description: Total (gross) volume of particles classified as unknown
95
+ long_name: Total (gross) volume of particles classified as unknown
96
+ units: ""
97
+ number_particles_hail:
98
+ description: Number of particles classified as hail
99
+ long_name: Number of particles classified as hail
100
+ units: ""
101
+ total_gross_volume_hail:
102
+ description: Total (gross) volume of particles classified as hail
103
+ long_name: Total (gross) volume of particles classified as hail
104
+ units: ""
105
+ number_particles_solid_precipitation:
106
+ description: Number of particles classified as solid precipitation
107
+ long_name: Number of particles classified as solid precipitation
108
+ units: ""
109
+ total_gross_volume_solid_precipitation:
110
+ description: Total (gross) volume of particles classified as solid precipitation
111
+ long_name: Total (gross) volume of particles classified as solid precipitation
112
+ units: ""
113
+ number_particles_great_pellet:
114
+ description: Number of particles classified as great pellet
115
+ long_name: Number of particles classified as great pellet
116
+ units: ""
117
+ total_gross_volume_great_pellet:
118
+ description: Total (gross) volume of particles classified as great pellet
119
+ long_name: Total (gross) volume of particles classified as great pellet
120
+ units: ""
121
+ number_particles_small_pellet:
122
+ description: Number of particles classified as small pellet
123
+ long_name: Number of particles classified as small pellet
124
+ units: ""
125
+ total_gross_volume_small_pellet:
126
+ description: Total (gross) volume of particles classified as small pellet
127
+ long_name: Total (gross) volume of particles classified as small pellet
128
+ units: ""
129
+ number_particles_snowgrain:
130
+ description: Number of particles classified as snowgrain
131
+ long_name: Number of particles classified as snowgrain
132
+ units: ""
133
+ total_gross_volume_snowgrain:
134
+ description: Total (gross) volume of particles classified as snowgrain
135
+ long_name: Total (gross) volume of particles classified as snowgrain
136
+ units: ""
137
+ number_particles_rain:
138
+ description: Number of particles classified as rain
139
+ long_name: Number of particles classified as rain
140
+ units: ""
141
+ total_gross_volume_rain:
142
+ description: Total (gross) volume of particles classified as rain
143
+ long_name: Total (gross) volume of particles classified as rain
144
+ units: ""
145
+ number_particles_small_rain:
146
+ description: Number of particles classified as small rain
147
+ long_name: Number of particles classified as small rain
148
+ units: ""
149
+ total_gross_volume_small_rain:
150
+ description: Total (gross) volume of particles classified as small rain
151
+ long_name: Total (gross) volume of particles classified as small rain
152
+ units: ""
153
+ number_particles_drizzle:
154
+ description: Number of particles classified as drizzle
155
+ long_name: Number of particles classified as drizzle
156
+ units: ""
157
+ total_gross_volume_drizzle:
158
+ description: Total (gross) volume of particles classified as drizzle
159
+ long_name: Total (gross) volume of particles classified as drizzle
160
+ units: ""
161
+ raw_drop_number:
162
+ description: Precipitation spectrum
163
+ long_name: Precipitation spectrum
164
+ units: ""
165
+ air_temperature:
166
+ description: "Air temperature in degrees Celsius (C)"
167
+ long_name: Air temperature
168
+ units: "degC"
169
+ relative_humidity:
170
+ description: "Relative humidity in percent (%)"
171
+ long_name: Relative humidity
172
+ units: "%"
173
+ wind_speed:
174
+ description: "Wind speed in m/s"
175
+ long_name: Wind speed
176
+ units: "m/s"
177
+ wind_direction:
178
+ description: "Wind direction in degrees (0-360)"
179
+ long_name: Wind direction
180
+ units: "degrees"