pylifemap

Overview

pylifemap is a jupyter widget allowing to visualize taxonomy data on Lifemap. It provides several visualisation layers, as well as aggregation functions allowing to aggregate data along the tree branches.

Here is a simple example:

import polars as pl
from pylifemap import Lifemap

# Load iucn dataset
iucn = pl.read_parquet(
    "https://raw.githubusercontent.com/Lifemap-ToL/pylifemap/main/data/iucn.parquet"
)

Lifemap(iucn).layer_points(radius=5, opacity=0.8).show()
Newer data available, downloading...
Done.

Installation and usage

  • Installation describes different ways to install and use the package.
  • Getting started gives general usage instructions.
  • The Layers section shows visual interactive examples of the different available layers.
  • Reference provides detailed documentation of the different methods and functions.

Credits