Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.08 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.08 KB

goes-meso-visualizer

Hilary

Visualize GOES mesoscale data in a browser map. Live demos are available:

Running

git clone [email protected]:Element84/goes-meso-visualizer.git
cd goes-meso-visualizer
pip install .

This installs the goes-meso-visualizer command-line executable (CLI), which contains all the commands to build visualizations. Run goes-meso-visualizer --help to see what's available. We provide an example Makefile to build visualization from two 2023 hurricanes:

make site
npm install -g http-server  # if you don't have a preferred http server
http-server site

Then, navigate to http://localhost:8080/hilary or http://localhost:8080/lee.

Developing

pip install -e '.[dev]'
pre-commit install

If you need a new requirement, add it to requirements.in (or requirements-dev.in for dev requirements), then:

scripts/update-requirements