Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 837 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 837 Bytes

IpyGEE

A set of tools and Widgets for working with Google Earth Engine in Jupyter notebooks and Jupyter Lab

Install

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

Main Widgets

- Map

from ipygee import *
Map = Map()
Map.show()

- AssetManager

from ipygee import *
AM = AssetManager()
AM

- TaskManager

from ipygee import *
TM = TaskManager()
TM

See examples in here