- 积分
- 277
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-4-18
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
将micaps 第三类数据 转为grads支持的GRD格式,编译连接都没有问题,但是运行不了,错误代码是forrt1:severe(159):program exception——breakpoint,
实在不清楚哪里有问题,希望得到大家的帮助。
程序如下:
program micaps
implicit none
character*8 stid
real lon,lat,h,rain,tim
integer nlev,flag
tim=0.0
nlev=1
flag=1
open(1,file='e:\hejing\atmosphere\rainstorm\jiami\1208\12082117.000',status='old')
open(2,file='e:\hejing\atmosphere\rainstorm\grads\12082117.grd',status='replace')
read(1,*);read(1,*);read(1,*);read(1,*);read(1,*);read(1,*);read(1,*);read(1,*);read(1,*)
read(1,*);read(1,*)
10 read(1,*,end=100)stid,lon,lat,h,rain
write(2)stid,lat,lon,tim,nlev,flag,rain
go to 10
100 continue
close(1)
nlev=0
write(2)stid,lat,lon,tim,nlev,flag,rain
close(2)
end
|
|