Uncomment the following line to install geemap if needed.
# !pip install geemap
import os
import geemap.geemap as geemap
# geemap.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"
monthly_tiles = geemap.planet_monthly_tiles()
geemap.ts_inspector(monthly_tiles)
quarterly_tiles = geemap.planet_quarterly_tiles()
geemap.ts_inspector(quarterly_tiles)
tiles = geemap.planet_tiles()
geemap.ts_inspector(tiles)
m = geemap.Map()
m