Zusammenfassung
Calculates the Enhanced Vegetation Index (EVI) from a multiband raster object and returns a raster object with the index values.
Auswertung
Der erweiterte Vegetationsindex (EVI) ist ein optimierter 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})
Parameter | Erklärung | Datentyp |
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-edge 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 |
Datentyp | Erklärung |
Raster | The output raster object with the EVI index values. |
Codebeispiel
Calculates the Enhanced Vegetation Index for a Landsat 8 image.
import arcpy
EVI_raster = arcpy.ia.EVI("Landsat8.tif", 5, 4, 2)