登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 求学的双鱼 于 2021-6-3 10:45 编辑
根据所提供的数据资料,计算1-12月多年平均(1971年-2000年)海温场,并绘出1月海温多年平均图;注意原始nc数据自1850年1月开始;
定义变量tem时,无法识别sst。 但sst在sst2.ctl声明过了呀?grd文件也生成了
dset c:/data/sst2.grd title created 12/2013 from data provided by JRA undef 1e+20 xdef 360 linear 0 1 ydef 180 linear -89.5 1 zdef 1 linear 0 1 tdef 360 linear 00Z01JAN1971 1mo vars 1 sst 0 -999 Monthly Means of Sea Surface Temperature endvars
'reinit' 'open c:\data\sst2.ctl' 'set t 1 12' 'define tem=ave(sst,t+0,t=360,12)' 'set t 1' 'd tem' 'draw title average' 'printim d:\1yuepingjun.gif gif white' ;
'reinit'
'sdfopen c:/data/sst.mon.mean.nc'
'set gxout fwrite'
'set fwrite c:/data/sst2.grd'
it=1409
while(it<=1768)
'set lon 0 360'
'set lat -89.5 -89.5'
'set t 'it''
'd sst'
it=it+1
endwhile
'disable fwrite'
;
|