Akio Taniguchi
Akio Taniguchi
- [ ] Add spec field to the `Field` dataclass - [ ] Add name and origin fields to the `Spec` dataclass - [ ] Update the `update` method of...
Add a new asxarray module for v2 based on that of pandas-dataclasses (v0.9.0). Note that it will be included in the current package, but not used until the v2 release.
Add type hint `Attrs` for attributes of DataArray or Dataset: ```python @dataclass class Image(AsDataArray): """2D image as DataArray.""" data: Data[X, Y, float] x: Coord[X, int] = 0 y: Coord[Y, int]...