This repository has input data catalogs for GEOS-Chem. The catalog files are intended for downloading GEOS-Chem input data with the bashdatacatalog. You can to obtain input data according to
- the GEOS-Chem versions you use (e.g., 13.2 + 13.4)
- the meteorology you use (e.g., MERRA2 2x2.5 + GEOS-FP 0.25x0.3125 NA nested)
- time spans of your simulation (e.g., 2019-01-01 to 2020-01-01)
Navigate to the top-level of your GEOS-Chem input data directory (the directory that has HEMCO/, CHEM_INPUTS/, etc. ). This directory is where you will put the catalog files you are actively using.
Clone this repository from GitHub:
$ git clone https://github.com/geoschem/input-data-catalogs
$ cd input-data-catalogsThe main branch will contain the input data catalogs corresponding to the most recent GEOS-Chem release. If you wish to obtain input data catalogs for an older GEOS-Chem version, follow these steps.
$ git checkout tags/X.Y.Z # X.Y.Z is the GEOS-Chem version number
$ git branch version_X.Y.Z
$ git checkout version_X.Y.ZThis is what input-data-catalogs should look like after you have followed the above steps:
$ tree input-data-catalogs
input-data-catalogs/
├── ChemistryInputs.csv
├── EmissionsInputs.csv
├── InitialConditions.csv
├── MeteorologicalInputs.csv
└── README.mdNext, edit MeteorologicalInputs.csv so that the meteorological data collections you use are enabled (i.e., set column 3 to 1 for every collection you need,
and set it to 0 for collections you do not use).
Now you can run bashdatacatalog commands like
$ bashdatacatalog MyCatalogs/**/*.csv list-missing url 2019-01-01 2020-01-01NOTE: You should always run bashdatacatalog from the top-level of input data repository (i.e., /ExtData in my case).
- Make the appropriate changes to the catalog files on the
devbranch. - Create a PR to the
mainbranch and ask another GCST member to approve it. - Merge
devintomainafter the PR has been approved.
