cloudnetpy-qc 1.30.2__py3-none-any.whl → 1.30.3__py3-none-any.whl

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/quality.py CHANGED
@@ -437,11 +437,11 @@ class TestGlobalAttributes(Test):
437
437
  if product in (Product.MWR_SINGLE, Product.MWR_MULTI, Product.EPSILON_LIDAR):
438
438
  attrs.add("source_file_uuids")
439
439
  if product != Product.MODEL:
440
- attrs.add(
441
- "instrument_pid"
442
- if self._instrument_product(product)
443
- else "source_file_uuids"
444
- )
440
+ if self._instrument_product(product):
441
+ attrs.add("instrument_pid")
442
+ else:
443
+ attrs.add("source_file_uuids")
444
+ attrs.add("source_instrument_pids")
445
445
  return attrs
446
446
 
447
447
  def _optional_attr(self, name: str, product: Product) -> bool:
cloudnetpy_qc/version.py CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  MAJOR = 1
4
4
  MINOR = 30
5
- PATCH = 2
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.30.2
3
+ Version: 1.30.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
@@ -1,16 +1,16 @@
1
1
  cloudnetpy_qc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  cloudnetpy_qc/coverage.py,sha256=sU7MJzoUIdhCAG-SIP4JM1ZVS8IqPgGXAdiwB-cfLqw,2478
3
3
  cloudnetpy_qc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- cloudnetpy_qc/quality.py,sha256=KntFPAengDKE9JmuRjQ3-W0IrQNnKScd0APWCdzCn5I,41823
4
+ cloudnetpy_qc/quality.py,sha256=qAk5rzFmu0VVYVMS_glsgAT4nYjlglrfgeRbyrE6-jw,41870
5
5
  cloudnetpy_qc/utils.py,sha256=zFVryl56le2cyfDSCyGCzMHACcsjK7AJZknii1fgfgg,5393
6
6
  cloudnetpy_qc/variables.py,sha256=IfaGpuDnWWI_Y_I8LPqyPCYY_VhXS5HueeyH3N85Qtc,53668
7
- cloudnetpy_qc/version.py,sha256=3E95yL-8qUVsF5N-mTzBYRq_c309APGiU0ZepU-oO2c,102
7
+ cloudnetpy_qc/version.py,sha256=AaUfgri5AFoU6aUsZtOL5JyA8UxgK2imNLbMAkIf-MY,102
8
8
  cloudnetpy_qc/data/area-type-table.xml,sha256=LQGp6rk8d-jZVjeFWPK_NjG2Kk1atvLlQXmV4UXggKI,17788
9
9
  cloudnetpy_qc/data/cf-standard-name-table.xml,sha256=uk6Y5OVRh_2PV_OQe3KITHaRB_rIYh513b31gnPGNXU,4467326
10
10
  cloudnetpy_qc/data/data_quality_config.ini,sha256=deAQzo3eMclgIaQTGYGdwLaD_AM9vGDGaf4VvJ_ZQrs,1449
11
11
  cloudnetpy_qc/data/standardized-region-list.xml,sha256=gLRE2G7RQLD9hmvW5dTzyK7XPhORxWv2bfbrvAp5Uto,6426
12
- cloudnetpy_qc-1.30.2.dist-info/licenses/LICENSE,sha256=P0wszB7Cq2M390SKaqT4DGvECfwGOMdTTdxsWBpEUUc,1094
13
- cloudnetpy_qc-1.30.2.dist-info/METADATA,sha256=3Zw-_T8veo9ZpC078qhkPhyjpVY4mSAWe4jfXr7igW4,8584
14
- cloudnetpy_qc-1.30.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- cloudnetpy_qc-1.30.2.dist-info/top_level.txt,sha256=shrf8A1KyrrnhbHocc4gHmTl38YY-DHflgf-gXiKnKs,14
16
- cloudnetpy_qc-1.30.2.dist-info/RECORD,,
12
+ cloudnetpy_qc-1.30.3.dist-info/licenses/LICENSE,sha256=P0wszB7Cq2M390SKaqT4DGvECfwGOMdTTdxsWBpEUUc,1094
13
+ cloudnetpy_qc-1.30.3.dist-info/METADATA,sha256=zs5UuX06iCiMN1wNGrlZ8k4fC2lrFZ9zCkZFwqsEBCg,8584
14
+ cloudnetpy_qc-1.30.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
15
+ cloudnetpy_qc-1.30.3.dist-info/top_level.txt,sha256=shrf8A1KyrrnhbHocc4gHmTl38YY-DHflgf-gXiKnKs,14
16
+ cloudnetpy_qc-1.30.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5