- 积分
- 94
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2020-4-1
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 hpa666 于 2020-4-7 09:45 编辑
总是出现Data Request Warning: Request is completely outside file limits错误,由于只是一个站的资料,就没有用站点格式,结果也是没有的,画不出来图,请大佬们帮忙看一下。
这是我的数据输出语句,用的Fortran
open(12,file='F:/station_operation1.grd',access='direct',status='replace',form='unformatted',recl=18627*9)
irec = 1
do m=1,9
do n=1,18627
write(12,rec=irec) h(n,m)
irec = irec + 1
end do
end do
close(12)
这是我的ctl文件
DSET F:/station_operation1.grd
TITLE sation_operation1
UNDEF -9.9e30
XDEF 1 linear 0 1
YDEF 1 linear 0 1
ZDEF 1 levels 600
TDEF 18627 linear 00Z01JAN1957 1dy
VARS 9
sp 0 99 Surface_Pressure
Ta 0 99 averange_temperature
Tx 0 99 maximum_temperature
Tn 0 99 minimum_temperature
h 0 99 humidity
pr 0 99 prep
w 0 0 wind
ti 0 99 sun_time
z 1 99 height
ENDVARS
这是gs文件
'open D:/bysj/important/data/result/station_operation1.ctl'
'set lev 600'
'set t 18627'
'd sp'
'printim D:/bysj/important/data/result/1.png white'
|
|