Skip to content

LandonRieger/pySAGE

Repository files navigation

Python SAGE Data Reader

Documentation Status MIT license PyPI version fury.io DOI

Basic python reader for SAGE II and SAGE III binary data files into an xarray data structure or a dictionary of numpy arrays. The binary files SAGE data files are not supplied and must be downloaded by the user. They can be found at the NASA ASDC website.

Installation

To install the package from pypi run: :

pip install pysagereader

Documentation

https://pysagereader.readthedocs.io/en/latest/

Basic Use

An example of loading data from 2000 through 2003 between 10oN and 10oS

from pySAGE.pysagereader.sage_ii_reader import SAGEIILoaderV700

sage = SAGEIILoaderV700(data_folder='/path/to/sageii/data', filter_ozone=True)
data = sage.load_data('2000-1-1', '2003-12-31', -10, 10)
data.O3.plot(x='time', robust=True)

Command Line Utility

If you just need some yearly netcdf files you can run this script from the command line:

python /install/directory/pysagereader/make_netcdf.py -i /sageii/data/folder -o /output/folder --time_res yearly