{ "cells": [ { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "3YfuzRi6yXzE" }, "source": [ "\n", " \n", " \n", " \n", "
View source on GitHubNotebook Viewer Run in Google Colab
" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "caAZzvnSuwDi" }, "source": [ "## Install geemap" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "colab": {}, "colab_type": "code", "id": "d0wqNr5WXzLD" }, "outputs": [], "source": [ "# !pip install geemap" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "colab": {}, "colab_type": "code", "id": "rA615jyCYE-z" }, "outputs": [], "source": [ "import ee\n", "import geemap" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "bdWLuuJIwwas" }, "source": [ "## Create an interactive map" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "colab": {}, "colab_type": "code", "id": "L-CTJwEAvYB0" }, "outputs": [], "source": [ "Map = geemap.Map()\n", "# Map" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "ECKnyMyvw6wa" }, "source": [ "## Add Earth Engine data" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "colab": {}, "colab_type": "code", "id": "1b8yWFIFvfaZ" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Mount Everest elevation (m): 8729\n" ] } ], "source": [ "# Add Earth Engine dataset\n", "image = ee.Image('USGS/SRTMGL1_003')\n", "\n", "# Set visualization parameters.\n", "vis_params = {\n", " 'min': 0,\n", " 'max': 4000,\n", " 'palette': ['006633', 'E5FFCC', '662A00', 'D8D8D8', 'F5F5F5']}\n", "\n", "# Print the elevation of Mount Everest.\n", "xy = ee.Geometry.Point([86.9250, 27.9881])\n", "elev = image.sample(xy, 30).first().get('elevation').getInfo()\n", "print('Mount Everest elevation (m):', elev)\n", "\n", "# Add Earth Engine layers to Map\n", "Map.addLayer(image, vis_params, 'DEM')\n", "Map.addLayer(xy, {'color': 'red'}, 'Mount Everest')\n", "\n", "# Center the map based on an Earth Engine object or coordinates (longitude, latitude)\n", "# Map.centerObject(xy, 4)\n", "Map.setCenter(86.9250, 27.9881, 4)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "At6VGzwlxNGb" }, "source": [ "## Display the map" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "colab": {}, "colab_type": "code", "id": "IlO11sRAYKCu" }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96d752e00aa04af68221f68e6f792ac3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Map(center=[27.9881, 86.925], controls=(WidgetControl(options=['position'], widget=HBox(children=(ToggleButton…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "Map.addLayerControl() \n", "Map" ] } ], "metadata": { "colab": { "authorship_tag": "ABX9TyMRdgU6/oIRBcgoHSqYrQ+N", "name": "geemap_colab.ipynb", "provenance": [] }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.5" } }, "nbformat": 4, "nbformat_minor": 4 }