@@ -1049,18 +1049,18 @@ async def create_array(
10491049 - For numeric arrays, the default is ``BytesCodec`` and ``ZstdCodec``.
10501050 - For Unicode strings, the default is ``VLenUTF8Codec``.
10511051 - For bytes or objects, the default is ``VLenBytesCodec``.
1052- These defaults can be changed using the `array.v3_default_codecs` variable in the Zarr config.
1052+ These defaults can be changed using the `` array.v3_default_codecs`` variable in :mod:`zarr.core. config` .
10531053 dimension_names : Iterable[str] | None = None
10541054 The names of the dimensions of the array. V3 only.
10551055 chunks : ChunkCoords | None = None
10561056 The shape of the chunks of the array.
1057- V2 only. V3 arrays should use :attr:` chunk_shape` instead.
1057+ V2 only. V3 arrays should use `` chunk_shape` ` instead.
10581058 If not specified, default are guessed based on the shape and dtype.
10591059 dimension_separator : Literal[".", "/"] | None = None
10601060 The delimiter used for the chunk keys. (default: ".")
10611061 V2 only. V3 arrays should use ``chunk_key_encoding`` instead.
10621062 order : Literal["C", "F"] | None = None
1063- The memory order of the array (default is specified in the Zarr config ` array.order`).
1063+ The memory order of the array (default is specified by `` array.order`` in :mod:`zarr.core.config `).
10641064 filters : list[dict[str, JSON]] | None = None
10651065 Sequence of filters to use to encode chunk data prior to compression.
10661066 V2 only. V3 arrays should use ``codecs`` instead. If neither ``compressor``
@@ -1073,7 +1073,7 @@ async def create_array(
10731073 - For numeric arrays, the default is ``ZstdCodec``.
10741074 - For Unicode strings, the default is ``VLenUTF8Codec``.
10751075 - For bytes or objects, the default is ``VLenBytesCodec``.
1076- These defaults can be changed using the `array.v2_default_compressor` variable in the Zarr config.
1076+ These defaults can be changed using the `` array.v2_default_compressor`` variable in :mod:`zarr.core. config` .
10771077 overwrite : bool = False
10781078 If True, a pre-existing array or group at the path of this array will
10791079 be overwritten. If False, the presence of a pre-existing array or group is
@@ -2270,18 +2270,18 @@ def create_array(
22702270 - For numeric arrays, the default is ``BytesCodec`` and ``ZstdCodec``.
22712271 - For Unicode strings, the default is ``VLenUTF8Codec``.
22722272 - For bytes or objects, the default is ``VLenBytesCodec``.
2273- These defaults can be changed using the `array.v3_default_codecs` variable in the Zarr config.
2273+ These defaults can be changed using the `` array.v3_default_codecs`` variable in :mod:`zarr.core. config` .
22742274 dimension_names : Iterable[str] | None = None
22752275 The names of the dimensions of the array. V3 only.
22762276 chunks : ChunkCoords | None = None
22772277 The shape of the chunks of the array.
2278- V2 only. V3 arrays should use :attr:` chunk_shape` instead.
2278+ V2 only. V3 arrays should use `` chunk_shape` ` instead.
22792279 If not specified, default are guessed based on the shape and dtype.
22802280 dimension_separator : Literal[".", "/"] | None = None
22812281 The delimiter used for the chunk keys. (default: ".")
22822282 V2 only. V3 arrays should use ``chunk_key_encoding`` instead.
22832283 order : Literal["C", "F"] | None = None
2284- The memory order of the array (default is specified in the Zarr config ` array.order`).
2284+ The memory order of the array (default is specified by `` array.order`` in :mod:`zarr.core.config `).
22852285 filters : list[dict[str, JSON]] | None = None
22862286 Sequence of filters to use to encode chunk data prior to compression.
22872287 V2 only. V3 arrays should use ``codecs`` instead. If neither ``compressor``
@@ -2294,7 +2294,7 @@ def create_array(
22942294 - For numeric arrays, the default is ``ZstdCodec``.
22952295 - For Unicode strings, the default is ``VLenUTF8Codec``.
22962296 - For bytes or objects, the default is ``VLenBytesCodec``.
2297- These defaults can be changed using the `array.v2_default_compressor` variable in the Zarr config.
2297+ These defaults can be changed using the `` array.v2_default_compressor`` variable in :mod:`zarr.core. config` .
22982298 overwrite : bool = False
22992299 If True, a pre-existing array or group at the path of this array will
23002300 be overwritten. If False, the presence of a pre-existing array or group is
@@ -2634,18 +2634,18 @@ def array(
26342634 - For numeric arrays, the default is ``BytesCodec`` and ``ZstdCodec``.
26352635 - For Unicode strings, the default is ``VLenUTF8Codec``.
26362636 - For bytes or objects, the default is ``VLenBytesCodec``.
2637- These defaults can be changed using the `array.v3_default_codecs` variable in the Zarr config.
2637+ These defaults can be changed using the `` array.v3_default_codecs`` variable in :mod:`zarr.core. config` .
26382638 dimension_names : Iterable[str] | None = None
26392639 The names of the dimensions of the array. V3 only.
26402640 chunks : ChunkCoords | None = None
26412641 The shape of the chunks of the array.
2642- V2 only. V3 arrays should use :attr:` chunk_shape` instead.
2642+ V2 only. V3 arrays should use `` chunk_shape` ` instead.
26432643 If not specified, default are guessed based on the shape and dtype.
26442644 dimension_separator : Literal[".", "/"] | None = None
26452645 The delimiter used for the chunk keys. (default: ".")
26462646 V2 only. V3 arrays should use ``chunk_key_encoding`` instead.
26472647 order : Literal["C", "F"] | None = None
2648- The memory order of the array (default is specified in the Zarr config ` array.order`).
2648+ The memory order of the array (default is specified by `` array.order`` in :mod:`zarr.core.config `).
26492649 filters : list[dict[str, JSON]] | None = None
26502650 Sequence of filters to use to encode chunk data prior to compression.
26512651 V2 only. V3 arrays should use ``codecs`` instead. If neither ``compressor``
@@ -2658,7 +2658,7 @@ def array(
26582658 - For numeric arrays, the default is ``ZstdCodec``.
26592659 - For Unicode strings, the default is ``VLenUTF8Codec``.
26602660 - For bytes or objects, the default is ``VLenBytesCodec``.
2661- These defaults can be changed using the `array.v2_default_compressor` variable in the Zarr config.
2661+ These defaults can be changed using the `` array.v2_default_compressor`` variable in :mod:`zarr.core. config` .
26622662 overwrite : bool = False
26632663 If True, a pre-existing array or group at the path of this array will
26642664 be overwritten. If False, the presence of a pre-existing array or group is
0 commit comments