{ "cells": [ { "cell_type": "markdown", "id": "0", "metadata": {}, "source": [ "\"Open\n", "\n", "**Finding useful datasets**\n", "\n", "- added community datasets based on regularly updated [repository](https://github.com/samapriya/awesome-gee-community-datasets/blob/master/community_datasets.json). \n", "- changed layout\n", "- added links to ee code examples\n", "\n", "Uncomment the following line to install [geemap](https://geemap.org) if needed." ] }, { "cell_type": "code", "execution_count": null, "id": "1", "metadata": {}, "outputs": [], "source": [ "# !pip install -U geemap" ] }, { "cell_type": "code", "execution_count": null, "id": "2", "metadata": {}, "outputs": [], "source": [ "import ee\n", "from geemap import common as cm\n", "from geemap import datasets as ds" ] }, { "cell_type": "markdown", "id": "3", "metadata": {}, "source": [ "### Changed layout" ] }, { "cell_type": "code", "execution_count": null, "id": "4", "metadata": {}, "outputs": [], "source": [ "ds.get_metadata(\"AAFC/ACI\")" ] }, { "cell_type": "markdown", "id": "5", "metadata": {}, "source": [ "### Search supports multiple keywords (list or space separated)." ] }, { "cell_type": "code", "execution_count": null, "id": "6", "metadata": {}, "outputs": [], "source": [ "cm.search_ee_data(\"CAMS Copernicus\", source=\"ee\")" ] }, { "cell_type": "markdown", "id": "7", "metadata": {}, "source": [ "### Find community datasets" ] }, { "cell_type": "code", "execution_count": null, "id": "8", "metadata": {}, "outputs": [], "source": [ "ds.get_community_data_list()[0]" ] }, { "cell_type": "code", "execution_count": null, "id": "9", "metadata": {}, "outputs": [], "source": [ "ds.get_metadata(\n", " \"projects/sat-io/open-datasets/landcover/ESRI_Global-LULC_10m\", source=\"community\"\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "10", "metadata": {}, "outputs": [], "source": [ "len(cm.search_ee_data(\"DEM\", source=\"community\"))" ] }, { "cell_type": "code", "execution_count": null, "id": "11", "metadata": {}, "outputs": [], "source": [ "len(cm.search_ee_data(\"DEM\", source=\"all\"))" ] }, { "cell_type": "markdown", "id": "12", "metadata": {}, "source": [ "### Search supports regular expressions." ] }, { "cell_type": "code", "execution_count": null, "id": "13", "metadata": {}, "outputs": [], "source": [ "len(cm.search_ee_data(\"ECM.*F\", regex=True, source=\"ee\"))" ] }, { "cell_type": "markdown", "id": "14", "metadata": {}, "source": [ "### Search data looks in both ee and community" ] }, { "cell_type": "code", "execution_count": null, "id": "15", "metadata": {}, "outputs": [], "source": [ "import geemap\n", "\n", "Map = geemap.Map()\n", "Map" ] }, { "cell_type": "code", "execution_count": null, "id": "16", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" } }, "nbformat": 4, "nbformat_minor": 5 }