EVI

Résumé

Calculates the Enhanced Vegetation Index (EVI) from a multiband raster object and returns a raster object with the index values.

Discussion

La méthode d’indice Enhanced Vegetation Index (EVI) (Indice de végétation amélioré) est un indice de végétation optimisé prenant en compte les influences atmosphériques et le signal en arrière-plan de végétation. Il est analogue à l’indice NDVI à ceci près qu’il est moins sensible au bruit de fond et au bruit atmosphérique ; il ne devient pas aussi saturé que le NDVI en cas de régions de végétation très denses.

EVI = 2.5*(NIR - Red) / (NIR + 6*Red - 7.5*Blue + 1)

For information about other multiband raster indexes, see the Band Arithmetic raster function.

The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.

Syntaxe

EVI (raster, {nir_band_id}, {red_band_id}, {blue_band_id})
ParamètreExplicationType de données
raster

The input raster.

Raster
nir_band_id

The band ID of the near-infrared band. The ID index uses one-based indexing.

(La valeur par défaut est 5)

Integer
red_band_id

The band ID of the red band. The ID index uses one-based indexing.

(La valeur par défaut est 4)

Integer
blue_band_id

The band ID of the blue band. The ID index uses one-based indexing.

(La valeur par défaut est 2)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the EVI index values.

Exemple de code

EVI example

Calculates the Enhanced Vegetation Index for a Landsat 8 image.

import arcpy

EVI_raster = arcpy.sa.EVI("Landsat8.tif", 5, 4, 2)

Rubriques connexes