cfdm.InteriorRing.nc_hdf5_chunksizes¶
-
InteriorRing.
nc_hdf5_chunksizes
(todict=False)[source]¶ Get the HDF5 chunking strategy for the data.
New in version (cfdm): 1.11.2.0
- Parameters
- Returns
None
orstr
orint
ordict
ortuple
ofint
The current chunking strategy when writing to a netCDF4 file. One of:
None
: No HDF5 chunking strategy has been defined. The chunking strategy will be determined at write time bycfdm.write
.'contiguous'
: The data will be written to the file contiguously, i.e. no chunking.int
orstr
: The size in bytes of the HDF5 chunks. A string represents a quantity of byte units. “Square-like” chunk shapes are preferred, maximising the amount of chunks that are completely filled with data values (see thecfdm.write
hdf5_chunks parameter for details). For instance a chunksize of 1024 bytes may be specified with any of1024
,'1024'
,'1024 B'
,'1 KiB'
,'0.0009765625 MiB'
, etc. Recognised byte units are (case insensitive):B
,KiB
,MiB
,GiB
,TiB
,PiB
,KB
,MB
,GB
,TB
, andPB
.tuple
ofint
: The maximum number of array elements in a chunk along each data axis. This chunking strategy may get automatically modified by methods that change the data shape (such asinsert_dimension
).dict
: If todict is True, the maximum number of array elements in a chunk along each axis. This chunking strategy may get automatically modified by methods that change the data shape (such asinsert_dimension
).