Resumen
Calculates the Enhanced Vegetation Index (EVI) from a multiband raster object and returns a raster object with the index values.
Debate
El método Índice de vegetación mejorado (EVI, por sus siglas en inglés) es un índice de vegetación optimizado que tiene en cuenta las influencias atmosféricas y la señal de fondo de la vegetación. Es similar al NDVI, pero es menos sensible al ruido de fondo y atmosférico, y no se satura tanto como el NDVI al visualizar áreas con vegetación verde muy densa.
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.
Sintaxis
EVI (raster, {nir_band_id}, {red_band_id}, {blue_band_id})
Parámetro | Explicación | Tipo de datos |
raster | The input raster. | Raster |
nir_band_id | The band ID of the near-infrared band. The ID index uses one-based indexing. (El valor predeterminado es 5) | Integer |
red_band_id | The band ID of the red band. The ID index uses one-based indexing. (El valor predeterminado es 4) | Integer |
blue_band_id | The band ID of the blue band. The ID index uses one-based indexing. (El valor predeterminado es 2) | Integer |
Tipo de datos | Explicación |
Raster | The output raster object with the EVI index values. |
Muestra de código
Calculates the Enhanced Vegetation Index for a Landsat 8 image.
import arcpy
EVI_raster = arcpy.sa.EVI("Landsat8.tif", 5, 4, 2)