;+ ; PROCEDURE: ; mms_load_edp ; ; PURPOSE: ; Load data from the EDP (Electric field Double Probes) instrument ; ; KEYWORDS: ; trange: 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'] ; probes: list of probes, valid values for MMS probes are ['1','2','3','4']. ; if no probe is specified the default is probe '1' ; level: indicates level of data processing. Current levels include: ; ['l1a', 'l1b', 'l2', 'l2pre', 'ql', 'sitl'] ; datatype: data types include currently include ['dce', 'dcv', 'ace', 'hmfe']; default is all ; data_rate: instrument data rates include ['brst', 'fast', 'slow', 'srvy']. ; the default is 'fast' ; local_data_dir: local directory to store the CDF files; should be set if you're on ; *nix or OSX, the default currently assumes Windows (c:\data\mms\) ; source: specifies a different system variable. By default the MMS mission ; system variable is !mms ; get_support_data: load support data (defined by support_data attribute in the CDF) ; tplotnames: names for tplot variables ; no_color_setup: don't setup graphics configuration; use this keyword when you're ; using this load routine from a terminal without an X server running ; do not set colors ; time_clip: clip the data to the requested time range; note that if you do not ; use this keyword you may load a longer time range than requested ; no_update: set this flag to preserve the original data. if not set and newer ; data is found the existing data will be overwritten ; suffix: appends a suffix to the end of the tplot variable name. this is useful for ; preserving original tplot variable. ; varformat: should be a string (wildcards accepted) that will match the CDF variables ; that should be loaded into tplot variables ; cdf_filenames: this keyword returns the names of the CDF files used when loading the data ; cdf_version: specify a specific CDF version # to load (e.g., cdf_version='4.3.0') ; latest_version: only grab the latest CDF version in the requested time interval ; (e.g., /latest_version) ; min_version: specify a minimum CDF version # to load ; spdf: grab the data from the SPDF instead of the LASP SDC (only works for public access) ; ; NOTES: ; Please always use error bars on E-field data ; loaded with this routine; see the crib sheet ; mms_load_edp_crib.pro for an example of using ; the error bars ; ; Have questions regarding this load routine, or its usage? ; Send me an email --> egrimes@igpp.ucla.edu ; ; EXAMPLE: ; See mms_load_edp_crib.pro for usage examples. ; ; set the time frame ; MMS1> timespan, '2015-12-15', 1, /day ; load L2 edp dce data for all probes ; MMS1> mms_load_edp, data_rate='slow', probes=[1, 2, 3, 4], datatype='dce', level='L2' ; ; HISTORY: ; - Created by Matthew Argall @UNH ; - Minor updates to defaults by egrimes@igpp ; ;$LastChangedBy: egrimes $ ;$LastChangedDate: 2016-03-15 14:29:09 -0700 (Tue, 15 Mar 2016) $ ;$LastChangedRevision: 20468 $ ;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/trunk/projects/mms/edp/mms_load_edp.pro $ ;- pro mms_load_edp, trange = trange, probes = probes, datatype = datatype, $ level = level, data_rate = data_rate, $ local_data_dir = local_data_dir, source = source, $ get_support_data = get_support_data, $ tplotnames = tplotnames, no_color_setup = no_color_setup, $ time_clip = time_clip, no_update = no_update, suffix = suffix, $ varformat = varformat, cdf_filenames = cdf_filenames, cdf_version = cdf_version, $ latest_version = latest_version, min_version = min_version, spdf = spdf if undefined(probes) then probes = [1, 2, 3, 4] if undefined(datatype) then datatype = ['dce'] if undefined(level) then level = ['l2pre'] if undefined(suffix) then suffix = '' if undefined(data_rate) then data_rate = 'fast' mms_load_data, trange = trange, probes = probes, level = level, instrument = 'edp', $ data_rate = data_rate, local_data_dir = local_data_dir, source = source, $ datatype = datatype, get_support_data = get_support_data, $ tplotnames = tplotnames, no_color_setup = no_color_setup, time_clip = time_clip, $ no_update = no_update, suffix = suffix, varformat = varformat, $ cdf_filenames = cdf_filenames, cdf_version = cdf_version, $ latest_version = latest_version, min_version = min_version, spdf = spdf end