;+ ; NAME: thm_crib_overplot ; ; PURPOSE: this crib describes how to generate overview plots ; if there are any arguments or features for these ; procedures you would like to request, please feel ; free to ask. ; ; $LastChangedBy: pcruce $ ; $LastChangedDate: 2013-09-19 11:14:02 -0700 (Thu, 19 Sep 2013) $ ; $LastChangedRevision: 13081 $ ; $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_1_00/projects/themis/examples/basic/thm_crib_overplot.pro $ ;- ;To get the single-spacecraft overview plot thm_gen_overplot, probe='d', date='2010-04-05' stop ;set the /makepng keyword to get output files, this will give the full ;day file, and the six-hour ones ;to get FGM tohban plots thm_fgm_overviews, '2010-04-05', /nopng stop ;for the tohban plots, png files are done as a default, /nopng turns this ;off, also for these thedate is nota keyword ;ESA, SST are the same thm_esa_overviews, '2010-04-05', /nopng thm_sst_overviews, '2010-04-05', /nopng stop ;for the esa you get burst, reduced and full plots, for sst you get ;full and reduced plots. ;for the new memory plots, the date is a keyword input. (these really ;should be consistent..) thm_memory_plots, date = '2010-04-05', /nopng stop ;here is an example of how to create a moment overview plot ;this plot uses on-board moments whenever possible thm_fitmom_overviews,'2010-04-05','d' stop ;to make png's ;thm_fitmom_overviews,'2007-11-15','b',/makepng ;here is an example of how to create another moment overview plot ;this plot always uses ground processed moments thm_fitgmom_overviews,'2010-04-05','d' stop ;to make png's ;thm_fitmom_overviews,'2007-11-15','b',/makepng End