Determine chunking settings for NetCDF variable
[storage,chunkSizes] = netcdf.inqVarChunking(ncid,varid)
[storage,chunkSizes] = netcdf.inqVarChunking(ncid,varid)
returns
the type of chunking and the dimensions of a chunk for the NetCDF
variable specified by varid
, in the file or group
specified by ncid
.
|
Identifier of NetCDF file, returned by |
|
Identifier of NetCDF variable, returned by |
|
Character vector specifying if NetCDF breaks the data into chunks
when writing to a file. The value |
|
Array specifying the dimensions of the chunk. Because MATLAB® uses FORTRAN-style ordering, the order of
dimensions in If the storage type specified is |
This example opens the NetCDF sample dataset and gets the values of chunking parameters associated with a variable.
ncid = netcdf.open('example.nc','NOWRITE'); groupid = netcdf.inqNcid(ncid,'grid1'); varid = netcdf.inqVarID(groupid,'temp'); [storage,chunkSize] = netcdf.inqVarChunking(groupid,varid); netcdf.close(ncid);
This function corresponds to the nc_inq_var_chunking
function
in the netCDF library C API.
For copyright information, read the netcdfcopyright.txt
and mexnccopyright.txt
files.