Skip to content

Images in Earth Engine

In the GEE environment images are stored in Cloud Optimized Geospatial tiles instead of a single image which allows for running an analysis this scale. This means that though the input imagery comes in know formats such as geotiff , MrSid and img these datasets post ingestion into GEE are converted into tiles that are used for at scale analysis. All images that are ingested into either GEE(s) Raster Catalog or your own personal folder and stored in folder or collections of images as you would expect to see when doing deep time stack analysis.

Imagery

These images have defined data type,scales and projections along with some default properties such as an index and ID among other system properties. So we can query these properties, print them and add them

//Add an image
var image=ee.Image('LANDSAT/LT05/C01/T1_SR/LT05_025039_19841105')
print("Single Image",image)

//Center the Map to the image and add the image
Map.centerObject(geometry,10)
Map.addLayer(image,vis,"Image")

//Clip an image
var clipped=image.clip(geometry)
Map.addLayer(clipped,vis,"Clipped Image")