Python package for reading, cleaning, and perform operations on satellite data.
Project description
Basic documentation for pySatData
Most functions' structure and some loaders are from the pySPEDAS (https://github.com/spedas/pyspedas) repository. I just used and organized it in a way that I felt was more accessible for my purposes :). There is an option to store the variables in a pandas DataFrame format or pytplot format.
Requirements
Python 3.8+
Installation:
conda create -n yourenvname python=x.x anaconda
conda activate yourenvname
pip install pysatdata
config_file.json
It can be done in this file if some change in downloading directories is needed.
pysatdata/resources/config_file.json
This file sets the HTTP directory for downloading data and the local directory to save the downloaded data.
The local directory files are organized as http directory, i.e.:
- RBSP: HOME/sat_data/rbsp/rbspa/l2/ect/rept/sectors/rel03/YYYY/filename.cdf
This files handles with the different http subpaths for the different levels and intruments in each probe.
Examples: Loading data.
RBSP REPT data
#Import the loading functions.
from pysatdata.loaders.load import *
# Define the time range for downloading data.
trange=['2021-05-26', '2021-05-30']
# Loading Van Allen probes REPT data.
varss_rept = load_sat(trange=trange, satellite="rbsp",
probe=['a', 'b'], level="3",
rel="rel03", instrument="rept",
datatype="sectors",
downloadonly=False,
searchFilesFirst=True,
usePandas=False,
usePyTplot=True)
RBSP EMFISIS data.
varss_emfisis = load_sat(trange=trange, satellite="rbsp",
probe=['a','b'], rel="rel03", level="3",
instrument="emfisis", datatype="magnetometer",
cadence="1sec", coord="gse",
varnames=[], downloadonly=False,
usePandas=True, usePyTplot=False)
RBSP MAGEIS data.
varss_mageis = load_sat(trange=trange, satellite="rbsp",
probe=['a','b'], level="3",
rel="rel03", instrument="mageis",
datatype="sectors",
downloadonly=False,
usePandas=False, usePyTplot=True)
RBSP EFW data.
varss_efw = load_sat(trange=trange, satellite="rbps",
probe=['a','b'], level="2", rel='rel03',
instrument="efw", datatype="esvy_despun",
varnames=['efield_mgse', 'lshell'], downloadonly=False,
usePandas=False, usePyTplot=True)
OMNI Solar wind data
varss_omni = load_sat(trange=trange, satellite="omni",
probe="omni"
instrument="omni_cdaweb",datatype="hro_1min",
downloadonly=False,
usePandas=False, usePyTplot=True)
See plot_interpFlux_RBSP.py
for an example of plotting the interpolated electron flux.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pysatdata-0.0.1.tar.gz
.
File metadata
- Download URL: pysatdata-0.0.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf0c2212042a934be22c896f70e0355f623498b466dbdb787449cde4bea8ecb6 |
|
MD5 | e6f046a25f8d511017ee73a4a4a8661a |
|
BLAKE2b-256 | 88d7aba2f2d624030fd52ba1e9734abaeac50ee61b388de71260d97b86660ca1 |
File details
Details for the file pysatdata-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pysatdata-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42cb4c4534a6893e7c4f8a7ebc5113b0b7f55044f3df16d9b6eced00f83d62de |
|
MD5 | be9f0da4ff96a510407a66f119a1c3d2 |
|
BLAKE2b-256 | 64dc37b2e978dce49cd933a73b8d0f39e56ef5a77af40f0f83ca76a8f1ebb18d |