ee.App

class eemont.app.App(url)[source]

Google Earth Engine App Manager and Descriptor.

Inspect, open and download Google Earth Engine apps.

Parameters

url (str) – URL of the Google Earth Engine App.

Examples

>>> import ee, eemont
>>> app = ee.App("https://jstnbraaten.users.earthengine.app/view/conus-cover-vis")
>>> app.name
'conus-cover-vis'
>>> app.creator
'jstnbraaten'
>>> app.open()
>>> app.download()
creator

Username of the App creator.

download(file=None)[source]

Downloads the current app to a JS file.

Parameters

file (str, default = None) – Path + filename to store the file. If None, the name of the app is used.

Return type

None

Examples

>>> import ee, eemont
>>> app = ee.App("https://jstnbraaten.users.earthengine.app/view/conus-cover-vis")
>>> app.download()
name

Name of the App.

open()[source]

Opens the current app in the default browser if possible.

Return type

None

Examples

>>> import ee, eemont
>>> app = ee.App("https://jstnbraaten.users.earthengine.app/view/conus-cover-vis")
>>> app.open()
url

URL of the App.

username

Instance of creator.