EVI

Zusammenfassung

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

Diskussion

Bei der Methode "Vegetationsindex (EVI)" handelt es sich um einen optimierten Vegetationsindex, der atmosphärische Einflüsse und Hintergrundsignale der Vegetation berücksichtigt. Er ähnelt NDVI, ist aber weniger empfindlich für Hintergrund- und atmosphärisches Rauschen. Zudem wird er nicht so gesättigt wie NDVI, wenn Gebiete mit einer sehr dichten grünen Vegetation dargestellt werden.

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.

Syntax

EVI (raster, {nir_band_id}, {red_band_id}, {blue_band_id})
ParameterErläuterungDatentyp
raster

The input raster.

Raster
nir_band_id

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

(Der Standardwert ist 5)

Integer
red_band_id

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

(Der Standardwert ist 4)

Integer
blue_band_id

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

(Der Standardwert ist 2)

Integer
Rückgabewert
DatentypErläuterung
Raster

The output raster object with the EVI index values.

Codebeispiel

EVI example

Calculates the Enhanced Vegetation Index for a Landsat 8 image.

import arcpy

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

Verwandte Themen