A set of tools and Widgets for working with Google Earth Engine in Jupyter notebooks and Jupyter Lab
pip install ipygee
Note: Installation does not install Earth Engine Python API. You have to install it before installing ipygee
, see: https://developers.google.com/earth-engine/python_install
Be sure notebook extensions are enabled
ipywidgets:
jupyter nbextension enable --py widgetsnbextension
ipyleaflet:
jupyter nbextension enable --py --sys-prefix ipyleaflet
from ipygee import *
Map = Map()
Map.show()
from ipygee import *
AM = AssetManager()
AM
from ipygee import *
TM = TaskManager()
TM
See examples in here