- 积分
- 115
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2023-9-19
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
从NSIDC下载的海冰运动格点数据,绘制矢量图时,要注意除了要附上属性,还需要乘以sin,cos做方向旋转。验证海冰运动方向是否画正确:十米风的方向与海冰运动方向只有微小偏差;读取u,v
fn2 = "motion/motion_uv_winter.nc" ;cm/s
f3 = addfile(fn2,"r")
u = f3->u
v = f3->v
;属性
u@lon2d = f3->longitude
v@lat2d = f3->latitude
;方向旋转
dtor = 0.0174533 ;; converts degrees to radians
rtheta = newlon
rtheta = newlon * dtor
rthetaC = conform(u,rtheta,(/2,3/))
u10rot = ( u * cos( rthetaC ) ) + ( v * sin( rthetaC ) )
v10rot = ( v * cos( rthetaC ) ) - ( u * sin( rthetaC ) )
copy_VarMeta(u,u10rot)
copy_VarMeta(v,v10rot)
|
|