AeroViz 0.1.9.4__py3-none-any.whl → 0.1.9.6__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.

Files changed (96) hide show
  1. AeroViz/__init__.py +1 -2
  2. AeroViz/__pycache__/__init__.cpython-312.pyc +0 -0
  3. AeroViz/dataProcess/Chemistry/__pycache__/__init__.cpython-312.pyc +0 -0
  4. AeroViz/{plot/optical → dataProcess/Optical}/PyMieScatt_update.py +4 -11
  5. AeroViz/dataProcess/Optical/__pycache__/PyMieScatt_update.cpython-312.pyc +0 -0
  6. AeroViz/dataProcess/Optical/__pycache__/__init__.cpython-312.pyc +0 -0
  7. AeroViz/dataProcess/Optical/__pycache__/mie_theory.cpython-312.pyc +0 -0
  8. AeroViz/dataProcess/SizeDistr/__pycache__/__init__.cpython-312.pyc +0 -0
  9. AeroViz/dataProcess/SizeDistr/prop.py +62 -0
  10. AeroViz/dataProcess/VOC/__pycache__/__init__.cpython-312.pyc +0 -0
  11. AeroViz/dataProcess/__pycache__/__init__.cpython-312.pyc +0 -0
  12. AeroViz/dataProcess/core/__pycache__/__init__.cpython-312.pyc +0 -0
  13. AeroViz/plot/__init__.py +0 -1
  14. AeroViz/plot/__pycache__/__init__.cpython-312.pyc +0 -0
  15. AeroViz/plot/__pycache__/bar.cpython-312.pyc +0 -0
  16. AeroViz/plot/__pycache__/box.cpython-312.pyc +0 -0
  17. AeroViz/plot/__pycache__/pie.cpython-312.pyc +0 -0
  18. AeroViz/plot/__pycache__/radar.cpython-312.pyc +0 -0
  19. AeroViz/plot/__pycache__/regression.cpython-312.pyc +0 -0
  20. AeroViz/plot/__pycache__/scatter.cpython-312.pyc +0 -0
  21. AeroViz/plot/__pycache__/violin.cpython-312.pyc +0 -0
  22. AeroViz/plot/distribution/__pycache__/__init__.cpython-312.pyc +0 -0
  23. AeroViz/plot/distribution/__pycache__/distribution.cpython-312.pyc +0 -0
  24. AeroViz/plot/meteorology/{meteorology.py → CBPF.py} +150 -122
  25. AeroViz/plot/meteorology/__init__.py +3 -1
  26. AeroViz/plot/meteorology/__pycache__/CBPF.cpython-312.pyc +0 -0
  27. AeroViz/plot/meteorology/__pycache__/__init__.cpython-312.pyc +0 -0
  28. AeroViz/plot/meteorology/__pycache__/hysplit.cpython-312.pyc +0 -0
  29. AeroViz/plot/meteorology/__pycache__/wind_rose.cpython-312.pyc +0 -0
  30. AeroViz/plot/meteorology/wind_rose.py +77 -0
  31. AeroViz/plot/optical/__pycache__/__init__.cpython-312.pyc +0 -0
  32. AeroViz/plot/optical/__pycache__/optical.cpython-312.pyc +0 -0
  33. AeroViz/plot/optical/optical.py +2 -3
  34. AeroViz/plot/templates/__pycache__/__init__.cpython-312.pyc +0 -0
  35. AeroViz/plot/templates/__pycache__/ammonium_rich.cpython-312.pyc +0 -0
  36. AeroViz/plot/templates/__pycache__/contour.cpython-312.pyc +0 -0
  37. AeroViz/plot/templates/__pycache__/corr_matrix.cpython-312.pyc +0 -0
  38. AeroViz/plot/templates/__pycache__/diurnal_pattern.cpython-312.pyc +0 -0
  39. AeroViz/plot/templates/__pycache__/koschmieder.cpython-312.pyc +0 -0
  40. AeroViz/plot/templates/__pycache__/metal_heatmap.cpython-312.pyc +0 -0
  41. AeroViz/plot/timeseries/__pycache__/__init__.cpython-312.pyc +0 -0
  42. AeroViz/plot/timeseries/__pycache__/template.cpython-312.pyc +0 -0
  43. AeroViz/plot/timeseries/__pycache__/timeseries.cpython-312.pyc +0 -0
  44. AeroViz/plot/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  45. AeroViz/plot/utils/__pycache__/_color.cpython-312.pyc +0 -0
  46. AeroViz/plot/utils/__pycache__/_unit.cpython-312.pyc +0 -0
  47. AeroViz/plot/utils/__pycache__/plt_utils.cpython-312.pyc +0 -0
  48. AeroViz/plot/utils/__pycache__/sklearn_utils.cpython-312.pyc +0 -0
  49. AeroViz/plot/utils/plt_utils.py +1 -1
  50. AeroViz/rawDataReader/__init__.py +4 -2
  51. AeroViz/rawDataReader/__pycache__/__init__.cpython-312.pyc +0 -0
  52. AeroViz/rawDataReader/config/__pycache__/__init__.cpython-312.pyc +0 -0
  53. AeroViz/rawDataReader/config/__pycache__/supported_instruments.cpython-312.pyc +0 -0
  54. AeroViz/rawDataReader/core/__init__.py +71 -72
  55. AeroViz/rawDataReader/core/__pycache__/__init__.cpython-312.pyc +0 -0
  56. AeroViz/rawDataReader/core/__pycache__/logger.cpython-312.pyc +0 -0
  57. AeroViz/rawDataReader/core/__pycache__/qc.cpython-312.pyc +0 -0
  58. AeroViz/rawDataReader/core/logger.py +78 -0
  59. AeroViz/rawDataReader/script/Aurora.py +1 -1
  60. AeroViz/rawDataReader/script/EPA.py +1 -1
  61. AeroViz/rawDataReader/script/Minion.py +4 -3
  62. AeroViz/rawDataReader/script/NEPH.py +1 -1
  63. AeroViz/rawDataReader/script/OCEC.py +1 -1
  64. AeroViz/rawDataReader/script/SMPS.py +9 -7
  65. AeroViz/rawDataReader/script/TEOM.py +1 -1
  66. AeroViz/rawDataReader/script/__pycache__/AE33.cpython-312.pyc +0 -0
  67. AeroViz/rawDataReader/script/__pycache__/AE43.cpython-312.pyc +0 -0
  68. AeroViz/rawDataReader/script/__pycache__/APS_3321.cpython-312.pyc +0 -0
  69. AeroViz/rawDataReader/script/__pycache__/Aurora.cpython-312.pyc +0 -0
  70. AeroViz/rawDataReader/script/__pycache__/BC1054.cpython-312.pyc +0 -0
  71. AeroViz/rawDataReader/script/__pycache__/EPA.cpython-312.pyc +0 -0
  72. AeroViz/rawDataReader/script/__pycache__/GRIMM.cpython-312.pyc +0 -0
  73. AeroViz/rawDataReader/script/__pycache__/IGAC.cpython-312.pyc +0 -0
  74. AeroViz/rawDataReader/script/__pycache__/MA350.cpython-312.pyc +0 -0
  75. AeroViz/rawDataReader/script/__pycache__/Minion.cpython-312.pyc +0 -0
  76. AeroViz/rawDataReader/script/__pycache__/NEPH.cpython-312.pyc +0 -0
  77. AeroViz/rawDataReader/script/__pycache__/OCEC.cpython-312.pyc +0 -0
  78. AeroViz/rawDataReader/script/__pycache__/SMPS.cpython-312.pyc +0 -0
  79. AeroViz/rawDataReader/script/__pycache__/TEOM.cpython-312.pyc +0 -0
  80. AeroViz/rawDataReader/script/__pycache__/VOC.cpython-312.pyc +0 -0
  81. AeroViz/rawDataReader/script/__pycache__/XRF.cpython-312.pyc +0 -0
  82. AeroViz/rawDataReader/script/__pycache__/__init__.cpython-312.pyc +0 -0
  83. AeroViz/tools/__init__.py +0 -1
  84. AeroViz/tools/__pycache__/__init__.cpython-312.pyc +0 -0
  85. AeroViz/tools/__pycache__/database.cpython-312.pyc +0 -0
  86. AeroViz/tools/__pycache__/dataclassifier.cpython-312.pyc +0 -0
  87. {AeroViz-0.1.9.4.dist-info → AeroViz-0.1.9.6.dist-info}/METADATA +40 -78
  88. AeroViz-0.1.9.6.dist-info/RECORD +169 -0
  89. {AeroViz-0.1.9.4.dist-info → AeroViz-0.1.9.6.dist-info}/WHEEL +1 -1
  90. AeroViz/plot/hysplit/__init__.py +0 -1
  91. AeroViz/tools/datareader.py +0 -66
  92. AeroViz-0.1.9.4.dist-info/RECORD +0 -102
  93. /AeroViz/{plot/optical → dataProcess/Optical}/mie_theory.py +0 -0
  94. /AeroViz/plot/{hysplit → meteorology}/hysplit.py +0 -0
  95. {AeroViz-0.1.9.4.dist-info → AeroViz-0.1.9.6.dist-info}/LICENSE +0 -0
  96. {AeroViz-0.1.9.4.dist-info → AeroViz-0.1.9.6.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AeroViz
3
- Version: 0.1.9.4
3
+ Version: 0.1.9.6
4
4
  Summary: Aerosol science
5
5
  Author-email: alex <alex870521@gmail.com>
6
6
  License: MIT
@@ -8,14 +8,15 @@ Project-URL: Homepage, https://github.com/Alex870521/AeroViz
8
8
  Project-URL: Repository, https://github.com/Alex870521/AeroViz
9
9
  Project-URL: Issues, https://github.com/Alex870521/AeroViz/issues
10
10
  Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.11
11
12
  Classifier: Programming Language :: Python :: 3.12
12
13
  Classifier: License :: OSI Approved :: MIT License
13
14
  Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.12
15
+ Requires-Python: >=3.11
15
16
  Description-Content-Type: text/markdown
16
17
  License-File: LICENSE
17
- Requires-Dist: pandas==2.2.2
18
- Requires-Dist: numpy==1.26.4
18
+ Requires-Dist: pandas>=2.2.0
19
+ Requires-Dist: numpy>=1.26.4
19
20
  Requires-Dist: matplotlib==3.8.4
20
21
  Requires-Dist: scipy==1.14.0
21
22
  Requires-Dist: seaborn==0.13.2
@@ -42,14 +43,14 @@ Requires-Dist: pytest-mock>=3.10.0; extra == "test"
42
43
 
43
44
  ## <div align="center">AeroViz for Aerosol Science Visualization</div>
44
45
 
45
- <p align="center">
46
+ <div align="center">
46
47
 
47
- <img alt="Static Badge" src="https://img.shields.io/badge/python-3.12-blue?logo=python">
48
- <img alt="Static Badge" src="https://img.shields.io/badge/License-MIT-yellow">
49
- <img alt="Static Badge" src="https://img.shields.io/badge/github-updating-red?logo=github">
50
- <img alt="Static Badge" src="https://img.shields.io/badge/testing-green?logo=Pytest&logoColor=blue">
48
+ ![Python](https://img.shields.io/pypi/pyversions/aeroviz?logo=python)
49
+ ![PyPI](https://img.shields.io/pypi/v/aeroviz?logo=pypi)
50
+ ![Pytest](https://img.shields.io/github/actions/workflow/status/Alex870521/aeroviz/pytest.yml?logo=pytest&label=pytest)
51
+ ![GitHub last commit](https://img.shields.io/github/last-commit/Alex870521/aeroviz?logo=github)
51
52
 
52
- </p>
53
+ </div>
53
54
 
54
55
  <div align="center">
55
56
 
@@ -58,26 +59,44 @@ Requires-Dist: pytest-mock>=3.10.0; extra == "test"
58
59
  <a href="https://www.linkedin.com/in/Alex870521/"><img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-social-linkedin.png?raw=true" width="3%" alt="Alex870521 LinkedIn"></a>
59
60
  <img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-transparent.png?raw=true" width="3%">
60
61
  <a href="https://medium.com/@alex870521"><img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-social-medium.png?raw=true" width="3%" alt="Alex870521 Medium"></a>
61
-
62
62
  </div>
63
63
 
64
+ ## <div align="center">Installation</div>
65
+ ```bash
66
+ pip install AeroViz
67
+ ```
68
+
64
69
  ## <div align="center">Key Features</div>
65
70
 
66
- * Data Reading: Supports reading multiple aerosol data formats.
67
- * Data Visualization: Offers various charts and graphs, including time series plots, distribution plots, and correlation
68
- matrices.
69
- * Data Processing: Includes multiple data processing tools, such as linear regression and Mie theory calculations.
71
+ ### 📊 Data Reading `RawDataReader`
70
72
 
73
+ Built-in RawDataReader supporting multiple aerosol instruments:
71
74
 
72
- ## <div align="center">Installation</div>
75
+ - **Particle Sizers**: SMPS, APS, GRIMM, OPC
76
+ - **Mass & Optical**: TEOM, NEPH, Aurora, AE33/43, BC1054
77
+ - **Chemical Analysis**: OCEC, IGAC, XRF, VOC
73
78
 
74
- ```bash
75
- pip install AeroViz
76
- ```
79
+ > Features include quality control, data filtering, flexible resampling, and CSV export. For detailed instrument support
80
+ > and usage, check our [RawDataReader Guide](docs/guide/RawDataReader).
81
+
82
+ ### 🔬 Data Processing ▶ `DataProcess`
83
+
84
+ Advanced aerosol analysis:
77
85
 
78
- For Windows users: Run `install_windows.bat`
86
+ - **Size Distribution**: Mode Fitting, Log-Normal Analysis
87
+ - **Optical Properties**: Mie Theory, SOAP Calculation
88
+ - **Chemical**: Mass Closure, Source Apportionment
89
+ - **VOC**: OFP, SOAP
79
90
 
80
- For Linux and Mac users: Run `install_unix.bat`
91
+ ### 📈 Data Visualization `plot`
92
+
93
+ Comprehensive visualization tools:
94
+
95
+ - **Time Analysis**: Trends, Diurnal Patterns
96
+ - **Statistical**: Distributions, Correlations
97
+ - **Specialized**: Size Contours, Wind Rose, Polar Plots, Hysplit, CBPF
98
+
99
+ > **Note:** We are continuously adding support for more instruments and features. Contributions are welcome!
81
100
 
82
101
  ## <div align="center">Quick Start</div>
83
102
 
@@ -92,57 +111,10 @@ data = RawDataReader('NEPH', Path('/path/to/data'), start=datetime(2024, 2, 1),
92
111
  # Create a visualization
93
112
  plot.timeseries(data, y='scattering_coefficient')
94
113
  ```
95
-
96
114
  For more detailed usage instructions, please refer to our [User Guide]().
97
115
 
98
- ## <div align="center"> RawDataReader
99
-
100
- RawDataReader supports a wide range of aerosol instruments, including NEPH, SMPS, AE33, and many more. It handles
101
- various file types and time resolutions, making data processing efficient and standardized.
102
-
103
- For a detailed list of supported instruments, file types, and data columns, please refer to
104
- our [RawDataReader Usage Guide](docs/guide/RawDataReader) in the `docs` folder.
105
-
106
- ### Key Features:
107
-
108
- - Supports multiple aerosol instruments
109
- - Applies customizable quality control measures
110
- - Offers flexible data filtering and resampling options
111
- - Enables easy data export to CSV format
112
-
113
- ### Supported Instruments
114
-
115
- The AeroViz project currently supports data from the following instruments:
116
-
117
- - SMPS (Scanning Mobility Particle Sizer)
118
- - APS (Aerodynamic Particle Sizer)
119
- - GRIMM (GRIMM Aerosol Technik)
120
- - TEOM (Continuous Ambient Particulate Monitor)
121
- - NEPH (Nephelometer)
122
- - Aurora (Nephelometer)
123
- - AE33 (Aethalometer Model 33)
124
- - AE43 (Aethalometer Model 43)
125
- - BC1054 (Black Carbon Monitor 1054)
126
- - MA350 (MicroAeth MA350)
127
- - OCEC (Organic Carbon Elemental Carbon Analyzer)
128
- - IGAC (In-situ Gas and Aerosol Compositions monitor)
129
- - XRF (X-ray Fluorescence Spectrometer)
130
- - VOC (Volatile Organic Compounds Monitor)
131
-
132
- > **Note:** We are continuously working to support more instruments. Please check back for updates or contribute to our
133
- > project on GitHub.
134
-
135
- ## <div align="center">DataProcess</div>
136
-
137
- The AeroViz project currently supports the following processing methods:
138
-
139
- - **Chemistry**:
140
- - **Optical**
141
- - **SizeDistr**
142
- - **VOC**
143
116
 
144
117
  ## <div align="center">Documentation</div>
145
-
146
118
  For detailed documentation, please refer to the `docs` folder, which includes:
147
119
 
148
120
  <div align="center">
@@ -151,17 +123,9 @@ For detailed documentation, please refer to the `docs` folder, which includes:
151
123
  |--------------------------------|--------------------------|
152
124
  | [User Guide](docs/guide) | Basic usage instructions |
153
125
  | [Changelog](docs/changelog.md) | List of changes |
154
-
155
126
  </div>
156
127
 
157
- ## <div align="center">Related Source</div>
158
-
159
- * #### [PyMieScatt](https://github.com/bsumlin/PyMieScatt.git)
160
- * #### [py-smps](https://github.com/quant-aq/py-smps.git)
161
- * #### [ContainerHandle](https://github.com/yrr-Su/ContainerHandle.git)
162
-
163
128
  ## <div align="center">Contact</div>
164
-
165
129
  For bug reports and feature requests please visit [GitHub Issues](https://github.com/Alex870521/DataPlot/issues).
166
130
 
167
131
  <div align="center">
@@ -171,6 +135,4 @@ For bug reports and feature requests please visit [GitHub Issues](https://github
171
135
  <a href="https://www.linkedin.com/in/Alex870521/"><img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-social-linkedin.png?raw=true" width="3%" alt="Alex870521 LinkedIn"></a>
172
136
  <img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-transparent.png?raw=true" width="3%">
173
137
  <a href="https://medium.com/@alex870521"><img src="https://github.com/Alex870521/AeroViz/blob/main/assets/media/logo-social-medium.png?raw=true" width="3%" alt="Alex870521 Medium"></a>
174
-
175
-
176
138
  </div>
@@ -0,0 +1,169 @@
1
+ AeroViz/__init__.py,sha256=4ICXg4UATkGXIUziaXcPX2Yaqj6OK5SL0ilU1JKeGFw,341
2
+ AeroViz/__pycache__/__init__.cpython-312.pyc,sha256=bVl5QVcxgTsWINh74Qx5f3HWXv3PPM6olO1yCGRM9pQ,428
3
+ AeroViz/data/DEFAULT_DATA.csv,sha256=eeeyeh8vSLKkE5tAF0TYnUNOyQIH98VA41bJaAP204Y,2248526
4
+ AeroViz/data/DEFAULT_PNSD_DATA.csv,sha256=imLvLA80oYwo_jzXZtlQn5hZ76d47HUIlK2jp0tZPrg,2636511
5
+ AeroViz/data/hysplit_example_data.txt,sha256=DWfY83EW3fOcv9dW-Y4pudq8-M7BJlXD-tlMSYrAk2w,8946
6
+ AeroViz/dataProcess/__init__.py,sha256=D3rTVUiGfs_daGuaotVtbijOgLAp6HaRWchj-zoEnHw,828
7
+ AeroViz/dataProcess/Chemistry/__init__.py,sha256=fyyomjxkQcUNWDx4R5jPrHafAftN-v2liUZii9OlaiU,2058
8
+ AeroViz/dataProcess/Chemistry/_calculate.py,sha256=q7ojTFPok0vg8k_1PMECNdP5CPanR9NWQ4Rx5iTcHew,599
9
+ AeroViz/dataProcess/Chemistry/_isoropia.py,sha256=3wp_FXdN230awlStMbctutwld4oot9WaAVXETGd6PSs,3255
10
+ AeroViz/dataProcess/Chemistry/_mass_volume.py,sha256=0joH2BAx0NUwDFzyrLgG-v7WrGl46R7zWxwbajWBV8o,5378
11
+ AeroViz/dataProcess/Chemistry/_ocec.py,sha256=1UpSwdxYVy_LpUjtoaEUoXA-r1nKEFJoyYglf_6CoXA,5899
12
+ AeroViz/dataProcess/Chemistry/_partition.py,sha256=tKhb6BJns46UiUlEq6Zq7ahYnvUJ_whY3tWE54C3bqU,1023
13
+ AeroViz/dataProcess/Chemistry/_teom.py,sha256=IiM-TrifWpQLTbKllG-4k4c3mvQulfcmjswWu6muCXA,486
14
+ AeroViz/dataProcess/Chemistry/isrpia.cnf,sha256=iWXTqsOZFmNrJxAI9nYuilZ9h6ru1icdPFVim7YKc_k,566
15
+ AeroViz/dataProcess/Chemistry/isrpia2.exe,sha256=xFYPTXHSjl_-atmVcTmqqOkTZgUn1p8h-kFMcoGMIQw,1560032
16
+ AeroViz/dataProcess/Chemistry/__pycache__/__init__.cpython-312.pyc,sha256=Th0Z138Nk-0gC8SMkszGhJbrjpCJE0w1L-IB75lj2CI,2712
17
+ AeroViz/dataProcess/Optical/Angstrom_exponent.py,sha256=KSGM_hf2oUPsLoLuhYSRDK5zdekwce9KgqhzRnf2Y4g,706
18
+ AeroViz/dataProcess/Optical/PyMieScatt_update.py,sha256=3W2nqo9sQLqj9dqWh5Eqx2XUdu44bGWDLTa3QnjiUvM,20943
19
+ AeroViz/dataProcess/Optical/_IMPROVE.py,sha256=n3uHUQTivckIrNlbE8rP7lPZGcMWZUAnS_qX8pXd55Q,1670
20
+ AeroViz/dataProcess/Optical/__init__.py,sha256=h_IYhaum0DhK7Qw6lWFvjAEv7uAqLVVPEwU0V4hJnX4,1371
21
+ AeroViz/dataProcess/Optical/_absorption.py,sha256=pYHIoj_R23wKvxR4acUqqU9JXKY40wgsFvZH78rETrY,1234
22
+ AeroViz/dataProcess/Optical/_extinction.py,sha256=anUemSXmLvJi2CSxqTYgQCgUW4pSUqgZ0q0xZ4zs0zY,1189
23
+ AeroViz/dataProcess/Optical/_mie.py,sha256=K_I8NqRStCdExRVxq2rX5hQdvYmfKuu9JCkNtL1OzfE,352
24
+ AeroViz/dataProcess/Optical/_mie_sd.py,sha256=cbWSorfG-l92csaXsZJ7005f8ij2H_VZopIhNPCwx70,4812
25
+ AeroViz/dataProcess/Optical/_scattering.py,sha256=w5xXXOfafV9a_dXY60YqTyzFDZppjBJeLcKl5PeCQe4,961
26
+ AeroViz/dataProcess/Optical/fRH.pkl,sha256=PhJ-BYTaUDjl2Lp5Wz0zeiLQCzrsNdq8nP7Jd1BXyXE,4528
27
+ AeroViz/dataProcess/Optical/mie_theory.py,sha256=EC3SsUaq5G3SdQyPMQxcosbEokqAgJw-4Gz6moJiOsk,8666
28
+ AeroViz/dataProcess/Optical/__pycache__/PyMieScatt_update.cpython-312.pyc,sha256=S-vAbp7Pkv0AzQFr762HPByAUXOc6yL0CUw7iC9dxAo,32602
29
+ AeroViz/dataProcess/Optical/__pycache__/__init__.cpython-312.pyc,sha256=tl0iZWpJHuhUQAr4ZevmY1mZ2pRRAgIazhIB4O4dQoQ,2114
30
+ AeroViz/dataProcess/Optical/__pycache__/mie_theory.cpython-312.pyc,sha256=BEzZjrNVlRXkMAietpBXWs01gPzxqgHoRhwDwAOqANc,10662
31
+ AeroViz/dataProcess/SizeDistr/__init__.py,sha256=fka1IJW4wZzYWE9HjWi8i03ab0JLFXOUdaHWYs4VHEQ,2172
32
+ AeroViz/dataProcess/SizeDistr/__merge.py,sha256=A-ZmduUA9a0nVM8szhG1AWhsfUPu2UhGIaqFLcmg7Lk,9422
33
+ AeroViz/dataProcess/SizeDistr/_merge.py,sha256=CyZwUc2M4lL-OE74e8mXq41nC6X0LJTAV8TwpO3fS2o,9176
34
+ AeroViz/dataProcess/SizeDistr/_merge_v1.py,sha256=6Anb8DszoatK66tc9ccA6ZApbqtL7pZRPR5TKHj-Tbs,9526
35
+ AeroViz/dataProcess/SizeDistr/_merge_v2.py,sha256=8OzUKw7hTg-yuQBipuFKgBS_7c7zbApN_BNr00G8q9c,9046
36
+ AeroViz/dataProcess/SizeDistr/_merge_v3.py,sha256=HN2ARFmeWOawOWRPPv_pHEGBBZNgXVbH4dDTxcN7rdY,18749
37
+ AeroViz/dataProcess/SizeDistr/_merge_v4.py,sha256=b8RVAievGIOLrmJHJXRsKXQ1tkMkm6rx43S7XAfeXE4,16228
38
+ AeroViz/dataProcess/SizeDistr/_size_distr.py,sha256=ULhGKlxE9QmbDO_PS3HOSKzepeMfJZWabJvGXqsDEvE,3259
39
+ AeroViz/dataProcess/SizeDistr/prop.py,sha256=7f18SOkkLgDiY_g1c1We8g-3WDJJIFcxkfR4F99jUgc,1845
40
+ AeroViz/dataProcess/SizeDistr/__pycache__/__init__.cpython-312.pyc,sha256=G3j6CVtt_BsHI0OP6O3kR5FCwxeoaB0cHoSYJMUo38E,2552
41
+ AeroViz/dataProcess/VOC/__init__.py,sha256=8GNP0RMymTkJXK18pSgfLHqrKPWboN-3x1_Ke4UrI44,259
42
+ AeroViz/dataProcess/VOC/_potential_par.py,sha256=h3rVdvtBvC6xHa_ZG4Oq5eXezeSZtHNy6T6I40maIcM,3863
43
+ AeroViz/dataProcess/VOC/support_voc.json,sha256=tMYp_NERqhSriVRE2NavXh33CQ5CnsbJHtmMFlE5q_E,6804
44
+ AeroViz/dataProcess/VOC/__pycache__/__init__.cpython-312.pyc,sha256=76ZxSevjtBwht3KAtotAgPPQoSiZia6vNto6-jYUv98,716
45
+ AeroViz/dataProcess/__pycache__/__init__.cpython-312.pyc,sha256=TSMOi4eMutMVZgEIiy94JZEVxZDetQtM8rtInz3L-fc,1067
46
+ AeroViz/dataProcess/core/__init__.py,sha256=FhGwqlP8ZwXZQS0LjH0YOz2g1Q2yJniUUhRZ_jDOQ6k,2707
47
+ AeroViz/dataProcess/core/__pycache__/__init__.cpython-312.pyc,sha256=q0cVlXaLt7qNpWzl4t0ukQF6S7sCdnnzzIt2jChQ_rQ,4430
48
+ AeroViz/plot/__init__.py,sha256=Cy42d1t58zeutxLYDkm8bFbRNGE0G1T8VpqGj1li1Cw,419
49
+ AeroViz/plot/bar.py,sha256=cSPKJLWGifCzICCZVPcbZtrDrea_AStlwSli9-b-lsA,4246
50
+ AeroViz/plot/box.py,sha256=8zDd8jYndSv5f0P1lFeX0m7VWYh9okYgJTClh2Lj7Dg,2115
51
+ AeroViz/plot/pie.py,sha256=POOiWcg1KbzUzn1dm4yVEL-1d2bTqUjSTkltHk5YYqU,7860
52
+ AeroViz/plot/radar.py,sha256=QHXkLQlAZZQDWHcqVGJBeRsGiu45GYmy3lN6gwlh6xY,6965
53
+ AeroViz/plot/regression.py,sha256=mTCNrCAYvH7QjIb_5WlltCR1Kqwer1anpGEsxmO2S3o,7292
54
+ AeroViz/plot/scatter.py,sha256=sxk5QxgC1Jk9PuY18q9aRgR_Ipvg5dM1RkwYQxRkn1c,6787
55
+ AeroViz/plot/violin.py,sha256=pU2Z2yTWocEtImmCAmbtn0WvXtUOrnCGOdDOrLxjooU,2689
56
+ AeroViz/plot/__pycache__/__init__.cpython-312.pyc,sha256=k29-crt2Q5vjyfAW1hHvKKkK8pJzYTWkDrxkaJKrOns,684
57
+ AeroViz/plot/__pycache__/bar.cpython-312.pyc,sha256=FWgJ8ZNaG2kz8tMYjgBt_raAof1gTBJH_yFJ3mmRKAY,5954
58
+ AeroViz/plot/__pycache__/box.cpython-312.pyc,sha256=kh0YnMDlbLSL10kKwhW7uVlPrlId44jjVh0FN-UknTs,4043
59
+ AeroViz/plot/__pycache__/pie.cpython-312.pyc,sha256=EfFD7nZ5Nqwdur0RhZH0TzohIkuLJk9qjb0ezwNX3xE,10689
60
+ AeroViz/plot/__pycache__/radar.cpython-312.pyc,sha256=jgqn_4vnSf2HIFYIm8ptvr0FSMkx4lqf-24iyO5L1xU,9335
61
+ AeroViz/plot/__pycache__/regression.cpython-312.pyc,sha256=HdhKw_7Or2cYdJQQlH4Lt3pR4bkf3wS2B2dyr9y9kz8,8417
62
+ AeroViz/plot/__pycache__/scatter.cpython-312.pyc,sha256=42ibbvY597tGSgmxbNwOUsOl-LEZLuO-DSNbBAwhsv0,9540
63
+ AeroViz/plot/__pycache__/violin.cpython-312.pyc,sha256=_F96oSNcYGw1uU_IGELis5LE6xpWpEaVySk7q6Z3CPE,4291
64
+ AeroViz/plot/distribution/__init__.py,sha256=nhbIegWczkuEfWsE7-2jfF0dnpmPDzJJzjq8Fuh6q5k,28
65
+ AeroViz/plot/distribution/distribution.py,sha256=sAjqtqKavFwQqI8PGPFnpvZFSU-w2UKjcTTC5L91f4E,20595
66
+ AeroViz/plot/distribution/__pycache__/__init__.cpython-312.pyc,sha256=bGB5Tj8vqNYWiOdoW3IOAq35ppBuETIEmIuguGNVlh0,202
67
+ AeroViz/plot/distribution/__pycache__/distribution.cpython-312.pyc,sha256=iuy9WE9IRSdvz8NHD0CpaJvRWXX4-UduBU7lxZOLaBE,30983
68
+ AeroViz/plot/meteorology/CBPF.py,sha256=4BjPNW2H2Q9HSyDvqxGAibQSIieKkt7CrFQo1rmdKWQ,11136
69
+ AeroViz/plot/meteorology/__init__.py,sha256=6HRc9TwUDOohULJ4hURbQSMKlHfoZzG1zLS1AUg0fH4,85
70
+ AeroViz/plot/meteorology/hysplit.py,sha256=gSCkemFLRvsk4m8zYbxbsjrdU14NkN9ZNfVRvdq69aM,2796
71
+ AeroViz/plot/meteorology/wind_rose.py,sha256=Bp2LjyJhm5FRINH6UUb70g9rA9kZ1oK-9rLvSGHBjwU,2876
72
+ AeroViz/plot/meteorology/__pycache__/CBPF.cpython-312.pyc,sha256=jV9V-qwOZQBo8FZewyZvrf6_765OKbTdbDr640QbYRY,15329
73
+ AeroViz/plot/meteorology/__pycache__/__init__.cpython-312.pyc,sha256=hP4Qm_umjUD-xbSRldxffWPMn2YQeSse-O1mq0NYjPg,261
74
+ AeroViz/plot/meteorology/__pycache__/hysplit.cpython-312.pyc,sha256=D0bLmgKpuNHMUPFFNYw9jvcydg7DHWLK_naTtSaHBTQ,3779
75
+ AeroViz/plot/meteorology/__pycache__/wind_rose.cpython-312.pyc,sha256=h96A1NyTb_LDJVAtpihErflCkksoFlxBljC65V3aCZ4,3413
76
+ AeroViz/plot/optical/__init__.py,sha256=5S2WPq8NouPYgc46c1XBveSL8Cxs3w8wNYN7vWIpB-s,23
77
+ AeroViz/plot/optical/optical.py,sha256=j8LUSga9BvVjZnGKNG8bt62E9xoBoO2OQxvDBqY6U90,13664
78
+ AeroViz/plot/optical/__pycache__/__init__.cpython-312.pyc,sha256=jUUqsv17u8GV4Azh__PoBLLziFuno4GNmyy6yNF5-U4,192
79
+ AeroViz/plot/optical/__pycache__/optical.cpython-312.pyc,sha256=z5Af9AHOC5e1JC9XKaL1o27kpWQtaHLPAOhg6nYWyvg,18435
80
+ AeroViz/plot/templates/__init__.py,sha256=VXp73SqrSF1WR9WYhHpHtbhvFcb1CR4JeV1tPQvCEEI,227
81
+ AeroViz/plot/templates/ammonium_rich.py,sha256=a46rfwhSZ3LIj71LxdOnklAFyy6Xe_VQ-kh1komnZ5g,1225
82
+ AeroViz/plot/templates/contour.py,sha256=fAM6Wn_EmENQM1IW6KJpwmLva6D9P2dEAaK6cNQBtdQ,1678
83
+ AeroViz/plot/templates/corr_matrix.py,sha256=VeiwBwmg_v6LYslJvhSqweiLBheR3vGfPYxrtHoqJRI,3507
84
+ AeroViz/plot/templates/diurnal_pattern.py,sha256=TOE4PvHluZhjZvDEeZIv8hcb-PthBNDrgEWtyPmwMcg,2051
85
+ AeroViz/plot/templates/koschmieder.py,sha256=YMtok3T5VHlzLphnsrkchNRnw5UE3XSLYDne42Efofo,3343
86
+ AeroViz/plot/templates/metal_heatmap.py,sha256=ngqJFiOPCoExPKv-lHvgB1XCSr9fF_jSKmx4VwjUUXQ,4961
87
+ AeroViz/plot/templates/__pycache__/__init__.cpython-312.pyc,sha256=GZ8a3yd8w3_b_FbOR2017BjixHlBbY7wdovCVdb-w9Y,413
88
+ AeroViz/plot/templates/__pycache__/ammonium_rich.cpython-312.pyc,sha256=kUG0FP5x04hHbdKbsj0PuveYwsYAwAZZz87mCY4pUA0,2201
89
+ AeroViz/plot/templates/__pycache__/contour.cpython-312.pyc,sha256=htiOToe4e_3CGEy1d8OdbcTA3ey3ifFlYU9XQ3_sPRU,3550
90
+ AeroViz/plot/templates/__pycache__/corr_matrix.cpython-312.pyc,sha256=2MnUSHmVK0MdBhohteC8TQD4CwlOpTm9_wXNA2JY4Vg,6130
91
+ AeroViz/plot/templates/__pycache__/diurnal_pattern.cpython-312.pyc,sha256=Kuat6_S7rYY9TcPrctto8JtTZH_teBUwZ6J7WroSSJ8,3422
92
+ AeroViz/plot/templates/__pycache__/koschmieder.cpython-312.pyc,sha256=1xI1wzay416CI_2F_fSKk5xckydIfiddGv285H0JI9A,5660
93
+ AeroViz/plot/templates/__pycache__/metal_heatmap.cpython-312.pyc,sha256=ZgBpCO5yXKjVd_7Io2gncVyMgFwnZUPZUvTKfekN0lw,7003
94
+ AeroViz/plot/timeseries/__init__.py,sha256=LQ_aE32pvp5ouC--BRa0NwSJ48DYO3rFaOt4AKGmn_s,50
95
+ AeroViz/plot/timeseries/template.py,sha256=ey16q66UAOLhXGKHAPGbRp-QD3J6GkF_cXhkrRIybS8,1472
96
+ AeroViz/plot/timeseries/timeseries.py,sha256=SnGxPceWXSI43iajfsOW2sUpQdh9wjZsUuAUEhJ-f-Y,16170
97
+ AeroViz/plot/timeseries/__pycache__/__init__.cpython-312.pyc,sha256=3_26l0p4LhSHrZSKnlQqwFX5tFx59T-wxevYyKaLb94,221
98
+ AeroViz/plot/timeseries/__pycache__/template.cpython-312.pyc,sha256=SERDJ8KORxh-Kjl9yU8rG8ohtdm3LdPGzhfaEf-1JQc,1919
99
+ AeroViz/plot/timeseries/__pycache__/timeseries.cpython-312.pyc,sha256=vkVQz4EKUPGT0jMdHi8yJWFqBBy1EYSvdFZvE0hdSAU,20489
100
+ AeroViz/plot/utils/__init__.py,sha256=sxp3nfUnyVIIXYd-F874gEHkhQiDnMPDE1nJ_Z98270,104
101
+ AeroViz/plot/utils/_color.py,sha256=Vhjo-v4UWFME1JbbBR_Ro8FRj6dHB2O5Sud_9lpdu_U,2797
102
+ AeroViz/plot/utils/_unit.py,sha256=Abum0WDnq08DzkSoxkKvBc0mYKo8izIDmgduPo9Q27A,1671
103
+ AeroViz/plot/utils/fRH.json,sha256=t-2ux4TLOYAB-4jJ72LSM4jv1jk9XkaxKYNMDepMHIg,6038
104
+ AeroViz/plot/utils/plt_utils.py,sha256=JYYtmEKoKqvZ8mr3QEHdYcWabaBMhNWkgEmeBTdZZ-g,3438
105
+ AeroViz/plot/utils/sklearn_utils.py,sha256=hKFfkVkYLRxkIDKvO9COHXwhjD_UWqQigdT3mDToni4,2098
106
+ AeroViz/plot/utils/units.json,sha256=JKcqvLA6dkc8REV_NhX85Jl9LA4iAZxzw9RJp6JTla0,2965
107
+ AeroViz/plot/utils/__pycache__/__init__.cpython-312.pyc,sha256=MWUtiZMEtY8e51iUDZK-iIsIFIujzzf9ZV2LJxkj5Zg,292
108
+ AeroViz/plot/utils/__pycache__/_color.cpython-312.pyc,sha256=SUhY7_cTtdpp_ifxeX3AtJvOFNz8g3d757oLi0XmGXM,3959
109
+ AeroViz/plot/utils/__pycache__/_unit.cpython-312.pyc,sha256=CtKWnmrbsjbat-UVgSlis0WOwlDhnlhRgcAMucRAulc,3427
110
+ AeroViz/plot/utils/__pycache__/plt_utils.cpython-312.pyc,sha256=SAh-WGcm4GZ9XsOtXN5ftHt-XmJH6bkrhWxr2264tW4,4670
111
+ AeroViz/plot/utils/__pycache__/sklearn_utils.cpython-312.pyc,sha256=2jpxDFneutnL_MH6rsRJoC1d0hzsCDXHLC3cV_jXe4U,3018
112
+ AeroViz/rawDataReader/__init__.py,sha256=sLsHgVk3JV4su-KrMbNwCSZxCoRzwXdnnp7qgGKeyew,4913
113
+ AeroViz/rawDataReader/__pycache__/__init__.cpython-312.pyc,sha256=H7hHVaOJr6eLt8FSDKSGfVv02rGa1IJLQGLotP34_mM,5528
114
+ AeroViz/rawDataReader/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ AeroViz/rawDataReader/config/supported_instruments.py,sha256=RR2TPome27O3ERNxQ043boDMfvWG9BHvhpGJ6VQC5gw,5988
116
+ AeroViz/rawDataReader/config/__pycache__/__init__.cpython-312.pyc,sha256=9EyWzT-BCgece71CX5_AQn6tvYWzZKFipdHlA_LZ7RQ,171
117
+ AeroViz/rawDataReader/config/__pycache__/supported_instruments.cpython-312.pyc,sha256=1WIyI1_WTPdsgGVSNWcNXnxf8OzKN4urwN7b4WXxvxk,5197
118
+ AeroViz/rawDataReader/core/__init__.py,sha256=6a3Zgz9EAZQYMSXv4Ygt2kAZHC8KoAyraxifiwWAaFM,12925
119
+ AeroViz/rawDataReader/core/logger.py,sha256=zch89yUiIYefd0md2ZpumIqEihb3OntSsC4HoZ1gzT8,2528
120
+ AeroViz/rawDataReader/core/qc.py,sha256=tFIVsfph8yZIK6NRKQxaZYHcruJclriKSvR0oC12T0Q,5698
121
+ AeroViz/rawDataReader/core/__pycache__/__init__.cpython-312.pyc,sha256=3eXLmsRZv6O87Hr3o_MkOFSogituP9n_XnbtTcuP5fc,19509
122
+ AeroViz/rawDataReader/core/__pycache__/logger.cpython-312.pyc,sha256=W7-IK_jRfaI6VdlyTSON90MEmZKAb-NIg9Gb-lvGmck,4736
123
+ AeroViz/rawDataReader/core/__pycache__/qc.cpython-312.pyc,sha256=D9CZdUzGzGPH1nClUtoxYVEiTFknv9gIWpWKfrqC6Ks,8271
124
+ AeroViz/rawDataReader/script/AE33.py,sha256=FbbFJ93aLVjA8k2QZ_fKcI9uXoux2k0AL3O73iY879I,1278
125
+ AeroViz/rawDataReader/script/AE43.py,sha256=GjcICBJ3nIANyMd4kovteBUtkyCGLTos07BczgSCuVE,1231
126
+ AeroViz/rawDataReader/script/APS_3321.py,sha256=x75G72Xl0vElr6Njbv8SlOcosAHNozseaJzAxVmfXyI,1697
127
+ AeroViz/rawDataReader/script/Aurora.py,sha256=xcLKE5dlsqc-apK3n-j_8OZ0kF_f4B08ptutaAPiGLQ,1509
128
+ AeroViz/rawDataReader/script/BC1054.py,sha256=tuDyq8M5BPbmu1yJr9zXYS2piMGz08yTQXGT6tK9jxA,1675
129
+ AeroViz/rawDataReader/script/EPA.py,sha256=MESkZHHr60kyHFSLqSeSjzSrx_ya-GqFhFGlPIHMLeI,1649
130
+ AeroViz/rawDataReader/script/GRIMM.py,sha256=-D4U83ihjAqcvOAnk7NET59IZfV1JzPYKRQjrIQyBDM,846
131
+ AeroViz/rawDataReader/script/IGAC.py,sha256=i6WT3rX0n0e4hq7NfWN6tVwCuKAeV9ARxPkXZSbQj74,2387
132
+ AeroViz/rawDataReader/script/MA350.py,sha256=EfPTFhgDAjI7r0G6kW7pjog-4MBOnvW0cyFqIkCxEP8,1597
133
+ AeroViz/rawDataReader/script/Minion.py,sha256=ZOkTqxc1fQtp3zUr9qv8kdX1zFsYYX8RKabWpZmk-Iw,7826
134
+ AeroViz/rawDataReader/script/NEPH.py,sha256=HkGcjFPpcXM9OnrcV6sMp0G5wYnhJP1NbTMQUb1zVLc,3233
135
+ AeroViz/rawDataReader/script/OCEC.py,sha256=E_8_KPoYKZROLD8tWRMf5UyRKxusi_9Tj9Ex2EStM5E,3395
136
+ AeroViz/rawDataReader/script/SMPS.py,sha256=R47DnSs0gCqlLFcZRuQHCrWkZDxGU36ta__WmBhSKis,3272
137
+ AeroViz/rawDataReader/script/TEOM.py,sha256=ID20CMi8z6pOjiGQLdCuCRWlcDu46SAP3MviiSUZE5w,2103
138
+ AeroViz/rawDataReader/script/VOC.py,sha256=GUme72ZyjSzREsFNUgOV_OCESIVJBXY9KrKP1c9Av7I,1248
139
+ AeroViz/rawDataReader/script/XRF.py,sha256=SU1-D94GkwdkjlNXcyXbwQG1tOYCpeL6GTVkaLBHc-s,187
140
+ AeroViz/rawDataReader/script/__init__.py,sha256=s3c797Q8EAGcJCxVRTA-KdHie-vHLNYbMxwa5c0qz-I,214
141
+ AeroViz/rawDataReader/script/__pycache__/AE33.cpython-312.pyc,sha256=EqrHpvUGeVeJn0BUYfBlRb-5fQCjGLqVY_rRuojjPu0,2418
142
+ AeroViz/rawDataReader/script/__pycache__/AE43.cpython-312.pyc,sha256=HuvE_i6ka_vzXuQf6SleXNHHgOnOXptFoenNCcOq5aE,2198
143
+ AeroViz/rawDataReader/script/__pycache__/APS_3321.cpython-312.pyc,sha256=cXeqnlk-OgblI2eEKhM9yVYS2rPbIjUKiWxsAU8OSEA,2629
144
+ AeroViz/rawDataReader/script/__pycache__/Aurora.cpython-312.pyc,sha256=_oWI0kNmlWaC0aOTItxlF36WMwryYM5NHBRJeXArfxY,2662
145
+ AeroViz/rawDataReader/script/__pycache__/BC1054.cpython-312.pyc,sha256=Ca7PAH_q0TR7XEOihf9oy6YGDz2jp8GlESp5-C6v_b8,2455
146
+ AeroViz/rawDataReader/script/__pycache__/EPA.cpython-312.pyc,sha256=OkKoZ5M3qrJrYpWOo1XNF3GqlSAV_jAlMTQgX0Bm9WI,2343
147
+ AeroViz/rawDataReader/script/__pycache__/GRIMM.cpython-312.pyc,sha256=NP4y2-cbJBv4zta5piuKXrh_swR1ryJ47esGWzSHFxw,1812
148
+ AeroViz/rawDataReader/script/__pycache__/IGAC.cpython-312.pyc,sha256=PavHijzlJis7YCuZQjeYtD9lE0k5wJ58EltNvn11zQw,3645
149
+ AeroViz/rawDataReader/script/__pycache__/MA350.cpython-312.pyc,sha256=3tflcivZUeEIICs_nxd8IzqfmiawdAvnquJfIOetizM,2074
150
+ AeroViz/rawDataReader/script/__pycache__/Minion.cpython-312.pyc,sha256=iwWULdL7YrVlgDmynM7Btw8HBAyr6AbvGEaPSHHVKEY,10179
151
+ AeroViz/rawDataReader/script/__pycache__/NEPH.cpython-312.pyc,sha256=AI6k1II6DgsymEPnblWuQkt1F-0EpJkVIWa40cTtNt4,4556
152
+ AeroViz/rawDataReader/script/__pycache__/OCEC.cpython-312.pyc,sha256=chsQJvBRq6i8yR4a2h21KsHXKel8RXJl7lYJiR3HzsA,4155
153
+ AeroViz/rawDataReader/script/__pycache__/SMPS.cpython-312.pyc,sha256=Wbd2s96bVuQfp7iwyRD7rCA2sqC0eYGOxPjaVhgapVM,5733
154
+ AeroViz/rawDataReader/script/__pycache__/TEOM.cpython-312.pyc,sha256=q3NTAVXG1I13saKS3gA_6V7hVYsg3BSbVn_SQNzupy8,3329
155
+ AeroViz/rawDataReader/script/__pycache__/VOC.cpython-312.pyc,sha256=LrAexK6XhTXt9of3kyeaZhueH9FLYAemyzgSuyiTJe8,2493
156
+ AeroViz/rawDataReader/script/__pycache__/XRF.cpython-312.pyc,sha256=ltZ6Ws01w4jqyrQSl6ocid4VEY3Efx0-d8-bw_SbmYw,668
157
+ AeroViz/rawDataReader/script/__pycache__/__init__.cpython-312.pyc,sha256=MmpFumIj4qVUT4rTQlHtqexCDo4CQMLVKWCY1CONasg,299
158
+ AeroViz/tools/__init__.py,sha256=3yC7clSoIAs7tvRy6M0BEM_N-0Fn2najLP7njT0ogME,74
159
+ AeroViz/tools/database.py,sha256=05VzjJyhlRrhsZdhfFQ__7CxGm4MdFekLjz3_Is5h9U,3430
160
+ AeroViz/tools/dataclassifier.py,sha256=_wpv0PlZ5EGkcNqHxfFtdEsYvHP5FVE8sMZXikhm_YE,4492
161
+ AeroViz/tools/dataprinter.py,sha256=Jq2Yztpa9YCOeLDVTrRs7PhSdNIPhEAexVj1YSuJ7hY,2249
162
+ AeroViz/tools/__pycache__/__init__.cpython-312.pyc,sha256=lptbpjQzX-XcsPLcSSvOrfkauHlMhg9IkwTZM9z7dhY,254
163
+ AeroViz/tools/__pycache__/database.cpython-312.pyc,sha256=D6_UsoMlsA6tAMnq4xg5qxvx42jYNgd4Nw1inyRdqU0,3605
164
+ AeroViz/tools/__pycache__/dataclassifier.cpython-312.pyc,sha256=QZv8yym82McIRRnWngk-Xc4zJn1iL5-5DTZb_-vyDBc,6801
165
+ AeroViz-0.1.9.6.dist-info/LICENSE,sha256=E-679GpGGkp3irmtuJXiT7R4cNUA4cmsH6Q7QUgPf5U,1069
166
+ AeroViz-0.1.9.6.dist-info/METADATA,sha256=gHGieX4lD1pk-7EBmFG4xJZCc7AlZotouFkf6kkRu2E,5878
167
+ AeroViz-0.1.9.6.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
168
+ AeroViz-0.1.9.6.dist-info/top_level.txt,sha256=BYsmTst_o4FZOKRP1XIvIMlN6mMTTXNfnSToL2_nVbQ,8
169
+ AeroViz-0.1.9.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.2.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1 +0,0 @@
1
- from .hysplit import *
@@ -1,66 +0,0 @@
1
- from abc import ABC, abstractmethod
2
- from pathlib import Path
3
-
4
- from pandas import read_csv, read_json, read_excel, DataFrame
5
-
6
-
7
- class FileHandler(ABC):
8
- """ An abstract base class for reading data files with different extensions (.csv, .json, .xls, .xlsx). """
9
-
10
- @abstractmethod
11
- def read_data(self, file_path: Path) -> DataFrame:
12
- pass
13
-
14
-
15
- class CsvFileHandler(FileHandler):
16
- def read_data(self, file_path: Path) -> DataFrame:
17
- return read_csv(file_path, na_values=('E', 'F', '-', '_', '#', '*'), index_col=0, parse_dates=True,
18
- low_memory=False)
19
-
20
-
21
- class JsonFileHandler(FileHandler):
22
- def read_data(self, file_path: Path) -> DataFrame:
23
- return read_json(file_path)
24
-
25
-
26
- class ExcelFileHandler(FileHandler):
27
- def read_data(self, file_path: Path) -> DataFrame:
28
- return read_excel(file_path, index_col=0, parse_dates=True, )
29
-
30
-
31
- class DataReaderFactory:
32
- _handler_mapping = {
33
- '.csv': CsvFileHandler(),
34
- '.json': JsonFileHandler(),
35
- '.xls': ExcelFileHandler(),
36
- '.xlsx': ExcelFileHandler(),
37
- }
38
-
39
- @staticmethod
40
- def create_handler(file_extension: str) -> FileHandler:
41
- reader_class = DataReaderFactory._handler_mapping.get(file_extension)
42
- if reader_class is None:
43
- raise ValueError(f"Unsupported file format: {file_extension}")
44
- return reader_class
45
-
46
-
47
- class DataReader:
48
- """
49
- A class for reading data files with different extensions (.csv, .json, .xls, .xlsx).
50
-
51
- Parameters
52
- ----------
53
- filename (Path | str): The name of the file to be read or the Path of the file.
54
-
55
- Returns
56
- -------
57
- pandas.DataFrame: data
58
-
59
- Examples
60
- --------
61
- >>> psd = DataReader(Path(...))
62
- """
63
-
64
- def __new__(cls, file_path: Path | str) -> DataFrame:
65
- file_path = Path(file_path)
66
- return DataReaderFactory.create_handler(file_path.suffix.lower()).read_data(file_path)
@@ -1,102 +0,0 @@
1
- AeroViz/__init__.py,sha256=A5W6SR71uY_eW44Sh-Yk6blJQ_G1aHrkSzeP2YTPQc4,371
2
- AeroViz/data/DEFAULT_DATA.csv,sha256=eeeyeh8vSLKkE5tAF0TYnUNOyQIH98VA41bJaAP204Y,2248526
3
- AeroViz/data/DEFAULT_PNSD_DATA.csv,sha256=imLvLA80oYwo_jzXZtlQn5hZ76d47HUIlK2jp0tZPrg,2636511
4
- AeroViz/data/hysplit_example_data.txt,sha256=DWfY83EW3fOcv9dW-Y4pudq8-M7BJlXD-tlMSYrAk2w,8946
5
- AeroViz/dataProcess/__init__.py,sha256=D3rTVUiGfs_daGuaotVtbijOgLAp6HaRWchj-zoEnHw,828
6
- AeroViz/dataProcess/Chemistry/__init__.py,sha256=fyyomjxkQcUNWDx4R5jPrHafAftN-v2liUZii9OlaiU,2058
7
- AeroViz/dataProcess/Chemistry/_calculate.py,sha256=q7ojTFPok0vg8k_1PMECNdP5CPanR9NWQ4Rx5iTcHew,599
8
- AeroViz/dataProcess/Chemistry/_isoropia.py,sha256=3wp_FXdN230awlStMbctutwld4oot9WaAVXETGd6PSs,3255
9
- AeroViz/dataProcess/Chemistry/_mass_volume.py,sha256=0joH2BAx0NUwDFzyrLgG-v7WrGl46R7zWxwbajWBV8o,5378
10
- AeroViz/dataProcess/Chemistry/_ocec.py,sha256=1UpSwdxYVy_LpUjtoaEUoXA-r1nKEFJoyYglf_6CoXA,5899
11
- AeroViz/dataProcess/Chemistry/_partition.py,sha256=tKhb6BJns46UiUlEq6Zq7ahYnvUJ_whY3tWE54C3bqU,1023
12
- AeroViz/dataProcess/Chemistry/_teom.py,sha256=IiM-TrifWpQLTbKllG-4k4c3mvQulfcmjswWu6muCXA,486
13
- AeroViz/dataProcess/Chemistry/isrpia.cnf,sha256=iWXTqsOZFmNrJxAI9nYuilZ9h6ru1icdPFVim7YKc_k,566
14
- AeroViz/dataProcess/Chemistry/isrpia2.exe,sha256=xFYPTXHSjl_-atmVcTmqqOkTZgUn1p8h-kFMcoGMIQw,1560032
15
- AeroViz/dataProcess/Optical/Angstrom_exponent.py,sha256=KSGM_hf2oUPsLoLuhYSRDK5zdekwce9KgqhzRnf2Y4g,706
16
- AeroViz/dataProcess/Optical/_IMPROVE.py,sha256=n3uHUQTivckIrNlbE8rP7lPZGcMWZUAnS_qX8pXd55Q,1670
17
- AeroViz/dataProcess/Optical/__init__.py,sha256=h_IYhaum0DhK7Qw6lWFvjAEv7uAqLVVPEwU0V4hJnX4,1371
18
- AeroViz/dataProcess/Optical/_absorption.py,sha256=pYHIoj_R23wKvxR4acUqqU9JXKY40wgsFvZH78rETrY,1234
19
- AeroViz/dataProcess/Optical/_extinction.py,sha256=anUemSXmLvJi2CSxqTYgQCgUW4pSUqgZ0q0xZ4zs0zY,1189
20
- AeroViz/dataProcess/Optical/_mie.py,sha256=K_I8NqRStCdExRVxq2rX5hQdvYmfKuu9JCkNtL1OzfE,352
21
- AeroViz/dataProcess/Optical/_mie_sd.py,sha256=cbWSorfG-l92csaXsZJ7005f8ij2H_VZopIhNPCwx70,4812
22
- AeroViz/dataProcess/Optical/_scattering.py,sha256=w5xXXOfafV9a_dXY60YqTyzFDZppjBJeLcKl5PeCQe4,961
23
- AeroViz/dataProcess/Optical/fRH.pkl,sha256=PhJ-BYTaUDjl2Lp5Wz0zeiLQCzrsNdq8nP7Jd1BXyXE,4528
24
- AeroViz/dataProcess/SizeDistr/__init__.py,sha256=fka1IJW4wZzYWE9HjWi8i03ab0JLFXOUdaHWYs4VHEQ,2172
25
- AeroViz/dataProcess/SizeDistr/__merge.py,sha256=A-ZmduUA9a0nVM8szhG1AWhsfUPu2UhGIaqFLcmg7Lk,9422
26
- AeroViz/dataProcess/SizeDistr/_merge.py,sha256=CyZwUc2M4lL-OE74e8mXq41nC6X0LJTAV8TwpO3fS2o,9176
27
- AeroViz/dataProcess/SizeDistr/_merge_v1.py,sha256=6Anb8DszoatK66tc9ccA6ZApbqtL7pZRPR5TKHj-Tbs,9526
28
- AeroViz/dataProcess/SizeDistr/_merge_v2.py,sha256=8OzUKw7hTg-yuQBipuFKgBS_7c7zbApN_BNr00G8q9c,9046
29
- AeroViz/dataProcess/SizeDistr/_merge_v3.py,sha256=HN2ARFmeWOawOWRPPv_pHEGBBZNgXVbH4dDTxcN7rdY,18749
30
- AeroViz/dataProcess/SizeDistr/_merge_v4.py,sha256=b8RVAievGIOLrmJHJXRsKXQ1tkMkm6rx43S7XAfeXE4,16228
31
- AeroViz/dataProcess/SizeDistr/_size_distr.py,sha256=ULhGKlxE9QmbDO_PS3HOSKzepeMfJZWabJvGXqsDEvE,3259
32
- AeroViz/dataProcess/VOC/__init__.py,sha256=8GNP0RMymTkJXK18pSgfLHqrKPWboN-3x1_Ke4UrI44,259
33
- AeroViz/dataProcess/VOC/_potential_par.py,sha256=h3rVdvtBvC6xHa_ZG4Oq5eXezeSZtHNy6T6I40maIcM,3863
34
- AeroViz/dataProcess/VOC/support_voc.json,sha256=tMYp_NERqhSriVRE2NavXh33CQ5CnsbJHtmMFlE5q_E,6804
35
- AeroViz/dataProcess/core/__init__.py,sha256=FhGwqlP8ZwXZQS0LjH0YOz2g1Q2yJniUUhRZ_jDOQ6k,2707
36
- AeroViz/plot/__init__.py,sha256=m09CuErJglxQBG3_0-8XmB4B-GF-2e8CGvfKM12qCUg,448
37
- AeroViz/plot/bar.py,sha256=cSPKJLWGifCzICCZVPcbZtrDrea_AStlwSli9-b-lsA,4246
38
- AeroViz/plot/box.py,sha256=8zDd8jYndSv5f0P1lFeX0m7VWYh9okYgJTClh2Lj7Dg,2115
39
- AeroViz/plot/pie.py,sha256=POOiWcg1KbzUzn1dm4yVEL-1d2bTqUjSTkltHk5YYqU,7860
40
- AeroViz/plot/radar.py,sha256=QHXkLQlAZZQDWHcqVGJBeRsGiu45GYmy3lN6gwlh6xY,6965
41
- AeroViz/plot/regression.py,sha256=mTCNrCAYvH7QjIb_5WlltCR1Kqwer1anpGEsxmO2S3o,7292
42
- AeroViz/plot/scatter.py,sha256=sxk5QxgC1Jk9PuY18q9aRgR_Ipvg5dM1RkwYQxRkn1c,6787
43
- AeroViz/plot/violin.py,sha256=pU2Z2yTWocEtImmCAmbtn0WvXtUOrnCGOdDOrLxjooU,2689
44
- AeroViz/plot/distribution/__init__.py,sha256=nhbIegWczkuEfWsE7-2jfF0dnpmPDzJJzjq8Fuh6q5k,28
45
- AeroViz/plot/distribution/distribution.py,sha256=sAjqtqKavFwQqI8PGPFnpvZFSU-w2UKjcTTC5L91f4E,20595
46
- AeroViz/plot/hysplit/__init__.py,sha256=VrEkha2OEFp_00Xj9R98C96niZ7fYqJzGPeYsbojtzA,23
47
- AeroViz/plot/hysplit/hysplit.py,sha256=gSCkemFLRvsk4m8zYbxbsjrdU14NkN9ZNfVRvdq69aM,2796
48
- AeroViz/plot/meteorology/__init__.py,sha256=hhGfQE3IUzS3Eaju_nO7LomPPHJnd-zAAZZweXOXs2M,27
49
- AeroViz/plot/meteorology/meteorology.py,sha256=6hk-5olgQTw2SB-GhEizLN19vRVBztgiXoruh8Q6Zns,11282
50
- AeroViz/plot/optical/PyMieScatt_update.py,sha256=g3vlzATjzYSYZd3LwmwxEmdkpo4cHJ3KY4rePY4jwZk,21065
51
- AeroViz/plot/optical/__init__.py,sha256=5S2WPq8NouPYgc46c1XBveSL8Cxs3w8wNYN7vWIpB-s,23
52
- AeroViz/plot/optical/mie_theory.py,sha256=EC3SsUaq5G3SdQyPMQxcosbEokqAgJw-4Gz6moJiOsk,8666
53
- AeroViz/plot/optical/optical.py,sha256=W5S5qJ4QxxI9mOonbQnMFXGQQFZpb5TypM5Vn8CF-SI,13694
54
- AeroViz/plot/templates/__init__.py,sha256=VXp73SqrSF1WR9WYhHpHtbhvFcb1CR4JeV1tPQvCEEI,227
55
- AeroViz/plot/templates/ammonium_rich.py,sha256=a46rfwhSZ3LIj71LxdOnklAFyy6Xe_VQ-kh1komnZ5g,1225
56
- AeroViz/plot/templates/contour.py,sha256=fAM6Wn_EmENQM1IW6KJpwmLva6D9P2dEAaK6cNQBtdQ,1678
57
- AeroViz/plot/templates/corr_matrix.py,sha256=VeiwBwmg_v6LYslJvhSqweiLBheR3vGfPYxrtHoqJRI,3507
58
- AeroViz/plot/templates/diurnal_pattern.py,sha256=TOE4PvHluZhjZvDEeZIv8hcb-PthBNDrgEWtyPmwMcg,2051
59
- AeroViz/plot/templates/koschmieder.py,sha256=YMtok3T5VHlzLphnsrkchNRnw5UE3XSLYDne42Efofo,3343
60
- AeroViz/plot/templates/metal_heatmap.py,sha256=ngqJFiOPCoExPKv-lHvgB1XCSr9fF_jSKmx4VwjUUXQ,4961
61
- AeroViz/plot/timeseries/__init__.py,sha256=LQ_aE32pvp5ouC--BRa0NwSJ48DYO3rFaOt4AKGmn_s,50
62
- AeroViz/plot/timeseries/template.py,sha256=ey16q66UAOLhXGKHAPGbRp-QD3J6GkF_cXhkrRIybS8,1472
63
- AeroViz/plot/timeseries/timeseries.py,sha256=SnGxPceWXSI43iajfsOW2sUpQdh9wjZsUuAUEhJ-f-Y,16170
64
- AeroViz/plot/utils/__init__.py,sha256=sxp3nfUnyVIIXYd-F874gEHkhQiDnMPDE1nJ_Z98270,104
65
- AeroViz/plot/utils/_color.py,sha256=Vhjo-v4UWFME1JbbBR_Ro8FRj6dHB2O5Sud_9lpdu_U,2797
66
- AeroViz/plot/utils/_unit.py,sha256=Abum0WDnq08DzkSoxkKvBc0mYKo8izIDmgduPo9Q27A,1671
67
- AeroViz/plot/utils/fRH.json,sha256=t-2ux4TLOYAB-4jJ72LSM4jv1jk9XkaxKYNMDepMHIg,6038
68
- AeroViz/plot/utils/plt_utils.py,sha256=7Au3r2-7AZQmzrO2OfcyTFomJRLHgu1Npb7wxQqUvzY,3438
69
- AeroViz/plot/utils/sklearn_utils.py,sha256=hKFfkVkYLRxkIDKvO9COHXwhjD_UWqQigdT3mDToni4,2098
70
- AeroViz/plot/utils/units.json,sha256=JKcqvLA6dkc8REV_NhX85Jl9LA4iAZxzw9RJp6JTla0,2965
71
- AeroViz/rawDataReader/__init__.py,sha256=FDUsJ_v6wG9DUcNOjmqaWJvVdMgatJrqGYPZdbaW7Wo,4859
72
- AeroViz/rawDataReader/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- AeroViz/rawDataReader/config/supported_instruments.py,sha256=RR2TPome27O3ERNxQ043boDMfvWG9BHvhpGJ6VQC5gw,5988
74
- AeroViz/rawDataReader/core/__init__.py,sha256=i5JTd8IhhTYI2bpEMQ27XmxPZojACUzWnKcw4gGofnE,12691
75
- AeroViz/rawDataReader/core/qc.py,sha256=tFIVsfph8yZIK6NRKQxaZYHcruJclriKSvR0oC12T0Q,5698
76
- AeroViz/rawDataReader/script/AE33.py,sha256=FbbFJ93aLVjA8k2QZ_fKcI9uXoux2k0AL3O73iY879I,1278
77
- AeroViz/rawDataReader/script/AE43.py,sha256=GjcICBJ3nIANyMd4kovteBUtkyCGLTos07BczgSCuVE,1231
78
- AeroViz/rawDataReader/script/APS_3321.py,sha256=x75G72Xl0vElr6Njbv8SlOcosAHNozseaJzAxVmfXyI,1697
79
- AeroViz/rawDataReader/script/Aurora.py,sha256=2duNsK2WCWk21Rd2d4EugAA_yN27p2AjRFd9ClJ2aUA,1491
80
- AeroViz/rawDataReader/script/BC1054.py,sha256=tuDyq8M5BPbmu1yJr9zXYS2piMGz08yTQXGT6tK9jxA,1675
81
- AeroViz/rawDataReader/script/EPA.py,sha256=1ZXEcCnIMOhEXu0JwzeCgmhRtPzBNo2CfLhfhstOT4k,1649
82
- AeroViz/rawDataReader/script/GRIMM.py,sha256=-D4U83ihjAqcvOAnk7NET59IZfV1JzPYKRQjrIQyBDM,846
83
- AeroViz/rawDataReader/script/IGAC.py,sha256=i6WT3rX0n0e4hq7NfWN6tVwCuKAeV9ARxPkXZSbQj74,2387
84
- AeroViz/rawDataReader/script/MA350.py,sha256=EfPTFhgDAjI7r0G6kW7pjog-4MBOnvW0cyFqIkCxEP8,1597
85
- AeroViz/rawDataReader/script/Minion.py,sha256=9G_q-EhE3nfJoxWFwAnMYdY0teSYqcYxTkk0JW5lmY0,7793
86
- AeroViz/rawDataReader/script/NEPH.py,sha256=x6HgnvpmmhOOvB4-nL-jTfoSo0x8FUxVBXPqAyfhZVk,3215
87
- AeroViz/rawDataReader/script/OCEC.py,sha256=jWWaNbCjP5MJDYrdWUhjrQLClaWqC8SGDVPIFJ9xljU,3413
88
- AeroViz/rawDataReader/script/SMPS.py,sha256=U1ZMgR8fexHPwR6tPiCtcvd32pGHEXkWKRR4HeSf1zM,2896
89
- AeroViz/rawDataReader/script/TEOM.py,sha256=jsxU4W46FmLjiIthmPOHo6CAYFZiPENhW80WjMCiIPA,2103
90
- AeroViz/rawDataReader/script/VOC.py,sha256=GUme72ZyjSzREsFNUgOV_OCESIVJBXY9KrKP1c9Av7I,1248
91
- AeroViz/rawDataReader/script/XRF.py,sha256=SU1-D94GkwdkjlNXcyXbwQG1tOYCpeL6GTVkaLBHc-s,187
92
- AeroViz/rawDataReader/script/__init__.py,sha256=s3c797Q8EAGcJCxVRTA-KdHie-vHLNYbMxwa5c0qz-I,214
93
- AeroViz/tools/__init__.py,sha256=tPUmCI9Fi1LgE-QSVnzan5jRdYQBIENH9PRDXB_DhTw,109
94
- AeroViz/tools/database.py,sha256=05VzjJyhlRrhsZdhfFQ__7CxGm4MdFekLjz3_Is5h9U,3430
95
- AeroViz/tools/dataclassifier.py,sha256=_wpv0PlZ5EGkcNqHxfFtdEsYvHP5FVE8sMZXikhm_YE,4492
96
- AeroViz/tools/dataprinter.py,sha256=Jq2Yztpa9YCOeLDVTrRs7PhSdNIPhEAexVj1YSuJ7hY,2249
97
- AeroViz/tools/datareader.py,sha256=iTQ0U8hdNMjCdbiH7EiKW10UEoxzxXRHc4s5_1IikJo,1933
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