https://github.com/mheikenfeld/wrfcube
Load WRF output into Iris cubes
https://github.com/mheikenfeld/wrfcube
iris iris-cubes postprocessing wrf
Last synced: 2 days ago
JSON representation
Load WRF output into Iris cubes
- Host: GitHub
- URL: https://github.com/mheikenfeld/wrfcube
- Owner: mheikenfeld
- License: bsd-3-clause
- Created: 2016-07-14T09:26:03.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2022-01-16T18:52:13.000Z (over 4 years ago)
- Last Synced: 2025-10-21T19:52:51.654Z (9 months ago)
- Topics: iris, iris-cubes, postprocessing, wrf
- Language: Python
- Size: 442 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
wrfcube
======
[](https://zenodo.org/badge/latestdoi/63322176)
[](https://wrfcube.readthedocs.io/en/latest/?badge=latest)
[](https://travis-ci.org/mheikenfeld/wrfcube)
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://git@github.com/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 git@github.com: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..)