rc-qlc 0.3.24__cp311-cp311-macosx_11_0_arm64.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.
- qlc/__init__.py +8 -0
- qlc/cli/__init__.py +21 -0
- qlc/cli/installer.py +16 -0
- qlc/cli/qlc_main.py +185 -0
- qlc/cli/qlc_py_main.py +74 -0
- qlc/config/json/qlc_config.json +41 -0
- qlc/config/json/qlc_config_example_1a_all-obs.json +237 -0
- qlc/config/json/qlc_config_example_1b_all-mod.json +353 -0
- qlc/config/json/qlc_config_example_1c_all-coll.json +266 -0
- qlc/config/json/qlc_config_example_2a_all-obs.json +237 -0
- qlc/config/json/qlc_config_example_2b_all-mod.json +353 -0
- qlc/config/json/qlc_config_example_2c_all-coll.json +265 -0
- qlc/config/json/qlc_config_example_3a-us_obs.json +82 -0
- qlc/config/json/qlc_config_example_3b-us_mod.json +122 -0
- qlc/config/json/qlc_config_example_3c-us_coll.json +46 -0
- qlc/config/json/qlc_config_example_4a_eu-obs.json +41 -0
- qlc/config/json/qlc_config_example_4b_eu-mod.json +122 -0
- qlc/config/json/qlc_config_example_4c_eu-coll.json +45 -0
- qlc/config/nml/mars_A1_sfc.nml +19 -0
- qlc/config/nml/mars_A2_sfc.nml +19 -0
- qlc/config/nml/mars_A3_sfc.nml +19 -0
- qlc/config/nml/mars_B1_pl.nml +19 -0
- qlc/config/nml/mars_B2_pl.nml +19 -0
- qlc/config/nml/mars_C1_pl.nml +19 -0
- qlc/config/nml/mars_C2_pl.nml +19 -0
- qlc/config/nml/mars_C3_ml.nml +19 -0
- qlc/config/nml/mars_D.nml +19 -0
- qlc/config/nml/mars_E.nml +19 -0
- qlc/config/nml/mars_F.nml +19 -0
- qlc/config/nml/mars_G.nml +19 -0
- qlc/config/qlc_cams.conf +26 -0
- qlc/config/qlc_test.conf +26 -0
- qlc/config/qlc_tex.conf +107 -0
- qlc/doc/CONTRIBUTING.md +105 -0
- qlc/doc/README.md +116 -0
- qlc/doc/USAGE.md +58 -0
- qlc/examples/cams_case_1/config/json/qlc_config.json +41 -0
- qlc/examples/cams_case_1/config/nml/mars_A3_sfc.nml +19 -0
- qlc/examples/cams_case_1/config/nml/mars_B1_pl.nml +19 -0
- qlc/examples/cams_case_1/config/nml/mars_C1_pl.nml +19 -0
- qlc/examples/cams_case_1/config/qlc_cams.conf +122 -0
- qlc/examples/cams_case_1/mod/b2ro/2018/b2ro_20181215-20181231_A3_sfc.grb +0 -0
- qlc/examples/cams_case_1/mod/iqi9/2018/iqi9_20181215-20181231_A3_sfc.grb +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181201.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181202.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181203.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181204.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181205.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181206.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181207.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181208.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181209.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181210.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181211.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181212.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181213.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181214.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181215.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181216.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181217.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181218.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181219.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181220.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181221.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181222.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181223.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181224.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181225.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181226.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181227.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181228.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181229.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181230.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181231.nc +0 -0
- qlc/examples/cams_case_1/obs/ebas_station-locations.csv +50 -0
- qlc/install.py +285 -0
- qlc/py/__main__.cpython-311-darwin.so +0 -0
- qlc/py/averaging.cpython-311-darwin.so +0 -0
- qlc/py/bias_plots.cpython-311-darwin.so +0 -0
- qlc/py/control.cpython-311-darwin.so +0 -0
- qlc/py/io.cpython-311-darwin.so +0 -0
- qlc/py/loadmod.cpython-311-darwin.so +0 -0
- qlc/py/loadobs.cpython-311-darwin.so +0 -0
- qlc/py/logging_utils.cpython-311-darwin.so +0 -0
- qlc/py/map_plots.cpython-311-darwin.so +0 -0
- qlc/py/matched.cpython-311-darwin.so +0 -0
- qlc/py/plot_config.cpython-311-darwin.so +0 -0
- qlc/py/plotting.cpython-311-darwin.so +0 -0
- qlc/py/plugin_loader.cpython-311-darwin.so +0 -0
- qlc/py/processing.cpython-311-darwin.so +0 -0
- qlc/py/scatter_plots.cpython-311-darwin.so +0 -0
- qlc/py/stations.cpython-311-darwin.so +0 -0
- qlc/py/statistics.cpython-311-darwin.so +0 -0
- qlc/py/style.cpython-311-darwin.so +0 -0
- qlc/py/timeseries_plots.cpython-311-darwin.so +0 -0
- qlc/py/utils.cpython-311-darwin.so +0 -0
- qlc/py/version.cpython-311-darwin.so +0 -0
- qlc/sh/qlc_A1.sh +127 -0
- qlc/sh/qlc_B1a.sh +123 -0
- qlc/sh/qlc_B2.sh +258 -0
- qlc/sh/qlc_C5.sh +825 -0
- qlc/sh/qlc_D1.sh +130 -0
- qlc/sh/qlc_Z1.sh +165 -0
- qlc/sh/qlc_common_functions.sh +157 -0
- qlc/sh/qlc_main.sh +127 -0
- qlc/sh/qlc_start.sh +23 -0
- qlc/sh/qlc_start_batch.sh +46 -0
- rc_qlc-0.3.24.dist-info/METADATA +142 -0
- rc_qlc-0.3.24.dist-info/RECORD +113 -0
- rc_qlc-0.3.24.dist-info/WHEEL +5 -0
- rc_qlc-0.3.24.dist-info/entry_points.txt +6 -0
- rc_qlc-0.3.24.dist-info/licenses/LICENSE +21 -0
- rc_qlc-0.3.24.dist-info/top_level.txt +1 -0
@@ -0,0 +1,265 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/ebas_station-locations.csv",
|
8
|
+
"obs_path": "$HOME/qlc/obs/data/ver0d",
|
9
|
+
"obs_dataset_type": "ebas_daily",
|
10
|
+
"mod_path": "$HOME/qlc/mod/",
|
11
|
+
"model": "ifs",
|
12
|
+
"experiments": "hylm,i3bw,i3ad",
|
13
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
14
|
+
"start_date": "2018-01-01",
|
15
|
+
"end_date": "2018-12-31",
|
16
|
+
"variable": "SO2,SO4,HNO3,NO3,NH3,NH4",
|
17
|
+
"station_radius_deg": 0.5,
|
18
|
+
"plot_type": "",
|
19
|
+
"plot_region": "EU",
|
20
|
+
"time_average": "weekly,monthly",
|
21
|
+
"station_plot_group_size": 5,
|
22
|
+
"show_stations": false,
|
23
|
+
"show_min_max": true,
|
24
|
+
"log_y_axis": false,
|
25
|
+
"fix_y_axis": true,
|
26
|
+
"show_station_map": true,
|
27
|
+
"load_station_timeseries_obs": false,
|
28
|
+
"show_station_timeseries_obs": false,
|
29
|
+
"show_station_timeseries_mod": false,
|
30
|
+
"show_station_timeseries_com": true,
|
31
|
+
"save_plot_format": "pdf",
|
32
|
+
"save_data_format": "nc",
|
33
|
+
"multiprocessing": true,
|
34
|
+
"n_threads": "4",
|
35
|
+
"debug": false,
|
36
|
+
|
37
|
+
"global_attributes": {
|
38
|
+
"title": "Air pollutants over Europe, SO2,SO4,HNO3,NO3,NH4,NH3",
|
39
|
+
"summary": "EBAS daily observations for selected EU stations.",
|
40
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
41
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
42
|
+
"Conventions": "CF-1.8"
|
43
|
+
}
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"name": "CAMS2_35",
|
47
|
+
"logdir": "./log",
|
48
|
+
"workdir": "./run",
|
49
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
50
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
51
|
+
"obs_path": "$HOME/qlc/obs",
|
52
|
+
"obs_dataset_type": "castnet",
|
53
|
+
"mod_path": "$HOME/qlc/mod/",
|
54
|
+
"model": "ifs",
|
55
|
+
"experiments": "hylm,i3bw,i3ad",
|
56
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
57
|
+
"start_date": "2018-01-01",
|
58
|
+
"end_date": "2018-12-31",
|
59
|
+
"variable": "SO2,SO4,HNO3,NO3,NH4",
|
60
|
+
"station_radius_deg": 0.5,
|
61
|
+
"plot_type": "",
|
62
|
+
"plot_region": "US",
|
63
|
+
"time_average": "weekly,monthly",
|
64
|
+
"station_plot_group_size": 5,
|
65
|
+
"show_stations": false,
|
66
|
+
"show_min_max": true,
|
67
|
+
"log_y_axis": false,
|
68
|
+
"fix_y_axis": true,
|
69
|
+
"force_full_year": true,
|
70
|
+
"show_station_map": true,
|
71
|
+
"load_station_timeseries_obs": false,
|
72
|
+
"show_station_timeseries_obs": false,
|
73
|
+
"show_station_timeseries_mod": false,
|
74
|
+
"show_station_timeseries_com": true,
|
75
|
+
"save_plot_format": "pdf",
|
76
|
+
"save_data_format": "nc",
|
77
|
+
"multiprocessing": true,
|
78
|
+
"n_threads": "4",
|
79
|
+
"debug": false,
|
80
|
+
|
81
|
+
"global_attributes": {
|
82
|
+
"title": "Air pollutants over US, SO2,SO4,HNO3,NO3,NH4,NH3",
|
83
|
+
"summary": "Castnet weekly observations for selected US stations.",
|
84
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
85
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
86
|
+
"Conventions": "CF-1.8"
|
87
|
+
}
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"name": "CAMS2_35",
|
91
|
+
"logdir": "./log",
|
92
|
+
"workdir": "./run",
|
93
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
94
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
95
|
+
"obs_path": "$HOME/qlc/obs",
|
96
|
+
"obs_dataset_type": "AMoN",
|
97
|
+
"mod_path": "$HOME/qlc/mod/",
|
98
|
+
"model": "ifs",
|
99
|
+
"experiments": "hylm,i3bw,i3ad",
|
100
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
101
|
+
"start_date": "2018-01-01",
|
102
|
+
"end_date": "2018-12-31",
|
103
|
+
"variable": "NH3",
|
104
|
+
"station_radius_deg": 0.5,
|
105
|
+
"plot_type": "",
|
106
|
+
"plot_region": "US",
|
107
|
+
"time_average": "weekly,monthly",
|
108
|
+
"station_plot_group_size": 5,
|
109
|
+
"show_stations": false,
|
110
|
+
"show_min_max": true,
|
111
|
+
"log_y_axis": false,
|
112
|
+
"fix_y_axis": true,
|
113
|
+
"force_full_year": true,
|
114
|
+
"show_station_map": true,
|
115
|
+
"load_station_timeseries_obs": false,
|
116
|
+
"show_station_timeseries_obs": false,
|
117
|
+
"show_station_timeseries_mod": false,
|
118
|
+
"show_station_timeseries_com": true,
|
119
|
+
"save_plot_format": "pdf",
|
120
|
+
"save_data_format": "nc",
|
121
|
+
"multiprocessing": true,
|
122
|
+
"n_threads": "4",
|
123
|
+
"debug": false,
|
124
|
+
|
125
|
+
"global_attributes": {
|
126
|
+
"title": "Air pollutants over US, NH3",
|
127
|
+
"summary": "AMoM bi-weekly observations for selected US stations.",
|
128
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
129
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
130
|
+
"Conventions": "CF-1.8"
|
131
|
+
}
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"name": "CAMS2_35",
|
135
|
+
"logdir": "./log",
|
136
|
+
"workdir": "./run",
|
137
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
138
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
139
|
+
"obs_path": "$HOME/qlc/obs/data/ver0d",
|
140
|
+
"obs_dataset_type": "airnow",
|
141
|
+
"mod_path": "$HOME/qlc/mod/",
|
142
|
+
"model": "ifs",
|
143
|
+
"experiments": "hylm,i3bw,i3ad",
|
144
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
145
|
+
"start_date": "2018-01-01",
|
146
|
+
"end_date": "2018-12-31",
|
147
|
+
"variable": "SO2",
|
148
|
+
"station_radius_deg": 0.5,
|
149
|
+
"plot_type": "",
|
150
|
+
"plot_region": "US",
|
151
|
+
"time_average": "weekly,monthly",
|
152
|
+
"station_plot_group_size": 5,
|
153
|
+
"show_stations": false,
|
154
|
+
"show_min_max": true,
|
155
|
+
"log_y_axis": false,
|
156
|
+
"fix_y_axis": true,
|
157
|
+
"force_full_year": true,
|
158
|
+
"show_station_map": true,
|
159
|
+
"load_station_timeseries_obs": false,
|
160
|
+
"show_station_timeseries_obs": false,
|
161
|
+
"show_station_timeseries_mod": false,
|
162
|
+
"show_station_timeseries_com": true,
|
163
|
+
"save_plot_format": "pdf",
|
164
|
+
"save_data_format": "nc",
|
165
|
+
"multiprocessing": true,
|
166
|
+
"n_threads": "4",
|
167
|
+
"debug": false,
|
168
|
+
|
169
|
+
"global_attributes": {
|
170
|
+
"title": "Air pollutants over US, SO2",
|
171
|
+
"summary": "Airnow bi-weekly observations for selected US stations.",
|
172
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
173
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
174
|
+
"Conventions": "CF-1.8"
|
175
|
+
}
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"name": "CAMS2_35",
|
179
|
+
"logdir": "./log",
|
180
|
+
"workdir": "./run",
|
181
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
182
|
+
"station_file": "$HOME/qlc/obs/data/Asia_station_list.csv",
|
183
|
+
"obs_path": "$HOME/qlc/obs",
|
184
|
+
"obs_dataset_type": "china_aq",
|
185
|
+
"mod_path": "$HOME/qlc/mod/",
|
186
|
+
"model": "ifs",
|
187
|
+
"experiments": "hylm,i3bw,i3ad",
|
188
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
189
|
+
"start_date": "2018-01-01",
|
190
|
+
"end_date": "2018-12-31",
|
191
|
+
"variable": "SO2",
|
192
|
+
"station_radius_deg": 0.5,
|
193
|
+
"plot_type": "",
|
194
|
+
"plot_region": "Asia",
|
195
|
+
"time_average": "weekly,monthly",
|
196
|
+
"station_plot_group_size": 5,
|
197
|
+
"show_stations": false,
|
198
|
+
"show_min_max": true,
|
199
|
+
"log_y_axis": false,
|
200
|
+
"fix_y_axis": true,
|
201
|
+
"force_full_year": true,
|
202
|
+
"show_station_map": true,
|
203
|
+
"load_station_timeseries_obs": false,
|
204
|
+
"show_station_timeseries_obs": false,
|
205
|
+
"show_station_timeseries_mod": false,
|
206
|
+
"show_station_timeseries_com": true,
|
207
|
+
"save_plot_format": "pdf",
|
208
|
+
"save_data_format": "nc",
|
209
|
+
"multiprocessing": true,
|
210
|
+
"n_threads": "4",
|
211
|
+
"debug": false,
|
212
|
+
|
213
|
+
"global_attributes": {
|
214
|
+
"title": "Air pollutants over Asia, SO2",
|
215
|
+
"summary": "China_AQ weekly observations for selected Asia stations.",
|
216
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
217
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
218
|
+
"Conventions": "CF-1.8"
|
219
|
+
}
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"name": "CAMS2_35",
|
223
|
+
"logdir": "./log",
|
224
|
+
"workdir": "./run",
|
225
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
226
|
+
"station_file": "$HOME/qlc/obs/data/Asia_station_list.csv",
|
227
|
+
"obs_path": "$HOME/qlc/obs",
|
228
|
+
"obs_dataset_type": "NNDMN",
|
229
|
+
"mod_path": "$HOME/qlc/mod/",
|
230
|
+
"model": "ifs",
|
231
|
+
"experiments": "hylm,i3bw,i3ad",
|
232
|
+
"exp_labels": "CY48R1,CY49R1_NOE4C,CY49R1",
|
233
|
+
"start_date": "2018-01-01",
|
234
|
+
"end_date": "2018-12-31",
|
235
|
+
"variable": "HNO3,NO3,NH4,NH3",
|
236
|
+
"station_radius_deg": 0.5,
|
237
|
+
"plot_type": "",
|
238
|
+
"plot_region": "Asia",
|
239
|
+
"time_average": "weekly,monthly",
|
240
|
+
"station_plot_group_size": 5,
|
241
|
+
"show_stations": false,
|
242
|
+
"show_min_max": true,
|
243
|
+
"log_y_axis": false,
|
244
|
+
"fix_y_axis": true,
|
245
|
+
"force_full_year": true,
|
246
|
+
"show_station_map": true,
|
247
|
+
"load_station_timeseries_obs": false,
|
248
|
+
"show_station_timeseries_obs": false,
|
249
|
+
"show_station_timeseries_mod": false,
|
250
|
+
"show_station_timeseries_com": true,
|
251
|
+
"save_plot_format": "pdf",
|
252
|
+
"save_data_format": "nc",
|
253
|
+
"multiprocessing": true,
|
254
|
+
"n_threads": "4",
|
255
|
+
"debug": false,
|
256
|
+
|
257
|
+
"global_attributes": {
|
258
|
+
"title": "Air pollutants over Asia, HNO3,NO3,NH4,NH3",
|
259
|
+
"summary": "NNDMN monthly observations for selected Asia stations.",
|
260
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
261
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
262
|
+
"Conventions": "CF-1.8"
|
263
|
+
}
|
264
|
+
}
|
265
|
+
]
|
@@ -0,0 +1,82 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
8
|
+
"obs_path": "$HOME/qlc/obs",
|
9
|
+
"obs_dataset_type": "AMoN",
|
10
|
+
"start_date": "2018-12-01",
|
11
|
+
"end_date": "2018-12-31",
|
12
|
+
"variable": "NH3",
|
13
|
+
"station_radius_deg": 10.0,
|
14
|
+
"plot_type": "",
|
15
|
+
"plot_region": "US",
|
16
|
+
"time_average": "daily, weekly",
|
17
|
+
"station_plot_group_size": 5,
|
18
|
+
"show_stations": false,
|
19
|
+
"show_min_max": true,
|
20
|
+
"log_y_axis": false,
|
21
|
+
"fix_y_axis": true,
|
22
|
+
"force_full_year": true,
|
23
|
+
"show_station_map": true,
|
24
|
+
"load_station_timeseries_obs": true,
|
25
|
+
"show_station_timeseries_obs": true,
|
26
|
+
"show_station_timeseries_mod": false,
|
27
|
+
"show_station_timeseries_com": false,
|
28
|
+
"save_plot_format": "pdf",
|
29
|
+
"save_data_format": "nc",
|
30
|
+
"multiprocessing": true,
|
31
|
+
"n_threads": "20",
|
32
|
+
"debug": false,
|
33
|
+
|
34
|
+
"global_attributes": {
|
35
|
+
"title": "Air pollutants over US, NH3",
|
36
|
+
"summary": "AMoN bi-weekly observations for selected US stations.",
|
37
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
38
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
39
|
+
"Conventions": "CF-1.8"
|
40
|
+
}
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "CAMS2_35",
|
44
|
+
"logdir": "./log",
|
45
|
+
"workdir": "./run",
|
46
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
47
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
48
|
+
"obs_path": "$HOME/qlc/obs",
|
49
|
+
"obs_dataset_type": "castnet",
|
50
|
+
"start_date": "2018-12-01",
|
51
|
+
"end_date": "2018-12-31",
|
52
|
+
"variable": "SO2,SO4,HNO3,NO3,NH4,NH3",
|
53
|
+
"station_radius_deg": 0.5,
|
54
|
+
"plot_type": "",
|
55
|
+
"plot_region": "US",
|
56
|
+
"time_average": "daily, weekly",
|
57
|
+
"station_plot_group_size": 5,
|
58
|
+
"show_stations": false,
|
59
|
+
"show_min_max": true,
|
60
|
+
"log_y_axis": false,
|
61
|
+
"fix_y_axis": true,
|
62
|
+
"force_full_year": true,
|
63
|
+
"show_station_map": true,
|
64
|
+
"load_station_timeseries_obs": true,
|
65
|
+
"show_station_timeseries_obs": true,
|
66
|
+
"show_station_timeseries_mod": false,
|
67
|
+
"show_station_timeseries_com": false,
|
68
|
+
"save_plot_format": "pdf",
|
69
|
+
"save_data_format": "nc",
|
70
|
+
"multiprocessing": true,
|
71
|
+
"n_threads": "20",
|
72
|
+
"debug": false,
|
73
|
+
|
74
|
+
"global_attributes": {
|
75
|
+
"title": "Air pollutants over US, SO2,SO4,HNO3,NO3,NH4,NH3",
|
76
|
+
"summary": "CASTNET weekly observations for selected US stations.",
|
77
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
78
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
79
|
+
"Conventions": "CF-1.8"
|
80
|
+
}
|
81
|
+
}
|
82
|
+
]
|
@@ -0,0 +1,122 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
8
|
+
"mod_path": "$HOME/qlc/mod/",
|
9
|
+
"model": "ifs",
|
10
|
+
"experiments": "b2rn",
|
11
|
+
"start_date": "2018-12-01",
|
12
|
+
"end_date": "2018-12-31",
|
13
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
14
|
+
"station_radius_deg": 0.5,
|
15
|
+
"model_level": 20,
|
16
|
+
"plot_type": "",
|
17
|
+
"plot_region": "US",
|
18
|
+
"time_average": "daily, weekly",
|
19
|
+
"station_plot_group_size": 5,
|
20
|
+
"show_stations": false,
|
21
|
+
"show_min_max": true,
|
22
|
+
"log_y_axis": false,
|
23
|
+
"fix_y_axis": true,
|
24
|
+
"show_station_map": true,
|
25
|
+
"show_station_timeseries_obs": false,
|
26
|
+
"show_station_timeseries_mod": true,
|
27
|
+
"show_station_timeseries_com": false,
|
28
|
+
"save_plot_format": "pdf",
|
29
|
+
"save_data_format": "nc",
|
30
|
+
"multiprocessing": true,
|
31
|
+
"n_threads": "20",
|
32
|
+
"debug": false,
|
33
|
+
|
34
|
+
"global_attributes": {
|
35
|
+
"title": "Air pollutants over US",
|
36
|
+
"summary": "Output of b2rn / ifs for selected US stations.",
|
37
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
38
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
39
|
+
"Conventions": "CF-1.8"
|
40
|
+
}
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "CAMS2_35",
|
44
|
+
"logdir": "./log",
|
45
|
+
"workdir": "./run",
|
46
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
47
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
48
|
+
"mod_path": "$HOME/qlc/mod/",
|
49
|
+
"model": "ifs",
|
50
|
+
"experiments": "iqi9",
|
51
|
+
"start_date": "2018-12-01",
|
52
|
+
"end_date": "2018-12-31",
|
53
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
54
|
+
"station_radius_deg": 0.5,
|
55
|
+
"model_level": 20,
|
56
|
+
"plot_type": "",
|
57
|
+
"plot_region": "US",
|
58
|
+
"time_average": "daily, weekly",
|
59
|
+
"station_plot_group_size": 5,
|
60
|
+
"show_stations": false,
|
61
|
+
"show_min_max": true,
|
62
|
+
"log_y_axis": false,
|
63
|
+
"fix_y_axis": true,
|
64
|
+
"show_station_map": true,
|
65
|
+
"show_station_timeseries_obs": false,
|
66
|
+
"show_station_timeseries_mod": true,
|
67
|
+
"show_station_timeseries_com": false,
|
68
|
+
"save_plot_format": "pdf",
|
69
|
+
"save_data_format": "nc",
|
70
|
+
"multiprocessing": true,
|
71
|
+
"n_threads": "20",
|
72
|
+
"debug": false,
|
73
|
+
|
74
|
+
"global_attributes": {
|
75
|
+
"title": "Air pollutants over US",
|
76
|
+
"summary": "Output of iqi9 / ifs for selected US stations.",
|
77
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
78
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
79
|
+
"Conventions": "CF-1.8"
|
80
|
+
}
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"name": "CAMS2_35",
|
84
|
+
"logdir": "./log",
|
85
|
+
"workdir": "./run",
|
86
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
87
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
88
|
+
"mod_path": "$HOME/qlc/mod/",
|
89
|
+
"model": "ifs",
|
90
|
+
"experiments": "b2ro",
|
91
|
+
"start_date": "2018-12-01",
|
92
|
+
"end_date": "2018-12-31",
|
93
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
94
|
+
"station_radius_deg": 0.5,
|
95
|
+
"model_level": 20,
|
96
|
+
"plot_type": "",
|
97
|
+
"plot_region": "US",
|
98
|
+
"time_average": "daily, weekly",
|
99
|
+
"station_plot_group_size": 5,
|
100
|
+
"show_stations": false,
|
101
|
+
"show_min_max": true,
|
102
|
+
"log_y_axis": false,
|
103
|
+
"fix_y_axis": true,
|
104
|
+
"show_station_map": true,
|
105
|
+
"show_station_timeseries_obs": false,
|
106
|
+
"show_station_timeseries_mod": true,
|
107
|
+
"show_station_timeseries_com": false,
|
108
|
+
"save_plot_format": "pdf",
|
109
|
+
"save_data_format": "nc",
|
110
|
+
"multiprocessing": true,
|
111
|
+
"n_threads": "20",
|
112
|
+
"debug": false,
|
113
|
+
|
114
|
+
"global_attributes": {
|
115
|
+
"title": "Air pollutants over US",
|
116
|
+
"summary": "Output of b2ro / ifs for selected US stations.",
|
117
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
118
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
119
|
+
"Conventions": "CF-1.8"
|
120
|
+
}
|
121
|
+
}
|
122
|
+
]
|
@@ -0,0 +1,46 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/castnet_station-locations.csv",
|
8
|
+
"obs_path": "$HOME/qlc/obs",
|
9
|
+
"obs_dataset_type": "castnet",
|
10
|
+
"mod_path": "$HOME/qlc/mod/",
|
11
|
+
"model": "ifs",
|
12
|
+
"experiments": "b2rn,iqi9,b2ro",
|
13
|
+
"exp_labels": "b2rn,iqi9,b2ro",
|
14
|
+
"start_date": "2018-12-01",
|
15
|
+
"end_date": "2018-12-31",
|
16
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH4_as,NH3",
|
17
|
+
"station_radius_deg": 0.5,
|
18
|
+
"plot_type": "",
|
19
|
+
"plot_region": "US",
|
20
|
+
"time_average": "daily, weekly",
|
21
|
+
"station_plot_group_size": 5,
|
22
|
+
"show_stations": false,
|
23
|
+
"show_min_max": true,
|
24
|
+
"log_y_axis": false,
|
25
|
+
"fix_y_axis": true,
|
26
|
+
"force_full_year": true,
|
27
|
+
"show_station_map": true,
|
28
|
+
"load_station_timeseries_obs": false,
|
29
|
+
"show_station_timeseries_obs": false,
|
30
|
+
"show_station_timeseries_mod": false,
|
31
|
+
"show_station_timeseries_com": true,
|
32
|
+
"save_plot_format": "pdf",
|
33
|
+
"save_data_format": "nc",
|
34
|
+
"multiprocessing": true,
|
35
|
+
"n_threads": "20",
|
36
|
+
"debug": false,
|
37
|
+
|
38
|
+
"global_attributes": {
|
39
|
+
"title": "Air pollutants over US, SO2,SO4_as,HNO3,NO3_as,NH4_as,NH3",
|
40
|
+
"summary": "CASTNET weekly observations for selected US stations.",
|
41
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
42
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
43
|
+
"Conventions": "CF-1.8"
|
44
|
+
}
|
45
|
+
}
|
46
|
+
]
|
@@ -0,0 +1,41 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/ebas_station-locations.csv",
|
8
|
+
"obs_path": "$HOME/qlc/obs/data/ver0d",
|
9
|
+
"obs_dataset_type": "ebas_daily",
|
10
|
+
"start_date": "2018-12-01",
|
11
|
+
"end_date": "2018-12-31",
|
12
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
13
|
+
"station_radius_deg": 10.0,
|
14
|
+
"plot_type": "",
|
15
|
+
"plot_region": "EU",
|
16
|
+
"time_average": "daily, weekly",
|
17
|
+
"station_plot_group_size": 5,
|
18
|
+
"show_stations": false,
|
19
|
+
"show_min_max": true,
|
20
|
+
"log_y_axis": false,
|
21
|
+
"fix_y_axis": true,
|
22
|
+
"show_station_map": true,
|
23
|
+
"load_station_timeseries_obs": true,
|
24
|
+
"show_station_timeseries_obs": true,
|
25
|
+
"show_station_timeseries_mod": false,
|
26
|
+
"show_station_timeseries_com": false,
|
27
|
+
"save_plot_format": "pdf",
|
28
|
+
"save_data_format": "nc",
|
29
|
+
"multiprocessing": true,
|
30
|
+
"n_threads": "20",
|
31
|
+
"debug": false,
|
32
|
+
|
33
|
+
"global_attributes": {
|
34
|
+
"title": "Air pollutants over Europe, SO2,SO4,HNO3,NO3,NH3,NH4",
|
35
|
+
"summary": "Ebas daily observations for selected EU stations.",
|
36
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
37
|
+
"history": "Processed for CAMS (dev 1.2)",
|
38
|
+
"Conventions": "CF-1.8"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
]
|
@@ -0,0 +1,122 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "CAMS2_35",
|
4
|
+
"logdir": "./log",
|
5
|
+
"workdir": "./run",
|
6
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
7
|
+
"station_file": "$HOME/qlc/obs/data/ebas_station-locations.csv",
|
8
|
+
"mod_path": "$HOME/qlc/mod/",
|
9
|
+
"model": "ifs",
|
10
|
+
"experiments": "b2rn",
|
11
|
+
"start_date": "2018-12-01",
|
12
|
+
"end_date": "2018-12-31",
|
13
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
14
|
+
"station_radius_deg": 0.5,
|
15
|
+
"model_level": 20,
|
16
|
+
"plot_type": "",
|
17
|
+
"plot_region": "EU",
|
18
|
+
"time_average": "daily,weekly",
|
19
|
+
"station_plot_group_size": 5,
|
20
|
+
"show_stations": false,
|
21
|
+
"show_min_max": true,
|
22
|
+
"log_y_axis": false,
|
23
|
+
"fix_y_axis": true,
|
24
|
+
"show_station_map": true,
|
25
|
+
"show_station_timeseries_obs": false,
|
26
|
+
"show_station_timeseries_mod": true,
|
27
|
+
"show_station_timeseries_com": false,
|
28
|
+
"save_plot_format": "pdf",
|
29
|
+
"save_data_format": "nc",
|
30
|
+
"multiprocessing": true,
|
31
|
+
"n_threads": "20",
|
32
|
+
"debug": false,
|
33
|
+
|
34
|
+
"global_attributes": {
|
35
|
+
"title": "Air pollutants over EU",
|
36
|
+
"summary": "Output of b2rn / ifs for selected EU stations.",
|
37
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
38
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
39
|
+
"Conventions": "CF-1.8"
|
40
|
+
}
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "CAMS2_35",
|
44
|
+
"logdir": "./log",
|
45
|
+
"workdir": "./run",
|
46
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
47
|
+
"station_file": "$HOME/qlc/obs/data/ebas_station-locations.csv",
|
48
|
+
"mod_path": "$HOME/qlc/mod/",
|
49
|
+
"model": "ifs",
|
50
|
+
"experiments": "iqi9",
|
51
|
+
"start_date": "2018-12-01",
|
52
|
+
"end_date": "2018-12-31",
|
53
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
54
|
+
"station_radius_deg": 0.5,
|
55
|
+
"model_level": 20,
|
56
|
+
"plot_type": "",
|
57
|
+
"plot_region": "EU",
|
58
|
+
"time_average": "daily,weekly",
|
59
|
+
"station_plot_group_size": 5,
|
60
|
+
"show_stations": false,
|
61
|
+
"show_min_max": true,
|
62
|
+
"log_y_axis": false,
|
63
|
+
"fix_y_axis": true,
|
64
|
+
"show_station_map": true,
|
65
|
+
"show_station_timeseries_obs": false,
|
66
|
+
"show_station_timeseries_mod": true,
|
67
|
+
"show_station_timeseries_com": false,
|
68
|
+
"save_plot_format": "pdf",
|
69
|
+
"save_data_format": "nc",
|
70
|
+
"multiprocessing": true,
|
71
|
+
"n_threads": "20",
|
72
|
+
"debug": false,
|
73
|
+
|
74
|
+
"global_attributes": {
|
75
|
+
"title": "Air pollutants over EU",
|
76
|
+
"summary": "Output of iqi9 / ifs for selected EU stations.",
|
77
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
78
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
79
|
+
"Conventions": "CF-1.8"
|
80
|
+
}
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"name": "CAMS2_35",
|
84
|
+
"logdir": "./log",
|
85
|
+
"workdir": "./run",
|
86
|
+
"output_base_name": "$HOME/qlc/output/GMD",
|
87
|
+
"station_file": "$HOME/qlc/obs/data/ebas_station-locations.csv",
|
88
|
+
"mod_path": "$HOME/qlc/mod/",
|
89
|
+
"model": "ifs",
|
90
|
+
"experiments": "b2ro",
|
91
|
+
"start_date": "2018-12-01",
|
92
|
+
"end_date": "2018-12-31",
|
93
|
+
"variable": "SO2,SO4_as,HNO3,NO3_as,NH3,NH4_as",
|
94
|
+
"station_radius_deg": 0.5,
|
95
|
+
"model_level": 20,
|
96
|
+
"plot_type": "",
|
97
|
+
"plot_region": "EU",
|
98
|
+
"time_average": "daily,weekly",
|
99
|
+
"station_plot_group_size": 5,
|
100
|
+
"show_stations": false,
|
101
|
+
"show_min_max": true,
|
102
|
+
"log_y_axis": false,
|
103
|
+
"fix_y_axis": true,
|
104
|
+
"show_station_map": true,
|
105
|
+
"show_station_timeseries_obs": false,
|
106
|
+
"show_station_timeseries_mod": true,
|
107
|
+
"show_station_timeseries_com": false,
|
108
|
+
"save_plot_format": "pdf",
|
109
|
+
"save_data_format": "nc",
|
110
|
+
"multiprocessing": true,
|
111
|
+
"n_threads": "20",
|
112
|
+
"debug": false,
|
113
|
+
|
114
|
+
"global_attributes": {
|
115
|
+
"title": "Air pollutants over EU",
|
116
|
+
"summary": "Output of b2ro / ifs for selected EU stations.",
|
117
|
+
"author": "Swen Metzger, sm@researchconcepts.io",
|
118
|
+
"history": "Processed for CAMS2_35bis (dev 1.2)",
|
119
|
+
"Conventions": "CF-1.8"
|
120
|
+
}
|
121
|
+
}
|
122
|
+
]
|