disdrodb 0.2.0__py3-none-any.whl → 0.3.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 +1 -1
- disdrodb/_config.py +1 -3
- disdrodb/_version.py +2 -2
- disdrodb/accessor/__init__.py +1 -1
- disdrodb/accessor/methods.py +18 -11
- disdrodb/api/checks.py +2 -4
- disdrodb/api/configs.py +1 -3
- disdrodb/api/create_directories.py +4 -6
- disdrodb/api/info.py +1 -3
- disdrodb/api/io.py +15 -9
- disdrodb/api/path.py +1 -3
- disdrodb/cli/disdrodb_check_metadata_archive.py +2 -2
- disdrodb/cli/disdrodb_check_products_options.py +44 -0
- disdrodb/cli/disdrodb_create_summary.py +48 -22
- disdrodb/cli/disdrodb_create_summary_station.py +39 -18
- disdrodb/cli/disdrodb_data_archive_directory.py +1 -3
- disdrodb/cli/disdrodb_download_archive.py +45 -24
- disdrodb/cli/disdrodb_download_metadata_archive.py +27 -16
- disdrodb/cli/disdrodb_download_station.py +56 -26
- disdrodb/cli/disdrodb_initialize_station.py +40 -20
- disdrodb/cli/disdrodb_metadata_archive_directory.py +1 -3
- disdrodb/cli/disdrodb_open_data_archive.py +16 -11
- disdrodb/cli/disdrodb_open_logs_directory.py +29 -18
- disdrodb/cli/disdrodb_open_metadata_archive.py +25 -11
- disdrodb/cli/disdrodb_open_metadata_directory.py +32 -20
- disdrodb/cli/disdrodb_open_product_directory.py +38 -21
- disdrodb/cli/disdrodb_open_readers_directory.py +1 -3
- disdrodb/cli/disdrodb_run.py +189 -0
- disdrodb/cli/disdrodb_run_l0.py +55 -64
- disdrodb/cli/disdrodb_run_l0_station.py +47 -52
- disdrodb/cli/disdrodb_run_l0a.py +47 -45
- disdrodb/cli/disdrodb_run_l0a_station.py +38 -37
- disdrodb/cli/disdrodb_run_l0b.py +45 -45
- disdrodb/cli/disdrodb_run_l0b_station.py +37 -36
- disdrodb/cli/disdrodb_run_l0c.py +50 -47
- disdrodb/cli/disdrodb_run_l0c_station.py +41 -38
- disdrodb/cli/disdrodb_run_l1.py +49 -45
- disdrodb/cli/disdrodb_run_l1_station.py +40 -37
- disdrodb/cli/disdrodb_run_l2e.py +50 -45
- disdrodb/cli/disdrodb_run_l2e_station.py +41 -37
- disdrodb/cli/disdrodb_run_l2m.py +49 -45
- disdrodb/cli/disdrodb_run_l2m_station.py +40 -37
- disdrodb/cli/disdrodb_run_station.py +184 -0
- disdrodb/cli/disdrodb_upload_archive.py +45 -35
- disdrodb/cli/disdrodb_upload_station.py +39 -32
- disdrodb/configs.py +13 -8
- disdrodb/constants.py +4 -2
- disdrodb/data_transfer/__init__.py +1 -3
- disdrodb/data_transfer/download_data.py +38 -54
- disdrodb/data_transfer/upload_data.py +1 -3
- disdrodb/data_transfer/zenodo.py +1 -3
- disdrodb/docs.py +1 -3
- disdrodb/etc/configs/attributes.yaml +52 -2
- disdrodb/etc/configs/encodings.yaml +45 -1
- disdrodb/etc/products/L0C/ODM470/global.yaml +5 -0
- disdrodb/etc/products/L0C/global.yaml +5 -0
- disdrodb/etc/products/L1/ODM470/global.yaml +6 -0
- disdrodb/etc/products/L1/global.yaml +1 -14
- disdrodb/etc/products/L2E/LPM/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/LPM/global.yaml +36 -0
- disdrodb/etc/products/L2E/LPM_V0/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/LPM_V0/global.yaml +36 -0
- disdrodb/etc/products/L2E/ODM470/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/ODM470/global.yaml +36 -0
- disdrodb/etc/products/L2E/PARSIVEL/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/PARSIVEL/global.yaml +36 -0
- disdrodb/etc/products/L2E/PARSIVEL2/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/PARSIVEL2/global.yaml +36 -0
- disdrodb/etc/products/L2E/PWS100/1MIN.yaml +1 -0
- disdrodb/etc/products/L2E/PWS100/global.yaml +36 -0
- disdrodb/etc/products/L2E/RD80/1MIN.yaml +19 -0
- disdrodb/etc/products/L2E/SWS250/1MIN.yaml +19 -0
- disdrodb/etc/products/L2E/global.yaml +17 -3
- disdrodb/etc/products/L2M/global.yaml +1 -1
- disdrodb/fall_velocity/__init__.py +46 -0
- disdrodb/fall_velocity/graupel.py +483 -0
- disdrodb/fall_velocity/hail.py +287 -0
- disdrodb/{l1/fall_velocity.py → fall_velocity/rain.py} +265 -50
- disdrodb/issue/__init__.py +1 -3
- disdrodb/issue/checks.py +3 -5
- disdrodb/issue/reader.py +1 -3
- disdrodb/issue/writer.py +1 -3
- disdrodb/l0/__init__.py +1 -1
- disdrodb/l0/check_configs.py +26 -17
- disdrodb/l0/check_standards.py +1 -3
- disdrodb/l0/configs/LPM/l0a_encodings.yml +0 -1
- disdrodb/l0/configs/LPM/l0b_cf_attrs.yml +0 -4
- disdrodb/l0/configs/LPM/l0b_encodings.yml +9 -9
- disdrodb/l0/configs/LPM/raw_data_format.yml +11 -11
- disdrodb/l0/configs/LPM_V0/bins_diameter.yml +103 -0
- disdrodb/l0/configs/LPM_V0/bins_velocity.yml +103 -0
- disdrodb/l0/configs/LPM_V0/l0a_encodings.yml +45 -0
- disdrodb/l0/configs/LPM_V0/l0b_cf_attrs.yml +180 -0
- disdrodb/l0/configs/LPM_V0/l0b_encodings.yml +410 -0
- disdrodb/l0/configs/LPM_V0/raw_data_format.yml +474 -0
- disdrodb/l0/configs/ODM470/bins_diameter.yml +643 -0
- disdrodb/l0/configs/ODM470/bins_velocity.yml +0 -0
- disdrodb/l0/configs/ODM470/l0a_encodings.yml +11 -0
- disdrodb/l0/configs/ODM470/l0b_cf_attrs.yml +46 -0
- disdrodb/l0/configs/ODM470/l0b_encodings.yml +106 -0
- disdrodb/l0/configs/ODM470/raw_data_format.yml +111 -0
- disdrodb/l0/configs/PARSIVEL/l0b_cf_attrs.yml +1 -1
- disdrodb/l0/configs/PARSIVEL/raw_data_format.yml +8 -8
- disdrodb/l0/configs/PARSIVEL2/raw_data_format.yml +9 -9
- disdrodb/l0/l0_reader.py +1 -3
- disdrodb/l0/l0a_processing.py +7 -5
- disdrodb/l0/l0b_nc_processing.py +2 -4
- disdrodb/l0/l0b_processing.py +27 -22
- disdrodb/l0/l0c_processing.py +37 -11
- disdrodb/l0/manuals/LPM_V0.pdf +0 -0
- disdrodb/l0/readers/LPM/ARM/ARM_LPM.py +1 -1
- disdrodb/l0/readers/LPM/AUSTRALIA/MELBOURNE_2007_LPM.py +1 -1
- disdrodb/l0/readers/LPM/BRAZIL/CHUVA_LPM.py +1 -1
- disdrodb/l0/readers/LPM/BRAZIL/GOAMAZON_LPM.py +1 -1
- disdrodb/l0/readers/LPM/GERMANY/DWD.py +190 -12
- disdrodb/l0/readers/LPM/ITALY/GID_LPM.py +63 -14
- disdrodb/l0/readers/LPM/ITALY/GID_LPM_PI.py +279 -0
- disdrodb/l0/readers/LPM/ITALY/GID_LPM_T.py +279 -0
- disdrodb/l0/readers/LPM/ITALY/GID_LPM_W.py +3 -5
- disdrodb/l0/readers/LPM/KIT/CHWALA.py +1 -3
- disdrodb/l0/readers/LPM/NETHERLANDS/DELFT_LPM_NC.py +1 -1
- disdrodb/l0/readers/LPM/NETHERLANDS/DELFT_RWANDA_LPM_NC.py +103 -0
- disdrodb/l0/readers/LPM/NORWAY/HAUKELISETER_LPM.py +214 -0
- disdrodb/l0/readers/LPM/NORWAY/NMBU_LPM.py +206 -0
- disdrodb/l0/readers/LPM/SLOVENIA/ARSO.py +1 -3
- disdrodb/l0/readers/LPM/SLOVENIA/UL.py +1 -3
- disdrodb/l0/readers/LPM/SWITZERLAND/INNERERIZ_LPM.py +1 -3
- disdrodb/l0/readers/LPM/UK/DIVEN.py +1 -1
- disdrodb/l0/readers/LPM/UK/WITHWORTH_LPM.py +217 -0
- disdrodb/l0/readers/LPM/USA/CHARLESTON.py +227 -0
- disdrodb/l0/readers/{LPM → LPM_V0}/BELGIUM/ULIEGE.py +34 -52
- disdrodb/l0/readers/LPM_V0/ITALY/GID_LPM_V0.py +240 -0
- disdrodb/l0/readers/ODM470/OCEAN/OCEANRAIN.py +123 -0
- disdrodb/l0/readers/PARSIVEL/AUSTRALIA/MELBOURNE_2007_PARSIVEL.py +1 -1
- disdrodb/l0/readers/PARSIVEL/BASQUECOUNTRY/EUSKALMET_OTT.py +1 -1
- disdrodb/l0/readers/PARSIVEL/CHINA/CHONGQING.py +1 -3
- disdrodb/l0/readers/PARSIVEL/EPFL/ARCTIC_2021.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/COMMON_2011.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/DAVOS_2009_2011.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_2009.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_ROOF_2008.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_ROOF_2010.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_ROOF_2011.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/EPFL_ROOF_2012.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/GENEPI_2007.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/GRAND_ST_BERNARD_2007.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/GRAND_ST_BERNARD_2007_2.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/HPICONET_2010.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/HYMEX_LTE_SOP2.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/HYMEX_LTE_SOP3.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/HYMEX_LTE_SOP4.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/LOCARNO_2018.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/LOCARNO_2019.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/PARADISO_2014.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/PARSIVEL_2007.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/PLATO_2019.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/RACLETS_2019.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/RACLETS_2019_WJF.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/RIETHOLZBACH_2011.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/SAMOYLOV_2017.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/SAMOYLOV_2019.py +1 -1
- disdrodb/l0/readers/PARSIVEL/EPFL/UNIL_2022.py +1 -1
- disdrodb/l0/readers/PARSIVEL/JAPAN/JMA.py +1 -1
- disdrodb/l0/readers/PARSIVEL/KOREA/ICEPOP_MSC.py +159 -0
- disdrodb/l0/readers/PARSIVEL/NASA/LPVEX.py +26 -14
- disdrodb/l0/readers/PARSIVEL/NASA/MC3E.py +2 -2
- disdrodb/l0/readers/PARSIVEL/NCAR/CCOPE_2015.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/OWLES_MIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/PECAN_MOBILE.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/PLOWS_MIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2009.py +1 -1
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2010.py +1 -3
- disdrodb/l0/readers/PARSIVEL/NCAR/VORTEX2_2010_UF.py +1 -3
- disdrodb/l0/readers/PARSIVEL/SLOVENIA/UL.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/ARM/ARM_PARSIVEL2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/BASQUECOUNTRY/EUSKALMET_OTT2.py +2 -2
- disdrodb/l0/readers/PARSIVEL2/BELGIUM/ILVO.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/BRAZIL/CHUVA_PARSIVEL2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/BRAZIL/GOAMAZON_PARSIVEL2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/CANADA/UQAM_NC.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/DENMARK/DTU.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/DENMARK/EROSION_nc.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/DENMARK/EROSION_raw.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/FINLAND/FMI_PARSIVEL2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/FRANCE/ENPC_PARSIVEL2.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/FRANCE/OSUG.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/FRANCE/SIRTA_PARSIVEL2.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/GREECE/NOA.py +4 -3
- disdrodb/l0/readers/PARSIVEL2/ITALY/GID_PARSIVEL2.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/ITALY/HYDROX.py +5 -3
- disdrodb/l0/readers/PARSIVEL2/JAPAN/PRECIP.py +155 -0
- disdrodb/l0/readers/PARSIVEL2/KIT/BURKINA_FASO.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/KIT/TEAMX.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/KOREA/ICEPOP_MSC.py +161 -0
- disdrodb/l0/readers/PARSIVEL2/{NASA/GCPEX.py → KOREA/ICEPOP_UCLM.py} +51 -31
- disdrodb/l0/readers/PARSIVEL2/MEXICO/OH_IIUNAM_nc.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/MPI/BCO_PARSIVEL2.py +15 -8
- disdrodb/l0/readers/PARSIVEL2/MPI/BOWTIE.py +9 -4
- disdrodb/l0/readers/PARSIVEL2/NASA/APU.py +31 -6
- disdrodb/l0/readers/PARSIVEL2/NASA/NSSTC.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/FARM_PARSIVEL2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/PECAN_FP3.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/PECAN_MIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/PERILS_MIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/PERILS_PIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/RELAMPAGO_PARSIVEL2.py +2 -2
- disdrodb/l0/readers/PARSIVEL2/NCAR/SNOWIE_PJ.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/SNOWIE_SB.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_P1.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_P2.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NCAR/VORTEX_SE_2016_PIPS.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/NETHERLANDS/DELFT_NC.py +1 -1
- disdrodb/l0/readers/{PARSIVEL/NASA/PIERS.py → PARSIVEL2/NORWAY/UIB.py} +65 -31
- disdrodb/l0/readers/PARSIVEL2/PHILIPPINES/PAGASA.py +7 -6
- disdrodb/l0/readers/PARSIVEL2/SPAIN/CENER.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/SPAIN/CR1000DL.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/SPAIN/GRANADA.py +1 -3
- disdrodb/l0/readers/PARSIVEL2/SPAIN/LIAISE.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/SWEDEN/SMHI.py +1 -1
- disdrodb/l0/readers/PARSIVEL2/USA/CSU.py +138 -0
- disdrodb/l0/readers/PARSIVEL2/USA/CW3E.py +49 -22
- disdrodb/l0/readers/PWS100/AUSTRIA/HOAL.py +1 -3
- disdrodb/l0/readers/PWS100/FRANCE/ENPC_PWS100.py +1 -3
- disdrodb/l0/readers/PWS100/FRANCE/ENPC_PWS100_SIRTA.py +1 -1
- disdrodb/l0/readers/{PARSIVEL/NASA/IFLOODS.py → RD80/BRAZIL/ATTO_RD80.py} +50 -36
- disdrodb/l0/readers/RD80/BRAZIL/CHUVA_RD80.py +1 -3
- disdrodb/l0/readers/RD80/BRAZIL/GOAMAZON_RD80.py +1 -3
- disdrodb/l0/readers/RD80/NCAR/CINDY_2011_RD80.py +1 -3
- disdrodb/l0/readers/RD80/NCAR/RELAMPAGO_RD80.py +1 -3
- disdrodb/l0/readers/RD80/NOAA/PSL_RD80.py +1 -3
- disdrodb/l0/readers/{SW250 → SWS250}/BELGIUM/KMI.py +2 -4
- disdrodb/l0/readers/template_reader_raw_netcdf_data.py +1 -3
- disdrodb/l0/readers/template_reader_raw_text_data.py +1 -3
- disdrodb/l0/standards.py +4 -5
- disdrodb/l0/template_tools.py +1 -3
- disdrodb/l1/__init__.py +1 -1
- disdrodb/l1/classification.py +913 -0
- disdrodb/l1/processing.py +36 -106
- disdrodb/l1/resampling.py +8 -3
- disdrodb/l1_env/__init__.py +1 -1
- disdrodb/l1_env/routines.py +6 -6
- disdrodb/l2/__init__.py +1 -1
- disdrodb/l2/empirical_dsd.py +61 -31
- disdrodb/l2/processing.py +327 -62
- disdrodb/metadata/checks.py +1 -3
- disdrodb/metadata/download.py +4 -4
- disdrodb/metadata/geolocation.py +1 -3
- disdrodb/metadata/info.py +1 -3
- disdrodb/metadata/manipulation.py +1 -3
- disdrodb/metadata/reader.py +1 -3
- disdrodb/metadata/search.py +1 -3
- disdrodb/metadata/standards.py +1 -3
- disdrodb/metadata/writer.py +1 -3
- disdrodb/physics/__init__.py +17 -0
- disdrodb/physics/atmosphere.py +272 -0
- disdrodb/physics/water.py +130 -0
- disdrodb/physics/wrappers.py +62 -0
- disdrodb/psd/__init__.py +1 -1
- disdrodb/psd/fitting.py +22 -9
- disdrodb/psd/models.py +1 -1
- disdrodb/routines/__init__.py +5 -1
- disdrodb/routines/l0.py +28 -18
- disdrodb/routines/l1.py +8 -6
- disdrodb/routines/l2.py +8 -4
- disdrodb/routines/options.py +116 -71
- disdrodb/routines/options_validation.py +728 -0
- disdrodb/routines/wrappers.py +431 -11
- disdrodb/scattering/__init__.py +1 -1
- disdrodb/scattering/axis_ratio.py +9 -6
- disdrodb/scattering/permittivity.py +8 -8
- disdrodb/scattering/routines.py +32 -14
- disdrodb/summary/__init__.py +1 -1
- disdrodb/summary/routines.py +146 -86
- disdrodb/utils/__init__.py +1 -1
- disdrodb/utils/archiving.py +16 -9
- disdrodb/utils/attrs.py +4 -3
- disdrodb/utils/cli.py +8 -10
- disdrodb/utils/compression.py +13 -13
- disdrodb/utils/dask.py +33 -14
- disdrodb/utils/dataframe.py +1 -3
- disdrodb/utils/decorators.py +1 -3
- disdrodb/utils/dict.py +1 -1
- disdrodb/utils/directories.py +3 -5
- disdrodb/utils/encoding.py +2 -4
- disdrodb/utils/event.py +1 -1
- disdrodb/utils/list.py +1 -3
- disdrodb/utils/logger.py +1 -3
- disdrodb/utils/manipulations.py +182 -6
- disdrodb/utils/pydantic.py +80 -0
- disdrodb/utils/routines.py +1 -3
- disdrodb/utils/subsetting.py +1 -1
- disdrodb/utils/time.py +3 -2
- disdrodb/utils/warnings.py +1 -3
- disdrodb/utils/writer.py +1 -3
- disdrodb/utils/xarray.py +30 -3
- disdrodb/utils/yaml.py +1 -3
- disdrodb/viz/__init__.py +1 -1
- disdrodb/viz/plots.py +197 -21
- {disdrodb-0.2.0.dist-info → disdrodb-0.3.0.dist-info}/METADATA +2 -2
- disdrodb-0.3.0.dist-info/RECORD +358 -0
- {disdrodb-0.2.0.dist-info → disdrodb-0.3.0.dist-info}/entry_points.txt +3 -0
- disdrodb/etc/products/L1/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/LPM/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/PARSIVEL/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/PARSIVEL2/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/PWS100/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/RD80/1MIN.yaml +0 -13
- disdrodb/etc/products/L1/SWS250/1MIN.yaml +0 -13
- disdrodb/etc/products/L2M/10MIN.yaml +0 -12
- disdrodb/l1/beard_model.py +0 -618
- disdrodb/l1/filters.py +0 -203
- disdrodb-0.2.0.dist-info/RECORD +0 -312
- {disdrodb-0.2.0.dist-info → disdrodb-0.3.0.dist-info}/WHEEL +0 -0
- {disdrodb-0.2.0.dist-info → disdrodb-0.3.0.dist-info}/licenses/LICENSE +0 -0
- {disdrodb-0.2.0.dist-info → disdrodb-0.3.0.dist-info}/top_level.txt +0 -0
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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"
|