;*********************** ; h_lat_2.ncl ;*********************** load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl" ;=========================== begin fili = "mxclim.nc" ; filename f = addfile (fili , "r") ; add file u = f->U(0,:,:) ; get u for January wks = gsn_open_wks ("ps", "h_lat" ) ; open workstation ; =========================== ; Create a default plot ; =========================== ; note u is already on pressure levels. If this were model data, it ; would be necessary to interpolate from the hybrid coordinates to ; pressure levels. plot = gsn_csm_pres_hgt(wks, u, False ) end