Skip to content

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

License

Notifications You must be signed in to change notification settings

gabrielmpp/climate_indices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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()