- 积分
- 195
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-10-12
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我的程序如下:
it=1
while(it<=12)
'reinit'
'sdfopen f:\NCEP\hgt.mon.mean.nc'
'set dfile 1'
'set x 29 57'
'set y 43 60'
'set z 6'
'set t 273 793'
'define h1=ave(hgt,t='273',t='633')'
'define h2=ave(hgt,t='634',t='793')'
'define h=h2-h1'
'set gxout contour'
'set ccolor rainbow'
'set cthick 10'
'set clopts 1 9 0.19'
'set xlopts 1 9 0.19'
'set ylopts 1 9 0.19'
'define h1=ave(hgt,t='272+it',t='632','12')'
'define h2=ave(hgt,t='633+it',t='792','12')'
'define h=h2-h1'
'd h'
'printim F:\NCEP\huanliu-'it'.png white x2000 y1500'
'c'
it=it+1
endwhile
目的:计算两个时段逐月的位置高度平均值之差并画图
运行程序的时候能看到画出来的图,但是输出的图片却是1kb的白纸,也就是什么都没有
我这里面有什么地方错误了请帮忙指出,非常感谢
|
|