A Python package for geospatial analysis and interactive mapping in a Jupyter environment.
54
Evaluation — 54%
↓ 0.80xAgent success when using this tile
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.
Install with Tessl CLI
npx tessl i tessl/pypi-leafmapdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10