Hannes Spitz
Hannes Spitz
fixes #1878 Using the config (https://github.com/pytroll/donfig), the user can specify now the implementation of all **codecs**, the **CodecPipeline**, **Buffer** and **NDBuffer**. For each of these objects, the codec registry can...
fixes https://github.com/zarr-developers/zarr-python/issues/1978 according to docstrings of `zarr.open` the modes should do: ``` mode : {'r', 'r+', 'a', 'w', 'w-'}, optional Persistence mode: 'r' means read only (must exist); 'r+' means...
This PR is supposed to implement basic [zarr v3](https://zarr-specs.readthedocs.io/en/latest/specs.html) support. I have not planned to provide full zarr support, but limit it to the codecs `blosc`, `bytes`, `transpose`, and `sharding`...
### Description: - Use tensorstore for zarr arrays - based on changes from #1026 ### Todos: Make sure to delete unnecessary points or to check all before merging: - [...
For some specific shapes of `chunks_per_shard` (e.g. `[5,2]`), the current implementation of morton code will produce indices that are not within the shape. Therefore reading the sharding index will drop...
This PR is supposed to implement basic [zarr v3](https://zarr-specs.readthedocs.io/en/latest/specs.html) support on the experimental branch. I have not planned to provide full zarr support, but limit it to the codecs blosc,...
- fixes #2705 TODO: * [x] Add unit tests and/or doctests in docstrings * [x] Add docstrings and API docs for any new/modified user-facing classes and functions * [x] New/modified...
Implements `numcodec_to_zarr3_codec` to enable numcodec support in zarr v3 arrays This PR is a result of moving the `to_zarr3` logic from https://github.com/zarr-developers/numcodecs/pull/741 to zarr-python - fixes #2964 TODO: * [x]...
This PR implements the following aspects of [ZEP9 (Phase 1)](https://github.com/zarr-developers/zarr-specs/pull/330) - If metadata JSON contains invalid keys, or if a value object contains invalid keys, the zarr array should be...
- implements `to_zarr3` function in `numcodecs.zarr3` for https://github.com/zarr-developers/zarr-python/issues/2964 TODO: - [x] Unit tests and/or doctests in docstrings - [x] Tests pass locally - [x] Docstrings and API docs for any...