Guest User

Untitled

a guest
Sep 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // filtering the image collection
  2. var image = ee.Image(ee.ImageCollection('LANDSAT/LC8_L1T_TOA')
  3. .filterBounds(roi)
  4. .filterDate('2015-01-01', '2015-12-31')
  5. .sort('CLOUD_COVER')
  6. .first());
  7. Map.addLayer(image, {bands: ['B4', 'B3', 'B2'], max: 0.3}, 'landsat');[!
Add Comment
Please, Sign In to add comment