;================================================; ; mptick_2.ncl ;================================================; ; ; Concepts illustrated: ; - Drawing a default cylindrical equidistant map ; - Changing the style of the map tickmarks labels ; - Turning on map tickmark labels with degree symbols ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" ; ================================================; begin wks = gsn_open_wks("ps","mptick") ; open a ps file res = True ; plot mods desired res@pmTickMarkDisplayMode = "Always" ; turn on built-in tickmarks plot = gsn_csm_map_ce(wks,res) ; draw global map end