NOAA-GIS4Ocean / H3_indicators

Notebooks and documentation about computing H3 biodiversity indicators
https://noaa-gis4ocean.github.io/H3_indicators/
GNU General Public License v3.0
2 stars 1 forks source link

Test serving data as html pages on gh-pages #5

Closed MathewBiddle closed 2 months ago

MathewBiddle commented 2 months ago

https://gist.github.com/MathewBiddle/9573f575303425c3d76efddc55e9a1d7

That gist reads in the .geojson files and creates a nice interactive map. Saving that map as html we could serve it out on a website:

m = gdf.explore(
    column='es'
)

m.save('es50_res5.html')

Using GitHub Pages!

Then we have an interactive map where we can click on cells and get the values:

unnamed

MathewBiddle commented 2 months ago

See https://mathewbiddle.github.io/H3_indicators/

and I added the notebook to my fork of the repo https://github.com/MathewBiddle/H3_indicators/blob/main/read_and_plot_geojson_heatmap.ipynb