ECE2CMOR3 Python code to CMORize and post-process EC-Earth output data.
- netCDF4
- cmor3 (see cmor dependencies)
- cdo (version 1.9.3; only for atmosphere post-processing)
- nose (only for testing)
- testfixtures (only for testing)
- python-dateutil
- f90nml (only for fortran namelist I/O)
- xlrd (for reading *.xlsx excel sheets)
- XlsxWriter (for writing *.xlsx excel sheets)
The Anaconda python distribution should be installed. With anaconda all the packages can be installed within one go by the package manager conda. This applies also to systems where one is not allowed to install complementary python packages to the default python distribution.
Download anaconda from: https://www.anaconda.com/download/ (e.g. take the latest anaconda version for python 2.7), and
chmod u+x Anaconda2-5.0.0.1-Linux-x86_64.sh
./Anaconda2-5.0.0.1-Linux-x86_64.sh
source ${HOME}/.bashrc
The anaconda installation optionally adds the anaconda python to your $PATH by appending a line to your .bashrc. Commenting this appended line and resourcing the .bashrc gives the default python back.
For example we create the directoy ${HOME}/cmorize/ for the ece2cmor tool:
mkdir -p ${HOME}/cmorize/; cd ${HOME}/cmorize/
git clone https://github.com/goord/ece2cmor3.git
cd ${HOME}/cmorize/ece2cmor3/
git submodule update --init --recursive
cd ${HOME}/cmorize/ece2cmor3/
conda env create -f environment.yml # for linux
conda env create -f env-osx-64.yml # for mac os
source activate ece2cmor3
python setup.py install
source deactivate
source activate ece2cmor3
ece2cmor -h
checkvars -h
etc.
The CMOR tables are maintained via a nested git repository inside the ece2cmor3 git repository. Once in a while one of the ece2cmor3 developers will update the nested repository of the CMOR tables. This will be visisble from the ece2cmor3 repository by a git status call, it will tell that there are "new updates" in these tables. In that case one has to repeat the following:
cd ${HOME}/cmorize/ece2cmor3/; git submodule update --init --recursive
For instance in case one is developing the checkvars.py script which uses the ece2cmor3 package, after any change in the ece2cmor code the line below has to be repeated in order to reload the ece2cmor3 package:
cd ${HOME}/cmorize/ece2cmor3/; python setup.py install; cd -;
cd ${HOME}/cmorize/ece2cmor3/ece2cmor3/resources/tables/
git pull origin master
cd ../; git add cmip6-cmor-tables
git commit cmip6-cmor-tables -m 'Update the nested CMOR tables for their updates'
git push
Alternatively create a virtual python environment with virtualenv. Download the CMOR3 source (https://github.com/PCMDI/cmor/releases) and follow instructions (configure,make,make install). Inside the CMOR source directory run
python setup.py install
to install the python wrapper in your python environment. Finally run
pip install requirements.txt
to install the remaining dependencies
The package consists for 2 main modules, ifs2cmor and nemo2cmor. The main api module ece2cmorlib calls initialization and processing functions in these ocean and atmosphere specific codes. The full workload is divided into tasks, which consist of a source (an IFS grib code or NEMO parameter id) and a target (a cmor3 CMIP6 table entry). The tasks are constructed by the Fortran namelist legacy loader (namloader.py) or by the new json-loader (default). The working is similar to the previous ece2cmor tool: the loader reads parameter tables and creates tasks as it receives a dictionary of desired targets from the caller script.
At execution, the nemo2cmor module searches for the sources in the NEMO output files and streams the data to cmor to rewrite it according to CMIP6 conventions. For the IFS component, the module first performs the necessary post-processing steps, creating a list of intermediate netcdf files that contain time-averaged selections of the data. Special treatment such as unit conversions and post-processing formulas are attached to the tasks as attributes, as well as the file path in which the source data resides.