https://github.com/metoppv/improver
IMPROVER is a library of algorithms for meteorological post-processing.
https://github.com/metoppv/improver
meteorology python weather
Last synced: 5 months ago
JSON representation
IMPROVER is a library of algorithms for meteorological post-processing.
- Host: GitHub
- URL: https://github.com/metoppv/improver
- Owner: metoppv
- License: bsd-3-clause
- Created: 2017-03-17T16:51:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T06:44:07.000Z (6 months ago)
- Last Synced: 2024-10-29T20:38:54.187Z (6 months ago)
- Topics: meteorology, python, weather
- Language: Python
- Homepage: http://improver.readthedocs.io/en/latest/
- Size: 14.9 MB
- Stars: 103
- Watchers: 17
- Forks: 85
- Open Issues: 51
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - IMPROVER - A library of algorithms for meteorological post-processing and verification. (Atmosphere / Meteorological Observation and Forecast)
README
# IMPROVER
[](https://opensource.org/licenses/BSD-3-Clause)
[](https://github.com/metoppv/improver/actions/workflows/scheduled.yml)
[](https://www.codacy.com/app/metoppv_tech/improver?utm_source=github.com&utm_medium=referral&utm_content=metoppv/improver&utm_campaign=Badge_Grade)
[](https://www.codacy.com/app/metoppv_tech/improver?utm_source=github.com&utm_medium=referral&utm_content=metoppv/improver&utm_campaign=Badge_Coverage)
[](https://codecov.io/gh/metoppv/improver)
[](http://improver.readthedocs.io/en/latest/?badge=latest)
[](https://www.python.org/downloads/release/python-360/)
[](https://www.python.org/downloads/release/python-370/)
[](https://zenodo.org/badge/latestdoi/85334761)IMPROVER is a library of algorithms for meteorological post-processing and verification.
## Installing improver
### Conda installation
Here we demonstrate the installation of improver via conda with aid of the [mamba](https://mamba.readthedocs.io/en/latest/index.html) package manager to speedup the process.
install a mamba environment
```
conda create -c conda-forge --override-channels mamba -n mamba
```
activate this mamba environment
```
conda activate mamba
```
install the improver environment using mamba
```
mamba create -c conda-forge python=3.7 improver -n improver
```
deactivate your mamba environment
```
conda deactivate
```
activate your new improver environment
```
conda activate improver
```