├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md └── docs ├── Makefile ├── _static ├── css │ └── custom.css ├── draft-watermark.png └── logo.png ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt ├── specs.rst ├── v1 └── v1.0.rst ├── v2 └── v2.0.rst └── v3 ├── chunk-grids ├── index.rst └── regular-grid │ └── index.rst ├── chunk-key-encodings ├── default │ └── index.rst ├── index.rst └── v2 │ └── index.rst ├── codecs ├── blosc │ └── index.rst ├── bytes │ └── index.rst ├── crc32c │ └── index.rst ├── gzip │ └── index.rst ├── index.rst ├── sharding-indexed │ ├── index.rst │ └── sharding.png └── transpose │ └── index.rst ├── core ├── index.rst ├── terminology-hierarchy.excalidraw.png └── terminology-read.excalidraw.png ├── data-types └── index.rst ├── storage-transformers └── index.rst └── stores ├── filesystem └── index.rst └── index.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/draft-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/_static/draft-watermark.png -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/specs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/specs.rst -------------------------------------------------------------------------------- /docs/v1/v1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v1/v1.0.rst -------------------------------------------------------------------------------- /docs/v2/v2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v2/v2.0.rst -------------------------------------------------------------------------------- /docs/v3/chunk-grids/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/chunk-grids/index.rst -------------------------------------------------------------------------------- /docs/v3/chunk-grids/regular-grid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/chunk-grids/regular-grid/index.rst -------------------------------------------------------------------------------- /docs/v3/chunk-key-encodings/default/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/chunk-key-encodings/default/index.rst -------------------------------------------------------------------------------- /docs/v3/chunk-key-encodings/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/chunk-key-encodings/index.rst -------------------------------------------------------------------------------- /docs/v3/chunk-key-encodings/v2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/chunk-key-encodings/v2/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/blosc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/blosc/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/bytes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/bytes/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/crc32c/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/crc32c/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/gzip/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/gzip/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/sharding-indexed/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/sharding-indexed/index.rst -------------------------------------------------------------------------------- /docs/v3/codecs/sharding-indexed/sharding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/sharding-indexed/sharding.png -------------------------------------------------------------------------------- /docs/v3/codecs/transpose/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/codecs/transpose/index.rst -------------------------------------------------------------------------------- /docs/v3/core/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/core/index.rst -------------------------------------------------------------------------------- /docs/v3/core/terminology-hierarchy.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/core/terminology-hierarchy.excalidraw.png -------------------------------------------------------------------------------- /docs/v3/core/terminology-read.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/core/terminology-read.excalidraw.png -------------------------------------------------------------------------------- /docs/v3/data-types/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/data-types/index.rst -------------------------------------------------------------------------------- /docs/v3/storage-transformers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/storage-transformers/index.rst -------------------------------------------------------------------------------- /docs/v3/stores/filesystem/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/stores/filesystem/index.rst -------------------------------------------------------------------------------- /docs/v3/stores/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarr-developers/zarr-specs/HEAD/docs/v3/stores/index.rst --------------------------------------------------------------------------------