Resumen
Calculates the Red-Edge Normalized Difference Vegetation Index (NDVIre) from a multiband raster object and returns a raster object with the index values.
Debate
El método NDVI de límite rojo (NDVIre, por sus siglas en inglés) es un índice de vegetación que se emplea para estimar la salud de la vegetación mediante la banda de límite rojo. Resulta especialmente útil a la hora de realizar estimaciones de la salud de los cultivos en las etapas media y tardía del crecimiento, en las que la concentración de clorofila es relativamente mayor. Además, NDVIre puede usarse para cartografiar la variabilidad del nitrógeno en las hojas del campo para comprender mejor las necesidades de fertilizantes de los cultivos.
NDVIre = (NIR - RedEdge)/(NIR + RedEdge)
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
NDVIre (raster, {nir_band_id}, {redEdge_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 7) | Integer |
redEdge_band_id | The band ID of the red-edge band. The band ID index uses one-based indexing. (El valor predeterminado es 6) | Integer |
Tipo de datos | Explicación |
Raster | The output raster object with the NDVIre index values. |
Muestra de código
Calculates the Red-Edge Normalized Difference Vegetation Index for a Landsat 8 image.
import arcpy
NDVIre_raster = arcpy.sa.NDVIre("Landsat8.tif", 5, 6)