我有一个 netCDF 文件
5 dimensions (a,b,c,d,e)
100 variables (x1,...,x100)
变量具有不同的维度组合。
outx <- nc_open('testH.nc') #Open the NetCDF file
varx <- names(outx[['var']]) #Get all the variables
我使用这个读取了所有变量:
t <- sapply(varx, function(x) ncvar_get(outx, x), USE.NAMES = TRUE)
但是,我只想一起读取对应于x
和y
维度的变量。
我怎样才能做到这一点?