Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.44 KB

File metadata and controls

40 lines (27 loc) · 1.44 KB

Browzarr.jl

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

Zarr NetCDF4 License: Apache 2.0


Note

This package is solely responsible for launching the Browzarr app from Julia. All visualization and data interaction happens in the browser.

Installation

using Pkg; Pkg.add("Browzarr")

Usage

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 store