# !pip install leafmap import os import leafmap url = "https://opengeos.org/data/raster/srtm90.tif" image = "srtm90.tif" if not os.path.exists(image): leafmap.download_file(url, image) leafmap.plot_raster(image, cmap="terrain", figsize=(15, 10)) leafmap.plot_raster_3d("srtm90.tif", factor=2, cmap="terrain", background="gray")