- 积分
- 10657
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-10-10
- 最后登录
- 1970-1-1
|
发表于 2014-10-29 16:00:52
|
显示全部楼层
本帖最后由 longlivehj 于 2014-10-29 16:02 编辑
之前遇到过一个类似的问题,虽然不是处理wrf数据。刚刚又确认了一下,结果如下。原因还没有去仔细研究。
ncl 0> files = addfiles(systemfunc("ls air.199*"), "r")
ncl 1> printVarSummary(files)
Variable: files
Type: list <concat | fifo>
Total items: 10
ncl 2> printVarSummary(files[:])
fatal:_NclBuildConcatArray: Arrays of files are not yet supported
fatal:["Execute.c":8565]:Execute: Error occurred at or near line 2
ncl 3> f = files
ncl 4> f = files[:]
fatal:_NclBuildConcatArray: Arrays of files are not yet supported
fatal:["Execute.c":8565]:Execute: Error occurred at or near line 4
|
|