header ad

Daily rainfall datasets (CHIRPS) in Google earth engine (GEE)



Daily rainfall datasets (CHIRPS) in Google earth engine (GEE)






var dataset = ee.ImageCollection('UCSB-CHG/CHIRPS/DAILY')
                 
.filter(ee.Filter.date('2018-05-01', '2018-05-03'));
var precipitation = dataset.select('precipitation');
var precipitationVis = {
  min
: 1.0,
  max
: 17.0,
  palette
: ['001137', '0aab1e', 'e7eb05', 'ff4a2d', 'e90000'],
};
Map.setCenter(17.93, 7.71, 2);
Map.addLayer(precipitation, precipitationVis, 'Precipitation');

Post a Comment

0 Comments