zarr-maps-ol
v0.2.0
Published
An OpenLayers integration library for visualizing Zarr datasets.
Readme
zarr-maps-ol
OpenLayers tile-layer integration for rendering multidimensional Zarr and Icechunk datasets directly in the browser.
npm install zarr-maps-ol olimport Map from 'ol/Map';
import { ZarrLayer } from 'zarr-maps-ol';
const layer = new ZarrLayer({
id: 'temperature',
url: 'https://example.com/temperature.zarr',
variable: 'temperature',
colormap: 'viridis',
scale: [270, 310]
});
await layer.load();
map.addLayer(layer);The layer supports custom Zarrita stores such as Icechunk, authenticated requests, dimension selectors, runtime styling, and point/profile/transect queries. See the zarr-maps documentation for complete configuration and API details.
