um2nc
is a Python3
utility to convert Unified Model data files to NetCDF format.
The um2nc-standalone
project is an ACCESS-NRI initiative to merge multiple versions of Unified Model NetCDF conversion tool to a single, canonical project.
On Gadi, um2nc
is available within the vk83
payu
environment.
To access it, run:
module use /g/data/vk83/modules
module load payu
Important
You need to be a member of the vk83 project on NCI to access the module. For more information check how to Join relevant NCI projects
um2nc
is available as a conda
package in the access-nri conda channel.
To install it run:
conda install accessnri::um2nc
For development/testing, it is recommended to install um2nc
as a development package within a micromamba
/conda
testing environment.
git clone [email protected]:ACCESS-NRI/um2nc-standalone.git
Tip
In the following instructions micromamba
can be replaced with conda
.
cd um2nc-standalone
micromamba env create -n um2nc_dev --file .conda/env_dev.yml
micromamba activate um2nc_dev
pip install --no-deps --no-build-isolation -e .
The um2nc-standalone
project uses pytest
and pytest-cov
.
To run the tests and generate print a coverage report (with missing lines) run:
python3 -m pytest --cov-report=term-missing --cov=umpost
Tip
To generate an HTML coverage report substitute term-missing
with html
.
TODO: this needs to cover:
- Running
um2netcdf
standalone - Using the workflow run script
- Using
um2netcdf
as an API
TODO