(self)
| 1004 | |
| 1005 | @property |
| 1006 | def dims(self) -> Frozen[Hashable, int]: |
| 1007 | # deliberately display all dims, not just those on coordinate variables - see https://github.com/pydata/xarray/issues/9466 |
| 1008 | return Frozen(self._data.dims) |
| 1009 | |
| 1010 | @property |
| 1011 | def dtypes(self) -> Frozen[Hashable, np.dtype]: |