The heatmap layer displays observations distribution as a heatmap overlay.
import polars as pl
from pylifemap import Lifemap
# Load iucn dataset
iucn = pl.read_csv(
"https://raw.githubusercontent.com/Lifemap-ToL/pylifemap/main/data/iucn.csv"
)
(
Lifemap(iucn)
.layer_heatmap(opacity=0.5)
.show()
)
Warning: 706 taxids have not been found in Lifemap database
Warning: 152 duplicated taxids have been found in the data
For a detailed list of layer_heatmap
arguments you can take a look at its documentation.