Parker Solar Probe (PSP)
SPEDAS.PSP
— ModuleSub-module for "Parker Solar Probe (PSP)"
To load project, project-specific instrument and dataset variables into scope:
using SPEDAS.PSP
Configuration File: PSP.toml
SPEDAS.PSP.psp
— ConstantProject: Parker Solar Probe
Metadata (Dict):
abbreviation: PSP
links: ["https://hpde.io/SMWG/Observatory/ParkerSolarProbe.html", "[Wikipedia](https://en.wikipedia.org/wiki/Parker_Solar_Probe)"]
spase_id: spase://SMWG/Observatory/ParkerSolarProbe
Instruments (Dict):
isois: Integrated Science Investigation of the Sun
fields: FIELDS
wispr: Wide-field Imager for Solar Probe
eis: Ephemeris
sweap: Solar Wind Electrons Alphas and Protons
Instruments
SPEDAS.PSP.eis
— ConstantInstrument: Ephemeris
SPEDAS.PSP.fields
— ConstantInstrument: FIELDS
Metadata (Dict):
spase_id: spase://SMWG/Instrument/ParkerSolarProbe/FIELDS
SPEDAS.PSP.isois
— ConstantInstrument: Integrated Science Investigation of the Sun
SPEDAS.PSP.sweap
— ConstantInstrument: Solar Wind Electrons Alphas and Protons
SPEDAS.PSP.wispr
— ConstantInstrument: Wide-field Imager for Solar Probe
Datasets
Examples
using Speasy: SpeasyProduct
using SPEDAS
using Unitful
n = DataSet("Density",
[
SpeasyProduct("PSP_SWP_SPI_SF00_L3_MOM/DENS"; labels=["SPI Proton"]),
Base.Fix2(*, u"cm^-3") ∘ SpeasyProduct("PSP_SWP_SPC_L3I/np_moment"; labels=["SPC Proton"]),
SpeasyProduct("PSP_FLD_L3_RFS_LFR_QTN/N_elec"; labels=["RFS Electron"]),
SpeasyProduct("PSP_FLD_L3_SQTN_RFS_V1V2/electron_density"; labels=["SQTN Electron"])
]
)
DataSet: Density
Data (Array{Product{String}, 1}):
1: cda/PSP_SWP_SPI_SF00_L3_MOM/DENS [getdimarray]
2: cda/PSP_SWP_SPC_L3I/np_moment [Base.Fix2{typeof(*), Unitful.FreeUnits{(cm^-3,), 𝐋^-3, nothing}}(*, cm^-3) ∘ Speasy.getdimarray]
3: cda/PSP_FLD_L3_RFS_LFR_QTN/N_elec [getdimarray]
4: cda/PSP_FLD_L3_SQTN_RFS_V1V2/electron_density [getdimarray]
tplot(n, "2021-08-09T06", "2021-08-10T18")

# Overlay multiple datasets in the same panel
tplot([n], "2021-08-09T06", "2021-08-10T18")
