Metadata-Version: 2.1
Name: sampex
Version: 0.3.0
Summary: 'Programs to load and plot the SAMPEX satellite data.'
Home-page: https://github.com/mshumko/sampex
Author: 'M. Shumko'
Author-email: "M. Shumko" <msshumko@gmail.com>
License: UNKNOWN
Keywords: data science,SAMPEX,satellite,HILT,PET,LICA
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# sampex
Easily load and plot data from the Solar Anomalous and Magnetospheric Particle Explorer (SAMPEX) satellite that operated from 1992-2012. This library currently loads data from the `HILT`, `PET`, and `LICA` instruments, as well as the `attitide` files.  

[Documentation](https://sampex.readthedocs.io/en/latest/)

The example plot below sums up what this library does. I generated it with this console command: ```plot_sampex 2007 1 20 --yscale log```
![Example SAMPEX data from the HILT, PET, and LICA instruments](https://github.com/mshumko/sampex/blob/aba90331438b1cc1152e99469df5a65847bc9535/sampex_example.png?raw=true)

# Install
Installing this package is as simple as
```bash
python3 -m pip install sampex
```

If you want to develop this package, run
```bash
git clone git@github.com:mshumko/sampex.git
cd sampex
```

Then one of these commands to install sampex into a virtual environment:
```bash
python3 -m pip install -e .
```
or 
```bash
python3 -m pip install -r requirements.txt 
```
# Get started
Before you can load the SAMPEX data you'll need to do two things:

1. Download the [SAMPEX data](https://izw1.caltech.edu/sampex/DataCenter/data.html) to a folder. wget is great for this. Write down the top-level SAMPEX data directory as you'll need it in step 2.
2. Configure this package as it needs to know what directory to begin searching for the SAMPEX data. 

    ```bash
    python3 -m sampex config
    ```
    and in the prompt paste the top-level SAMPEX data directory.

## Examples
There are a handful of examples in the [documentation](https://sampex.readthedocs.io/en/latest/examples.html)

