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