- 积分
- 1901
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-1-6
- 最后登录
- 1970-1-1
|
发表于 2016-4-21 12:10:57
|
显示全部楼层
本帖最后由 xuebiz 于 2016-4-21 12:16 编辑
addfiles
官网language_man文档:
-------------------------------------------------
Section 3.1.7 Spanning multiple files
The function addfiles (note the trailing ‘s’) provides the user with the ability to access
data spanning multiple files. This function can concatenate records (default; “cat”) or
"join" variables from different files by adding an extra dimension. In this example, we use
systemfunc (see section 5.8) to get a listing of all the ann* netCDF files in the current
directory.
fils = systemfunc("ls ann*.nc")
f = addfiles(fils,"r")
T = f[:]->T
------中文版--------------------------------------------------
多文件处理:
函数addfiles(注意多出s)能够存取多个文件的数据。如:
fils = systemfunc(“ls ann*,nc”)
f = addfiles(fils,”r”)
T = f[:]->T
这里合成的变量T将会跨度所有文件。
详见:
http://www.ncl.ucar.edu/Document/Functions/Built-in/addfiles.shtml
|
|