cloudnetpy 1.84.0__py3-none-any.whl → 1.84.1__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/instruments/weather_station.py +8 -0
- cloudnetpy/version.py +1 -1
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/METADATA +1 -1
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/RECORD +8 -8
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/WHEEL +0 -0
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/entry_points.txt +0 -0
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/licenses/LICENSE +0 -0
- {cloudnetpy-1.84.0.dist-info → cloudnetpy-1.84.1.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,6 @@
|
|
1
1
|
import csv
|
2
2
|
import datetime
|
3
|
+
import logging
|
3
4
|
import math
|
4
5
|
import re
|
5
6
|
from collections import defaultdict
|
@@ -198,6 +199,13 @@ class PalaiseauWS(WS):
|
|
198
199
|
if not (columns := row.split()):
|
199
200
|
continue
|
200
201
|
if re.match(r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z", columns[0]):
|
202
|
+
if len(columns) != len(self.keys) + 1:
|
203
|
+
msg = (
|
204
|
+
f"Skipping row '{row.strip()}' due to unexpected "
|
205
|
+
"number of values"
|
206
|
+
)
|
207
|
+
logging.warning(msg)
|
208
|
+
continue
|
201
209
|
timestamp = datetime.datetime.strptime(
|
202
210
|
columns[0], "%Y-%m-%dT%H:%M:%SZ"
|
203
211
|
).replace(tzinfo=datetime.timezone.utc)
|
cloudnetpy/version.py
CHANGED
@@ -9,7 +9,7 @@ cloudnetpy/metadata.py,sha256=CFpXmdEkVPzvLPv2xHIR-aMMQ-TR26KfESYw-98j7sk,7213
|
|
9
9
|
cloudnetpy/output.py,sha256=0bybnILsgKHWIuw2GYkqTz2iMCJDZLUN25IQ9o_v3Cg,14968
|
10
10
|
cloudnetpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
cloudnetpy/utils.py,sha256=O5kEXMt03fFKabPxRiCfuahVfTqa4fWWZ11orQnQeXU,33530
|
12
|
-
cloudnetpy/version.py,sha256=
|
12
|
+
cloudnetpy/version.py,sha256=Bu6a1uNfyNGLiB1RFZ8fIdr7uvx-Ng5jWbU9Y5hazl0,72
|
13
13
|
cloudnetpy/categorize/__init__.py,sha256=gtvzWr0IDRn2oA6yHBvinEhTGTuub-JkrOv93lBsgrE,61
|
14
14
|
cloudnetpy/categorize/atmos_utils.py,sha256=uWc9TABVYPI0sn4H5Az9Jf6NVRaWyEKIi17f0pAJQxE,10679
|
15
15
|
cloudnetpy/categorize/attenuation.py,sha256=Y_-fzmQTltWTqIZTulJhovC7a6ifpMcaAazDJcnMIOc,990
|
@@ -56,7 +56,7 @@ cloudnetpy/instruments/rpg.py,sha256=R1rUdeSADvB1IMkGOF1S0rUEJDGEI_19SPrmErZpn5M
|
|
56
56
|
cloudnetpy/instruments/rpg_reader.py,sha256=NaOtTxXx20PozNTj1xNvmbsEsAxuplFXRzBiM1_-Zg4,11651
|
57
57
|
cloudnetpy/instruments/toa5.py,sha256=CfmmBMv5iMGaWHIGBK01Rw24cuXC1R1RMNTXkmsm340,1760
|
58
58
|
cloudnetpy/instruments/vaisala.py,sha256=tu7aljkMKep0uCWz-Sd-GuBXF_Yy421a4nHy0ffpMoc,4725
|
59
|
-
cloudnetpy/instruments/weather_station.py,sha256=
|
59
|
+
cloudnetpy/instruments/weather_station.py,sha256=mgjTBaJtevW_c3sv_-9jyFo5HXF-eeegXzbHBttxRyg,28845
|
60
60
|
cloudnetpy/instruments/disdrometer/__init__.py,sha256=lyjwttWvFvuwYxEkusoAvgRcbBmglmOp5HJOpXUqLWo,93
|
61
61
|
cloudnetpy/instruments/disdrometer/common.py,sha256=WCPRCfAlElUzZpllOSjjWrLG2jgkiRIy0rWz_omFoJQ,10815
|
62
62
|
cloudnetpy/instruments/disdrometer/parsivel.py,sha256=OZTLZgSOMfPF5cxY-ICSb0gvyEMm_3JspmRYYvb9hCo,25837
|
@@ -117,10 +117,10 @@ cloudnetpy/products/lwc.py,sha256=xsNiiG6dGKIkWaFk0xWTabc1bZ4ULf6SqcqHs7itAUk,19
|
|
117
117
|
cloudnetpy/products/mie_lu_tables.nc,sha256=It4fYpqJXlqOgL8jeZ-PxGzP08PMrELIDVe55y9ob58,16637951
|
118
118
|
cloudnetpy/products/mwr_tools.py,sha256=MMWnp68U7bv157-CPB2VeTQvaR6zl7sexbBT_kJ_pn8,6734
|
119
119
|
cloudnetpy/products/product_tools.py,sha256=eyqIw_0KhlpmmYQE69RpGdRIAOW7JVPlEgkTBp2kdps,11302
|
120
|
-
cloudnetpy-1.84.
|
120
|
+
cloudnetpy-1.84.1.dist-info/licenses/LICENSE,sha256=wcZF72bdaoG9XugpyE95Juo7lBQOwLuTKBOhhtANZMM,1094
|
121
121
|
docs/source/conf.py,sha256=IKiFWw6xhUd8NrCg0q7l596Ck1d61XWeVjIFHVSG9Og,1490
|
122
|
-
cloudnetpy-1.84.
|
123
|
-
cloudnetpy-1.84.
|
124
|
-
cloudnetpy-1.84.
|
125
|
-
cloudnetpy-1.84.
|
126
|
-
cloudnetpy-1.84.
|
122
|
+
cloudnetpy-1.84.1.dist-info/METADATA,sha256=6IQo1hk6eXK0J5wAS1OGOxkAT3JvJga3Z0QJhQ2N3z0,5836
|
123
|
+
cloudnetpy-1.84.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
124
|
+
cloudnetpy-1.84.1.dist-info/entry_points.txt,sha256=HhY7LwCFk4qFgDlXx_Fy983ZTd831WlhtdPIzV-Y3dY,51
|
125
|
+
cloudnetpy-1.84.1.dist-info/top_level.txt,sha256=ibSPWRr6ojS1i11rtBFz2_gkIe68mggj7aeswYfaOo0,16
|
126
|
+
cloudnetpy-1.84.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|