- 积分
- 55955
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
发表于 2014-3-27 15:12:20
|
显示全部楼层
还是有些问题,wrf out的x, y, z坐标都是两套,比如x坐标有west_east和west_east_stag,后者比前者多一个数。你前面贴出来的U, V变量事实上x, y坐标是不一致的。我有一些问题希望有人能解答:
1、wrf为什么会这样处理?
2、能不能这样理解:west_east坐标指的是x方向格点的中心坐标,west_east_stag指的是x方向格点边界坐标?
3、实际绘图等处理中是不是应该先将stag坐标插值为非stag坐标(貌似NCL是这样处理的)?
前面帖子提到里的U, V变量的信息:
NC_FLOAT U(Time,bottom_top,south_north,west_east_stag);
U: FieldType = 104;
U: MemoryOrder = "XYZ";
U: description = "x-wind component";
U: units = "m s-1";
U: stagger = "X";
U: coordinates = "XLONG_U XLAT_U";
NC_FLOAT V(Time,bottom_top,south_north_stag,west_east);
V: FieldType = 104;
V: MemoryOrder = "XYZ";
V: description = "y-wind component";
V: units = "m s-1";
V: stagger = "Y";
V: coordinates = "XLONG_V XLAT_V";
|
|