ncl中的一些基础(wrf)
(2014-02-21 19:13:52)
标签:
文化 |
分类: linux |
1、wrf_user_intrp3d(var3d,H,plot_type,loc_param,angle,res)
第一个是变量:var3d:the variable to interpolate. This can be an array
of up to 5 dimensions. the 2 right_most dimensions must be
bottom_top \south_north\west_east
第二个变量:插值的区域,或者是气压场或者是高度场。这个变量一定是三维变量。
第三个量:有两种类型一是”h",一是“v"。h代表插值水平方向,可以是气压,或者是高度。v代表插值垂直方向,垂直方向至少需要设定两个值,或者设置四个值(起始值,和终了值)
第四个量:这个值在我目前用到的范围内一般选择为0。当然还有其他,详情看wrf手册。
第五个量:前边设置的属性。
2、从区域中心做垂直剖线(angle=0)
plane
为中心格点的行列号,从区域中心做水平剖线。zz=wrf_user_intrp3d(z,z,"v",plane,angle,opts)