;************************************ ; CSM_Graphics: paleo_2.ncl ;************************************ ; ; These files are loaded by default in NCL V6.2.0 and newer ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" ;************************************ begin ;************************************ in = addfile("surf1.0000-0009.nc","r") T=in->TS(0,:,:) ; read in data lat = in->lat ; read in lat and lon lon = in->lon ;************************************ ; create paleo outline database ;************************************ oro=in->ORO(0,:,:) paleo_outline(oro,lat,lon,1.,"cretateous") ;*********************************** wks = gsn_open_wks("png","paleo") ; send graphics to PNG file res = True res@mpOutlineOn = True ; turn off map outline res@mpCenterLonF = 180 res@mpDataBaseVersion = "MediumRes" res@mpDataSetName = "./cretateous" plot = gsn_csm_contour_map(wks,T,res) end