# Load code to setup authorization for an IPython Notebook. Note that this is a temporary step # that is required until the Earth Engine Python API is updated to include this logic. %run 'authorize_earth_engine_in_notebook.ipynb' # Initialize Earth Engine # Note that we are calling a function defined in the previously run IPython Notebook, rather than # the typical call to ee.Initialize() ee_initialize() image_object = ee.Image() [method for method in dir(image_object) if not method.startswith('_')] image = ee.Image('srtm90_v4') from IPython.display import Image Image(url=image.getThumbUrl({'min':0, 'max':3000}))