cf.Data.nc_hdf5_chunksizes

Data.nc_hdf5_chunksizes()[source]

TODO

Note

Chunksizes are cleared from the output of methods that change the data shape.

Note

Chunksizes are ignored for netCDF3 files that do not use HDF5.

See also

New in version 1.7.2:

nc_clear_hdf5_chunksizes, nc_set_hdf5_chunksizes

Returns:
tuple

TODO The chunk sizes prior to the new setting, or the current current sizes if no new values are specified.

Examples:

>>> d.shape
(1, 96, 73)
>>> d.nc_set_hdf5_chunksizes([1, 48, 73])
>>> d.nc_hdf5_chunksizes()
(1, 48, 73)
>>> d.nc_clear_hdf5_chunksizes()
(1, 48, 73)
>>> d.nc_hdf5_chunksizes()
()