Guest User

Untitled

a guest
Feb 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var image = (ee.ImageCollection('LANDSAT/LT04/C01/T1_TOA')
  2. .filterDate('1984-04-01', '1984-12-31')
  3. .sort('CLOUD_COVER')
  4. .first());
  5.  
  6. print(image)
  7.  
  8. var visParams = {
  9. bands: ['B3', 'B2', 'B1'],
  10. min: 0,
  11. max: 3000,
  12. gamma: 1.4, };
  13. Map.addLayer(image, visParams);
Add Comment
Please, Sign In to add comment