The Julia bridge for launching Browzarr - a browser-based visualization framework for exploring and analyzing Zarr and NetCDF datasets.
Try it now at browzarr.io
Note
This package is solely responsible for launching the Browzarr app from Julia. All visualization and data interaction happens in the browser.
Browzarr.jl is not yet registered. Install the main branch via:
using Pkg; Pkg.add(url="https://github.com/EarthyScience/Browzarr.jl", rev="main")Launch with a local file, a remote store, or no arguments to get started:
using Browzarr
browzarr() # default (port 8080)
browzarr(; port=3000) # custom port
browzarr(; store="/path/to/file.nc") # local file
browzarr(; store="https://s3.bucket.de:67/misc/out.zarr") # remote Zarr storeTo stop all running servers:
Browzarr.stop_all!()To stop a server on a specific port:
Browzarr.stop!(3000)