cloudnetpy-qc 1.27.0__tar.gz → 1.27.2__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.
- {cloudnetpy_qc-1.27.0/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.27.2}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/data/data_quality_config.ini +8 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/quality.py +0 -6
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/variables.py +13 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/version.py +1 -1
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/LICENSE +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/MANIFEST.in +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/README.md +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/__init__.py +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/coverage.py +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/data/area-type-table.xml +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/py.typed +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/utils.py +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc.egg-info/requires.txt +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/pyproject.toml +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/setup.cfg +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/tests/test_qc.py +0 -0
- {cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/tests/test_utils.py +0 -0
|
@@ -58,9 +58,17 @@ air_temperature = 184.0, 329.85
|
|
|
58
58
|
relative_humidity = 0, 1.05
|
|
59
59
|
wind_speed = 0, 100
|
|
60
60
|
wind_direction = 0, 360
|
|
61
|
+
|
|
62
|
+
[mwr-l1c]
|
|
63
|
+
zenith_angle = -1, 91
|
|
64
|
+
|
|
61
65
|
[mwr-single]
|
|
66
|
+
elevation_angle = -1, 91
|
|
62
67
|
relative_humidity = -0.2, 2
|
|
68
|
+
|
|
63
69
|
[mwr-multi]
|
|
70
|
+
elevation_angle = -1, 91
|
|
64
71
|
relative_humidity = -0.2, 2
|
|
72
|
+
|
|
65
73
|
[radar]
|
|
66
74
|
wind_direction = -0.1, 360.1
|
|
@@ -224,12 +224,6 @@ class FindVariableOutliers(Test):
|
|
|
224
224
|
self._add_info(msg)
|
|
225
225
|
|
|
226
226
|
def _get_limits(self, key: str) -> tuple[float, float] | None:
|
|
227
|
-
if key == "zenith_angle" and self.product in (
|
|
228
|
-
Product.MWR_L1C,
|
|
229
|
-
Product.MWR_SINGLE,
|
|
230
|
-
Product.MWR_MULTI,
|
|
231
|
-
):
|
|
232
|
-
return None
|
|
233
227
|
if key == "height" and self.product == Product.CPR:
|
|
234
228
|
return None
|
|
235
229
|
if key == "air_pressure":
|
|
@@ -375,6 +375,19 @@ VARIABLES = {
|
|
|
375
375
|
units="m",
|
|
376
376
|
required=[Product.CLASSIFICATION, Product.CLASSIFICATION_VOODOO],
|
|
377
377
|
),
|
|
378
|
+
# New variables in classification product, not yet mandatory in all files:
|
|
379
|
+
"cloud_top_height_status": Variable(
|
|
380
|
+
long_name="Cloud top height quality status",
|
|
381
|
+
dtype=Dtype.INT,
|
|
382
|
+
),
|
|
383
|
+
"radar_attenuation_status": Variable(
|
|
384
|
+
long_name="Radar attenuation status",
|
|
385
|
+
dtype=Dtype.INT,
|
|
386
|
+
),
|
|
387
|
+
"signal_source_status": Variable(
|
|
388
|
+
long_name="Signal source status",
|
|
389
|
+
dtype=Dtype.INT,
|
|
390
|
+
),
|
|
378
391
|
# ----------------------------
|
|
379
392
|
# Required in LWC Level 2 file
|
|
380
393
|
# ----------------------------
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudnetpy_qc-1.27.0 → cloudnetpy_qc-1.27.2}/cloudnetpy_qc/data/standardized-region-list.xml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|