Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.23 KB

README.md

File metadata and controls

39 lines (30 loc) · 1.23 KB

wrfcube

DOI Documentation Status Build Status

Documentation

Load WRF output into nice Iris cubes

Installation

Required packages: iris xarray numpy cf_units

If you are using anaconda, the following command should make sure all dependencies are met and up to date:

conda install -c conda-forge iris xarray cf_units

You can directly install the package directly from github with pip and either of the two following commands:

pip install --upgrade git+ssh://[email protected]/mheikenfeld/wrfcube.git
pip install --upgrade git+https://github.com/mheikenfeld/wrfcube.git

You can also clone the package with any of the two following commands

git clone [email protected]:mheikenfeld/wrfcube.git 
git clone https://github.com/mheikenfeld/wrfcube.git

and install the package from the locally cloned version:

pip install --upgrade wrfcube/

(the trailing "/" actually matters here..)