cloudnetpy-qc 1.27.1__tar.gz → 1.27.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 (24) hide show
  1. {cloudnetpy_qc-1.27.1/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.27.3}/PKG-INFO +1 -1
  2. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/coverage.py +2 -0
  3. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/variables.py +13 -0
  4. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/version.py +1 -1
  5. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
  6. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/LICENSE +0 -0
  7. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/MANIFEST.in +0 -0
  8. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/README.md +0 -0
  9. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/__init__.py +0 -0
  10. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/data/area-type-table.xml +0 -0
  11. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
  12. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/data/data_quality_config.ini +0 -0
  13. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
  14. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/py.typed +0 -0
  15. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/quality.py +0 -0
  16. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc/utils.py +0 -0
  17. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
  18. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
  19. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc.egg-info/requires.txt +0 -0
  20. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
  21. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/pyproject.toml +0 -0
  22. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/setup.cfg +0 -0
  23. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/tests/test_qc.py +0 -0
  24. {cloudnetpy_qc-1.27.1 → cloudnetpy_qc-1.27.3}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudnetpy_qc
3
- Version: 1.27.1
3
+ Version: 1.27.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
@@ -33,6 +33,8 @@ def data_coverage(
33
33
  return None
34
34
  if nc.cloudnet_file_type == "model":
35
35
  expected_res = _model_resolution(nc)
36
+ elif "da10" in getattr(nc, "source", "").lower():
37
+ expected_res = datetime.timedelta(minutes=2)
36
38
  else:
37
39
  product = Product(nc.cloudnet_file_type)
38
40
  expected_res = RESOLUTIONS.get(product, DEFAULT_RESOLUTION)
@@ -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
  # ----------------------------
@@ -2,5 +2,5 @@
2
2
 
3
3
  MAJOR = 1
4
4
  MINOR = 27
5
- PATCH = 1
5
+ PATCH = 3
6
6
  __version__ = f"{MAJOR}.{MINOR}.{PATCH}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudnetpy_qc
3
- Version: 1.27.1
3
+ Version: 1.27.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