mirror of
https://github.com/google/earthengine-api.git
synced 2025-12-08 19:26:12 +00:00
9 lines
181 B
Python
9 lines
181 B
Python
#!/usr/bin/env 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})
|