xray.Dataset.chunk

Dataset.chunk(chunks=None)

Coerce all arrays in this dataset into dask arrays with the given chunks.

Non-dask arrays in this dataset will be converted to dask arrays. Dask arrays will be rechunked to the given chunk sizes.

If neither chunks is not provided for one or more dimensions, chunk sizes along that dimension will not be updated; non-dask arrays will be converted into dask arrays with a single block.

Parameters:

chunks : int or dict, optional

Chunk sizes along each dimension, e.g., 5 or {'x': 5, 'y': 5}.

Returns:

chunked : xray.Dataset