from .load import load
from typing import List, Union, Optional
# This routine was moved out of __init__.py. For preceding revision history, please see
# that file.
[docs]
def rapid(trange:List[str]=['2016-11-5', '2016-11-6'],
probe:Union[str,List[str]]='1',
datatype:str='pp',
prefix:str='',
suffix:str='',
get_support_data:bool=False,
varformat:str=None,
varnames:List[str]=[],
downloadonly:bool=False,
notplot:bool=False,
no_update:bool=False,
time_clip:bool=False,
force_download=False) -> List[str]:
"""
Load data from the Cluster Research with Adaptive Particle Imaging Detectors
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']
Default: ['2018-11-5', '2018-11-6']
probe: list of str
List of probes to load. Valid options: '1','2','3','4'
Default: '1'
datatype: str
Data type; Valid options:
Default: 'up'
prefix: str
The tplot variable names will be given this prefix.
Default: ''
suffix: str
The tplot variable names will be given this suffix.
Default: ''
get_support_data: bool
If True, Data with an attribute "VAR_TYPE" with a value of "support_data"
will be loaded into tplot.
varformat: str
The file variable formats to load into tplot. Wildcard character
"*" is accepted. If empty or None, all variables will be loaded.
Default: None (all variables loaded)
varnames: list of str
List of CDF variable names to load (if empty or not specified,
all data variables are loaded)
Default: [] (all variables loaded)
downloadonly: bool
Set this flag to download the CDF files, but not load them into
tplot variables
Default: False
notplot: bool
Return the data in hash tables instead of creating tplot variables
Default: False
no_update: bool
If set, only load data from your local cache
Default: False
time_clip: bool
Time clip the variables to exactly the range specified in the trange keyword
Default: False
force_download: bool
Download file even if local version is more recent than server version
Default: False
Returns
-------
list of str
List of tplot variables created.
Examples
--------
>>> import pyspedas
>>> from pyspedas import tplot
>>> rapid_vars = pyspedas.projects.cluster.rapid(trange=['2003-11-01','2003-11-02'],probe=['1','2'])
>>> tplot([ 'J_e_lo__C1_PP_RAP', 'J_e_hi__C1_PP_RAP', 'J_e_lo__C2_PP_RAP', 'J_e_hi__C2_PP_RAP'])
"""
return load(instrument='rapid', trange=trange, probe=probe, datatype=datatype, prefix=prefix, suffix=suffix, get_support_data=get_support_data, varformat=varformat, varnames=varnames, downloadonly=downloadonly, notplot=notplot, no_update=no_update, time_clip=time_clip, force_download=force_download)