Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 1.35 KB

fast.rst

File metadata and controls

67 lines (42 loc) · 1.35 KB

Fast Auroral Snapshot Explorer (FAST)

The routines in this module can be used to load data from the Fast Auroral Snapshot Explorer (FAST) mission.

Fluxgate Magnetometer (DCB)

pyspedas.fast.dcb

Example

import pyspedas
from pytplot import tplot
dcb_vars = pyspedas.fast.dcb(trange=['1998-09-05', '1998-09-06'])
tplot('')

image

Search-coil Magnetometer (ACB)

pyspedas.fast.acb

Example

import pyspedas
from pytplot import tplot
acb_vars = pyspedas.fast.acb()
tplot('HF_E_SPEC')

image

Time-of-flight Energy Angle Mass Spectrograph (TEAMS)

pyspedas.fast.teams

Example

import pyspedas
from pytplot import tplot
teams_vars = pyspedas.fast.teams(trange=['1998-09-05', '1998-09-06'])
tplot(['H+', 'H+_low', 'H+_high'])

image