- 积分
- 10770
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-6-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我用论坛的方法处理,一个时次的可以出来图,但改为批处理多个时次的就不行了。
这是我单个时次的ctl文件:
dset e:\fnl\FY2E_TBB_IR1_OTG_20100621_2000.AWX
title 2010 twpice fy2e_tbb
options template
options yrev
* yrev表示y轴反向
undef 0.0
xdef 1201 linear 45 0.1
ydef 1201 linear -60 0.1
zdef 1 linear 1000 1
tdef 1 linear 12z21jun2010 1hr
vars 1
tbb 1 -1,40,1 Geopotential Heights (m)
endvars
单个时次的gs文件:
'reinit'
'open E:\fnl\tbb1.ctl'
'set lat 24 29'
'set lon 118 120'
'set cmax -32'
'set mpdset cnworld'
i=1
while(i<=1)
'set t 'i
'set xlint 1'
'set ylint 0.5'
'd tbb-173.15'
'cbarn 1.0 0 5.5 0.2'
'printim e:\tbb2010062_19_'i+1'.png white'
i=i+1
endwhile
;
单个时次的可以出来图。
以下是我批处理的ctl:
dset E:\fnl\FY2E_TBB_IR1_OTG_2010%m2%d2_%h200.AWX
title 2010 twpice fy2e_tbb
options template
options yrev
* yrev表示y轴反向
undef 0.0
xdef 1201 linear 45 0.1
ydef 1201 linear -60 0.1
zdef 1 linear 1000 1
tdef 4 linear 12z21jun2010 1hr
vars 1
tbb 1 -1,40,1 Geopotential Heights (m)
endvars
;
批处理的gs文件:
'reinit'
'open E:\fnl\tbb1.ctl'
'set lat 24 29'
'set lon 118 120'
'set cmax -32'
'set mpdset cnworld'
i=1
while(i<=4)
'set t 'i
'set xlint 1'
'set ylint 0.5'
'd tbb-173.15'
'cbarn 1.0 0 5.5 0.2'
'printim e:\tbb2010062_19_'i+1'.png white'
i=i+1
endwhile
;
这样就出不来图了,提示如下错误:
cannot contour grid -—all undefined values。
实在找不出错在哪儿啊,求助各位指点!
|
|