del_data, '*'
print, 'at each stop point type .c to continue with the crib'
stop
tplot_title = 'THEMIS FBK Spectra Examples'
tplot_options, 'title', tplot_title
tplot_options, 'xmargin', [ 15, 10]
tplot_options, 'ymargin', [ 5, 5]
timespan, '2007-06-23', 1.0, /day
thm_load_fbk, probe = 'a'
tplot_names
print, 'We just loaded the level 2 fbk data from probe alpha'
stop
tplot, [ 'tha_fb_scm1']
print, 'We just plotted the search coil magnetometer boom 1 data'
stop
tlimit, '2007-06-23/03:30:00', '2007-06-23/05:30:00'
print, 'Now we adjusted the time limit to zoom in'
stop
tlimit, '2007-06-23/00:00:00', '2007-06-24/00:00:00'
print, 'Now we zoom back out'
stop
tplot, [ 'tha_fb_*']
print, 'We just plotted all the fb data on one plot'
print, 'The line plots(fb_hff) are the max and average of the high frequency filter output from the digital fields board'
print, 'fb_edc12 is the output of electrical boom one minus electrical boom two, dc filtered'
print, 'As mentioned above, fb_scm1 is the search coil magnetometer data boom 1'
stop
del_data,'*'
thm_load_fbk,probe=['a','b'],datatype='fb_scm1'
tplot_names
print,'now we just loaded all the fb_scm1 data from probes alpha and beta'
stop
tplot, [ 'tha_fb_scm1','thb_fb_scm1']
print, 'Now we plot all the data'
stop
del_data, '*'
print, 'We deleted all the data'
stop
thm_load_fbk, level=1,/get_support_data
tplot_names
print, 'We just loaded all the level 1 data from all probes, this includes uncalibrated values(fb1,fb2,fbh),calibrated values(fb_*), and values used to calibrate(fb1_src)'
stop
tplot, 'thc_*'
print, 'and plotted the themis c data using the * wildcard'
stop
thm_load_fbk, /valid_names
print, 'Use the /valid_names option to get a list of valid parameters for the fbk data type'
print, 'Now we are done'
end