;================================================; ; mptick_1.ncl ;================================================; ; ; Concepts illustrated: ; - Drawing a default cylindrical equidistant map ; - Drawing default tickmarks on a cylindrical equidistant map ; ;================================================; ; ; These files are loaded by default in NCL V6.2.0 and newer ; 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("png","mptick") ; send graphics to PNG file plot = gsn_csm_map_ce(wks,False) ; draw global map end