21 ts inspector
Using timeseries inspector with a single click
Uncomment the following line to install leafmap if needed.
# !pip install leafmap
This notebook requires the ipyleaflet plotting backend. Folium is not supported.
import os
from leafmap import leafmap
# leafmap.update_package()
First, you need to sign up a Planet account and get an API key. See https://developers.planet.com/quickstart/apis. Uncomment the following line to pass in your API key.
# os.environ["PLANET_API_KEY"] = "12345"
Create a list of Planet monthly mosaic tile layers.
monthly_tiles = leafmap.planet_monthly_tiles()
Use the timeseries inspector to visualize images side by side with a split-panel map.
leafmap.ts_inspector(monthly_tiles)
Create a list of Planet quarterly mosaic tile layers.
quarterly_tiles = leafmap.planet_quarterly_tiles()
Use the timeseries inspector to visualize images side by side with a split-panel map.
leafmap.ts_inspector(quarterly_tiles)
Create a list of Planet quarterly and monthly mosaic tile layers.
tiles = leafmap.planet_tiles()
Use the timeseries inspector to visualize images side by side with a split-panel map.
leafmap.ts_inspector(tiles)
Use the toolbar GUI to activate the timeseries inspector.
m = leafmap.Map()
m