This is the Python library for retrieving and loading data provided by UCalgary Space Remote Sensing. More information including tutorials and dataset descriptions can be found on our open data platform at https://data.phys.ucalgary.ca.
Note
This library is primarily a sub-dependency for higher-level data access and analysis support libraries PyAuroraX and PyUCRio. We recommend using those libraries for accessing and analyzing optical (all-sky imager, spectrograph) data and riometer data, respectively.
PyUCalagarySRS currently supports Python 3.10+.
Some links to help:
- PyUCalgarySRS API Reference
- Crib sheets that utilize PyUCalgarySRS
- UCalgary Space Remote Sensing Open Data Platform
- Usage examples
Installation can be done using pip:
$ pip install pyucalgarysrsFor the most bleeding edge version of PyUCalgarySRS, you can install it directly from the Github repository:
$ pip install pyucalgarysrs@git+https://github.com/ucalgary-srs/pyUCalgarySRS
[OR]
$ git clone https://github.com/ucalgary-srs/pyUCalgarySRS.git
$ cd pyUCalgarySRS
$ pip install .Below is how the library can be imported and initialized:
import pyucalgarysrs
srs = pyucalgarysrs.PyUCalgarySRS()A large collection of examples can be found in the examples directory.