- 积分
- 343
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-4-2
- 最后登录
- 1970-1-1
|
发表于 2016-4-7 22:38:04
|
显示全部楼层
现成有一个readme文档,下载的时候自己应该研究研究
The beginning year of the data is 1951 and the ending year is the current year.
All values are integers. The units of temperature and precipitation are 0.1 centigrade and 1mm respectively.
for example:
the current year is 2004
then the number of the years of the data m=2004-1951+1=54
the following Fortran fragment will read the data:
parameter(n=160,m=54)
iyb=1951
integer it(n,m)
open(11,file='R1601.txt')
read(11,*)((it(i,j),i=1,n),j=1,m)
close(11)
|
|