- 积分
- 32
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2022-10-5
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
这是我自己编写的gs脚本,不知道为什么运行时没有报错但是也没有画出位势的最小值点,参考了一些画台风路径的脚本,想知道到底是哪里出了问题
'reinit'
'Sdfopen D:\ruanjian\download-nc\2022-6-18-27-ece6b8baff59.nc'
'set grads off'
'set grid off'
'set lat 30 60'
'set lon 90 145'
'set z 1'
'set xlint 5'
'set ylint 5'
'set ylopts 1 5 0.12'
'set xlopts 1 5 0.12'
'set mpdset hires cnworld'
'd z/100'
'define locx=minloc(min(z,lat=30,lat=60),lon=90, lon=145)'
'define locy=minloc(min(z,lon=90, lon=145),lat=30,lat=60)'
'd locx'
locxx=subwrd(result,4)
'd locy'
locyy=subwrd(result,4)
'q gr2xy 'locxx' 'locyy''
x1=subwrd(result,3)
y1=subwrd(result,6)
'set strsiz 0.2'
'set line 2'
'draw mark 3 'x1' 'y1' 0.5'
|
|