[ANN] πŸš€ Announcing Browzarr.jl

Hey there, it’s been a while!

Today, I want to draw your attention to Browzarr.jl, the Julia bridge for launching Browzarr, a browser-based visualization framework for exploring and analyzing Zarr and NetCDF datasets.

Try it live at browzarr.io. The documentation is still a work in progress.

You can inspect variables, metadata, dimensions, and chunked data through an interactive browser interface. Open local NetCDF files (using netcdf4-wasm), local Zarr stores, or remote Zarr datasets with a single command.

Install the Julia package:

using Pkg
Pkg.add("Browzarr")

Launch:

using Browzarr
browzarr()

Examples:

# local NetCDF file
browzarr(; store="/path/to/file.nc")

# local Zarr store
browzarr(; store="/path/to/data.zarr")

# remote Zarr store
browzarr(; store="https://example.com/data.zarr")

Browzarr is also available as a standalone npm package for users outside the Julia ecosystem:

npm install -g browzarr
browzarr

Feedback, bug reports, and contributions are welcome!

12 Likes