- 积分
- 363
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-11
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 没有,如果 于 2018-6-24 09:08 编辑
请问ncl调用数据总是出现这个错误是什么原因啊
fatal:NclOneDValGetClosestIndex: Non-monotonic coordinate value being used, can't complete coordin ate subscript
fatal:Could not obtain coordinate indexes, unable to perform subscript
fatal:["Execute.c":8640]:Execute: Error occurred at or near line 15 in file 11.ncl
fatal:Undefined identifier: (sh) is undefined, can't continue
fatal:["Execute.c":8640]:Execute: Error occurred at or near line 23 in file 11.ncl
warning:ContourPlotInitialize: no valid values in scalar field; ContourPlot not possible:[errno=11 01]
warning:VectorPlotInitialize: no valid values in vector field; VectorPlot not possible:[errno=1101 ]
warning:VectorPlotSetValues: no valid values in vector field; VectorPlot not possible:[errno=1101]
warning:StreamlinePlotInitialize: no valid values in vector field; StreamlinePlot not possible:[er rno=1101]
代码a=addfile("d:\uv.nc","r")
b=addfile("d:\newzh.nc","r")
;printVarSummary(b)
;printVarSummary(a)
lat=a->latitude
lon=a->longitude
u=short2flt(a->u(98,{850},:,:))
v=short2flt(a->v(98,{850},:,:))
sh=short2flt(b->q(98,{850},:,:))
|
|