cloudnetpy-qc 1.19.1__tar.gz → 1.19.3__tar.gz

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 (23) hide show
  1. {cloudnetpy_qc-1.19.1/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.19.3}/PKG-INFO +1 -1
  2. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/variables.py +7 -9
  3. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/version.py +1 -1
  4. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
  5. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/LICENSE +0 -0
  6. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/MANIFEST.in +0 -0
  7. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/README.md +0 -0
  8. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/__init__.py +0 -0
  9. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/data/area-type-table.xml +0 -0
  10. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
  11. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/data/data_quality_config.ini +0 -0
  12. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
  13. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/py.typed +0 -0
  14. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/quality.py +0 -0
  15. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc/utils.py +0 -0
  16. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
  17. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
  18. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc.egg-info/requires.txt +0 -0
  19. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
  20. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/pyproject.toml +0 -0
  21. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/setup.cfg +0 -0
  22. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/tests/test_qc.py +0 -0
  23. {cloudnetpy_qc-1.19.1 → cloudnetpy_qc-1.19.3}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudnetpy_qc
3
- Version: 1.19.1
3
+ Version: 1.19.3
4
4
  Summary: Quality control routines for CloudnetPy products
5
5
  Author-email: Finnish Meteorological Institute <actris-cloudnet@fmi.fi>
6
6
  License: MIT License
@@ -143,13 +143,6 @@ VARIABLES = {
143
143
  standard_name="equivalent_reflectivity_factor",
144
144
  required=[Product.DISDROMETER],
145
145
  ),
146
- "visibility": Variable(
147
- long_name="Meteorological optical range (MOR) visibility",
148
- units="m",
149
- standard_name="visibility_in_air",
150
- dtype=Dtype.INT,
151
- required=[Product.DISDROMETER],
152
- ),
153
146
  "n_particles": Variable(
154
147
  long_name="Number of particles in time interval",
155
148
  dtype=Dtype.INT,
@@ -174,7 +167,7 @@ VARIABLES = {
174
167
  units="m",
175
168
  standard_name="thickness_of_rainfall_amount",
176
169
  comment="Cumulated precipitation since 00:00 UTC",
177
- required=[Product.WEATHER_STATION, Product.RAIN_GAUGE],
170
+ required=[Product.RAIN_GAUGE],
178
171
  ),
179
172
  # ------------------------------------
180
173
  # Required in RAIN RADAR Level 1b file
@@ -802,7 +795,6 @@ VARIABLES = {
802
795
  required=[
803
796
  Product.RAIN_GAUGE,
804
797
  Product.DISDROMETER,
805
- Product.WEATHER_STATION,
806
798
  Product.RAIN_RADAR,
807
799
  ],
808
800
  ),
@@ -1588,4 +1580,10 @@ VARIABLES = {
1588
1580
  long_name="Quality flag status for stability products",
1589
1581
  dtype=Dtype.INT,
1590
1582
  ),
1583
+ "visibility": Variable(
1584
+ long_name="Meteorological optical range (MOR) visibility",
1585
+ units="m",
1586
+ standard_name="visibility_in_air",
1587
+ dtype=Dtype.INT,
1588
+ ),
1591
1589
  }
@@ -2,5 +2,5 @@
2
2
 
3
3
  MAJOR = 1
4
4
  MINOR = 19
5
- PATCH = 1
5
+ PATCH = 3
6
6
  __version__ = f"{MAJOR}.{MINOR}.{PATCH}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudnetpy_qc
3
- Version: 1.19.1
3
+ Version: 1.19.3
4
4
  Summary: Quality control routines for CloudnetPy products
5
5
  Author-email: Finnish Meteorological Institute <actris-cloudnet@fmi.fi>
6
6
  License: MIT License
File without changes
File without changes
File without changes