disdrodb 0.0.20__py3-none-any.whl → 0.1.0__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 +132 -15
- disdrodb/_config.py +4 -2
- disdrodb/_version.py +9 -4
- disdrodb/api/checks.py +264 -237
- disdrodb/api/configs.py +4 -8
- disdrodb/api/create_directories.py +235 -290
- disdrodb/api/info.py +217 -26
- disdrodb/api/io.py +295 -269
- disdrodb/api/path.py +597 -173
- disdrodb/api/search.py +486 -0
- disdrodb/{metadata/scripts → cli}/disdrodb_check_metadata_archive.py +12 -7
- disdrodb/{utils/pandas.py → cli/disdrodb_data_archive_directory.py} +9 -18
- disdrodb/cli/disdrodb_download_archive.py +86 -0
- disdrodb/cli/disdrodb_download_metadata_archive.py +53 -0
- disdrodb/cli/disdrodb_download_station.py +84 -0
- disdrodb/{api/scripts → cli}/disdrodb_initialize_station.py +22 -10
- disdrodb/cli/disdrodb_metadata_archive_directory.py +32 -0
- disdrodb/{data_transfer/scripts/disdrodb_download_station.py → cli/disdrodb_open_data_archive.py} +22 -22
- disdrodb/cli/disdrodb_open_logs_directory.py +69 -0
- disdrodb/{data_transfer/scripts/disdrodb_upload_station.py → cli/disdrodb_open_metadata_archive.py} +22 -24
- disdrodb/cli/disdrodb_open_metadata_directory.py +71 -0
- disdrodb/cli/disdrodb_open_product_directory.py +74 -0
- disdrodb/cli/disdrodb_open_readers_directory.py +32 -0
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0.py +38 -31
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0_station.py +32 -30
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0a.py +30 -21
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0a_station.py +24 -33
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0b.py +30 -21
- disdrodb/{l0/scripts → cli}/disdrodb_run_l0b_station.py +25 -34
- disdrodb/cli/disdrodb_run_l0c.py +130 -0
- disdrodb/cli/disdrodb_run_l0c_station.py +129 -0
- disdrodb/cli/disdrodb_run_l1.py +122 -0
- disdrodb/cli/disdrodb_run_l1_station.py +121 -0
- disdrodb/cli/disdrodb_run_l2e.py +122 -0
- disdrodb/cli/disdrodb_run_l2e_station.py +122 -0
- disdrodb/cli/disdrodb_run_l2m.py +122 -0
- disdrodb/cli/disdrodb_run_l2m_station.py +122 -0
- disdrodb/cli/disdrodb_upload_archive.py +105 -0
- disdrodb/cli/disdrodb_upload_station.py +98 -0
- disdrodb/configs.py +90 -25
- disdrodb/data_transfer/__init__.py +22 -0
- disdrodb/data_transfer/download_data.py +87 -90
- disdrodb/data_transfer/upload_data.py +64 -37
- disdrodb/data_transfer/zenodo.py +15 -18
- disdrodb/docs.py +1 -1
- disdrodb/issue/__init__.py +17 -4
- disdrodb/issue/checks.py +10 -23
- disdrodb/issue/reader.py +9 -12
- disdrodb/issue/writer.py +14 -17
- disdrodb/l0/__init__.py +17 -26
- disdrodb/l0/check_configs.py +35 -23
- disdrodb/l0/check_standards.py +32 -42
- disdrodb/l0/configs/{Thies_LPM → LPM}/bins_diameter.yml +44 -44
- disdrodb/l0/configs/{Thies_LPM → LPM}/bins_velocity.yml +40 -40
- disdrodb/l0/configs/LPM/l0a_encodings.yml +80 -0
- disdrodb/l0/configs/{Thies_LPM → LPM}/l0b_cf_attrs.yml +62 -59
- disdrodb/l0/configs/{Thies_LPM → LPM}/l0b_encodings.yml +9 -9
- disdrodb/l0/configs/{Thies_LPM → LPM}/raw_data_format.yml +245 -245
- disdrodb/l0/configs/{OTT_Parsivel → PARSIVEL}/bins_diameter.yml +66 -66
- disdrodb/l0/configs/{OTT_Parsivel → PARSIVEL}/bins_velocity.yml +64 -64
- disdrodb/l0/configs/PARSIVEL/l0a_encodings.yml +32 -0
- disdrodb/l0/configs/{OTT_Parsivel → PARSIVEL}/l0b_cf_attrs.yml +22 -20
- disdrodb/l0/configs/{OTT_Parsivel → PARSIVEL}/l0b_encodings.yml +17 -17
- disdrodb/l0/configs/{OTT_Parsivel → PARSIVEL}/raw_data_format.yml +77 -77
- disdrodb/l0/configs/{OTT_Parsivel2 → PARSIVEL2}/bins_diameter.yml +64 -64
- disdrodb/l0/configs/{OTT_Parsivel2 → PARSIVEL2}/bins_velocity.yml +64 -64
- disdrodb/l0/configs/PARSIVEL2/l0a_encodings.yml +39 -0
- disdrodb/l0/configs/{OTT_Parsivel2 → PARSIVEL2}/l0b_cf_attrs.yml +24 -22
- disdrodb/l0/configs/{OTT_Parsivel2 → PARSIVEL2}/l0b_encodings.yml +20 -20
- disdrodb/l0/configs/{OTT_Parsivel2 → PARSIVEL2}/raw_data_format.yml +98 -98
- disdrodb/l0/configs/{RD_80 → RD80}/bins_diameter.yml +40 -40
- disdrodb/l0/configs/RD80/l0a_encodings.yml +16 -0
- disdrodb/l0/configs/{RD_80 → RD80}/l0b_cf_attrs.yml +3 -3
- disdrodb/l0/configs/RD80/l0b_encodings.yml +135 -0
- disdrodb/l0/configs/{RD_80 → RD80}/raw_data_format.yml +48 -48
- disdrodb/l0/l0_reader.py +216 -340
- disdrodb/l0/l0a_processing.py +237 -208
- disdrodb/l0/l0b_nc_processing.py +227 -80
- disdrodb/l0/l0b_processing.py +93 -173
- disdrodb/l0/l0c_processing.py +627 -0
- disdrodb/l0/readers/{ARM → LPM/ARM}/ARM_LPM.py +36 -58
- disdrodb/l0/readers/LPM/AUSTRALIA/MELBOURNE_2007_LPM.py +226 -0
- disdrodb/l0/readers/LPM/BRAZIL/CHUVA_LPM.py +185 -0
- disdrodb/l0/readers/LPM/BRAZIL/GOAMAZON_LPM.py +183 -0
- disdrodb/l0/readers/LPM/ITALY/GID_LPM.py +179 -0
- disdrodb/l0/readers/{UK → LPM/UK}/DIVEN.py +14 -35
- disdrodb/l0/readers/PARSIVEL/AUSTRALIA/MELBOURNE_2007_PARSIVEL.py +157 -0
- disdrodb/l0/readers/PARSIVEL/CHINA/CHONGQING.py +113 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/ARCTIC_2021.py +40 -57
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/COMMON_2011.py +37 -54
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/DAVOS_2009_2011.py +34 -51
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/EPFL_2009.py +34 -51
- disdrodb/l0/readers/{EPFL/PARADISO_2014.py → PARSIVEL/EPFL/EPFL_ROOF_2008.py} +38 -50
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_ROOF_2010.py +105 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/EPFL_ROOF_2011.py +34 -51
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/EPFL_ROOF_2012.py +33 -51
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/GENEPI_2007.py +25 -44
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/GRAND_ST_BERNARD_2007.py +25 -44
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/GRAND_ST_BERNARD_2007_2.py +25 -44
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/HPICONET_2010.py +34 -51
- disdrodb/l0/readers/{EPFL/EPFL_ROOF_2010.py → PARSIVEL/EPFL/HYMEX_LTE_SOP2.py} +37 -50
- disdrodb/l0/readers/PARSIVEL/EPFL/HYMEX_LTE_SOP3.py +111 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/HYMEX_LTE_SOP4.py +36 -54
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/LOCARNO_2018.py +34 -52
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/LOCARNO_2019.py +38 -56
- disdrodb/l0/readers/PARSIVEL/EPFL/PARADISO_2014.py +105 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/PARSIVEL_2007.py +27 -45
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/PLATO_2019.py +24 -44
- disdrodb/l0/readers/PARSIVEL/EPFL/RACLETS_2019.py +140 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/RACLETS_2019_WJF.py +41 -59
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/RIETHOLZBACH_2011.py +34 -51
- disdrodb/l0/readers/PARSIVEL/EPFL/SAMOYLOV_2017.py +117 -0
- disdrodb/l0/readers/PARSIVEL/EPFL/SAMOYLOV_2019.py +137 -0
- disdrodb/l0/readers/{EPFL → PARSIVEL/EPFL}/UNIL_2022.py +42 -55
- disdrodb/l0/readers/PARSIVEL/GPM/IFLOODS.py +104 -0
- disdrodb/l0/readers/{GPM → PARSIVEL/GPM}/LPVEX.py +29 -48
- disdrodb/l0/readers/PARSIVEL/GPM/MC3E.py +184 -0
- disdrodb/l0/readers/PARSIVEL/NCAR/CCOPE_2015.py +113 -0
- disdrodb/l0/readers/{NCAR/VORTEX_SE_2016_P1.py → PARSIVEL/NCAR/OWLES_MIPS.py} +46 -72
- disdrodb/l0/readers/PARSIVEL/NCAR/PECAN_MOBILE.py +125 -0
- disdrodb/l0/readers/{NCAR/OWLES_MIPS.py → PARSIVEL/NCAR/PLOWS_MIPS.py} +45 -64
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2009.py +114 -0
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2010.py +176 -0
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2010_UF.py +183 -0
- disdrodb/l0/readers/{ARM/ARM_LD.py → PARSIVEL2/ARM/ARM_PARSIVEL2.py} +27 -50
- disdrodb/l0/readers/PARSIVEL2/BRAZIL/CHUVA_PARSIVEL2.py +163 -0
- disdrodb/l0/readers/PARSIVEL2/BRAZIL/GOAMAZON_PARSIVEL2.py +163 -0
- disdrodb/l0/readers/{DENMARK → PARSIVEL2/DENMARK}/EROSION_nc.py +14 -35
- disdrodb/l0/readers/PARSIVEL2/FRANCE/SIRTA_PARSIVEL2.py +119 -0
- disdrodb/l0/readers/PARSIVEL2/GPM/GCPEX.py +104 -0
- disdrodb/l0/readers/PARSIVEL2/GPM/NSSTC.py +176 -0
- disdrodb/l0/readers/PARSIVEL2/ITALY/GID_PARSIVEL2.py +32 -0
- disdrodb/l0/readers/PARSIVEL2/MEXICO/OH_IIUNAM_nc.py +56 -0
- disdrodb/l0/readers/PARSIVEL2/NCAR/PECAN_FP3.py +120 -0
- disdrodb/l0/readers/{NCAR → PARSIVEL2/NCAR}/PECAN_MIPS.py +45 -64
- disdrodb/l0/readers/PARSIVEL2/NCAR/RELAMPAGO_PARSIVEL2.py +181 -0
- disdrodb/l0/readers/PARSIVEL2/NCAR/SNOWIE_PJ.py +160 -0
- disdrodb/l0/readers/PARSIVEL2/NCAR/SNOWIE_SB.py +160 -0
- disdrodb/l0/readers/{NCAR/PLOWS_MIPS.py → PARSIVEL2/NCAR/VORTEX_SE_2016_P1.py} +49 -66
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_P2.py +118 -0
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_PIPS.py +152 -0
- disdrodb/l0/readers/PARSIVEL2/NETHERLANDS/DELFT.py +166 -0
- disdrodb/l0/readers/{NCAR/RELAMPAGO_RD80.py → RD80/BRAZIL/CHUVA_RD80.py} +36 -60
- disdrodb/l0/readers/{BRAZIL → RD80/BRAZIL}/GOAMAZON_RD80.py +36 -55
- disdrodb/l0/readers/{NCAR → RD80/NCAR}/CINDY_2011_RD80.py +35 -54
- disdrodb/l0/readers/{BRAZIL/CHUVA_RD80.py → RD80/NCAR/RELAMPAGO_RD80.py} +40 -54
- disdrodb/l0/readers/template_reader_raw_netcdf_data.py +62 -0
- disdrodb/l0/readers/{reader_template.py → template_reader_raw_text_data.py} +20 -44
- disdrodb/l0/routines.py +885 -581
- disdrodb/l0/standards.py +72 -236
- disdrodb/l0/template_tools.py +104 -109
- disdrodb/l1/__init__.py +17 -0
- disdrodb/l1/beard_model.py +716 -0
- disdrodb/l1/encoding_attrs.py +620 -0
- disdrodb/l1/fall_velocity.py +260 -0
- disdrodb/l1/filters.py +192 -0
- disdrodb/l1/processing.py +200 -0
- disdrodb/l1/resampling.py +236 -0
- disdrodb/l1/routines.py +357 -0
- disdrodb/l1_env/__init__.py +17 -0
- disdrodb/l1_env/routines.py +38 -0
- disdrodb/l2/__init__.py +17 -0
- disdrodb/l2/empirical_dsd.py +1735 -0
- disdrodb/l2/event.py +388 -0
- disdrodb/l2/processing.py +519 -0
- disdrodb/l2/processing_options.py +213 -0
- disdrodb/l2/routines.py +868 -0
- disdrodb/metadata/__init__.py +9 -2
- disdrodb/metadata/checks.py +165 -118
- disdrodb/metadata/download.py +81 -0
- disdrodb/metadata/geolocation.py +146 -0
- disdrodb/metadata/info.py +20 -13
- disdrodb/metadata/manipulation.py +1 -1
- disdrodb/metadata/reader.py +59 -8
- disdrodb/metadata/search.py +77 -144
- disdrodb/metadata/standards.py +7 -8
- disdrodb/metadata/writer.py +8 -14
- disdrodb/psd/__init__.py +38 -0
- disdrodb/psd/fitting.py +2146 -0
- disdrodb/psd/models.py +774 -0
- disdrodb/routines.py +1176 -0
- disdrodb/scattering/__init__.py +28 -0
- disdrodb/scattering/axis_ratio.py +344 -0
- disdrodb/scattering/routines.py +456 -0
- disdrodb/utils/__init__.py +17 -0
- disdrodb/utils/attrs.py +208 -0
- disdrodb/utils/cli.py +269 -0
- disdrodb/utils/compression.py +60 -42
- disdrodb/utils/dask.py +62 -0
- disdrodb/utils/decorators.py +110 -0
- disdrodb/utils/directories.py +107 -46
- disdrodb/utils/encoding.py +127 -0
- disdrodb/utils/list.py +29 -0
- disdrodb/utils/logger.py +168 -46
- disdrodb/utils/time.py +657 -0
- disdrodb/utils/warnings.py +30 -0
- disdrodb/utils/writer.py +57 -0
- disdrodb/utils/xarray.py +138 -47
- disdrodb/utils/yaml.py +0 -1
- disdrodb/viz/__init__.py +17 -0
- disdrodb/viz/plots.py +17 -0
- disdrodb-0.1.0.dist-info/METADATA +321 -0
- disdrodb-0.1.0.dist-info/RECORD +216 -0
- {disdrodb-0.0.20.dist-info → disdrodb-0.1.0.dist-info}/WHEEL +1 -1
- disdrodb-0.1.0.dist-info/entry_points.txt +30 -0
- disdrodb/data_transfer/scripts/disdrodb_download_archive.py +0 -53
- disdrodb/data_transfer/scripts/disdrodb_upload_archive.py +0 -57
- disdrodb/l0/configs/OTT_Parsivel/l0a_encodings.yml +0 -32
- disdrodb/l0/configs/OTT_Parsivel2/l0a_encodings.yml +0 -39
- disdrodb/l0/configs/RD_80/l0a_encodings.yml +0 -16
- disdrodb/l0/configs/RD_80/l0b_encodings.yml +0 -135
- disdrodb/l0/configs/Thies_LPM/l0a_encodings.yml +0 -80
- disdrodb/l0/io.py +0 -257
- disdrodb/l0/l0_processing.py +0 -1091
- disdrodb/l0/readers/AUSTRALIA/MELBOURNE_2007_OTT.py +0 -178
- disdrodb/l0/readers/AUSTRALIA/MELBOURNE_2007_THIES.py +0 -247
- disdrodb/l0/readers/BRAZIL/CHUVA_LPM.py +0 -204
- disdrodb/l0/readers/BRAZIL/CHUVA_OTT.py +0 -183
- disdrodb/l0/readers/BRAZIL/GOAMAZON_LPM.py +0 -204
- disdrodb/l0/readers/BRAZIL/GOAMAZON_OTT.py +0 -183
- disdrodb/l0/readers/CHINA/CHONGQING.py +0 -131
- disdrodb/l0/readers/EPFL/EPFL_ROOF_2008.py +0 -128
- disdrodb/l0/readers/EPFL/HYMEX_LTE_SOP2.py +0 -127
- disdrodb/l0/readers/EPFL/HYMEX_LTE_SOP3.py +0 -129
- disdrodb/l0/readers/EPFL/RACLETS_2019.py +0 -158
- disdrodb/l0/readers/EPFL/SAMOYLOV_2017.py +0 -136
- disdrodb/l0/readers/EPFL/SAMOYLOV_2019.py +0 -158
- disdrodb/l0/readers/FRANCE/SIRTA_OTT2.py +0 -138
- disdrodb/l0/readers/GPM/GCPEX.py +0 -123
- disdrodb/l0/readers/GPM/IFLOODS.py +0 -123
- disdrodb/l0/readers/GPM/MC3E.py +0 -123
- disdrodb/l0/readers/GPM/NSSTC.py +0 -164
- disdrodb/l0/readers/ITALY/GID.py +0 -199
- disdrodb/l0/readers/MEXICO/OH_IIUNAM_nc.py +0 -92
- disdrodb/l0/readers/NCAR/CCOPE_2015.py +0 -133
- disdrodb/l0/readers/NCAR/PECAN_FP3.py +0 -137
- disdrodb/l0/readers/NCAR/PECAN_MOBILE.py +0 -144
- disdrodb/l0/readers/NCAR/RELAMPAGO_OTT.py +0 -195
- disdrodb/l0/readers/NCAR/SNOWIE_PJ.py +0 -172
- disdrodb/l0/readers/NCAR/SNOWIE_SB.py +0 -179
- disdrodb/l0/readers/NCAR/VORTEX2_2009.py +0 -133
- disdrodb/l0/readers/NCAR/VORTEX2_2010.py +0 -188
- disdrodb/l0/readers/NCAR/VORTEX2_2010_UF.py +0 -191
- disdrodb/l0/readers/NCAR/VORTEX_SE_2016_P2.py +0 -135
- disdrodb/l0/readers/NCAR/VORTEX_SE_2016_PIPS.py +0 -170
- disdrodb/l0/readers/NETHERLANDS/DELFT.py +0 -187
- disdrodb/l0/readers/SPAIN/SBEGUERIA.py +0 -179
- disdrodb/l0/scripts/disdrodb_run_l0b_concat.py +0 -93
- disdrodb/l0/scripts/disdrodb_run_l0b_concat_station.py +0 -85
- disdrodb/utils/netcdf.py +0 -452
- disdrodb/utils/scripts.py +0 -102
- disdrodb-0.0.20.dist-info/AUTHORS.md +0 -18
- disdrodb-0.0.20.dist-info/METADATA +0 -186
- disdrodb-0.0.20.dist-info/RECORD +0 -168
- disdrodb-0.0.20.dist-info/entry_points.txt +0 -15
- /disdrodb/l0/configs/{RD_80 → RD80}/bins_velocity.yml +0 -0
- /disdrodb/l0/manuals/{Thies_LPM.pdf → LPM.pdf} +0 -0
- /disdrodb/l0/manuals/{ODM_470.pdf → ODM470.pdf} +0 -0
- /disdrodb/l0/manuals/{OTT_Parsivel.pdf → PARSIVEL.pdf} +0 -0
- /disdrodb/l0/manuals/{OTT_Parsivel2.pdf → PARSIVEL2.pdf} +0 -0
- /disdrodb/l0/manuals/{PWS_100.pdf → PWS100.pdf} +0 -0
- /disdrodb/l0/manuals/{RD_80.pdf → RD80.pdf} +0 -0
- {disdrodb-0.0.20.dist-info → disdrodb-0.1.0.dist-info/licenses}/LICENSE +0 -0
- {disdrodb-0.0.20.dist-info → disdrodb-0.1.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
device_address: "float32" # 'uint8'
|
|
2
|
+
weather_code_synop_4677_5min: "float32" # 'uint8'
|
|
3
|
+
weather_code_synop_4680_5min: "float32" # 'uint8'
|
|
4
|
+
weather_code_metar_4678_5min: "str"
|
|
5
|
+
precipitation_rate_5min: "float32"
|
|
6
|
+
weather_code_synop_4677: "float32" # 'uint8'
|
|
7
|
+
weather_code_synop_4680: "float32" # 'uint8'
|
|
8
|
+
weather_code_metar_4678: "str"
|
|
9
|
+
precipitation_rate: "float32"
|
|
10
|
+
rainfall_rate: "float32"
|
|
11
|
+
snowfall_rate: "float32"
|
|
12
|
+
precipitation_accumulated: "float32"
|
|
13
|
+
mor_visibility: "float32" # 'uint16'
|
|
14
|
+
reflectivity: "float32"
|
|
15
|
+
quality_index: "float32" # 'uint8'
|
|
16
|
+
max_hail_diameter: "float32"
|
|
17
|
+
laser_status: "float32" # 'uint8'
|
|
18
|
+
static_signal: "float32" # 'uint8'
|
|
19
|
+
laser_temperature_analog_status: "float32" # 'uint8'
|
|
20
|
+
laser_temperature_digital_status: "float32" # 'uint8'
|
|
21
|
+
laser_current_analog_status: "float32" # 'uint8'
|
|
22
|
+
laser_current_digital_status: "float32" # 'uint8'
|
|
23
|
+
sensor_voltage_supply_status: "float32" # 'uint8'
|
|
24
|
+
current_heating_pane_transmitter_head_status: "float32" # 'uint8'
|
|
25
|
+
current_heating_pane_receiver_head_status: "float32" # 'uint8'
|
|
26
|
+
temperature_sensor_status: "float32" # 'uint8'
|
|
27
|
+
current_heating_voltage_supply_status: "float32" # 'uint8'
|
|
28
|
+
current_heating_house_status: "float32" # 'uint8'
|
|
29
|
+
current_heating_heads_status: "float32" # 'uint8'
|
|
30
|
+
current_heating_carriers_status: "float32" # 'uint8'
|
|
31
|
+
control_output_laser_power_status: "float32" # 'uint8'
|
|
32
|
+
reserve_status: "float32" # 'uint8'
|
|
33
|
+
temperature_interior: "float32" # 'uint16'
|
|
34
|
+
laser_temperature: "float32" # 'uint16'
|
|
35
|
+
laser_current_average: "float32" # 'uint16'
|
|
36
|
+
control_voltage: "float32"
|
|
37
|
+
optical_control_voltage_output: "float32"
|
|
38
|
+
sensor_voltage_supply: "str"
|
|
39
|
+
current_heating_pane_transmitter_head: "str"
|
|
40
|
+
current_heating_pane_receiver_head: "str"
|
|
41
|
+
temperature_ambient: "float32"
|
|
42
|
+
current_heating_voltage_supply: "str"
|
|
43
|
+
current_heating_house: "str"
|
|
44
|
+
current_heating_heads: "str"
|
|
45
|
+
current_heating_carriers: "str"
|
|
46
|
+
number_particles: "float32" # 'uint16'
|
|
47
|
+
number_particles_internal_data: "float32"
|
|
48
|
+
number_particles_min_speed: "float32" # 'uint16'
|
|
49
|
+
number_particles_min_speed_internal_data: "float32"
|
|
50
|
+
number_particles_max_speed: "float32" # 'uint16'
|
|
51
|
+
number_particles_max_speed_internal_data: "float32"
|
|
52
|
+
number_particles_min_diameter: "float32" # 'uint16'
|
|
53
|
+
number_particles_min_diameter_internal_data: "float32"
|
|
54
|
+
number_particles_no_hydrometeor: "float32" # 'uint16'
|
|
55
|
+
number_particles_no_hydrometeor_internal_data: "float32"
|
|
56
|
+
number_particles_unknown_classification: "float32" # 'uint16'
|
|
57
|
+
number_particles_unknown_classification_internal_data: "float32"
|
|
58
|
+
number_particles_class_1: "float32" # 'uint16'
|
|
59
|
+
number_particles_class_1_internal_data: "float32"
|
|
60
|
+
number_particles_class_2: "float32" # 'uint16'
|
|
61
|
+
number_particles_class_2_internal_data: "float32"
|
|
62
|
+
number_particles_class_3: "float32" # 'uint16'
|
|
63
|
+
number_particles_class_3_internal_data: "float32"
|
|
64
|
+
number_particles_class_4: "float32" # 'uint16'
|
|
65
|
+
number_particles_class_4_internal_data: "float32"
|
|
66
|
+
number_particles_class_5: "float32" # 'uint16'
|
|
67
|
+
number_particles_class_5_internal_data: "float32"
|
|
68
|
+
number_particles_class_6: "float32" # 'uint16'
|
|
69
|
+
number_particles_class_6_internal_data: "float32"
|
|
70
|
+
number_particles_class_7: "float32" # 'uint16'
|
|
71
|
+
number_particles_class_7_internal_data: "float32"
|
|
72
|
+
number_particles_class_8: "float32" # 'uint16'
|
|
73
|
+
number_particles_class_8_internal_data: "float32"
|
|
74
|
+
number_particles_class_9: "float32" # 'uint16'
|
|
75
|
+
number_particles_class_9_internal_data: "float32"
|
|
76
|
+
raw_drop_number: "str"
|
|
77
|
+
# '521': air_temperature
|
|
78
|
+
# '522': relative_humidity
|
|
79
|
+
# '523': wind_speed
|
|
80
|
+
# '524': wind_direction
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
device_address:
|
|
2
2
|
description: "Device address (factory setting \u201E00\") (NN)"
|
|
3
3
|
long_name: Device address
|
|
4
|
-
units:
|
|
4
|
+
units: ""
|
|
5
5
|
weather_code_synop_4677_5min:
|
|
6
6
|
description: 5M SYNOP Tab.4677 (5 minutes mean value) (NN)
|
|
7
7
|
long_name: 5 min SYNOP Tab.4677
|
|
8
|
-
units:
|
|
8
|
+
units: ""
|
|
9
9
|
weather_code_synop_4680_5min:
|
|
10
10
|
description: 5M SYNOP Tab.4680 (5 minutes mean value) (NN)
|
|
11
11
|
long_name: 5 min SYNOP Tab.4680
|
|
12
|
-
units:
|
|
12
|
+
units: ""
|
|
13
13
|
weather_code_metar_4678_5min:
|
|
14
14
|
description: 5M METAR Tab.4678 (5 minutes mean value) (AAAAA)
|
|
15
15
|
long_name: 5 min METAR Tab.4678
|
|
16
|
-
units:
|
|
16
|
+
units: ""
|
|
17
17
|
precipitation_rate_5min:
|
|
18
18
|
description: "5M Intensit\xE4t [mm/h] (5 minutes mean value) (NNN.NNN)"
|
|
19
19
|
long_name: 5 min precipitation rate
|
|
@@ -21,15 +21,15 @@ precipitation_rate_5min:
|
|
|
21
21
|
weather_code_synop_4677:
|
|
22
22
|
description: 1M SYNOP Tab.4677 (1 minute value) (NN)
|
|
23
23
|
long_name: SYNOP Tab.4677
|
|
24
|
-
units:
|
|
24
|
+
units: ""
|
|
25
25
|
weather_code_synop_4680:
|
|
26
26
|
description: 1M SYNOP Tab.4680 (1 minute value) (NN)
|
|
27
27
|
long_name: SYNOP Tab.4680
|
|
28
|
-
units:
|
|
28
|
+
units: ""
|
|
29
29
|
weather_code_metar_4678:
|
|
30
30
|
description: 1M METAR Tab.4678 (1 minute value) (AAAAA)
|
|
31
31
|
long_name: METAR Tab.4678
|
|
32
|
-
units:
|
|
32
|
+
units: ""
|
|
33
33
|
precipitation_rate:
|
|
34
34
|
description: 1M Intensity [mm/h] total precipitation (1 minute value) (NNN.NNN)
|
|
35
35
|
long_name: Total precipitation intensity
|
|
@@ -49,7 +49,7 @@ precipitation_accumulated:
|
|
|
49
49
|
mor_visibility:
|
|
50
50
|
description: 1M Visibility in precipitation [0...99999m] (1 minute value) (NNNNN)
|
|
51
51
|
long_name: Visibility in precipitation
|
|
52
|
-
units:
|
|
52
|
+
units: ""
|
|
53
53
|
reflectivity:
|
|
54
54
|
description: 1M Radar reflectivity [-9.9...99.9dBZ] (1 minute value) (NN.N)
|
|
55
55
|
long_name: Radar reflectivity
|
|
@@ -57,7 +57,7 @@ reflectivity:
|
|
|
57
57
|
quality_index:
|
|
58
58
|
description: 1M Measuring quality [0...100%] (1 minute value) (NNN)
|
|
59
59
|
long_name: Quility index
|
|
60
|
-
units:
|
|
60
|
+
units: "%"
|
|
61
61
|
max_hail_diameter:
|
|
62
62
|
description: 1M Maximum diameter hail [mm] (1 minute value) (N.N)
|
|
63
63
|
long_name: Maximum diameter hail
|
|
@@ -65,67 +65,67 @@ max_hail_diameter:
|
|
|
65
65
|
laser_status:
|
|
66
66
|
description: Status Laser (OK/on:0, off:1)
|
|
67
67
|
long_name: Status laser
|
|
68
|
-
units:
|
|
68
|
+
units: ""
|
|
69
69
|
static_signal:
|
|
70
70
|
description: Static signal (OK:0, Error:1)
|
|
71
71
|
long_name: Static signal
|
|
72
|
-
units:
|
|
72
|
+
units: ""
|
|
73
73
|
laser_temperature_analog_status:
|
|
74
74
|
description: Status Laser temperature (analogue) (OK:0, Error:1)
|
|
75
75
|
long_name: Status analogue laser temperature
|
|
76
|
-
units:
|
|
76
|
+
units: ""
|
|
77
77
|
laser_temperature_digital_status:
|
|
78
78
|
description: Status Laser temperature (digital) (OK:0, Error:1)
|
|
79
79
|
long_name: Status digital laser temperature
|
|
80
|
-
units:
|
|
80
|
+
units: ""
|
|
81
81
|
laser_current_analog_status:
|
|
82
82
|
description: Status Laser current (analogue) (OK:0, Error:1)
|
|
83
83
|
long_name: Status analogue laser current
|
|
84
|
-
units:
|
|
84
|
+
units: ""
|
|
85
85
|
laser_current_digital_status:
|
|
86
86
|
description: Status Laser current (digital) (OK:0, Error:1)
|
|
87
87
|
long_name: Status digital laser current
|
|
88
|
-
units:
|
|
88
|
+
units: ""
|
|
89
89
|
sensor_voltage_supply_status:
|
|
90
90
|
description: Status Sensor supply (OK:0, Error:1)
|
|
91
91
|
long_name: Status sensor supply
|
|
92
|
-
units:
|
|
92
|
+
units: ""
|
|
93
93
|
current_heating_pane_transmitter_head_status:
|
|
94
94
|
description: Status Current pane heating laser head (OK:0, warning:1)
|
|
95
95
|
long_name: Status current pane heating laser head
|
|
96
|
-
units:
|
|
96
|
+
units: ""
|
|
97
97
|
current_heating_pane_receiver_head_status:
|
|
98
98
|
description: Status Current pane heating receiver head (OK:0, warning:1)
|
|
99
99
|
long_name: Status current pane heating reciver head
|
|
100
|
-
units:
|
|
100
|
+
units: ""
|
|
101
101
|
temperature_sensor_status:
|
|
102
102
|
description: Status Temperature sensor (OK:0, warning:1)
|
|
103
103
|
long_name: Status temperature sensor
|
|
104
|
-
units:
|
|
104
|
+
units: ""
|
|
105
105
|
current_heating_voltage_supply_status:
|
|
106
106
|
description: Status Heating supply (OK:0, warning:1)
|
|
107
107
|
long_name: Status heating supply
|
|
108
|
-
units:
|
|
108
|
+
units: ""
|
|
109
109
|
current_heating_house_status:
|
|
110
110
|
description: Status Current heating housing (OK:0, warning:1)
|
|
111
111
|
long_name: Status current heating housing
|
|
112
|
-
units:
|
|
112
|
+
units: ""
|
|
113
113
|
current_heating_heads_status:
|
|
114
114
|
description: Status Current heating heads (OK:0, warning:1)
|
|
115
115
|
long_name: Status current heating heads
|
|
116
|
-
units:
|
|
116
|
+
units: ""
|
|
117
117
|
current_heating_carriers_status:
|
|
118
118
|
description: Status Current heating carriers (OK:0, warning:1)
|
|
119
119
|
long_name: Status current heating carriers
|
|
120
|
-
units:
|
|
120
|
+
units: ""
|
|
121
121
|
control_output_laser_power_status:
|
|
122
122
|
description: Status Control output laser power (OK:0, warning:1)
|
|
123
123
|
long_name: Status control output laser
|
|
124
|
-
units:
|
|
124
|
+
units: ""
|
|
125
125
|
reserve_status:
|
|
126
126
|
description: Reserve Status (0)
|
|
127
127
|
long_name: Reserve status
|
|
128
|
-
units:
|
|
128
|
+
units: ""
|
|
129
129
|
temperature_interior:
|
|
130
130
|
description: "Interior temperature [\xB0C] (NNN)"
|
|
131
131
|
long_name: Interior temperature
|
|
@@ -163,12 +163,14 @@ temperature_ambient:
|
|
|
163
163
|
long_name: Ambient temperature
|
|
164
164
|
units: "\xB0C"
|
|
165
165
|
current_heating_voltage_supply:
|
|
166
|
-
description:
|
|
166
|
+
description:
|
|
167
|
+
Voltage Heating supply [1/10 V] (only 5.4110.x1.xxx, otherwise "999")
|
|
167
168
|
(NNN)
|
|
168
169
|
long_name: Voltage heating supply
|
|
169
170
|
units: V
|
|
170
171
|
current_heating_house:
|
|
171
|
-
description:
|
|
172
|
+
description:
|
|
173
|
+
Current heating housing [mA] (only 5.4110.x1.xxx, otherwise "9999")
|
|
172
174
|
(NNNN)
|
|
173
175
|
long_name: Current heating housing
|
|
174
176
|
units: mA
|
|
@@ -177,131 +179,132 @@ current_heating_heads:
|
|
|
177
179
|
long_name: Current heating head
|
|
178
180
|
units: mA
|
|
179
181
|
current_heating_carriers:
|
|
180
|
-
description:
|
|
182
|
+
description:
|
|
183
|
+
Current heating carriers [mA] (only 5.4110.x1.xxx, otherwise "9999")
|
|
181
184
|
(NNNN)
|
|
182
185
|
long_name: Current heating carriers
|
|
183
186
|
units: mA
|
|
184
187
|
number_particles:
|
|
185
188
|
description: Number of all measured particles (NNNNN)
|
|
186
189
|
long_name: Number of all measured particles
|
|
187
|
-
units:
|
|
190
|
+
units: ""
|
|
188
191
|
number_particles_internal_data:
|
|
189
192
|
description: "\u201E00000.000\" (internal data)"
|
|
190
193
|
long_name: Number of all measured particles internal data
|
|
191
|
-
units:
|
|
194
|
+
units: ""
|
|
192
195
|
number_particles_min_speed:
|
|
193
196
|
description: Number of particles < minimal speed (0.15m/s) (NNNNN)
|
|
194
197
|
long_name: Number of particles < minimal speed (0.15m/s)
|
|
195
|
-
units:
|
|
198
|
+
units: ""
|
|
196
199
|
number_particles_min_speed_internal_data:
|
|
197
200
|
description: "\u201E00000.000\" (internal data)"
|
|
198
201
|
long_name: Number of particles < minimal speed (0.15m/s) internal data
|
|
199
|
-
units:
|
|
202
|
+
units: ""
|
|
200
203
|
number_particles_max_speed:
|
|
201
204
|
description: Number of particles > maximal speed (20m/s) (NNNNN)
|
|
202
205
|
long_name: Number of particles > maximal speed (20m/s)
|
|
203
|
-
units:
|
|
206
|
+
units: ""
|
|
204
207
|
number_particles_max_speed_internal_data:
|
|
205
208
|
description: "\u201E00000.000\" (internal data)"
|
|
206
209
|
long_name: Number of particles > maximal speed (20m/s) internal data
|
|
207
|
-
units:
|
|
210
|
+
units: ""
|
|
208
211
|
number_particles_min_diameter:
|
|
209
212
|
description: Number of particles < minimal diameter (0.15mm) (NNNNN)
|
|
210
213
|
long_name: Number of particles < minimal diameter (0.15mm)
|
|
211
|
-
units:
|
|
214
|
+
units: ""
|
|
212
215
|
number_particles_min_diameter_internal_data:
|
|
213
216
|
description: "\u201E00000.000\" (internal data)"
|
|
214
217
|
long_name: Number of particles < minimal diameter (0.15mm) internal data
|
|
215
|
-
units:
|
|
218
|
+
units: ""
|
|
216
219
|
number_particles_no_hydrometeor:
|
|
217
220
|
description: Number of particles no hydrometeor
|
|
218
221
|
long_name: Number of particles no hydrometeor
|
|
219
|
-
units:
|
|
222
|
+
units: ""
|
|
220
223
|
number_particles_no_hydrometeor_internal_data:
|
|
221
224
|
description: Total volume (gross) of this class
|
|
222
225
|
long_name: Total volume of this class
|
|
223
|
-
units:
|
|
226
|
+
units: ""
|
|
224
227
|
number_particles_unknown_classification:
|
|
225
228
|
description: Number of particles with unknown classification
|
|
226
229
|
long_name: Number of particles with unknown classification
|
|
227
|
-
units:
|
|
230
|
+
units: ""
|
|
228
231
|
number_particles_unknown_classification_internal_data:
|
|
229
232
|
description: Total volume (gross) of this class
|
|
230
233
|
long_name: Number of particles with unknown classification internal data
|
|
231
|
-
units:
|
|
234
|
+
units: ""
|
|
232
235
|
number_particles_class_1:
|
|
233
236
|
description: Number of particles class 1
|
|
234
237
|
long_name: Number of particles class 1
|
|
235
|
-
units:
|
|
238
|
+
units: ""
|
|
236
239
|
number_particles_class_1_internal_data:
|
|
237
240
|
description: Total volume (gross) of class 1
|
|
238
241
|
long_name: Total volume of class 1
|
|
239
|
-
units:
|
|
242
|
+
units: ""
|
|
240
243
|
number_particles_class_2:
|
|
241
244
|
description: Number of particles class 2
|
|
242
245
|
long_name: Number of particles class 2
|
|
243
|
-
units:
|
|
246
|
+
units: ""
|
|
244
247
|
number_particles_class_2_internal_data:
|
|
245
248
|
description: Total volume (gross) of class 2
|
|
246
249
|
long_name: Total volume of class 2
|
|
247
|
-
units:
|
|
250
|
+
units: ""
|
|
248
251
|
number_particles_class_3:
|
|
249
252
|
description: Number of particles class 3
|
|
250
253
|
long_name: Number of particles class 3
|
|
251
|
-
units:
|
|
254
|
+
units: ""
|
|
252
255
|
number_particles_class_3_internal_data:
|
|
253
256
|
description: Total volume (gross) of class 3
|
|
254
257
|
long_name: Total volume of class 3
|
|
255
|
-
units:
|
|
258
|
+
units: ""
|
|
256
259
|
number_particles_class_4:
|
|
257
260
|
description: Number of particles class 4
|
|
258
261
|
long_name: Number of particles class 4
|
|
259
|
-
units:
|
|
262
|
+
units: ""
|
|
260
263
|
number_particles_class_4_internal_data:
|
|
261
264
|
description: Total volume (gross) of class 4
|
|
262
265
|
long_name: Total volume of class 4
|
|
263
|
-
units:
|
|
266
|
+
units: ""
|
|
264
267
|
number_particles_class_5:
|
|
265
268
|
description: Number of particles class 5
|
|
266
269
|
long_name: Number of particles class 5
|
|
267
|
-
units:
|
|
270
|
+
units: ""
|
|
268
271
|
number_particles_class_5_internal_data:
|
|
269
272
|
description: Total volume (gross) of class 5
|
|
270
273
|
long_name: Total volume of class 5
|
|
271
|
-
units:
|
|
274
|
+
units: ""
|
|
272
275
|
number_particles_class_6:
|
|
273
276
|
description: Number of particles class 6
|
|
274
277
|
long_name: Number of particles class 6
|
|
275
|
-
units:
|
|
278
|
+
units: ""
|
|
276
279
|
number_particles_class_6_internal_data:
|
|
277
280
|
description: Total volume (gross) of class 6
|
|
278
281
|
long_name: Total volume of class 6
|
|
279
|
-
units:
|
|
282
|
+
units: ""
|
|
280
283
|
number_particles_class_7:
|
|
281
284
|
description: Number of particles class 7
|
|
282
285
|
long_name: Number of particles class 7
|
|
283
|
-
units:
|
|
286
|
+
units: ""
|
|
284
287
|
number_particles_class_7_internal_data:
|
|
285
288
|
description: Total volume (gross) of class 7
|
|
286
289
|
long_name: Total volume of class 7
|
|
287
|
-
units:
|
|
290
|
+
units: ""
|
|
288
291
|
number_particles_class_8:
|
|
289
292
|
description: Number of particles class 8
|
|
290
293
|
long_name: Number of particles class 8
|
|
291
|
-
units:
|
|
294
|
+
units: ""
|
|
292
295
|
number_particles_class_8_internal_data:
|
|
293
296
|
description: Total volume (gross) of class 8
|
|
294
297
|
long_name: Total volume of class 8
|
|
295
|
-
units:
|
|
298
|
+
units: ""
|
|
296
299
|
number_particles_class_9:
|
|
297
300
|
description: Number of particles class 9
|
|
298
301
|
long_name: Number of particles class 9
|
|
299
|
-
units:
|
|
302
|
+
units: ""
|
|
300
303
|
number_particles_class_9_internal_data:
|
|
301
304
|
description: Total volume (gross) of class 9
|
|
302
305
|
long_name: Total volume of class 9
|
|
303
|
-
units:
|
|
306
|
+
units: ""
|
|
304
307
|
raw_drop_number:
|
|
305
308
|
description: Precipitation spectrum
|
|
306
309
|
long_name: Precipitation spectrum
|
|
307
|
-
units:
|
|
310
|
+
units: ""
|
|
@@ -18,7 +18,7 @@ device_address:
|
|
|
18
18
|
_FillValue: 255
|
|
19
19
|
# sensor_serial_number:
|
|
20
20
|
# dtype: uint16
|
|
21
|
-
# zlib:
|
|
21
|
+
# zlib: false
|
|
22
22
|
# complevel: 3
|
|
23
23
|
# shuffle: true
|
|
24
24
|
# fletcher32: false
|
|
@@ -27,7 +27,7 @@ device_address:
|
|
|
27
27
|
# _FillValue: 65535
|
|
28
28
|
# software_version:
|
|
29
29
|
# dtype: float32
|
|
30
|
-
# zlib:
|
|
30
|
+
# zlib: false
|
|
31
31
|
# complevel: 3
|
|
32
32
|
# shuffle: true
|
|
33
33
|
# fletcher32: false
|
|
@@ -35,7 +35,7 @@ device_address:
|
|
|
35
35
|
# chunksizes: 5000
|
|
36
36
|
# sensor_date:
|
|
37
37
|
# dtype: object
|
|
38
|
-
# zlib:
|
|
38
|
+
# zlib: false
|
|
39
39
|
# complevel: 3
|
|
40
40
|
# shuffle: true
|
|
41
41
|
# fletcher32: false
|
|
@@ -43,7 +43,7 @@ device_address:
|
|
|
43
43
|
# chunksizes: 5000
|
|
44
44
|
# sensor_time:
|
|
45
45
|
# dtype: object
|
|
46
|
-
# zlib:
|
|
46
|
+
# zlib: false
|
|
47
47
|
# complevel: 3
|
|
48
48
|
# shuffle: true
|
|
49
49
|
# fletcher32: false
|
|
@@ -69,7 +69,7 @@ weather_code_synop_4680_5min:
|
|
|
69
69
|
_FillValue: 255
|
|
70
70
|
weather_code_metar_4678_5min:
|
|
71
71
|
dtype: str
|
|
72
|
-
zlib:
|
|
72
|
+
zlib: false
|
|
73
73
|
complevel: 3
|
|
74
74
|
shuffle: true
|
|
75
75
|
fletcher32: false
|
|
@@ -103,7 +103,7 @@ weather_code_synop_4680:
|
|
|
103
103
|
_FillValue: 255
|
|
104
104
|
weather_code_metar_4678:
|
|
105
105
|
dtype: str
|
|
106
|
-
zlib:
|
|
106
|
+
zlib: false
|
|
107
107
|
complevel: 3
|
|
108
108
|
shuffle: true
|
|
109
109
|
fletcher32: false
|
|
@@ -690,6 +690,6 @@ raw_drop_number:
|
|
|
690
690
|
contiguous: false
|
|
691
691
|
_FillValue: 65535
|
|
692
692
|
chunksizes:
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
693
|
+
- 5000
|
|
694
|
+
- 22 # diameter
|
|
695
|
+
- 20 # velocity
|