- 积分
- 755
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-6-17
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
以下信息是用ncl的printVarSummary打印出来的变量t的信息:其中最后两行提示错误,是什么错误啊???求解答,非气象专业的小白
谢谢了。。。
绘制等值线的程序,程序源代码:
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
begin
fi = addfile("./absolute.nc", "r")
t= fi->tem ; 温度数据
printVarSummary(t)
wks = gsn_open_wks("pdf", get_script_prefix_name())
gsn_define_colormap(wks,"WhBlGrYeRe")
res = True
plot = gsn_csm_contour_map(wks, t({5},:,:), res)
end
打印出来的变量t信息和提示的错误:
Variable: t
Type: short
Total Size: 62208 bytes
31104 values
Number of Dimensions: 3
Dimensions and sizes: [time | 12] x [lat | 36] x [lon | 72]
Coordinates:
time: [1..12]
lat: [87.5..-87.5]
lon: [-177.5..177.5]
Number Of Attributes: 5
long_name : CRU_Global_1961-1990_Mean_Monthly_Surface_Temperature_Climatology
units : celsius
scale_factor : 0.01
valid_min : -9000
missing_value : -9999
fatal:Coordinate subscript type mismatch. Subscript (0) can not be coerced to type of coordinate variable
fatal:Execute: Error occurred at or near line 20 in file ztry.ncl
请问怎么解决啊?谢谢各位大神了。。。
|
|