Unify chunk size along all chunked dimensions of this DataArray. Returns ------- DataArray with consistent chunk sizes for all dask-array variables See Also -------- dask.array.core.unify_chunks
(self)
| 5652 | return self._from_temp_dataset(ds) |
| 5653 | |
| 5654 | def unify_chunks(self) -> Self: |
| 5655 | """Unify chunk size along all chunked dimensions of this DataArray. |
| 5656 | |
| 5657 | Returns |
| 5658 | ------- |
| 5659 | DataArray with consistent chunk sizes for all dask-array variables |
| 5660 | |
| 5661 | See Also |
| 5662 | -------- |
| 5663 | dask.array.core.unify_chunks |
| 5664 | """ |
| 5665 | |
| 5666 | return unify_chunks(self)[0] |
| 5667 | |
| 5668 | def map_blocks( |
| 5669 | self, |
nothing calls this directly
no test coverage detected