Python library for analyzing data from the e-Callisto International Network of Solar Radio Spectrometers
PyCallisto is not available on PyPi yet but, you can download a development release at https://github.com/andrekorol/pycallisto/releases.
Otherwise, if you have Git installed and want to test the current unreleased version of PyCallisto, you can get the master branch with:
git clone https://github.com/andrekorol/pycallisto.git
Once inside the package top directory, run python setup.py install
OR pip install .
.
To test the library and its simplicity with some sample data, download these two FITS files from e-Callisto (BLEN7M_20110809_080004_25.fit.gz and BLEN7M_20110809_081504_25.fit.gz) and then run the following code from a Python interpreter:
from pycallisto import fitsplot
fits_file_list = [
"BLEN7M_20110809_080004_25.fit.gz",
"BLEN7M_20110809_081504_25.fit.gz",
]
fitsplot(fits_file_list, show_colorbar=True)
The resulting plot is:
PyCallisto is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.