Releases: manzt/zarrita.js
Releases · manzt/zarrita.js
@zarrita/[email protected]
Patch Changes
-
feat: Add
openConsolidated
helper (6e7df4f
)A utility for working with v2 consolidated metadata.
import * as zarr from "zarrita"; let store = new zarr.FetchStore("http://localhost:8080/data.zarr"); let hierarchy = await zarr.openConsolidated(store); hierarchy.contents; // Map { // "/" => Group, // "/foo" => Array, // "/bar" => Group, // "/bar/baz" => Array, // } let grp = hierarchy.root(); // Group let foo = hierarchy.open("/foo", { kind: "array" }); // Array let baz = hierarchy.open(grp.resolve("bar/baz"), { kind: "array" }); // Array let bar = hierarchy.open(baz.resolve(".."), { kind: "group" }); // Group
-
feat: Support reading ZEP0002 sharded indexing (#94)
-
Updated dependencies [
b90fd33
]:- @zarrita/[email protected]
[email protected]
Minor Changes
-
feat!: Re-export
@zarrita/*
underzarrita
. (#89)This is a BREAKING change. The
zarrita
package is now a wrapper around the@zarrita/*
modules.import * as zarr from "zarrita"; const store = new zarr.FetchStore("http://localhost:8080/data.zarr"); const arr = await zarr.open(store, { kind: "array" }); const region = await zarr.get(arr, [null, null, 0]);
@zarrita/[email protected]
Patch Changes
- feat: Support v2 string data types with builtin indexing (#75)
@zarrita/[email protected]
Patch Changes
- feat: allow
RequestInit
options to be configured inFetchStore
constructor (#77)
@zarrita/[email protected]
Patch Changes
-
feat: prefer camelCase for public API (#83)
-
Updated dependencies [
a2ab3b0
,eee6a0e
,0f37caa
]:- @zarrita/[email protected]
- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
feat: prefer camelCase for public API (#83)
-
feat: Support v2 string data types with builtin indexing (#75)
-
Updated dependencies [
a2ab3b0
,eee6a0e
,0f37caa
]:- @zarrita/[email protected]
- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
feat: prefer camelCase for public API (#83)
-
feat: Support v2 string data types with builtin indexing (#75)
-
Updated dependencies [
eee6a0e
,0f37caa
]:- @zarrita/[email protected]
- @zarrita/[email protected]