cloudnetpy-qc 1.25.6__tar.gz → 1.25.7__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.25.6/cloudnetpy_qc.egg-info → cloudnetpy_qc-1.25.7}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/variables.py +5 -20
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/version.py +1 -1
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7/cloudnetpy_qc.egg-info}/PKG-INFO +1 -1
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/LICENSE +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/MANIFEST.in +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/README.md +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/__init__.py +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/coverage.py +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/data/area-type-table.xml +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/data/cf-standard-name-table.xml +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/data/data_quality_config.ini +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/data/standardized-region-list.xml +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/py.typed +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/quality.py +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc/utils.py +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc.egg-info/SOURCES.txt +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc.egg-info/dependency_links.txt +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc.egg-info/requires.txt +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/cloudnetpy_qc.egg-info/top_level.txt +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/pyproject.toml +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/setup.cfg +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/tests/test_qc.py +0 -0
- {cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/tests/test_utils.py +0 -0
|
@@ -747,43 +747,28 @@ VARIABLES = {
|
|
|
747
747
|
"potential_temperature": Variable(
|
|
748
748
|
long_name="Potential temperature",
|
|
749
749
|
units="K",
|
|
750
|
-
required=[
|
|
751
|
-
Product.MWR_SINGLE,
|
|
752
|
-
Product.MWR_MULTI,
|
|
753
|
-
],
|
|
750
|
+
required=[Product.MWR_MULTI],
|
|
754
751
|
),
|
|
755
752
|
"equivalent_potential_temperature": Variable(
|
|
756
753
|
long_name="Equivalent potential temperature",
|
|
757
754
|
units="K",
|
|
758
|
-
required=[
|
|
759
|
-
Product.MWR_SINGLE,
|
|
760
|
-
Product.MWR_MULTI,
|
|
761
|
-
],
|
|
755
|
+
required=[Product.MWR_MULTI],
|
|
762
756
|
),
|
|
763
757
|
"relative_humidity": Variable(
|
|
764
758
|
long_name="Relative humidity",
|
|
765
759
|
standard_name="relative_humidity",
|
|
766
|
-
required=[
|
|
767
|
-
Product.MWR_SINGLE,
|
|
768
|
-
Product.MWR_MULTI,
|
|
769
|
-
],
|
|
760
|
+
required=[Product.MWR_MULTI],
|
|
770
761
|
),
|
|
771
762
|
"temperature_quality_flag": Variable(
|
|
772
763
|
long_name="Temperature quality flag",
|
|
773
764
|
units="1",
|
|
774
|
-
required=[
|
|
775
|
-
Product.MWR_SINGLE,
|
|
776
|
-
Product.MWR_MULTI,
|
|
777
|
-
],
|
|
765
|
+
required=[Product.MWR_MULTI],
|
|
778
766
|
dtype=Dtype.INT,
|
|
779
767
|
),
|
|
780
768
|
"temperature_quality_flag_status": Variable(
|
|
781
769
|
long_name="Temperature quality flag status",
|
|
782
770
|
units="1",
|
|
783
|
-
required=[
|
|
784
|
-
Product.MWR_SINGLE,
|
|
785
|
-
Product.MWR_MULTI,
|
|
786
|
-
],
|
|
771
|
+
required=[Product.MWR_MULTI],
|
|
787
772
|
dtype=Dtype.INT,
|
|
788
773
|
),
|
|
789
774
|
# ---------------------------------------
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudnetpy_qc-1.25.6 → cloudnetpy_qc-1.25.7}/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
|