- 积分
- 639
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-3-15
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
以下是我gs截取dat数据的脚本,grads画图时不正确,错误如下:(即使能出图,图也是一团糟,就像涂鸦一样)
错误:Low Level I/O Error: Read error on data file
Data file name = d:\gradsgraph\fifth\hgt850-700.dat
Error reading 576 bytes at location 14807804
Data Request Error: Error for variable 'hgt'
Error ocurred at column 1
DISPLAY error: Invalid expression
Expression = hgt
gs脚本:
'reinit'
*时间:1958年1月-1999年12月 t=5 508
*水平范围:经度为0-360; 纬度为20°S-20°N。x=1 144 y=29 45
*垂直高度:850hPa-700hPa,共3层 z=3 5
'open d:/gradsgraph/fifth/hgt-mon.ctl'
'set gxout fwrite'
'set fwrite d:/gradsgraph/fifth/hgt850-700.dat'
'set x 1 144'
'set y 29 45'
mt=5
while(mt<=508)
'set t 'mt
h=3
while(h<=5)
'set z 'h
'd hgt'
h=h+1
endwhile
mt=mt+1
endwhile
'disable fwrite'
;
|
|