# %pip install -U leafmap import os from leafmap import leafmap catalogs = { "Element84 Earth Search": "https://earth-search.aws.element84.com/v1", "Microsoft Planetary Computer": "https://planetarycomputer.microsoft.com/api/stac/v1", } m = leafmap.Map(center=[40, -100], zoom=4, catalog_source=catalogs) m m = leafmap.Map(center=[40, -100], zoom=4) m.set_catalog_source(catalogs) m os.environ["STAC_CATALOGS"] = str(catalogs) m = leafmap.Map() m from leafmap.toolbar import stac_gui stac_gui(m) # m.stac_gdf # The GeoDataFrame of the STAC search results # m.stac_dict # The STAC search results as a dictionary # m.stac_item # The selected STAC item of the search result