; ; Contours over a map exercise 2 ; begin diri = "$NCARG_ROOT/lib/ncarg/data/cdf/" tf = addfile(diri+"meccatemp.cdf","r") ; Open netCDF file. t = tf->t(0,:,:) ; Read in temperature data. wks = gsn_open_wks("x11","contourmap_ex02") ; Open X11 window res = True ; Plot options desired. res@gsnMaximize = True ; Maximize plot in frame. res@gsnAddCyclic = False ; Don't add a cyclic point. plot = gsn_csm_contour_map(wks,t,res) end