load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" begin tf = addfile("meccatemp.cdf","r") T = tf->t(0,:,:) ; T will have metadata attached. wks = gsn_open_wks("ps","contour2b") ; Open PS file called "contour2b.ps" res = True ; Set some plot options. res@cnLevelSelectionMode = "ManualLevels" ; Set contour levels manually res@cnMinLevelValF = 195 ; Minimum contour level res@cnMaxLevelValF = 328 ; Maximum contour level res@cnLevelSpacingF = 2.25 ; Contour level spacing plot = gsn_csm_contour_map(wks,T,res) ; Call the gsn_csm function for ; drawing contours over a map. end