;+
;PROCEDURE: IUG_CRIB_MF_RISH.PRO
; A sample crib sheet that explains how to use the "iug_crib_mf_rish.pro"
; procedure. You can run this crib sheet by copying & pasting each
; command below (except for stop and end) into the IDL command line.
; Or alternatively compile and run using the command:
; .run iug_crib_mf_rish
;
;Written by: A. Shinbori, Jul 25, 2012
;Last Updated: A. Shinbori, Jun 1, 2013
;-
;Initializes system variables for themis:
;=========================================
thm_init
;*************************
;Pameungpeuk mf radar:
;*************************
;Specify timespan:
;=================
timespan,'2010-02-12',28,/day
;Load all the data of zonal, meridional and vertical wind velocities
;at Pameungpeuk for the selected parameter in timespan:
;Tplot parameters are 'iug_mf_pam_uwnd','iug_mf_pam_vwnd','iug_mf_pam_wwnd':
;
; uwnd = zonal wind:
; vwnd = meridional wind
; wwnd = vertical wind
;
;===============================================================================
iug_load_mf_rish,site='pam'
;Plot time-height distribution of zonal, merdional and vertical wind:
;====================================================================
tplot,['iug_mf_pam_uwnd','iug_mf_pam_vwnd','iug_mf_pam_wwnd']
;Change in the y-range (altitude):
;=================================
ylim, 'iug_mf_pam_uwnd', 50, 100
ylim, 'iug_mf_pam_vwnd', 50, 100
ylim, 'iug_mf_pam_wwnd', 50, 100
;Change in the z-range (color bar scale):
;========================================
zlim, 'iug_mf_pam_uwnd', -100, 100
zlim, 'iug_mf_pam_vwnd', -100, 100
zlim, 'iug_mf_pam_wwnd', -10, 10
tplot
stop
; Set up the plot time range of zonal and meridional winds in the thermosphere:
;===============================================================================
tlimit, '2010-02-12 00:00:00', '2010-02-15 00:00:00'
tplot
;*************************
;Pameungpeuk mf radar:
;*************************
;Specify timespan:
;=================
timespan,'2010-02-12',28,/day
;Load all the data of zonal, meridional and vertical wind velocities
;at Pontianak for the selected parameter in timespan:
;Tplot parameters are 'iug_mf_pon_uwnd','iug_mf_pon_vwnd','iug_mf_pon_wwnd':
;
; uwnd = zonal wind:
; vwnd = meridional wind
; wwnd = vertical wind
;
;===============================================================================
iug_load_mf_rish,site='pon'
;Plot time-height distribution of zonal, merdional and vertical wind:
;====================================================================
tplot,['iug_mf_pon_uwnd','iug_mf_pon_vwnd','iug_mf_pon_wwnd']
;Change in the y-range (altitude):
;=================================
ylim, 'iug_mf_pon_uwnd', 50, 100
ylim, 'iug_mf_pon_vwnd', 50, 100
ylim, 'iug_mf_pon_wwnd', 50, 100
;Change in the z-range (color bar scale):
;========================================
zlim, 'iug_mf_pon_uwnd', -100, 100
zlim, 'iug_mf_pon_vwnd', -100, 100
zlim, 'iug_mf_pon_wwnd', -10, 10
tplot
stop
; Set up the plot time range of zonal and meridional winds in the thermosphere:
;===============================================================================
tlimit, '2010-02-12 00:00:00', '2010-02-15 00:00:00'
tplot
end