Unify chunk size along all chunked dimensions of this Dataset. Returns ------- Dataset with consistent chunk sizes for all dask-array variables See Also -------- dask.array.core.unify_chunks
(self)
| 8801 | return self[selection] |
| 8802 | |
| 8803 | def unify_chunks(self) -> Self: |
| 8804 | """Unify chunk size along all chunked dimensions of this Dataset. |
| 8805 | |
| 8806 | Returns |
| 8807 | ------- |
| 8808 | Dataset with consistent chunk sizes for all dask-array variables |
| 8809 | |
| 8810 | See Also |
| 8811 | -------- |
| 8812 | dask.array.core.unify_chunks |
| 8813 | """ |
| 8814 | |
| 8815 | return unify_chunks(self)[0] |
| 8816 | |
| 8817 | def map_blocks( |
| 8818 | self, |