Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/codecs/gzip/v1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gzip Codec (version 1.0)
-----------------------------

Specification URI:
https://purl.org/zarr/spec/codecs/gzip/1.0
https://purl.org/zarr/spec/codec/gzip/1.0
Issue tracking:
`GitHub issues <https://github.com/zarr-developers/zarr-specs/labels/codecs-gzip-v1.0>`_
Suggest an edit for this spec:
Expand Down Expand Up @@ -81,7 +81,7 @@ Configuring codec in array metadata
The Gzip codec can be specified as a compressor for a Zarr array under the
``compressor`` name in the corresponding array metadata document. The URI for
the Gzip codec defined in this specification is
https://purl.org/zarr/spec/codecs/gzip/1.0.
https://purl.org/zarr/spec/codec/gzip/1.0.

Additionally, the compression level must be specified as the value of the
``level`` name in the ``configuration`` metadata name. For example, the array
Expand All @@ -91,7 +91,7 @@ level of 1::

{
"compressor": {
"codec": "https://purl.org/zarr/spec/codecs/gzip/1.0",
"codec": "https://purl.org/zarr/spec/codec/gzip/1.0",
"configuration": {
"level": 1
}
Expand Down
4 changes: 2 additions & 2 deletions docs/protocol/core/v3.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ compressed using gzip compression prior to storage::
},
"chunk_memory_layout": "C",
"compressor": {
"codec": "https://purl.org/zarr/spec/codecs/gzip/1.0",
"codec": "https://purl.org/zarr/spec/codec/gzip/1.0",
"configuration": {
"level": 1
}
Expand Down Expand Up @@ -1072,7 +1072,7 @@ chunking as above, but using an extension data type::
},
"chunk_memory_layout": "C",
"compressor": {
"codec": "https://purl.org/zarr/spec/codecs/gzip/1.0",
"codec": "https://purl.org/zarr/spec/codec/gzip/1.0",
"configuration": {
"level": 1
}
Expand Down