- 积分
- 1581
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-3-20
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
要做高原涡的统计,所以弄了个循环出图的grads程序,用q w2xy的命令,也找了相关的帖子看了,但是能够出高度场的图,但是图中没有框,请问各位大神,我的程序到底是哪里有问题呢?下面是我的程序。
'reinit'
'sdfopen d:\gyw\2015.nc'
'enable print d:\500-2015.gmf'
i = 1
while(i <= 368)
'set lon 30 150'
'set lat 10 60'
'set grid off'
'set grads off'
'set t 'i''
'set gxout contour'
'd z/100'
'set gxout vector'
'set cthick 8'
'd skip(u,2);v'
'draw title 'i''
'q w2xy 74 25'
x1=subwrd(result,3)
y1=subwrd(result,6)
'q w2xy 104 40'
x2=subwrd(result,3)
y2=subwrd(result,6)
'set line 116'
'draw rec'x1' 'y1' 'x2' 'y2''
'print'
'c'
i = i + 1
endwhile
'disable print'
|
|