A Python package for geospatial analysis and interactive mapping in a Jupyter environment.
An interactive mapping exercise centered on GUI panels for switching basemaps, previewing STAC assets, and inspecting map content.
@generates
from typing import Any, Sequence
def build_explorer(
basemap_choices: Sequence[str],
stac_endpoint: str,
collections: Sequence[str],
default_bbox: Sequence[float] | None = None,
initial_time_range: tuple[str, str] | None = None,
) -> Any:
"""
Construct an interactive map widget with GUI panels for basemap switching, STAC discovery/preview, and pixel/feature inspection.
Returns a widget object suitable for display in notebook or web contexts that exposes the GUI panels on load.
"""Provides interactive mapping widgets, GUI panels for basemap selection, STAC search, and map inspection tools needed by the explorer.
tessl i tessl/pypi-leafmap@0.52.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10