Visualize geo-tiff/json based on folium. It can be used to visualize geo-data (geotiff/geojson) after ML/DL about RS.
The class named Geovis
just have three functions.Useing addRaster
to add a image with geo-info (like geotiff) to the map and useing addVector
to add a vector (just support geojson with polygon or multipolygon) to the map. In the end, useing show
to show this interactive map.
from pygeovis import Geovis
viser = Geovis()
viser.addRaster("data/val.tif", band_list=[1, 2, 3])
viser.addVector("data/val.geojson")
viser.show()