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","contour7a") ; Open X11 window. res = True ; No plot options desired. map = gsn_csm_contour_map(wks,veg,res) ; Call the gsn_csm function for ; drawing contours over a map. end