AeroViz 0.1.3__py3-none-any.whl → 0.1.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/__init__.py +7 -5
- AeroViz/{config → data}/DEFAULT_DATA.csv +1 -1
- AeroViz/dataProcess/Chemistry/__init__.py +40 -40
- AeroViz/dataProcess/Chemistry/_calculate.py +15 -15
- AeroViz/dataProcess/Chemistry/_isoropia.py +72 -68
- AeroViz/dataProcess/Chemistry/_mass_volume.py +158 -161
- AeroViz/dataProcess/Chemistry/_ocec.py +109 -109
- AeroViz/dataProcess/Chemistry/_partition.py +19 -18
- AeroViz/dataProcess/Chemistry/_teom.py +9 -11
- AeroViz/dataProcess/Chemistry/isrpia.cnf +21 -0
- AeroViz/dataProcess/Optical/Angstrom_exponent.py +20 -0
- AeroViz/dataProcess/Optical/_IMPROVE.py +40 -41
- AeroViz/dataProcess/Optical/__init__.py +29 -44
- AeroViz/dataProcess/Optical/_absorption.py +21 -47
- AeroViz/dataProcess/Optical/_extinction.py +31 -25
- AeroViz/dataProcess/Optical/_mie.py +5 -7
- AeroViz/dataProcess/Optical/_mie_sd.py +89 -90
- AeroViz/dataProcess/Optical/_scattering.py +19 -20
- AeroViz/dataProcess/SizeDistr/__init__.py +39 -39
- AeroViz/dataProcess/SizeDistr/__merge.py +159 -158
- AeroViz/dataProcess/SizeDistr/_merge.py +155 -154
- AeroViz/dataProcess/SizeDistr/_merge_v1.py +162 -161
- AeroViz/dataProcess/SizeDistr/_merge_v2.py +153 -152
- AeroViz/dataProcess/SizeDistr/_merge_v3.py +327 -327
- AeroViz/dataProcess/SizeDistr/_merge_v4.py +273 -275
- AeroViz/dataProcess/SizeDistr/_size_distr.py +51 -51
- AeroViz/dataProcess/VOC/__init__.py +9 -9
- AeroViz/dataProcess/VOC/_potential_par.py +53 -55
- AeroViz/dataProcess/__init__.py +28 -6
- AeroViz/dataProcess/core/__init__.py +59 -65
- AeroViz/plot/__init__.py +7 -2
- AeroViz/plot/bar.py +126 -0
- AeroViz/plot/box.py +69 -0
- AeroViz/plot/distribution/distribution.py +421 -427
- AeroViz/plot/meteorology/meteorology.py +240 -292
- AeroViz/plot/optical/__init__.py +0 -1
- AeroViz/plot/optical/optical.py +230 -230
- AeroViz/plot/pie.py +198 -0
- AeroViz/plot/regression.py +196 -0
- AeroViz/plot/scatter.py +165 -0
- AeroViz/plot/templates/__init__.py +2 -4
- AeroViz/plot/templates/ammonium_rich.py +34 -0
- AeroViz/plot/templates/contour.py +25 -25
- AeroViz/plot/templates/corr_matrix.py +86 -93
- AeroViz/plot/templates/diurnal_pattern.py +28 -26
- AeroViz/plot/templates/koschmieder.py +59 -123
- AeroViz/plot/templates/metal_heatmap.py +135 -37
- AeroViz/plot/timeseries/__init__.py +1 -0
- AeroViz/plot/timeseries/template.py +47 -0
- AeroViz/plot/timeseries/timeseries.py +324 -264
- AeroViz/plot/utils/__init__.py +2 -1
- AeroViz/plot/utils/_color.py +57 -57
- AeroViz/plot/utils/_unit.py +48 -48
- AeroViz/plot/utils/plt_utils.py +92 -0
- AeroViz/plot/utils/sklearn_utils.py +49 -0
- AeroViz/plot/utils/units.json +5 -0
- AeroViz/plot/violin.py +80 -0
- AeroViz/process/__init__.py +17 -17
- AeroViz/process/core/DataProc.py +9 -9
- AeroViz/process/core/SizeDist.py +81 -81
- AeroViz/process/method/PyMieScatt_update.py +488 -488
- AeroViz/process/method/mie_theory.py +231 -229
- AeroViz/process/method/prop.py +40 -40
- AeroViz/process/script/AbstractDistCalc.py +103 -103
- AeroViz/process/script/Chemical.py +168 -167
- AeroViz/process/script/IMPACT.py +40 -40
- AeroViz/process/script/IMPROVE.py +152 -152
- AeroViz/process/script/Others.py +45 -45
- AeroViz/process/script/PSD.py +26 -26
- AeroViz/process/script/PSD_dry.py +69 -70
- AeroViz/process/script/retrieve_RI.py +50 -51
- AeroViz/rawDataReader/__init__.py +53 -58
- AeroViz/rawDataReader/config/supported_instruments.py +155 -0
- AeroViz/rawDataReader/core/__init__.py +233 -356
- AeroViz/rawDataReader/script/AE33.py +17 -18
- AeroViz/rawDataReader/script/AE43.py +18 -21
- AeroViz/rawDataReader/script/APS_3321.py +30 -30
- AeroViz/rawDataReader/script/Aurora.py +23 -24
- AeroViz/rawDataReader/script/BC1054.py +36 -40
- AeroViz/rawDataReader/script/EPA_vertical.py +37 -9
- AeroViz/rawDataReader/script/GRIMM.py +16 -23
- AeroViz/rawDataReader/script/IGAC.py +90 -0
- AeroViz/rawDataReader/script/MA350.py +32 -39
- AeroViz/rawDataReader/script/Minion.py +103 -0
- AeroViz/rawDataReader/script/NEPH.py +69 -74
- AeroViz/rawDataReader/script/SMPS_TH.py +25 -25
- AeroViz/rawDataReader/script/SMPS_aim11.py +32 -32
- AeroViz/rawDataReader/script/SMPS_genr.py +31 -31
- AeroViz/rawDataReader/script/Sunset_OCEC.py +60 -0
- AeroViz/rawDataReader/script/TEOM.py +30 -28
- AeroViz/rawDataReader/script/Table.py +13 -14
- AeroViz/rawDataReader/script/VOC.py +26 -0
- AeroViz/rawDataReader/script/__init__.py +18 -20
- AeroViz/tools/database.py +64 -66
- AeroViz/tools/dataclassifier.py +106 -106
- AeroViz/tools/dataprinter.py +51 -51
- AeroViz/tools/datareader.py +38 -38
- {AeroViz-0.1.3.dist-info → AeroViz-0.1.4.dist-info}/METADATA +5 -4
- AeroViz-0.1.4.dist-info/RECORD +112 -0
- AeroViz/plot/improve/__init__.py +0 -1
- AeroViz/plot/improve/improve.py +0 -240
- AeroViz/plot/optical/aethalometer.py +0 -77
- AeroViz/plot/templates/event_evolution.py +0 -65
- AeroViz/plot/templates/regression.py +0 -256
- AeroViz/plot/templates/scatter.py +0 -130
- AeroViz/plot/templates/templates.py +0 -398
- AeroViz/plot/utils/_decorator.py +0 -74
- AeroViz/rawDataReader/script/IGAC_TH.py +0 -104
- AeroViz/rawDataReader/script/IGAC_ZM.py +0 -90
- AeroViz/rawDataReader/script/OCEC_LCRES.py +0 -34
- AeroViz/rawDataReader/script/OCEC_RES.py +0 -28
- AeroViz/rawDataReader/script/VOC_TH.py +0 -30
- AeroViz/rawDataReader/script/VOC_ZM.py +0 -37
- AeroViz/rawDataReader/utils/__init__.py +0 -0
- AeroViz/rawDataReader/utils/config.py +0 -169
- AeroViz-0.1.3.dist-info/RECORD +0 -111
- /AeroViz/{config → data}/DEFAULT_PNSD_DATA.csv +0 -0
- /AeroViz/{config → rawDataReader/config}/__init__.py +0 -0
- {AeroViz-0.1.3.dist-info → AeroViz-0.1.4.dist-info}/LICENSE +0 -0
- {AeroViz-0.1.3.dist-info → AeroViz-0.1.4.dist-info}/WHEEL +0 -0
- {AeroViz-0.1.3.dist-info → AeroViz-0.1.4.dist-info}/top_level.txt +0 -0
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from pandas import to_datetime, read_csv
|
|
2
|
-
|
|
3
|
-
from AeroViz.rawDataReader.core import AbstractReader
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class Reader(AbstractReader):
|
|
7
|
-
nam = 'OCEC_RES'
|
|
8
|
-
|
|
9
|
-
def _raw_reader(self, _file):
|
|
10
|
-
with open(_file, 'r', encoding='utf-8', errors='ignore') as f:
|
|
11
|
-
_df = read_csv(f, skiprows=3)
|
|
12
|
-
|
|
13
|
-
_col = {'OCPk1-ug C': 'OC1',
|
|
14
|
-
'OCPk2-ug C': 'OC2',
|
|
15
|
-
'OCPk3-ug C': 'OC3',
|
|
16
|
-
'OCPk4-ug C': 'OC4',
|
|
17
|
-
'Pyrolized C ug': 'PC', }
|
|
18
|
-
|
|
19
|
-
_tm_idx = to_datetime(_df['Start Date/Time'], errors='coerce')
|
|
20
|
-
_df['time'] = _tm_idx
|
|
21
|
-
|
|
22
|
-
_df = _df.dropna(subset='time').loc[~_tm_idx.duplicated()].set_index('time')
|
|
23
|
-
|
|
24
|
-
return _df[_col.keys()].rename(columns=_col)
|
|
25
|
-
|
|
26
|
-
## QC data
|
|
27
|
-
def _QC(self, _df):
|
|
28
|
-
return _df.where(_df > 0)
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# read meteorological data from google sheet
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
from pandas import read_csv
|
|
5
|
-
|
|
6
|
-
from AeroViz.rawDataReader.core import AbstractReader
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class Reader(AbstractReader):
|
|
10
|
-
nam = 'VOC_TH'
|
|
11
|
-
|
|
12
|
-
def _raw_reader(self, _file):
|
|
13
|
-
_keys = ['Isopentane', 'Hexane', '2-Methylhexane', '3-Methylhexane', '2-Methylheptane', '3-Methylheptane',
|
|
14
|
-
'Propene', '1.3-Butadiene', 'Isoprene', '1-Octene',
|
|
15
|
-
'Benzene', 'Toluene', 'Ethylbenzene', 'm.p-Xylene', 'o-Xylene', 'Iso-Propylbenzene', 'Styrene',
|
|
16
|
-
'n-Propylbenzene', '3.4-Ethyltoluene', '1.3.5-TMB', '2-Ethyltoluene', '1.2.4-TMB', '1.2.3-TMB',
|
|
17
|
-
'Acetaldehyde', 'Ethanol', 'Acetone', 'IPA', 'Ethyl Acetate', 'Butyl Acetate',
|
|
18
|
-
'VCM', 'TCE', 'PCE', '1.4-DCB', '1.2-DCB']
|
|
19
|
-
|
|
20
|
-
with (_file).open('r', encoding='utf-8-sig', errors='ignore') as f:
|
|
21
|
-
_df = read_csv(f, parse_dates=[0], index_col=[0], na_values=['-', 'N.D.'])
|
|
22
|
-
|
|
23
|
-
_df.columns = _df.keys().str.strip(' ')
|
|
24
|
-
_df.index.name = 'time'
|
|
25
|
-
|
|
26
|
-
_df = _df[_keys].loc[_df.index.dropna()]
|
|
27
|
-
return _df.loc[~_df.index.duplicated()]
|
|
28
|
-
|
|
29
|
-
def _QC(self, _df):
|
|
30
|
-
return _df
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# read meteorological data from google sheet
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
from pandas import read_csv
|
|
5
|
-
|
|
6
|
-
from AeroViz.rawDataReader.core import AbstractReader
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class Reader(AbstractReader):
|
|
10
|
-
nam = 'VOC_ZM'
|
|
11
|
-
|
|
12
|
-
def _raw_reader(self, _file):
|
|
13
|
-
_keys = ['Ethane', 'Propane', 'Isobutane', 'n-Butane', 'Cyclopentane', 'Isopentane',
|
|
14
|
-
'n-Pentane', '2,2-Dimethylbutane', '2,3-Dimethylbutane', '2-Methylpentane',
|
|
15
|
-
'3-Methylpentane', 'n-Hexane', 'Methylcyclopentane', '2,4-Dimethylpentane',
|
|
16
|
-
'Cyclohexane', '2-Methylhexane', '2-Methylhexane', '3-Methylheptane',
|
|
17
|
-
'2,2,4-Trimethylpentane', 'n-Heptane', 'Methylcyclohexane',
|
|
18
|
-
'2,3,4-Trimethylpentane', '2-Methylheptane', '3-Methylhexane', 'n-Octane',
|
|
19
|
-
'n-Nonane', 'n-Decane', 'n-Undecane', 'Ethylene', 'Propylene', 't-2-Butene',
|
|
20
|
-
'1-Butene', 'cis-2-Butene', 't-2-Pentene', '1-Pentene', 'cis-2-Pentene',
|
|
21
|
-
'isoprene', 'Acetylene', 'Benzene', 'Toluene', 'Ethylbenzene', 'm,p-Xylene',
|
|
22
|
-
'Styrene', 'o-Xylene', 'Isopropylbenzene', 'n-Propylbenzene', 'm-Ethyltoluene',
|
|
23
|
-
'p-Ethyltoluene', '1,3,5-Trimethylbenzene', 'o-Ethyltoluene',
|
|
24
|
-
'1,2,4-Trimethylbenzene', '1,2,3-Trimethylbenzene', 'm-Diethylbenzene',
|
|
25
|
-
'p-Diethylbenzene']
|
|
26
|
-
|
|
27
|
-
with (_file).open('r', encoding='utf-8-sig', errors='ignore') as f:
|
|
28
|
-
_df = read_csv(f, parse_dates=[0], index_col=[0], na_values=['-'])
|
|
29
|
-
|
|
30
|
-
_df.columns = _df.keys().str.strip(' ')
|
|
31
|
-
_df.index.name = 'time'
|
|
32
|
-
|
|
33
|
-
_df = _df[_keys].loc[_df.index.dropna()]
|
|
34
|
-
return _df.loc[~_df.index.duplicated()]
|
|
35
|
-
|
|
36
|
-
def _QC(self, _df):
|
|
37
|
-
return _df
|
|
File without changes
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
# Description: Configuration file for rawDataReader
|
|
2
|
-
|
|
3
|
-
instrument = [
|
|
4
|
-
"NEPH",
|
|
5
|
-
"Aurora",
|
|
6
|
-
"AE33",
|
|
7
|
-
"AE43",
|
|
8
|
-
"Table",
|
|
9
|
-
"EPA_vertical",
|
|
10
|
-
"SMPS_NTU(SMPS_3080_3788)",
|
|
11
|
-
"SMPS_TH(SMPS_3080_3772)",
|
|
12
|
-
"APS_3321",
|
|
13
|
-
"TEOM",
|
|
14
|
-
"OCEC"
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
meta = {
|
|
18
|
-
"NEPH": {
|
|
19
|
-
"pattern": "*.DAT",
|
|
20
|
-
"freq": "5min",
|
|
21
|
-
"deter_key": {"Scatter Coe. (550 nm)": ["G"]},
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
"Aurora": {
|
|
25
|
-
"pattern": "*.csv",
|
|
26
|
-
"freq": "1min",
|
|
27
|
-
"deter_key": {"Scatter Coe. (550 nm)": ["G"]},
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
"Table": {
|
|
31
|
-
"pattern": "*.csv",
|
|
32
|
-
"freq": "1h",
|
|
33
|
-
"deter_key": None,
|
|
34
|
-
},
|
|
35
|
-
|
|
36
|
-
"EPA_vertical": {
|
|
37
|
-
"pattern": "*.csv",
|
|
38
|
-
"freq": "1h",
|
|
39
|
-
"deter_key": None,
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
"SMPS_TH": {
|
|
43
|
-
"pattern": "*.txt",
|
|
44
|
-
"freq": "6min",
|
|
45
|
-
"deter_key": {"Bins": ["all"]},
|
|
46
|
-
},
|
|
47
|
-
|
|
48
|
-
"SMPS_genr": {
|
|
49
|
-
"pattern": "*.txt",
|
|
50
|
-
"freq": "6min",
|
|
51
|
-
"deter_key": {"Bins": ["all"]},
|
|
52
|
-
},
|
|
53
|
-
|
|
54
|
-
"SMPS_aim11": {
|
|
55
|
-
"pattern": "*.csv",
|
|
56
|
-
"freq": "6min",
|
|
57
|
-
"deter_key": {"Bins": ["all"]},
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
"GRIMM": {
|
|
61
|
-
"pattern": "*.dat",
|
|
62
|
-
"freq": "6min",
|
|
63
|
-
"deter_key": {"Bins": ["all"]},
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
"APS_3321": {
|
|
67
|
-
"pattern": "*.TXT",
|
|
68
|
-
"freq": "6min",
|
|
69
|
-
"deter_key": {"Bins": ["all"]},
|
|
70
|
-
},
|
|
71
|
-
|
|
72
|
-
"AE33": {
|
|
73
|
-
"pattern": "[!ST|!CT|!FV]*[!log]_AE33*.dat",
|
|
74
|
-
"freq": "1min",
|
|
75
|
-
"deter_key": {"BC Mass Conc. (880 nm)": ["BC6"]},
|
|
76
|
-
},
|
|
77
|
-
|
|
78
|
-
"AE43": {
|
|
79
|
-
"pattern": "[!ST|!CT|!FV]*[!log]_AE43*.dat",
|
|
80
|
-
"freq": "1min",
|
|
81
|
-
"deter_key": {"BC Mass Conc. (880 nm)": ["BC6"]},
|
|
82
|
-
},
|
|
83
|
-
|
|
84
|
-
"BC1054": {
|
|
85
|
-
"pattern": "*.csv",
|
|
86
|
-
"freq": "1min",
|
|
87
|
-
"deter_key": {"BC Mass Conc. (880 nm)": ["BC6"]},
|
|
88
|
-
},
|
|
89
|
-
|
|
90
|
-
"MA350": {
|
|
91
|
-
"pattern": "*.csv",
|
|
92
|
-
"freq": "1min",
|
|
93
|
-
"deter_key": {"BC Mass Conc. (880 nm)": ["BC5"]},
|
|
94
|
-
},
|
|
95
|
-
|
|
96
|
-
"TEOM": {
|
|
97
|
-
"pattern": "*.csv",
|
|
98
|
-
"freq": "6min",
|
|
99
|
-
"deter_key": {
|
|
100
|
-
"PM1.0 Mass Conc.": ["PM_Total"],
|
|
101
|
-
"PM1.0 NV Mass Conc.": ["PM_NV"],
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
|
|
105
|
-
"OCEC_LCRES": {
|
|
106
|
-
"pattern": "*LCRes.csv",
|
|
107
|
-
"freq": "1h",
|
|
108
|
-
"deter_key": {
|
|
109
|
-
"Thermal OC/EC": ["Thermal_EC", "Thermal_OC"],
|
|
110
|
-
"Thermal OC": ["Thermal_OC"],
|
|
111
|
-
"Thermal EC": ["Thermal_EC"],
|
|
112
|
-
"Optical OC/EC": ["Optical_EC", "Optical_OC"],
|
|
113
|
-
"Optical OC": ["Optical_OC"],
|
|
114
|
-
"Optical EC": ["Optical_EC"],
|
|
115
|
-
},
|
|
116
|
-
},
|
|
117
|
-
|
|
118
|
-
"OCEC_RES": {
|
|
119
|
-
"pattern": "*[!LC|!Blanks]Res.csv",
|
|
120
|
-
"freq": "1h",
|
|
121
|
-
"deter_key": None,
|
|
122
|
-
},
|
|
123
|
-
|
|
124
|
-
"IGAC_TH": {
|
|
125
|
-
"pattern": "*.csv",
|
|
126
|
-
"freq": "1h",
|
|
127
|
-
"deter_key": {
|
|
128
|
-
"Na+": ["Na+"],
|
|
129
|
-
"NH4+": ["NH4+"],
|
|
130
|
-
"K+": ["K+"],
|
|
131
|
-
"Mg2+": ["Mg2+"],
|
|
132
|
-
"Ca2+": ["Ca2+"],
|
|
133
|
-
"Cl-": ["Cl-"],
|
|
134
|
-
"NO2-": ["NO2-"],
|
|
135
|
-
"NO3-": ["NO3-"],
|
|
136
|
-
"SO42-": ["SO42-"],
|
|
137
|
-
"Main Salt (NH4+, NO3-, SO42-)": ["NO3-", "SO42-", "NH4+"],
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
|
|
141
|
-
"IGAC_ZM": {
|
|
142
|
-
"pattern": "*.csv",
|
|
143
|
-
"freq": "1h",
|
|
144
|
-
"deter_key": {"Na+": ["Na+"],
|
|
145
|
-
"NH4+": ["NH4+"],
|
|
146
|
-
"K+": ["K+"],
|
|
147
|
-
"Mg2+": ["Mg2+"],
|
|
148
|
-
"Ca2+": ["Ca2+"],
|
|
149
|
-
"Cl-": ["Cl-"],
|
|
150
|
-
"NO2-": ["NO2-"],
|
|
151
|
-
"NO3-": ["NO3-"],
|
|
152
|
-
"SO42-": ["SO42-"],
|
|
153
|
-
"Main Salt (NH4+, NO3-, SO42-)": ["NO3-", "SO42-", "NH4+"],
|
|
154
|
-
},
|
|
155
|
-
},
|
|
156
|
-
|
|
157
|
-
"VOC_TH": {
|
|
158
|
-
"pattern": "*.csv",
|
|
159
|
-
"freq": "1h",
|
|
160
|
-
"deter_key": None,
|
|
161
|
-
},
|
|
162
|
-
|
|
163
|
-
"VOC_ZM": {
|
|
164
|
-
"pattern": "*.csv",
|
|
165
|
-
"freq": "1h",
|
|
166
|
-
"deter_key": None,
|
|
167
|
-
},
|
|
168
|
-
|
|
169
|
-
}
|
AeroViz-0.1.3.dist-info/RECORD
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
AeroViz/__init__.py,sha256=lY7E-ZWNFPYOrpDSpWase_4-rUezRbeYOHDVJLU45VM,403
|
|
2
|
-
AeroViz/config/DEFAULT_DATA.csv,sha256=bgk3nBKS8GGIZxGUahT64eRmkQcVqlYEe9-cv2709EM,2248525
|
|
3
|
-
AeroViz/config/DEFAULT_PNSD_DATA.csv,sha256=imLvLA80oYwo_jzXZtlQn5hZ76d47HUIlK2jp0tZPrg,2636511
|
|
4
|
-
AeroViz/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
AeroViz/dataProcess/__init__.py,sha256=6y-sYreiqlI6WIm7rkDCZJdM3JQhK3hsDySS1GpqKOY,179
|
|
6
|
-
AeroViz/dataProcess/Chemistry/__init__.py,sha256=2YZYRcYjREEhDcheC4vH8GfbjA-0gc5hSbJJyymg5jE,1768
|
|
7
|
-
AeroViz/dataProcess/Chemistry/_calculate.py,sha256=LiqJ8mpQLMwg-QuhT7A6zNLojnmOMX4lz6PD5wbqhOw,568
|
|
8
|
-
AeroViz/dataProcess/Chemistry/_isoropia.py,sha256=soHaydApQ-yS0GdHz8jkQcWXlTr6JcyoXCUXHui46_g,3045
|
|
9
|
-
AeroViz/dataProcess/Chemistry/_mass_volume.py,sha256=61KVbqC-Y3LAiLNvTiCwOw35eNcsfxp_m6QM72cvbtI,4587
|
|
10
|
-
AeroViz/dataProcess/Chemistry/_ocec.py,sha256=JZ7HDwfkiz8xfo0W-b-kJbqpC-X7WaKAACRIUxTLt8Q,5497
|
|
11
|
-
AeroViz/dataProcess/Chemistry/_partition.py,sha256=2BoJ3I8N9V4pZcXdRRFywM0BYhTMWPZ7cohZm3xuCKQ,995
|
|
12
|
-
AeroViz/dataProcess/Chemistry/_teom.py,sha256=PuTFQDLs1_e41KUt06nfykDHm8D8jCIRsYC7F-45lxM,447
|
|
13
|
-
AeroViz/dataProcess/Optical/_IMPROVE.py,sha256=b8NuFG4huZKjOLnF21FrwClBQAHlOdcT8Wqv3GzcDoI,1560
|
|
14
|
-
AeroViz/dataProcess/Optical/__init__.py,sha256=3jy6Sw1AEOLAZ_rdYd1r2d-bcM4_5xkKCVFRxLDlzzI,1234
|
|
15
|
-
AeroViz/dataProcess/Optical/_absorption.py,sha256=PUDA-TRvwJzgLKG3nO-H6vX6SNB4I4bbg_77CST2U1g,1395
|
|
16
|
-
AeroViz/dataProcess/Optical/_extinction.py,sha256=phAy57-5KJXQCz3xCEGRMV410Avhge8pvJrpWGlEFOU,894
|
|
17
|
-
AeroViz/dataProcess/Optical/_mie.py,sha256=3eGGIPnWjhX0ofUgQwBsUu2A9Fb_9LF1EI3FiSS-8fo,430
|
|
18
|
-
AeroViz/dataProcess/Optical/_mie_sd.py,sha256=DpBFBDPqhd8ho0Yx4RvIjoe-O_-YJHqI3GJumi5qjn8,4459
|
|
19
|
-
AeroViz/dataProcess/Optical/_scattering.py,sha256=nXKcLX5SC7__jMhrUHs2Rz59F0nbhiHrR0eNggRpjd8,571
|
|
20
|
-
AeroViz/dataProcess/SizeDistr/__init__.py,sha256=0fbwbOYPBo-q-4PaDsZPT5CMcZQ66bgz_BTtEqHA-co,1950
|
|
21
|
-
AeroViz/dataProcess/SizeDistr/__merge.py,sha256=z2aapvU0zg64Pobi2J3d1YRUJrppcAd72saQBFrt9WI,8795
|
|
22
|
-
AeroViz/dataProcess/SizeDistr/_merge.py,sha256=Dnql8ntfPX34e6jkP1h70tgDwegbnEh02NJmSFLvqdE,8512
|
|
23
|
-
AeroViz/dataProcess/SizeDistr/_merge_v1.py,sha256=LrdBjBp5BGlUUm4y-olGuaERwiR5Htfq4_xxpNoK2is,8898
|
|
24
|
-
AeroViz/dataProcess/SizeDistr/_merge_v2.py,sha256=8i3jN5txzctAYjCbVLJBcLoOIZgJYnnSnmj7zY3OKSs,8397
|
|
25
|
-
AeroViz/dataProcess/SizeDistr/_merge_v3.py,sha256=dn-K4mkyzFlYUQ-DDywWUJKZ4Bdp2iPVR9rwT7uUGAY,16780
|
|
26
|
-
AeroViz/dataProcess/SizeDistr/_merge_v4.py,sha256=akq4sGRAX0tERQar3-oNERfyvdo2hL8l6xXewblNxZU,14693
|
|
27
|
-
AeroViz/dataProcess/SizeDistr/_size_distr.py,sha256=dx6l_ue5tdiKSu2wa-VhzDVwhKX_kDfS-glQin8Tdwg,2913
|
|
28
|
-
AeroViz/dataProcess/VOC/__init__.py,sha256=4AwmahvNQHVqC99Kp8FHyXjrmDkYo0Vc7M2sKDhUDR4,266
|
|
29
|
-
AeroViz/dataProcess/VOC/_potential_par.py,sha256=zTYds7blgo9y4i0K54oemXKugX_wx8Zp_7XzOMLoVvQ,2672
|
|
30
|
-
AeroViz/dataProcess/VOC/voc_par.json,sha256=cJF0ynKCMccIruHp7YJ19fZmXZV6ASlLszCJCqduDJQ,7077
|
|
31
|
-
AeroViz/dataProcess/core/__init__.py,sha256=FvoMseJQFb9G44B2PbxJLOJ_TEHvhdYyKryAf76vf7A,2192
|
|
32
|
-
AeroViz/plot/__init__.py,sha256=9mptjlKOL40ZNoYntfON8ZK_4u84kErwQn7l1dAA18I,168
|
|
33
|
-
AeroViz/plot/distribution/__init__.py,sha256=nhbIegWczkuEfWsE7-2jfF0dnpmPDzJJzjq8Fuh6q5k,28
|
|
34
|
-
AeroViz/plot/distribution/distribution.py,sha256=GdGFOTGdHkxfxPP6RKqRbVJXVQdzeNOmBS2s5UkYHVA,19111
|
|
35
|
-
AeroViz/plot/improve/__init__.py,sha256=sfGzwndfWe9Bl-fS0rTUVql_Rf13LuNjs7puVz7DCxM,23
|
|
36
|
-
AeroViz/plot/improve/improve.py,sha256=gPzub6eyp4eD5Xgkn6DVsLhASA0FB-iPKaXqbJVq2Hs,8637
|
|
37
|
-
AeroViz/plot/meteorology/__init__.py,sha256=hhGfQE3IUzS3Eaju_nO7LomPPHJnd-zAAZZweXOXs2M,27
|
|
38
|
-
AeroViz/plot/meteorology/meteorology.py,sha256=1hWoD3HuWjYH1UOw97dsjUYnl6hdaLCg_Ku5FMjcmn4,11478
|
|
39
|
-
AeroViz/plot/optical/__init__.py,sha256=D3jW2F8OXo8Twe7If6LW99NvllZSRMSOg2ZCQzbwZKA,51
|
|
40
|
-
AeroViz/plot/optical/aethalometer.py,sha256=C-r6ajrywbCF6UhweF6-j9LMYpnNxVIMF_rb5Yxav60,2932
|
|
41
|
-
AeroViz/plot/optical/optical.py,sha256=LOi9xPSfWSF8gJEMhv__i-E17BiPYuFdek9cVioKHlc,12573
|
|
42
|
-
AeroViz/plot/templates/__init__.py,sha256=SBisRIk-6Lkww88JMOFHSFrx3K4BFXVc5zVTYvbTFJ4,248
|
|
43
|
-
AeroViz/plot/templates/contour.py,sha256=DtZRApe-Dn2_cqXWBtgciTEY1-4Vpvl8fB9L0ES_yn4,1585
|
|
44
|
-
AeroViz/plot/templates/corr_matrix.py,sha256=4nKd-GwMVzr5qt94sIu4AGUKMjZrfwPC93nf1qZoeBQ,3574
|
|
45
|
-
AeroViz/plot/templates/diurnal_pattern.py,sha256=Xg9cc0FlnoijnsB46pCp7geCPCbEzk_Cc2sEtEBxfE4,1218
|
|
46
|
-
AeroViz/plot/templates/event_evolution.py,sha256=uzmlxkMyCoI09jBLdZu4hf7dhUbHhVLHf9VjIkD3lxY,2176
|
|
47
|
-
AeroViz/plot/templates/koschmieder.py,sha256=H9STSGNXSQhYba9ZKox9mIDxDIqh3ng2JY1JbgShlW8,5328
|
|
48
|
-
AeroViz/plot/templates/metal_heatmap.py,sha256=-HAe_7x7Qj6VuZGkQB6pgZXeySu2hNSGVVXmcGtm5t8,1834
|
|
49
|
-
AeroViz/plot/templates/regression.py,sha256=ZZF0nm6t32Is0ny7t-1utP071TZdsfrApNNbLH0m2yI,7966
|
|
50
|
-
AeroViz/plot/templates/scatter.py,sha256=-gaT_Wish1lPdPoRPEG1P843wUnZy0IYt2xkapcpA1Q,4309
|
|
51
|
-
AeroViz/plot/templates/templates.py,sha256=j7lOB57zPIwCzi3j1zUk-tc7vT9lQ_YYNomkSz48H-M,13369
|
|
52
|
-
AeroViz/plot/timeseries/__init__.py,sha256=veqmkZy6j_BikD3JxBZp9cptOsaf6oP503xaDK8nn_o,26
|
|
53
|
-
AeroViz/plot/timeseries/timeseries.py,sha256=PqGKuicNRQuaTVZ_Mi6BBHITVmznGyG7qTDGarWg9QI,10165
|
|
54
|
-
AeroViz/plot/utils/__init__.py,sha256=o-SqcwfoAOo6U33ASplMHtxSWs3QCnig8GjgW-y1qWQ,85
|
|
55
|
-
AeroViz/plot/utils/_color.py,sha256=x7QJa6xGWCePAWhVkZGO-YO0nzg5hbqAxI8omPfg1rE,2494
|
|
56
|
-
AeroViz/plot/utils/_decorator.py,sha256=mAT2jgH_uNL7wqymDEAFR9RQKPhcLZEKXVRve1-taiI,2231
|
|
57
|
-
AeroViz/plot/utils/_unit.py,sha256=ME6VENiERNDehom4wVKQl_OYeHFiDWRdZ5kfJ_OkXuk,1413
|
|
58
|
-
AeroViz/plot/utils/fRH.json,sha256=t-2ux4TLOYAB-4jJ72LSM4jv1jk9XkaxKYNMDepMHIg,6038
|
|
59
|
-
AeroViz/plot/utils/units.json,sha256=OSNUAJdXx1GqE1_9afHdCNQteK69imv7aYFfm0F-SxI,2803
|
|
60
|
-
AeroViz/process/__init__.py,sha256=xI8lvKc3aKk4MIWwOyvTxEclEArcJ2DSpN0rBF63doA,1077
|
|
61
|
-
AeroViz/process/core/DataProc.py,sha256=gpFbKJg1BfRiYDi_GpuVdxUYkN804NLIv87mvqnFtbo,347
|
|
62
|
-
AeroViz/process/core/SizeDist.py,sha256=FR7LJcuc-umrhOFwSACMxAaHiQSDlI_emYq_cuQ51Jc,1797
|
|
63
|
-
AeroViz/process/core/__init__.py,sha256=WmVSFDx97urX0WPA8dtRVoQF04IDaU-IgxHK979-kM8,98
|
|
64
|
-
AeroViz/process/method/PyMieScatt_update.py,sha256=wi0_BUlyvJzfvFJkPx6j2RsCIgXn_o3v9ANJJ_VPPx0,18687
|
|
65
|
-
AeroViz/process/method/__init__.py,sha256=_yxoNAbbI82ORhrVsi-6x8vPnWQNHavjZUXy-ioZ2wg,123
|
|
66
|
-
AeroViz/process/method/mie_theory.py,sha256=aaBcnUC8afe9ur6-T4cXnevY7-I3ZjOzV3VUOgWCViI,7558
|
|
67
|
-
AeroViz/process/method/prop.py,sha256=MLybZCCi0l5p_ft3fGH9lPsC5tyEgmDU9enFTsBT_aM,1623
|
|
68
|
-
AeroViz/process/script/AbstractDistCalc.py,sha256=bPb2cw1VV4kyo3d0opW2Ipia4Pim5Yz6uZPNx1yKWJY,4588
|
|
69
|
-
AeroViz/process/script/Chemical.py,sha256=e3T1hyXpgHRLbCumagHOsBbkK538n-QYDJs0nvD0wfc,5240
|
|
70
|
-
AeroViz/process/script/IMPACT.py,sha256=SN8oaz7a4_Pp2WZE6vieeBLmq7WTrlK9A8do4mhzBj8,1367
|
|
71
|
-
AeroViz/process/script/IMPROVE.py,sha256=TVFpILoTjoC7FgEiOrElhPM-pfAjUGsQz6k5c1VJa70,4986
|
|
72
|
-
AeroViz/process/script/Others.py,sha256=XHCbVMKIGAmHQKVXVTJSY7qE6KLSB4OPJL9q2wb0RNY,1981
|
|
73
|
-
AeroViz/process/script/PSD.py,sha256=TL9dE_4jW4lt8snzVc4dvr3PaDlRbfUt-Tj74Psp0zU,3643
|
|
74
|
-
AeroViz/process/script/PSD_dry.py,sha256=rGYBR-MTvPMysVXuY6Zdsjt5dmYa5rk8LnOpE-ahbYg,2622
|
|
75
|
-
AeroViz/process/script/__init__.py,sha256=QExUHHK79oiwZXvk8u00P8rLwWhGOc1fpZY2Fx8Vkxg,188
|
|
76
|
-
AeroViz/process/script/retrieve_RI.py,sha256=798s_XmgpIsMX9pKHsH49xEK7AAzNMrm-OvOMVSEFuE,2419
|
|
77
|
-
AeroViz/rawDataReader/__init__.py,sha256=olxpsLtDtG7O7Qo94PiGL0up7pBcXung8dz8MgWjXb4,1628
|
|
78
|
-
AeroViz/rawDataReader/core/__init__.py,sha256=iPeed3mlmzV3vcKUwJx2-gggFCzJeHnd7VPg0niCFoA,12805
|
|
79
|
-
AeroViz/rawDataReader/script/AE33.py,sha256=f7X8Prs3tmgDthwuPW0_Qd4Aooq6UWzpPiRK5sLnfnQ,1071
|
|
80
|
-
AeroViz/rawDataReader/script/AE43.py,sha256=EOHQpXcYQtRPIJSmKwQWGjzk_9835PyfTnsEd5amO0k,950
|
|
81
|
-
AeroViz/rawDataReader/script/APS_3321.py,sha256=TM_dEtnljDU_uT74_oGuFUUZdvF_hkPZY9h6Og9fIsU,1498
|
|
82
|
-
AeroViz/rawDataReader/script/Aurora.py,sha256=6hguvYv2ThtJD4s3FIMmciS1cB3oTAONiKXinUSWC38,1120
|
|
83
|
-
AeroViz/rawDataReader/script/BC1054.py,sha256=8Ey1JFT8mex0qRBoCgylYXx4ZFFpMtkkf2e8-GONQtk,1420
|
|
84
|
-
AeroViz/rawDataReader/script/EPA_vertical.py,sha256=TkgX1QYE1WL-RlHGAqZgBwaGX0_vVbo2_VsI1sZW1ss,574
|
|
85
|
-
AeroViz/rawDataReader/script/GRIMM.py,sha256=DGEubuRFh4OozOAX4K15xU753pJwGK4qC5xo4BSrIZ0,1056
|
|
86
|
-
AeroViz/rawDataReader/script/IGAC_TH.py,sha256=4GQAArMCyxT6YY9KcuxRkv_NxfMICFj5Zs8vdqqdJD0,2902
|
|
87
|
-
AeroViz/rawDataReader/script/IGAC_ZM.py,sha256=DnrbzsHRv8fXmK3ZKMBcMoWvcQzfV3VEHvV8SiiAT4o,2569
|
|
88
|
-
AeroViz/rawDataReader/script/MA350.py,sha256=fdrkLLcKDaBHCpZR0cZxEwRtHcCdni2q3Zox-BAhdcA,1404
|
|
89
|
-
AeroViz/rawDataReader/script/NEPH.py,sha256=NWkyBv0sb6oS1HJp2W2KMEOIo4YyvDUsWJjEQQK_7Q4,2624
|
|
90
|
-
AeroViz/rawDataReader/script/OCEC_LCRES.py,sha256=4_dG4yi9Ovu29MG_Hcyye3K5HZeJ-JVOs8v0Ix7MwGM,1098
|
|
91
|
-
AeroViz/rawDataReader/script/OCEC_RES.py,sha256=Aqxlk0Thb-ndGJiTfftq2RJ0GsVuyJB1tGs_pnvslyk,701
|
|
92
|
-
AeroViz/rawDataReader/script/SMPS_TH.py,sha256=GGlDHm6DK_S_YZLcOWOrPLys_M1OVMkUe8Z4xrUwmKQ,1309
|
|
93
|
-
AeroViz/rawDataReader/script/SMPS_aim11.py,sha256=idqTvgqnAfYPRAwlMjmbgWG5fmM22mJFRAPejZ4544Q,1397
|
|
94
|
-
AeroViz/rawDataReader/script/SMPS_genr.py,sha256=PRLZ1rFPhJQX4ddPgGTKrUjJmcIFtjlCbfhgR5WjSDo,1383
|
|
95
|
-
AeroViz/rawDataReader/script/TEOM.py,sha256=-WM4YXQMdhB_XZexMT40w5I_zMHm8YHgm5PRh5G-7fs,1445
|
|
96
|
-
AeroViz/rawDataReader/script/Table.py,sha256=4JEL4KEL3w_32rjUrhJg9vn4whLCowSxegHPs6gB0dg,721
|
|
97
|
-
AeroViz/rawDataReader/script/VOC_TH.py,sha256=auw0UGYwxWFHF6k7k6iOgRJKgkMgee60iY-exTgx_wU,1052
|
|
98
|
-
AeroViz/rawDataReader/script/VOC_ZM.py,sha256=EgpeLBFMqGKPSPADrxJciojfhUPWNi7bfGaGGYJZMoE,1509
|
|
99
|
-
AeroViz/rawDataReader/script/__init__.py,sha256=ZX-X-5gV9oTiZlYA_ti3yrUA8JE9kH1n7rGSMuk_Ytc,246
|
|
100
|
-
AeroViz/rawDataReader/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
AeroViz/rawDataReader/utils/config.py,sha256=0N6euJdiBRpht0WZ2fGjaLuRIdjhqEIj79qDDjLeYcQ,2966
|
|
102
|
-
AeroViz/tools/__init__.py,sha256=tPUmCI9Fi1LgE-QSVnzan5jRdYQBIENH9PRDXB_DhTw,109
|
|
103
|
-
AeroViz/tools/database.py,sha256=4YoKa_pCy7PY2H1uM2HV-GDre29nIsFfdhqYczTZnt8,3064
|
|
104
|
-
AeroViz/tools/dataclassifier.py,sha256=_98OR87qZbYnM3INAollX1ikYkZj9Nfe8q_xE-KSx0s,3766
|
|
105
|
-
AeroViz/tools/dataprinter.py,sha256=OXi4s8y6Jo_OF6K0dzUU2sGWYCXTbfDZCNY6oJq_RWQ,2027
|
|
106
|
-
AeroViz/tools/datareader.py,sha256=-Ng_3qU8jPvkSMn-sHZV2u9DSP2vAaDo2TY5D_mi6sg,1746
|
|
107
|
-
AeroViz-0.1.3.dist-info/LICENSE,sha256=E-679GpGGkp3irmtuJXiT7R4cNUA4cmsH6Q7QUgPf5U,1069
|
|
108
|
-
AeroViz-0.1.3.dist-info/METADATA,sha256=ikAMw2M7R2wV5ALo0D0D-MVtcitWsWvupQvjE__B_-I,5336
|
|
109
|
-
AeroViz-0.1.3.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
110
|
-
AeroViz-0.1.3.dist-info/top_level.txt,sha256=BYsmTst_o4FZOKRP1XIvIMlN6mMTTXNfnSToL2_nVbQ,8
|
|
111
|
-
AeroViz-0.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|