AeroViz 0.1.9.2__py3-none-any.whl → 0.1.9.4__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.
Potentially problematic release.
This version of AeroViz might be problematic. Click here for more details.
- AeroViz/rawDataReader/script/SMPS.py +4 -0
- {AeroViz-0.1.9.2.dist-info → AeroViz-0.1.9.4.dist-info}/METADATA +35 -20
- {AeroViz-0.1.9.2.dist-info → AeroViz-0.1.9.4.dist-info}/RECORD +6 -6
- {AeroViz-0.1.9.2.dist-info → AeroViz-0.1.9.4.dist-info}/WHEEL +1 -1
- {AeroViz-0.1.9.2.dist-info → AeroViz-0.1.9.4.dist-info}/LICENSE +0 -0
- {AeroViz-0.1.9.2.dist-info → AeroViz-0.1.9.4.dist-info}/top_level.txt +0 -0
|
@@ -56,6 +56,10 @@ class Reader(AbstractReader):
|
|
|
56
56
|
_df_smps.columns = _df_smps.columns.astype(float)
|
|
57
57
|
_df_smps = _df_smps.loc[_df_smps.index.dropna().copy()]
|
|
58
58
|
|
|
59
|
+
if _df_smps.columns[0] != 11.8:
|
|
60
|
+
print(f'file_name: {file.name}')
|
|
61
|
+
return None
|
|
62
|
+
|
|
59
63
|
return _df_smps.apply(to_numeric, errors='coerce')
|
|
60
64
|
|
|
61
65
|
# QC data
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AeroViz
|
|
3
|
-
Version: 0.1.9.
|
|
3
|
+
Version: 0.1.9.4
|
|
4
4
|
Summary: Aerosol science
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
Author-email: alex <alex870521@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Alex870521/AeroViz
|
|
8
|
+
Project-URL: Repository, https://github.com/Alex870521/AeroViz
|
|
9
|
+
Project-URL: Issues, https://github.com/Alex870521/AeroViz/issues
|
|
8
10
|
Classifier: Programming Language :: Python :: 3
|
|
9
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
10
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -12,18 +14,31 @@ Classifier: Operating System :: OS Independent
|
|
|
12
14
|
Requires-Python: >=3.12
|
|
13
15
|
Description-Content-Type: text/markdown
|
|
14
16
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: pandas
|
|
16
|
-
Requires-Dist: numpy
|
|
17
|
-
Requires-Dist: matplotlib
|
|
18
|
-
Requires-Dist: scipy
|
|
19
|
-
Requires-Dist: seaborn
|
|
20
|
-
Requires-Dist: scikit-learn
|
|
21
|
-
Requires-Dist: windrose
|
|
22
|
-
Requires-Dist: cartopy
|
|
23
|
-
Requires-Dist: tabulate
|
|
24
|
-
Requires-Dist: rich
|
|
17
|
+
Requires-Dist: pandas==2.2.2
|
|
18
|
+
Requires-Dist: numpy==1.26.4
|
|
19
|
+
Requires-Dist: matplotlib==3.8.4
|
|
20
|
+
Requires-Dist: scipy==1.14.0
|
|
21
|
+
Requires-Dist: seaborn==0.13.2
|
|
22
|
+
Requires-Dist: scikit-learn==1.5.1
|
|
23
|
+
Requires-Dist: windrose==1.9.2
|
|
24
|
+
Requires-Dist: cartopy==0.24.1
|
|
25
|
+
Requires-Dist: tabulate==0.9.0
|
|
26
|
+
Requires-Dist: rich~=13.7.1
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: black>=23.0; extra == "dev"
|
|
29
|
+
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
30
|
+
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
|
31
|
+
Requires-Dist: mypy>=1.5.0; extra == "dev"
|
|
32
|
+
Requires-Dist: build; extra == "dev"
|
|
33
|
+
Requires-Dist: twine; extra == "dev"
|
|
34
|
+
Provides-Extra: docs
|
|
35
|
+
Requires-Dist: mkdocs>=1.4.0; extra == "docs"
|
|
36
|
+
Requires-Dist: mkdocs-material>=8.0; extra == "docs"
|
|
37
|
+
Requires-Dist: mkdocstrings[python]>=0.18.0; extra == "docs"
|
|
25
38
|
Provides-Extra: test
|
|
26
|
-
Requires-Dist: pytest
|
|
39
|
+
Requires-Dist: pytest>=7.0.0; extra == "test"
|
|
40
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "test"
|
|
41
|
+
Requires-Dist: pytest-mock>=3.10.0; extra == "test"
|
|
27
42
|
|
|
28
43
|
## <div align="center">AeroViz for Aerosol Science Visualization</div>
|
|
29
44
|
|
|
@@ -86,7 +101,7 @@ RawDataReader supports a wide range of aerosol instruments, including NEPH, SMPS
|
|
|
86
101
|
various file types and time resolutions, making data processing efficient and standardized.
|
|
87
102
|
|
|
88
103
|
For a detailed list of supported instruments, file types, and data columns, please refer to
|
|
89
|
-
our [RawDataReader Usage Guide](docs/
|
|
104
|
+
our [RawDataReader Usage Guide](docs/guide/RawDataReader) in the `docs` folder.
|
|
90
105
|
|
|
91
106
|
### Key Features:
|
|
92
107
|
|
|
@@ -132,10 +147,10 @@ For detailed documentation, please refer to the `docs` folder, which includes:
|
|
|
132
147
|
|
|
133
148
|
<div align="center">
|
|
134
149
|
|
|
135
|
-
| Documentation
|
|
136
|
-
|
|
137
|
-
| [User Guide](docs/
|
|
138
|
-
| [Changelog](docs/changelog.md)
|
|
150
|
+
| Documentation | Description |
|
|
151
|
+
|--------------------------------|--------------------------|
|
|
152
|
+
| [User Guide](docs/guide) | Basic usage instructions |
|
|
153
|
+
| [Changelog](docs/changelog.md) | List of changes |
|
|
139
154
|
|
|
140
155
|
</div>
|
|
141
156
|
|
|
@@ -85,7 +85,7 @@ AeroViz/rawDataReader/script/MA350.py,sha256=EfPTFhgDAjI7r0G6kW7pjog-4MBOnvW0cyF
|
|
|
85
85
|
AeroViz/rawDataReader/script/Minion.py,sha256=9G_q-EhE3nfJoxWFwAnMYdY0teSYqcYxTkk0JW5lmY0,7793
|
|
86
86
|
AeroViz/rawDataReader/script/NEPH.py,sha256=x6HgnvpmmhOOvB4-nL-jTfoSo0x8FUxVBXPqAyfhZVk,3215
|
|
87
87
|
AeroViz/rawDataReader/script/OCEC.py,sha256=jWWaNbCjP5MJDYrdWUhjrQLClaWqC8SGDVPIFJ9xljU,3413
|
|
88
|
-
AeroViz/rawDataReader/script/SMPS.py,sha256=
|
|
88
|
+
AeroViz/rawDataReader/script/SMPS.py,sha256=U1ZMgR8fexHPwR6tPiCtcvd32pGHEXkWKRR4HeSf1zM,2896
|
|
89
89
|
AeroViz/rawDataReader/script/TEOM.py,sha256=jsxU4W46FmLjiIthmPOHo6CAYFZiPENhW80WjMCiIPA,2103
|
|
90
90
|
AeroViz/rawDataReader/script/VOC.py,sha256=GUme72ZyjSzREsFNUgOV_OCESIVJBXY9KrKP1c9Av7I,1248
|
|
91
91
|
AeroViz/rawDataReader/script/XRF.py,sha256=SU1-D94GkwdkjlNXcyXbwQG1tOYCpeL6GTVkaLBHc-s,187
|
|
@@ -95,8 +95,8 @@ AeroViz/tools/database.py,sha256=05VzjJyhlRrhsZdhfFQ__7CxGm4MdFekLjz3_Is5h9U,343
|
|
|
95
95
|
AeroViz/tools/dataclassifier.py,sha256=_wpv0PlZ5EGkcNqHxfFtdEsYvHP5FVE8sMZXikhm_YE,4492
|
|
96
96
|
AeroViz/tools/dataprinter.py,sha256=Jq2Yztpa9YCOeLDVTrRs7PhSdNIPhEAexVj1YSuJ7hY,2249
|
|
97
97
|
AeroViz/tools/datareader.py,sha256=iTQ0U8hdNMjCdbiH7EiKW10UEoxzxXRHc4s5_1IikJo,1933
|
|
98
|
-
AeroViz-0.1.9.
|
|
99
|
-
AeroViz-0.1.9.
|
|
100
|
-
AeroViz-0.1.9.
|
|
101
|
-
AeroViz-0.1.9.
|
|
102
|
-
AeroViz-0.1.9.
|
|
98
|
+
AeroViz-0.1.9.4.dist-info/LICENSE,sha256=E-679GpGGkp3irmtuJXiT7R4cNUA4cmsH6Q7QUgPf5U,1069
|
|
99
|
+
AeroViz-0.1.9.4.dist-info/METADATA,sha256=NvlThIs40coWdSOs0mbaDCog5VfTAN6vrxD4cgMYhXc,7001
|
|
100
|
+
AeroViz-0.1.9.4.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
101
|
+
AeroViz-0.1.9.4.dist-info/top_level.txt,sha256=BYsmTst_o4FZOKRP1XIvIMlN6mMTTXNfnSToL2_nVbQ,8
|
|
102
|
+
AeroViz-0.1.9.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|