// http://www.gisandbeers.com/datos-lidar-google-earth-engine-gedi/ // PREVIEW DE DATOS LIDAR GEDI EN GOOGLE EARTH ENGINE var GEDI = ee.ImageCollection ('LARSE/GEDI/GEDI02_A_002_MONTHLY') .filterDate('2021-01-01', '2021-11-01').filterBounds (AOI); print (GEDI); Map.addLayer (GEDI, { bands: ['rh100'], palette: ['black']}, 'GEDI', true); Map.addLayer (GEDI, { min:0, max:100, bands: ['landsat_water_persistence'], palette: ['red', 'yellow', 'blue']}, 'GEDI water', true); Map.addLayer (GEDI, { min:0, max:20, bands: ['rh98'], palette: ['black', 'yellow', 'green']}, 'GEDI canopy', true);