An open API service indexing awesome lists of open source software.

https://github.com/gabrielmpp/climate_indices

Library to download and format NOAA's climate indices as Pandas dataframes.
https://github.com/gabrielmpp/climate_indices

climate climate-indices el-nino enso noaa

Last synced: 12 months ago
JSON representation

Library to download and format NOAA's climate indices as Pandas dataframes.

Awesome Lists containing this project

README

          

# climate_indices

Tools to download climate indices from NOAA (soi, qbo, pna etc) and format as Pandas dataframe.

## Installation

> \$ pip install git+https://github.com/gabrielmpp/climate_indices

## Usage
```python
import climIndices as ci
import matplotlib.pyplot as plt

df = ci.get_data(['nina34', 'oni', 'nao', 'qbo'])

df.plot(subplots=True, sharex=True, title='Climate indices', legend='False', figsize=[10, 10])
plt.show()
```