- 积分
- 3926
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-10-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
各位大神,我是二维日数据,先用calculate_monthly_values处理成了月数据,但是再用month_to_season就提示出错了,错误为
(0) contributed: month_to_season: rank=2
(0) ----- rank currently not handled -----
fatal:Variable (xSea) is undefined
fatal:["Execute.c":8640]:Execute: Error occurred at or near line 7725 in file $NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl
请问大家这个是什么问题啊,官网没有说xSea需要定义啊
- begin
- diro = "/disk02/hg-ws/data40G/quanguo/sta/" ; Output directory
- filo = "usemeteo.nc"
- ff = addfile (diro + filo, "r")
- ndim1 = 2003
- nstp = 17532
- time = ff->time
- id = ff->id
- lat = ff->id@lat
- lon = ff->id@lon
- clod = ff->clod
- rainday = ff->dayrain
- sun = ff->sun
- lowclod = ff->lowclod
- lowMonthAvg = calculate_monthly_values(lowclod, "avg", 0, False)
- printVarSummary(lowMonthAvg)
- print(lowMonthAvg&time)
- lowMonthAvg&time = cd_calendar(lowMonthAvg&time,1)
- ;print(ss)
- jja = month_to_season(lowMonthAvg, "JJA")
- ;lowyr = month_to_annual(lowMonthAvg, 1)
- printVarSummary(jja)
- end
复制代码
|
|