- 积分
- 810
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-9-23
- 最后登录
- 1970-1-1
|
NCL
系统平台: |
|
问题截图: |
- |
问题概况: |
求助:我这有个提取最大风速的脚本,如何得到其对应的坐标点呢 |
我看过提问的智慧: |
看过 |
自己思考时长(天): |
7 |
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
求助:我这有个提取最大风速的脚本,只能输出最大风速值,请问大神们如何添加命令可以得到最大风速对应的坐标呢(经纬度)。
a = addfile("wrfout_d03_2017-08-22_06:00:00.nc","r")
times = wrf_user_getvar(a,"times",-1) ; get all times in the file
ntimes = dimsizes(times) ;number of times in the file
do i=0, ntimes-1
u = wrf_user_getvar(a,"U10",i)
v = wrf_user_getvar(a,"V10",i)
uv2d = sqrt(u*u+v*v)
print( i +" : " + max(uv2d))
end do
end
|
|