A Python package for geospatial analysis and interactive mapping in a Jupyter environment.
Create a small utility that assembles an interactive map using a catalog basemap plus user-supplied XYZ and WMS overlays, and exposes enough metadata for validation.
@generates
from typing import Any, Dict, List, Tuple
Bounds = Tuple[float, float, float, float]
def build_tile_map(
basemap_keyword: str,
xyz_url: str,
xyz_name: str,
wms_url: str,
wms_layer: str,
bounds: Bounds,
*,
xyz_attribution: str | None = None,
wms_format: str = "image/png",
wms_transparent: bool = True,
) -> tuple[Any, List[Dict[str, str]]]:
"""
Creates an interactive map configured with a catalog basemap plus XYZ and WMS overlays.
Expects bounds ordered as (min_lon, min_lat, max_lon, max_lat). Returns the map object
(leafmap map instance) and an ordered list describing each layer (e.g., {"name": "...",
"type": "basemap"|"xyz"|"wms"}).
"""Provides basemap catalog search and XYZ/WMS tile layering utilities.
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