Mapping from group paths to a mapping of chunksizes. If there's no chunked data in a group, the corresponding mapping of chunksizes will be empty. Cannot be modified directly, but can be modified by calling .chunk(). See Also -------- DataTree.chun
(self)
| 2569 | |
| 2570 | @property |
| 2571 | def chunksizes(self) -> Mapping[str, Mapping[Hashable, tuple[int, ...]]]: |
| 2572 | """ |
| 2573 | Mapping from group paths to a mapping of chunksizes. |
| 2574 | |
| 2575 | If there's no chunked data in a group, the corresponding mapping of chunksizes will be empty. |
| 2576 | |
| 2577 | Cannot be modified directly, but can be modified by calling .chunk(). |
| 2578 | |
| 2579 | See Also |
| 2580 | -------- |
| 2581 | DataTree.chunk |
| 2582 | Dataset.chunksizes |
| 2583 | """ |
| 2584 | return Frozen( |
| 2585 | { |
| 2586 | node.path: get_chunksizes(node.variables.values()) |
| 2587 | for node in self.subtree |
| 2588 | } |
| 2589 | ) |
| 2590 | |
| 2591 | def chunk( |
| 2592 | self, |
nothing calls this directly
no test coverage detected