alsdb.utils.viz_raster.plot_products_agb#

alsdb.utils.viz_raster.plot_products_agb(store: ALSZarrStore, resolution: float = 10.0, year: int | None = None, figsize: tuple[float, float] = (22, 6), hillshade: bool = True, title: str | None = None)[source]#

Four-panel overview: DTM | DSM | CHM | AGB.

All panels read from store at resolution. The CHM and terrain models are typically computed at 1 m while AGB is at 10 m, so this composite is most useful when a single resolution holds all variables (or when the user passes a coarser resolution for all).

Parameters:
  • storeALSZarrStore containing "dtm", "dsm", "chm", and "biomass" at resolution.

  • resolution – Resolution group in metres (default 10 m).

  • year – Survey year.

  • figsize – Figure size in inches.

  • hillshade – Apply hillshade to DTM and DSM panels.

  • title – Optional suptitle.

Return type:

matplotlib.figure.Figure