- 积分
- 304
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-3-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
想用month_to_annual函数把月资料转化为年资料,总报错说有一个变量没有定义,跪求各位大神帮忙看一下。
脚本如下
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
begin
f=addfile("E:/eof/HadISST_sst.nc","r")
x = f->sst(361:1669:1,:,:)
x_year = month_to_annual(x,1)
x_year&year = ispan(1900,2009,1)
b=addfile("1900-2009.nc","c")
b->sst_year=x_year
end
|
|