Published
Edited
May 4, 2022
1 fork
Insert cell
Insert cell
import { requireFromGithub } from "@bumbeishvili/fetcher"
Insert cell
zarrLib = requireFromGithub(
"https://gist.githubusercontent.com/bumbeishvili/7d3ca7320f27ac3149ae7d1fdc54f4fa/raw/04039705c93a67622eab522a0ebe1b328369bd73/dev-zarr.js"
)
Insert cell
zarr = zarrLib()
Insert cell
Insert cell
url1 = "https://bumbeishvili.github.io/zarr-sample/manzt/logo/skimg_logo.zip.zchunkstore"
Insert cell
url2 = "https://bumbeishvili.github.io/zarr-sample/jp/decade/0"
Insert cell
url3 = "https://storage.googleapis.com/viv-demo/LuCa-7color_Scan1/data.zarr/0"
Insert cell
url4 = "https://bumbeishvili.github.io/zarr-sample/jp/Archive.zarr/0"
Insert cell
url5 = "https://bumbeishvili.github.io/zarr-js/example.zarr/0"
Insert cell
url6 = "https://raw.githubusercontent.com/bumbeishvili/zarr-js/main/example_group.zarr/.zmetadata"
Insert cell
url7 = "https://storage.googleapis.com/carbonplan-scratch/map-tests/processed/temp"
Insert cell
url8 = "https://storage.googleapis.com/carbonplan-maps/v2/demo/4d/tavg-prec-month"
Insert cell
url = url8
Insert cell
new Promise((res) => {
zarr.openGroup(
"https://storage.googleapis.com/carbonplan-maps/v2/demo/4d/tavg-prec-month",
(err, loaders, metadata) => {
console.log({ err, loaders, metadata });
res(metadata);
}
);
})
Insert cell
new Promise((res) => {
zarr.openGroup(
"https://raw.githubusercontent.com/bumbeishvili/zarr-js/main/example_group.zarr",
(err, loaders, metadata) => {
console.log({ err, loaders, metadata });
res(metadata);
}
);
})

Insert cell
new Promise((res) => {
zarr.openGroup(
"https://bumbeishvili.github.io/zarr-sample/jp/decade/0", // Replace Link Here to Test
(err, loaders, metadata) => {
console.log({ err, loaders, metadata });
res(metadata);
}
);
})
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more