#!/usr/bin/env python # coding: utf-8 # Open in Colab # # Uncomment the following line to install [geemap](https://geemap.org) if needed. # In[ ]: # !pip install geemap # # Google Earth Engine Python Tutorials # # * GitHub: https://github.com/giswqs/geemap # * Notebook examples: https://github.com/giswqs/geemap/blob/master/examples/README.md#tutorials # * Video tutorials: https://www.youtube.com/playlist?list=PLAxJ4-o7ZoPccOFv1dCwvGI6TYnirRTg3 # # # **Tutorial 21 - How to export Earth Engine maps as HTML and images** # ## Import libraries # In[ ]: import ee import geemap # ## Video tutorial on YouTube # In[ ]: geemap.show_youtube('h0pz3S6Tvx0') # ## Update the geemap package # # If you run into errors with this notebook, please uncomment the line below to update the [geemap](https://github.com/giswqs/geemap#installation) package to the latest version from GitHub. # Restart the Kernel (Menu -> Kernel -> Restart) to take effect. # In[ ]: # geemap.update_package() # ## Create an interactive map # In[ ]: Map = geemap.Map() Map # In[ ]: