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/popRemap.ncl" begin ;; setenv NCL_POP_REMAP /Users/notaro/noanthro ;; setenv NCL_POP_REMAP /fs/cgd/csm/mapping/maps a = addfile("noanthroF_spin1.pop.h.1133-06.nc","r") var = a->TEMP remap = PopLatLon(var,"gx1v3","1x1d","bilin","da","010808") out=addfile("noanthroF_spin1.pop.h.1133-06.remap.nc","c") filedimdef(out,"time",-1,True) out->TEMP=remap end