MTVI2

Résumé

Calculates the Modified Triangular Vegetation Index (MTVI2) from a multiband raster object and returns a raster object with the index values.

Discussion

La méthode MTVI2 (Modified Triangular Vegetation Index, Indice de végétation triangulaire modifié) est un indice de végétation qui permet de détecter la chlorophylle des feuilles à l’échelle de la couverture végétale tout en étant relativement insensible à l’indice de surface foliaire. Cet indice utilise la réflectance dans les canaux vert, rouge et NIR.

MTVI2 = 1.5*(1.2 * (NIR - Green) - 2.5 * (Red - Green))√((2 * NIR + 1)²-(6 * NIR - 5√(Red)) - 0.5)

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.

Syntaxe

MTVI2 (raster, {nir_band_id}, {red_band_id}, {green_band_id})
ParamètreExplicationType de données
raster

The input raster.

Raster
nir_band_id

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

(La valeur par défaut est 7)

Integer
red_band_id

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

(La valeur par défaut est 5)

Integer
green_band_id

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

(La valeur par défaut est 3)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the MTVI2 index values.

Exemple de code

MTVI2 example

Calculates the Modified Triangular Vegetation Index for a Landsat 8 image.

import arcpy

MTVI2_raster = arcpy.sa.MTVI2("Landsat8.tif", 5, 4, 3)

Rubriques connexes