load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" begin print("Warning: this example can be slow!") f = addfile("fh.0000_tl.press_gr.egrdsf.partial.nc","r") veg = f->VGTYP_96_SFC veg@lat2d = f->gridlat_96 veg@lon2d = f->gridlon_96 wks = gsn_open_wks("ps","contour7b") ; Open X11 window. res = True ; Plot options desired. res@gsnMaximize = True ; Maximize plot in frame. res@mpProjection = "LambertConformal" res@mpLambertMeridianF = -95 ; Central meridian res@mpLambertParallel1F = 33 ; Two parallels res@mpLambertParallel2F = 5 res@mpLimitMode = "LatLon" res@mpMinLatF = 24 ; Zoom in on res@mpMaxLatF = 50 ; a smaller res@mpMinLonF = -125 ; latitude and res@mpMaxLonF = -65 ; longitude area. map = gsn_csm_contour_map(wks,veg,res) ; Call the gsn_csm function for ; drawing contours over a map. end