Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Historic NDVI Changes with Landsat 4-5TM and Landsat 8

//VERSION=3
//Historic NDVI changes with Landsat 4-5 and Landsat 8
//Author: Monja B. Šebela

function setup() {
  return {
  	input: [
   	 {datasource: "landsat45", bands:["B04", "B03","dataMask"], mosaicking: "ORBIT"},
   	 {datasource: "landsat8", bands:["B05", "B04","B03","dataMask"], mosaicking: "ORBIT"}
  	],
  	output: [
   	 { id: "default", bands: 3, sampleType: SampleType.AUTO }
  	]
  };
}

function evaluatePixel(samples, inputData, inputMetadata, customData, outputMetadata) {
 var L8 = samples.landsat8[0]
 var L45 = samples.landsat45[0]
 let oldNDVI = (L45.B04 - L45.B03) / (L45.B04 + L45.B03)
 let newNDVI = (L8.B05 - L8.B04) / (L8.B05 + L8.B04)
 
 let val = [2*oldNDVI, 2*newNDVI, 2*oldNDVI];
 return {
    default: val
 }
}

Author:

Monja B. Šebela

Evaluate and visualize

General description of the script

This script uses data fusion to compare historic with modern imagery by combining Landsat 4-5 TM collection with Landsat 8. NDVI is calculated for both collections, and returned in RGB channels to display changes. In the script output, the newer Landsat 8 NDVI is displayed in the green channel, and the older Landsat 4-5 TM NDVI in both red and blue channels. The resulting RGB image shows green, where vegetation cover was high on a more recent image and low on an older one, thus indicating vegetation cover increase. Pink color indicates high vegetation cover on the older date and low on a newer one, thus indicating reduction in vegetation cover. Vegetation reduction can for example give the user information on urban growth, or deforestation, and increase can indicate agricultural land expansion, or reforestation. Note that dates should be carefully selected, so that data is available, and that both images are taken in the same season, prefferably as close to the same day in a year as possible, to avoid seasonal vegetation changes.

Note that in some areas, Landsat 4-5TM images are not georeferenced correctly, and they do not align with Landsat 8 imagery. The script cannot be used in those areas.

Description of representative images

On this image we can observe the expansion of urban areas where the vegetation cover diminished (pink) and the expansion of agricultural land, where vegetation cover increased (green) over Dakar, between 1990 and 2017. For the earlier image, Landsat 4-5 TM (acquired on 1990-12-05) was used, and for the later image, Landsat 8 (acquired on 2017-12-15) was used.

Dakar

On the image below, the Dakar Airport and the surrounding roads are clearly seen in pink, indicating the removal of vegetation since 1990. The airport construction began in 2007, and was completed in 2016, thus clearly showing on the 2017 Landsat 8 image. In the surrounding area, several new agricultural fields were created, as is evident by the bright green, indicating the increase in green vegetation since 1990. For the earlier image, Landsat 4-5 TM (acquired on 1990-12-05) was used, and for the later image, Landsat 8 (acquired on 2017-12-15) was used.

Dakar