Parker Solar Probe (PSP)

SPEDAS.PSPModule

Sub-module for "Parker Solar Probe (PSP)"

To load project, project-specific instrument and dataset variables into scope:

using SPEDAS.PSP

Configuration File: PSP.toml

source
SPEDAS.PSP.pspConstant
SpaceDataModel.Project: Parker Solar Probe
  Metadata (Dict{Any, Any}):
    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{String, SpaceDataModel.Instrument}):
    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
  Datasets (Dict{Any, Any}):
source

Instruments

SPEDAS.PSP.eisConstant
SpaceDataModel.Instrument: Ephemeris
  Metadata (Dict{Any, Any}):
  Datasets (Dict{Any, Any}):
source
SPEDAS.PSP.fieldsConstant
SpaceDataModel.Instrument: FIELDS
  Metadata (Dict{Any, Any}):
    spase_id: spase://SMWG/Instrument/ParkerSolarProbe/FIELDS
  Datasets (Dict{Any, Any}):
source
SPEDAS.PSP.isoisConstant
SpaceDataModel.Instrument: Integrated Science Investigation of the Sun
  Metadata (Dict{Any, Any}):
  Datasets (Dict{Any, Any}):
source
SPEDAS.PSP.sweapConstant
SpaceDataModel.Instrument: Solar Wind Electrons Alphas and Protons
  Metadata (Dict{Any, Any}):
  Datasets (Dict{Any, Any}):
source
SPEDAS.PSP.wisprConstant
SpaceDataModel.Instrument: Wide-field Imager for Solar Probe
  Metadata (Dict{Any, Any}):
  Datasets (Dict{Any, Any}):
source

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 (Vector{Product}):
    1: cda/PSP_SWP_SPI_SF00_L3_MOM/DENS [getdimarray]
    2: cda/PSP_SWP_SPC_L3I/np_moment [Base.Fix2{typeof(*), Unitful.FreeUnits{(cm⁻³,), 𝐋⁻³, nothing}}(*, cm⁻³) ∘ Speasy.getdimarray]
    3: cda/PSP_FLD_L3_RFS_LFR_QTN/N_elec [getdimarray]
    4: cda/PSP_FLD_L3_SQTN_RFS_V1V2/electron_density [getdimarray]
  Metadata (Dict{Any, Any}):
tplot(n, "2021-08-09T06", "2021-08-10T18")
Example block output
# Overlay multiple datasets in the same panel
tplot([n], "2021-08-09T06", "2021-08-10T18")
Example block output

References