cf.RaggedIndexedContiguousArray.to_dask_array¶
-
RaggedIndexedContiguousArray.
to_dask_array
(chunks='auto')[source]¶ Convert the data to a
dask
array.New in version 3.14.0.
- Parameters
- chunks:
int
,tuple
,dict
orstr
, optional Specify the chunking of the returned dask array.
Any value accepted by the chunks parameter of the
dask.array.from_array
function is allowed.The chunk sizes implied by chunks for a dimension that has been fragmented are ignored and replaced with values that are implied by that dimensions fragment sizes.
- chunks:
- Returns
dask.array.Array
The
dask
array representation.