- 积分
- 3301
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-7-24
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
数据是nc的云覆盖资料,单层192*94的,中文位置换你自己的,第一次用re(),不知道这么写对不对,单从结果看还行
GS如下:
yr=起始年
while(yr<=中止年)
'sdfopen 路径\tcdc.eatm.gauss.'yr'.nc'
'set gxout fwrite'
'set fwrite 路径\cloud.'yr''
'set x 1 192'
'set y 1 94'
*判断闰年/非闰年
rc=math_fmod(yr,4)
if(rc=0)
p=366
else
p=365
endif
t=1
while(t<=p)
'set t 't''
*转分辨率
'd re(tcdc,144,linear,0,2.5,73,linear,-90,2.5,bl)'
t=t+1
endwhile
'disable fwrite'
'close 1'
yr=yr+1
endwhile
'reinit'
|
评分
-
查看全部评分
|