Geotail ======================================================================== The routines in this module can be used to load data from the Geotail mission. Magnetic Field Experiment (MGF) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.mgf Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot mgf_vars = pyspedas.projects.geotail.mgf(trange=['2018-11-5', '2018-11-6']) tplot(['IB', 'IB_vector']) .. image:: _static/geotail_mgf.png :align: center :class: imgborder Electric Field Detector (EFD) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.efd Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot efd_vars = pyspedas.projects.geotail.efd(trange=['2018-11-5', '2018-11-6']) tplot(['Es', 'Ss', 'Bs', 'Vs', 'Ew', 'Sw', 'Bw', 'Vw']) .. image:: _static/geotail_efd.png :align: center :class: imgborder Low Energy Particle experiment (LEP) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.lep Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot lep_vars = pyspedas.projects.geotail.lep(trange=['2018-11-5/05:00', '2018-11-5/06:00'], time_clip=True) tplot(['N0', 'V0']) .. image:: _static/geotail_lep.png :align: center :class: imgborder Comprehensive Plasma Instrumentation (CPI) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.cpi Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot cpi_vars = pyspedas.projects.geotail.cpi(trange=['2018-11-5/15:00', '2018-11-5/18:00'], time_clip=True) tplot(['SW_P_Den', 'SW_P_AVGE', 'SW_V', 'HP_P_Den']) .. image:: _static/geotail_cpi.png :align: center :class: imgborder Energetic Particles and Ion Composition Instrument (EPIC) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.epic Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot epic_vars = pyspedas.projects.geotail.epic(trange=['2018-11-5', '2018-11-6']) tplot('IDiffI_I') .. image:: _static/geotail_epic.png :align: center :class: imgborder Plasma Wave Instrument (PWI) ---------------------------------------------------------- .. autofunction:: pyspedas.projects.geotail.pwi Example ^^^^^^^^^ .. code-block:: python import pyspedas from pyspedas import tplot pwi_vars = pyspedas.projects.geotail.pwi(trange=['2018-11-5/06:00', '2018-11-5/07:00'], time_clip=True) tplot(['MCAE_AVE', 'MCAB_AVE']) .. image:: _static/geotail_pwi.png :align: center :class: imgborder