| Contour Plots | |
|
This contour plot reads in a ccm History Tape that has been converted into a netCDF file. It displays four different elements (U,V,T,and OMEGA) on separategraphs and then goes on to plot all four together using a panel plot. |
begin
diri = "/tmp/scavarda/"
f = addfile (diri+fili, "r")
V = f->V({349.5},{250},:,:) ; Meridonial Wind Component
T = T - 273.15 ;convert Kelvin -> Celsius
xwks = gsn_open_wks("x11","wind")
genCmapManualRes(xwks, resources ,"blue","red")
plot(0) = gsn_contour(xwks,U,resources)
delete(plot)
end