Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
giswqs
GitHub Repository: giswqs/geemap
Path: blob/master/docs/notebooks/124_more_datasets.ipynb
2313 views
Kernel: Python 3

Open in Colab

Finding useful datasets

  • added community datasets based on regularly updated repository.

  • changed layout

  • added links to ee code examples

Uncomment the following line to install geemap if needed.

# !pip install -U geemap
import ee from geemap import common as cm from geemap import datasets as ds

Changed layout

ds.get_metadata("AAFC/ACI")

Search supports multiple keywords (list or space separated).

cm.search_ee_data("CAMS Copernicus", source="ee")

Find community datasets

ds.get_community_data_list()[0]
ds.get_metadata( "projects/sat-io/open-datasets/landcover/ESRI_Global-LULC_10m", source="community" )
len(cm.search_ee_data("DEM", source="community"))
len(cm.search_ee_data("DEM", source="all"))

Search supports regular expressions.

len(cm.search_ee_data("ECM.*F", regex=True, source="ee"))

Search data looks in both ee and community

import geemap Map = geemap.Map() Map