; ; Contours over a map exercise 1 ; 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_ex01") ; Open X11 window res = True ; Plot options desired. res@gsnMaximize = True ; Maximize plot in frame. plot = gsn_csm_contour_map(wks,t,res) end