mirror of
https://github.com/google/earthengine-api.git
synced 2025-12-08 19:26:12 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
"""Display an image given its ID."""
|
|
|
|
import ee
|
|
import ee.mapclient
|
|
|
|
image = ee.Image('CGIAR/SRTM90_V4')
|
|
ee.mapclient.addToMap(image, {'min': 0, 'max': 3000})
|