.. |br| raw:: html
.. _dry-run-download:
#################################
Download data from dry-run output
#################################
Once you have successfully executed a GEOS-Chem dry-run, you
can use the output from the dry-run (contained in the :file:`log.dryrun` file)
to download the data files that GEOS-Chem will need to perform the
corresponding "production" simulation. You may download from different
:ref:`data repositories `.
.. important::
Before you use the :file:`download_data.py` script, make sure to
initialize a Mamba or Conda environment with the relevant command
shown below:
.. code-block:: console
$ mamba activate ENV-NAME # If using Mamba
$ conda activate ENV-NAME # If using Conda
Here :literal:`ENV-NAME` is the name of your environment.
Also make sure that you have installed the PyYAML module to your
conda environment. PyYAML will allow the :file:`download_data.py`
script to read certain configurable settings from a YAML file in
your run directory.
The Python environment for GCPy has all of the proper packages
that you need to download data from a dry-run simulation. For
more information, please see `gcpy.readthedocs.io
`_.
.. _dry-run-data-download-portal:
====================
Choose a data portal
====================
You can :ref:`download input data ` from any of the portals
listed below.
.. list-table:: GEOS-Chem data portals and access methods
:header-rows: 1
* - Portal
- S3 Explorer
- AWS CLI
- HTTP
- Bashdatacatalog
- Globus
* - :ref:`GEOS-Chem Input Data ` |br|
(The main source of GEOS-Chem input data)
- Yes
- Yes
- Yes
- Yes
- Yes
* - :ref:`gcid-special-portals-nested`
- Yes
- Yes
- Yes
- No
- No
* - :ref:`gcid-special-portals-gcap2`
- No
- No
- Yes
- No
- No
.. _dry-run-download-py:
==============================================================
Run the :file:`download_data.py` script on the dryrun log file
==============================================================
Navigate to your GEOS-Chem run directory where you executed the dry-run
and type.
.. code-block:: console
$ ./download_data.py log.dryrun PORTAL-NAME
where:
- :file:`download_data.py` is the dry-run data download program
(written in Python). It is included in each :ref:`GEOS-Chem Classic
run directory ` that you create. |br|
|br|
- :file:`log.dryrun` is the log file from your GEOS-Chem dry-run
simulation. |br|
|br|
- :literal:`PORTAL-NAME` specifies the data portal that you wish
to download from. Allowed values are:
.. list-table:: Allowed values for the ``PORTAL-NAME`` argument
to ``download_data.py``
:header-rows: 1
:align: center
* - Value
- Downloads from portal
- With this command
- Via this method
* - geoschem+aws
- :ref:`GEOS-Chem Input Data `
- :command:`aws s3 cp`
- AWS CLI
* - geoschem+http
- :ref:`GEOS-Chem Input Data `
- :command:`wget`
- HTTP
* - nested+aws
- :ref:`gcid-special-portals-nested`
- :command:`aws s3 cp`
- AWS CLI
* - nested+http
- :ref:`gcid-special-portals-nested`
- :command:`wget`
- HTTP
* - rochester
- :ref:`GCAP 2.0 met data @ Rochester `
- :command:`wget`
- HTTP
For example, to download data from the :ref:`GEOS-Chem Input Data
` portal using the AWS CLI download (which is faster than
HTTP download), use this command:
.. code-block:: console
$ ./download_data.py log.dryrun geoschem+s3
.. note::
You must have the `AWS CLI (command-line interface)
`_ software installed on your system
before in order to use the :literal:`geoschem+aws` or
:literal:`nested+aws` options in the table listed above.
The :file:`download_data.py` program will generate a **log of
unique data files** (i.e. with all duplicate listings removed), which
looks similar to this:
.. code-block:: text
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! LIST OF (UNIQUE) FILES REQUIRED FOR THE SIMULATION
!!! Start Date : 20190701 000000
!!! End Date : 20190701 010000
!!! Simulation : fullchem
!!! Meteorology : MERRA2
!!! Grid Resolution : 4.0x5.0
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
./HEMCO_Config.rc
./HEMCO_Config.rc.gmao_metfields
./HEMCO_Diagn.rc
./HISTORY.rc
./Restarts/GEOSChem.Restart.20190701_0000z.nc4 --> /home/ubuntu/ExtData/GEOSCHEM_RESTARTS/GC_14.5.0/GEOSChem.Restart.fullchem.20190701_0000z.nc4
./Restarts/HEMCO_restart.201907010000.nc
./geoschem_config.yml
/path/to/ExtData/CHEM_INPUTS/CLOUD_J/v2024-09/FJX_j2j.dat
/path/to/ExtData/CHEM_INPUTS/CLOUD_J/v2024-09/FJX_scat-aer.dat
/path/to/ExtData/CHEM_INPUTS/CLOUD_J/v2024-09/FJX_scat-cld.dat
/path/to/ExtData/CHEM_INPUTS/CLOUD_J/v2024-09/FJX_scat-ssa.dat
/path/to/ExtData/CHEM_INPUTS/CLOUD_J/v2024-09/FJX_spec.dat
/path/to/ExtData/CHEM_INPUTS/FastJ_201204/fastj.jv_atms_dat.nc
/path/to/ExtData/CHEM_INPUTS/Linoz_200910/Linoz_March2007.dat
/path/to/ExtData/CHEM_INPUTS/Olson_Land_Map_201203/Olson_2001_Drydep_Inputs.nc
/path/to/ExtData/CHEM_INPUTS/UCX_201403/NoonTime/Grid4x5/InitCFC_JN2O_01.dat
... etc ...
This name of this "unique" log file will be the same as the log file
with dryrun ouptut, with :file:`.unique` appended. In our above
example, we passed :file:`log.dryrun` to :file:`download_data.py`, so
the "unique" log file will be named :file:`log.dryrun.unique`. This
"unique" log file can be very useful for documentation purposes.
.. _dry-run-download-skip:
=============================================
Skip download, but create log of unique files
=============================================
If you wish to only produce the \*log of unique data files without
downloading any data, then type the following command from within your
GEOS-Chem run directory:
.. code-block:: console
$ ./download_data.py log.dryrun skip-download
or for short:
.. code-block:: console
$ ./download_data.py log.dryrun skip
This can be useful if you already have the necessary data downloaded to
your system but wish to create the log of unique files for documentation
purposes (such as for benchmark simulations, etc.)