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.
- Host: GitHub
- URL: https://github.com/gabrielmpp/climate_indices
- Owner: gabrielmpp
- License: mit
- Created: 2019-05-09T11:52:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T08:02:41.000Z (almost 4 years ago)
- Last Synced: 2025-05-18T11:09:09.889Z (about 1 year ago)
- Topics: climate, climate-indices, el-nino, enso, noaa
- Language: Python
- Homepage:
- Size: 340 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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()
```
