Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T06:44:07.000Z (2 months ago)
- Last Synced: 2024-10-29T20:38:54.187Z (2 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
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Tests](https://github.com/metoppv/improver/actions/workflows/scheduled.yml/badge.svg)](https://github.com/metoppv/improver/actions/workflows/scheduled.yml)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f7dcb46e8e1b4110b3d194dba03fe526)](https://www.codacy.com/app/metoppv_tech/improver?utm_source=github.com&utm_medium=referral&utm_content=metoppv/improver&utm_campaign=Badge_Grade)
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/f7dcb46e8e1b4110b3d194dba03fe526)](https://www.codacy.com/app/metoppv_tech/improver?utm_source=github.com&utm_medium=referral&utm_content=metoppv/improver&utm_campaign=Badge_Coverage)
[![codecov](https://codecov.io/gh/metoppv/improver/branch/master/graph/badge.svg)](https://codecov.io/gh/metoppv/improver)
[![Documentation Status](https://readthedocs.org/projects/improver/badge/?version=latest)](http://improver.readthedocs.io/en/latest/?badge=latest)
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)
[![DOI](https://zenodo.org/badge/85334761.svg)](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
```