PVI

Resumen

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

Debate

El método Índice de vegetación perpendicular (PVI, por sus siglas en inglés) es similar a un índice diferencial de vegetación; sin embargo, es sensible a las variaciones atmosféricas. Al utilizar este método para comparar imágenes, solo se debe utilizar en imágenes que se han corregido atmosféricamente.

PVI = (NIR - a * Red - b) / (√(1 + a2))

  • a—slope of the soil line

  • b—gradient of the soil line

Este índice coloca los valores entre -1,0 y 1,0.

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

PVI (raster, {nir_band_id}, {red_band_id}, {a}, {b})
ParámetroExplicaciónTipo 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 4)

Integer
red_band_id

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

(El valor predeterminado es 3)

Integer
a

The slope of the soil line.

(El valor predeterminado es 0.3)

Double
b

The gradient of the soil line.

(El valor predeterminado es 0.5)

Double
Valor de retorno
Tipo de datosExplicación
Raster

The output raster object with the PVI index values.

Muestra de código

PVI example

Calculates the Perpendicular Vegetation Index for a Landsat 8 image.

import arcpy

PVI_raster = arcpy.ia.PVI("Landsat8.tif", 5, 4, 0.3, 0.5)