Python remapping tools for climate and earth system models.
http://mpas-dev.github.io/pyremap/main/
To use the latest version for developers, get the code from: https://github.com/MPAS-Dev/pyremap
Then, you will need to set up a conda environment and install the package in a way that points to the repo (so changes you make are available in the conda environment):
conda config --add channels conda-forge
conda config --set channel_priority strict
conda create -y -n pyremap --file dev-spec.txt
conda activate pyremap
python -m pip install --no-deps --no-build-isolation -e .
Detailed examples of how to use pyremap
can be found in the documentation. These include:
- Creating mapping files for remapping to a lat-lon grid.
- Creating mapping files for remapping to an Antarctic stereographic grid.
- Remapping data between different stereographic grids.
For step-by-step walkthroughs, see the examples section.