;+ ; PROCEDURE: ; mms_cotrans_lmn_crib ; ; PURPOSE: ; Shows how to tranforms MMS vector fields to LMN (boundary-normal) coordinates ; using the Shue et al., 1998 magnetopause model ; ; Suggestions for this crib sheet: ; https://github.com/spedas/bleeding_edge/issues ; ; ;$LastChangedBy: egrimes $ ;$LastChangedDate: 2023-08-14 12:51:35 -0700 (Mon, 14 Aug 2023) $ ;$LastChangedRevision: 31999 $ ;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_6_0/projects/mms/examples/advanced/mms_cotrans_lmn_crib.pro $ ;- ; load the FGM data to be transformed mms_load_fgm, trange=['2015-10-16/13:05:35', '2015-10-16/13:07:25'], data_rate='brst', probe=2 ; transfrom the B-field in GSM coordinates to LMN coordinates ; perform the transformation from GSE coordinates to LMN coordinates using WIND data instead of OMNI data mms_cotrans_lmn, 'mms2_fgm_b_gsm_brst_l2_bvec', 'mms2_fgm_b_lmn_brst_l2_bvec', /wind tplot, 'mms2_fgm_b_lmn_brst_l2_bvec' stop ; note: internally, this transforms the input vector to GSM coordinates prior to transforming to LMN coordinates mms_cotrans_lmn, 'mms2_fgm_b_gse_brst_l2_bvec', 'mms2_fgm_b_lmn_brst_l2_bvec_wind', /wind tplot, 'mms2_fgm_b_lmn_brst_l2_bvec_wind' stop ; perform the transformation from GSE coordinates to LMN coordinates using 5-min HRO data instead of the 1-min HRO data mms_cotrans_lmn, 'mms2_fgm_b_gse_brst_l2_bvec', 'mms2_fgm_b_lmn_brst_l2_bvec', /min5 tplot, 'mms2_fgm_b_lmn_brst_l2_bvec' stop end