Script Library
BasicVegetationIntermediate
EVI Phenology Analysis
Analyze vegetation phenology using Enhanced Vegetation Index from MODIS.
Pipeline (1 steps)
- Analyze vegetation phenology using Enhanced Vegetation Index from MODIS.
Datasets
- modis-ndvi-1km
Simulated previewPaste the script in Earth Engine for live results
Outputs the script produces
map Map layers
map Time series chart
map Export GeoTIFF
// EVI Phenology Analysis
var collection = ee.ImageCollection('MODIS/061/MOD13A2')
.filterDate(startDate, endDate)
.filterBounds(aoi)
.select('EVI');
var result = collection.mean().multiply(0.0001);
var monthly = ee.List.sequence(1,12).map(function(m){
return collection.filter(ee.Filter.calendarRange(m,m,'month')).mean().set('month',m);
});# EVI Phenology Analysis
import ee, geemap
collection = (ee.ImageCollection('MODIS/061/MOD13A2')
.filterDate(start_date, end_date)
.filterBounds(aoi)
.select('EVI'))
result = collection.mean().multiply(0.0001)