2020-06-03 14:20:17 -07:00

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})