Source code for pyspedas.projects.solo.rpw

from .load import load


[docs] def rpw(trange=['2020-06-15', '2020-06-16'], datatype='hfr-surv', level='l2', suffix='', prefix='', get_support_data=False, varformat=None, varnames=[], downloadonly=False, notplot=False, no_update=False, time_clip=False): """ Loads data from the Radio and Plasma Waves (RPW) instrument Parameters ---------- trange : list of str time range of interest [starttime, endtime] with the format 'YYYY-MM-DD','YYYY-MM-DD'] or to specify more or less than a day ['YYYY-MM-DD/hh:mm:ss','YYYY-MM-DD/hh:mm:ss'] datatype: str Data type; Valid options: Level 1: 'hfr-surv', 'lfr-surv-asm', 'lfr-surv-bp1', 'lfr-surv-bp2', 'lfr-surv-cwf', 'lfr-surv-swf', 'tds-surv-hist1d', 'tds-surv-hist2d', 'tds-surv-mamp', 'tds-surv-rswf', 'tds-surv-stat', 'tds-surv-tswf', 'tnr-surv' (see below for definitions) Level 2: High Frequency Receiver (HFR): 'hfr-surv': High Frequency Receiver (HFR) Data in Survey Mode Low Frequency Receiver (LFR): 'lfr-surv-asm': Averaged Spectral Matrix (ASM) Data in Survey Mode 'lfr-surv-bp1': Basic Parameters Set 1 (BP1) Data in Survey Mode 'lfr-surv-bp2': Basic Parameter Set 2 (BP2) Data in Survey Mode 'lfr-surv-cwf-b': Continuous Magnetic Waveform (CWF-B) in Survey Mode 'lfr-surv-cwf-e': Continuous Electric Waveform (CWF-E) in Survey Mode 'lfr-surv-swf-b': Snapshot Magnetic Waveform (SWF-B) in Survey Mode 'lfr-surv-swf-e': Snapshot Electric Waveform (SWF-E) in Survey Mode Time Domain Sampler (TDS): 'tds-surv-hist1d': Histogram Set 1 (HIST1D) Data in Survey Mode 'tds-surv-hist2d': Histogram Set 2 (HIST2D) Data in Survey Mode 'tds-surv-mamp': Maximum Amplitude (MAMP) Data in Survey Mode 'tds-surv-rswf-b': Regular Snapshot Waveform (RSWF) Magnetic Field Data in Survey Mode 'tds-surv-rswf-e': Regular Snapshot Waveform (RSWF) Electric Field Data in Survey Mode 'tds-surv-stat': Statistical (STAT) Data in Survey Mode 'tds-surv-tswf-b': Triggered Snapshot Magnetic Waveform (TSWF-B) in Survey Mode 'tds-surv-tswf-e': Triggered Snapshot Electric Waveform (TSWF-E) in Survey Mode Level 3: 'bia-density': Plasma density derived from probe-to-spacecraft potential and electron plasma frequency 'bia-density-10-seconds': same as above, but median value over 10 s interval 'bia-efield-10-seconds': Electric field vector in SRF. Median value over 10 s interval 'bia-scpot-10-seconds': Spacecraft potential with respect to plasma. Median value over 10 s interval 'tnr-fp': Plasma frequency value derived by the plasma peak tracking (Thermal Noise Receiver (TNR)) level: str Data level (default: l2) suffix: str The tplot variable names will be given this suffix. By default, no prefix is added. Default: '' prefix: str The tplot variable names will be given this prefix. By default, no prefix is added. Default: '' get_support_data: bool Data with an attribute "VAR_TYPE" with a value of "support_data" will be loaded into tplot. By default, only loads in data with a "VAR_TYPE" attribute of "data". varformat: str The file variable formats to load into tplot. Wildcard character "*" is accepted. By default, all variables are loaded in. varnames: list of str List of variable names to load (if not specified, all data variables are loaded) downloadonly: bool Set this flag to download the CDF files, but not load them into tplot variables notplot: bool Return the data in hash tables instead of creating tplot variables no_update: bool If set, only load data from your local cache time_clip: bool Time clip the variables to exactly the range specified in the trange keyword Returns ---------- List of tplot variables created. """ return load(instrument='rpw', trange=trange, level=level, datatype=datatype, prefix=prefix, suffix=suffix, get_support_data=get_support_data, varformat=varformat, varnames=varnames, downloadonly=downloadonly, notplot=notplot, time_clip=time_clip, no_update=no_update)