├── .coveragerc ├── .flake8 ├── .github └── workflows │ ├── documentation.yml │ ├── python-publish.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── aqmbc ├── __init__.py ├── __main__.py ├── bcon.py ├── cmaq.py ├── examples │ ├── GRIDDESC │ ├── aqmbc_geosv12.ipynb │ ├── definitions │ │ ├── cf │ │ │ ├── geoscf_ae7.expr │ │ │ ├── geoscf_cb6.expr │ │ │ ├── geoscf_cracmm2aero.expr │ │ │ ├── geoscf_cracmm2gas.expr │ │ │ ├── geoscf_met.expr │ │ │ └── geoscf_o3so4.expr │ │ ├── gc │ │ │ ├── gc11_to_ae6_nvPOA.expr │ │ │ ├── gc11_to_cb6r3.expr │ │ │ ├── gc12_soas_to_ae7.expr │ │ │ ├── gc12_to_ae6_nvPOA.expr │ │ │ ├── gc12_to_ae7.expr │ │ │ ├── gc12_to_cb6mp.expr │ │ │ ├── gc12_to_cb6r3.expr │ │ │ ├── gc14_o3so4.expr │ │ │ ├── gc14_soas_to_ae7.expr │ │ │ ├── gc14_to_ae7.expr │ │ │ ├── gc14_to_cb6mp.expr │ │ │ ├── gc14_to_cb6r5.expr │ │ │ ├── gc_airmolden.expr │ │ │ ├── gcbench14_o3so4.expr │ │ │ ├── gcnc_airmolden.expr │ │ │ └── gcnc_usstd_airmolden.expr │ │ ├── raqms │ │ │ ├── raqms_o3so4.expr │ │ │ └── raqms_to_cb6r4_ae6.expr │ │ ├── tcr │ │ │ ├── tcr_ae7.expr │ │ │ ├── tcr_cb6.expr │ │ │ └── tcr_o3so4.expr │ │ └── waccm │ │ │ ├── waccm_ae7.expr │ │ │ ├── waccm_cb6.expr │ │ │ ├── waccm_met.expr │ │ │ └── waccm_o3so4.expr │ ├── figs │ │ ├── README.md │ │ ├── make_curtains.py │ │ ├── make_nestmap.py │ │ ├── make_rowbycol.py │ │ ├── make_sigmabyt.py │ │ ├── make_sigmabyt_ts.py │ │ └── perim.py │ ├── gcncv12.cfg │ ├── gcnd49v11.cfg │ ├── hcmaq.cfg │ ├── raqms.cfg │ ├── raqms.py │ └── report.py ├── exprlib.py ├── models │ ├── __init__.py │ ├── geoscf.py │ ├── geoschem.py │ ├── raqms.py │ ├── tcr.py │ ├── util.py │ └── waccm.py ├── options │ ├── __init__.py │ └── _vertgrid.py ├── report.py └── tests │ ├── __init__.py │ ├── test_bcon.py │ ├── test_cmaq.py │ ├── test_exprlib.py │ └── test_options.py ├── doc ├── Makefile ├── conf.py ├── configexample.rst ├── index.rst ├── make.bat ├── modifyexamples.rst └── requirements.txt ├── examples ├── GEOSCF │ └── 12US1 │ │ └── 2023 │ │ ├── 04 │ │ └── 15 │ │ │ └── geoscf_mcx_tavg_1hr_g1440x721_v36_2023-04-15T1230Z.nc │ │ └── 07 │ │ └── 15 │ │ └── geoscf_mcx_tavg_1hr_g1440x721_v36_2023-07-15T1230Z.nc ├── OutputDir │ ├── GEOSChem.SpeciesConc.20190401_0000z.nc4 │ └── GEOSChem.SpeciesConc.20190701_0000z.nc4 ├── README.txt ├── cmaqready_example.py ├── gcbc_example.py ├── geoscf_example.py ├── hcmaq_example.py ├── raqms_example.py ├── tcr_example.py └── waccm_example.py ├── setup.py ├── tox.ini └── util ├── cmaq_nmltojson.py └── testdef.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include aqmbc/examples * 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/README.md -------------------------------------------------------------------------------- /aqmbc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/__init__.py -------------------------------------------------------------------------------- /aqmbc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/__main__.py -------------------------------------------------------------------------------- /aqmbc/bcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/bcon.py -------------------------------------------------------------------------------- /aqmbc/cmaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/cmaq.py -------------------------------------------------------------------------------- /aqmbc/examples/GRIDDESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/GRIDDESC -------------------------------------------------------------------------------- /aqmbc/examples/aqmbc_geosv12.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/aqmbc_geosv12.ipynb -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_cb6.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_cb6.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_cracmm2aero.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_cracmm2aero.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_cracmm2gas.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_cracmm2gas.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_met.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_met.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/cf/geoscf_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/cf/geoscf_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc11_to_ae6_nvPOA.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc11_to_ae6_nvPOA.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc11_to_cb6r3.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc11_to_cb6r3.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc12_soas_to_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc12_soas_to_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc12_to_ae6_nvPOA.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc12_to_ae6_nvPOA.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc12_to_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc12_to_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc12_to_cb6mp.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc12_to_cb6mp.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc12_to_cb6r3.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc12_to_cb6r3.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc14_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc14_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc14_soas_to_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc14_soas_to_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc14_to_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc14_to_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc14_to_cb6mp.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc14_to_cb6mp.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc14_to_cb6r5.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc14_to_cb6r5.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gc_airmolden.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gc_airmolden.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gcbench14_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gcbench14_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gcnc_airmolden.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gcnc_airmolden.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/gc/gcnc_usstd_airmolden.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/gc/gcnc_usstd_airmolden.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/raqms/raqms_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/raqms/raqms_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/raqms/raqms_to_cb6r4_ae6.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/raqms/raqms_to_cb6r4_ae6.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/tcr/tcr_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/tcr/tcr_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/tcr/tcr_cb6.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/tcr/tcr_cb6.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/tcr/tcr_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/tcr/tcr_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/waccm/waccm_ae7.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/waccm/waccm_ae7.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/waccm/waccm_cb6.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/waccm/waccm_cb6.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/waccm/waccm_met.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/waccm/waccm_met.expr -------------------------------------------------------------------------------- /aqmbc/examples/definitions/waccm/waccm_o3so4.expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/definitions/waccm/waccm_o3so4.expr -------------------------------------------------------------------------------- /aqmbc/examples/figs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/README.md -------------------------------------------------------------------------------- /aqmbc/examples/figs/make_curtains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/make_curtains.py -------------------------------------------------------------------------------- /aqmbc/examples/figs/make_nestmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/make_nestmap.py -------------------------------------------------------------------------------- /aqmbc/examples/figs/make_rowbycol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/make_rowbycol.py -------------------------------------------------------------------------------- /aqmbc/examples/figs/make_sigmabyt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/make_sigmabyt.py -------------------------------------------------------------------------------- /aqmbc/examples/figs/make_sigmabyt_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/make_sigmabyt_ts.py -------------------------------------------------------------------------------- /aqmbc/examples/figs/perim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/figs/perim.py -------------------------------------------------------------------------------- /aqmbc/examples/gcncv12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/gcncv12.cfg -------------------------------------------------------------------------------- /aqmbc/examples/gcnd49v11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/gcnd49v11.cfg -------------------------------------------------------------------------------- /aqmbc/examples/hcmaq.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/hcmaq.cfg -------------------------------------------------------------------------------- /aqmbc/examples/raqms.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/raqms.cfg -------------------------------------------------------------------------------- /aqmbc/examples/raqms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/raqms.py -------------------------------------------------------------------------------- /aqmbc/examples/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/examples/report.py -------------------------------------------------------------------------------- /aqmbc/exprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/exprlib.py -------------------------------------------------------------------------------- /aqmbc/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/__init__.py -------------------------------------------------------------------------------- /aqmbc/models/geoscf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/geoscf.py -------------------------------------------------------------------------------- /aqmbc/models/geoschem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/geoschem.py -------------------------------------------------------------------------------- /aqmbc/models/raqms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/raqms.py -------------------------------------------------------------------------------- /aqmbc/models/tcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/tcr.py -------------------------------------------------------------------------------- /aqmbc/models/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/util.py -------------------------------------------------------------------------------- /aqmbc/models/waccm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/models/waccm.py -------------------------------------------------------------------------------- /aqmbc/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/options/__init__.py -------------------------------------------------------------------------------- /aqmbc/options/_vertgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/options/_vertgrid.py -------------------------------------------------------------------------------- /aqmbc/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/report.py -------------------------------------------------------------------------------- /aqmbc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aqmbc/tests/test_bcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/tests/test_bcon.py -------------------------------------------------------------------------------- /aqmbc/tests/test_cmaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/tests/test_cmaq.py -------------------------------------------------------------------------------- /aqmbc/tests/test_exprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/tests/test_exprlib.py -------------------------------------------------------------------------------- /aqmbc/tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/aqmbc/tests/test_options.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/configexample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/configexample.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/modifyexamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/modifyexamples.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /examples/GEOSCF/12US1/2023/04/15/geoscf_mcx_tavg_1hr_g1440x721_v36_2023-04-15T1230Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/GEOSCF/12US1/2023/04/15/geoscf_mcx_tavg_1hr_g1440x721_v36_2023-04-15T1230Z.nc -------------------------------------------------------------------------------- /examples/GEOSCF/12US1/2023/07/15/geoscf_mcx_tavg_1hr_g1440x721_v36_2023-07-15T1230Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/GEOSCF/12US1/2023/07/15/geoscf_mcx_tavg_1hr_g1440x721_v36_2023-07-15T1230Z.nc -------------------------------------------------------------------------------- /examples/OutputDir/GEOSChem.SpeciesConc.20190401_0000z.nc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/OutputDir/GEOSChem.SpeciesConc.20190401_0000z.nc4 -------------------------------------------------------------------------------- /examples/OutputDir/GEOSChem.SpeciesConc.20190701_0000z.nc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/OutputDir/GEOSChem.SpeciesConc.20190701_0000z.nc4 -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/cmaqready_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/cmaqready_example.py -------------------------------------------------------------------------------- /examples/gcbc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/gcbc_example.py -------------------------------------------------------------------------------- /examples/geoscf_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/geoscf_example.py -------------------------------------------------------------------------------- /examples/hcmaq_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/hcmaq_example.py -------------------------------------------------------------------------------- /examples/raqms_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/raqms_example.py -------------------------------------------------------------------------------- /examples/tcr_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/tcr_example.py -------------------------------------------------------------------------------- /examples/waccm_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/examples/waccm_example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/tox.ini -------------------------------------------------------------------------------- /util/cmaq_nmltojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/util/cmaq_nmltojson.py -------------------------------------------------------------------------------- /util/testdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barronh/aqmbc/HEAD/util/testdef.py --------------------------------------------------------------------------------