cloudnetpy-qc 1.26.4__tar.gz → 1.27.1__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.26.4/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.27.1}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/data/data_quality_config.ini +15 -1
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/quality.py +6 -13
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/version.py +2 -2
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/LICENSE +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/MANIFEST.in +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/README.md +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/__init__.py +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/coverage.py +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/data/area-type-table.xml +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/py.typed +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/utils.py +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc/variables.py +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc.egg-info/requires.txt +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/pyproject.toml +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/setup.cfg +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/tests/test_qc.py +0 -0
- {cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/tests/test_utils.py +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[
|
|
1
|
+
[defaults]
|
|
2
2
|
Z = -100, 50
|
|
3
3
|
Zh = -100, 50
|
|
4
4
|
v = -20, 20
|
|
@@ -58,3 +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
|
+
|
|
65
|
+
[mwr-single]
|
|
66
|
+
elevation_angle = -1, 91
|
|
67
|
+
relative_humidity = -0.2, 2
|
|
68
|
+
|
|
69
|
+
[mwr-multi]
|
|
70
|
+
elevation_angle = -1, 91
|
|
71
|
+
relative_humidity = -0.2, 2
|
|
72
|
+
|
|
73
|
+
[radar]
|
|
74
|
+
wind_direction = -0.1, 360.1
|
|
@@ -165,11 +165,6 @@ class Test:
|
|
|
165
165
|
def _add_error(self, message: str | list):
|
|
166
166
|
self._add_message(message, ErrorLevel.ERROR)
|
|
167
167
|
|
|
168
|
-
def _read_config_keys(self, config_section: str) -> np.ndarray:
|
|
169
|
-
field = "all" if "attr" in config_section else self.product.value
|
|
170
|
-
keys = METADATA_CONFIG[config_section][field].split(",")
|
|
171
|
-
return np.char.strip(keys)
|
|
172
|
-
|
|
173
168
|
def _get_required_variables(self) -> dict:
|
|
174
169
|
return {
|
|
175
170
|
name: var
|
|
@@ -229,21 +224,19 @@ class FindVariableOutliers(Test):
|
|
|
229
224
|
self._add_info(msg)
|
|
230
225
|
|
|
231
226
|
def _get_limits(self, key: str) -> tuple[float, float] | None:
|
|
232
|
-
if key == "zenith_angle" and self.product in (
|
|
233
|
-
Product.MWR_L1C,
|
|
234
|
-
Product.MWR_SINGLE,
|
|
235
|
-
Product.MWR_MULTI,
|
|
236
|
-
):
|
|
237
|
-
return None
|
|
238
227
|
if key == "height" and self.product == Product.CPR:
|
|
239
228
|
return None
|
|
240
229
|
if key == "air_pressure":
|
|
241
230
|
pressure = utils.calc_pressure(np.mean(self.nc["altitude"][:]))
|
|
242
231
|
max_diff = pressure * 0.05
|
|
243
232
|
return (pressure - max_diff, pressure + max_diff)
|
|
244
|
-
if
|
|
233
|
+
if DATA_CONFIG.has_option(self.product.value, key):
|
|
234
|
+
section = self.product.value
|
|
235
|
+
elif DATA_CONFIG.has_option("defaults", key):
|
|
236
|
+
section = "defaults"
|
|
237
|
+
else:
|
|
245
238
|
return None
|
|
246
|
-
limit_min, limit_max = DATA_CONFIG.get(
|
|
239
|
+
limit_min, limit_max = DATA_CONFIG.get(section, key).split(",", maxsplit=1)
|
|
247
240
|
return (float(limit_min), float(limit_max))
|
|
248
241
|
|
|
249
242
|
def _get_data(self, key: str) -> np.ndarray:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudnetpy_qc-1.26.4 → cloudnetpy_qc-1.27.1}/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
|
|
File without changes
|