cloudnetpy-qc 1.27.3__tar.gz → 1.27.4__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.3/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.27.4}/PKG-INFO +1 -1
  2. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/quality.py +11 -0
  3. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/version.py +1 -1
  4. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
  5. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/LICENSE +0 -0
  6. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/MANIFEST.in +0 -0
  7. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/README.md +0 -0
  8. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/__init__.py +0 -0
  9. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/coverage.py +0 -0
  10. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/data/area-type-table.xml +0 -0
  11. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
  12. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/data/data_quality_config.ini +0 -0
  13. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
  14. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/py.typed +0 -0
  15. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/utils.py +0 -0
  16. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc/variables.py +0 -0
  17. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
  18. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
  19. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc.egg-info/requires.txt +0 -0
  20. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
  21. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/pyproject.toml +0 -0
  22. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/setup.cfg +0 -0
  23. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/tests/test_qc.py +0 -0
  24. {cloudnetpy_qc-1.27.3 → cloudnetpy_qc-1.27.4}/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.3
3
+ Version: 1.27.4
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
@@ -1017,6 +1017,17 @@ class TestInstrumentPid(Test):
1017
1017
  == "https://hdl.handle.net/21.12132/3.7cd404bd07d74e93"
1018
1018
  ):
1019
1019
  return "3629" if self._get_date() <= datetime.date(2023, 10, 23) else "3778"
1020
+ # Also in Lindenberg DA10 the serial number changed after instrument upgrade
1021
+ elif (
1022
+ self.nc.instrument_pid
1023
+ == "https://hdl.handle.net/21.12132/3.9c7bcece918642ea"
1024
+ ):
1025
+ return (
1026
+ "V4610942"
1027
+ if self._get_date() < datetime.date(2025, 7, 1)
1028
+ else "V4610983"
1029
+ )
1030
+
1020
1031
  idents = self._get_value("21.T11148/eb3c713572f681e6c4c3")
1021
1032
  if not isinstance(idents, list):
1022
1033
  return None
@@ -2,5 +2,5 @@
2
2
 
3
3
  MAJOR = 1
4
4
  MINOR = 27
5
- PATCH = 3
5
+ PATCH = 4
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.3
3
+ Version: 1.27.4
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