A Python package for geospatial analysis and interactive mapping in a Jupyter environment.
Build a small utility that assembles an interactive map from three raster sources: a cloud-optimized GeoTIFF, a PMTiles archive, and a NetCDF variable. The map should center on the loaded data, expose layer controls, and export to a standalone HTML file.
@generates
def build_raster_map(
cog_url: str,
pmtiles_url: str,
netcdf_path: str,
netcdf_variable: str,
time_index: int,
color_map: str,
legend_min: float,
legend_max: float,
output_html: str,
):
"""Create and return an interactive map with COG, PMTiles, and NetCDF layers, saving it to HTML."""Provides interactive mapping, raster tiling, PMTiles display, and NetCDF visualization. @satisfied-by
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