GNDVI

Résumé

Calculates the Green Normalized Difference Vegetation Index (GNDVI) from a multiband raster object and returns a raster object with the index values.

Discussion

La méthode GNDVI (Green Normalized Difference Vegetation Index, Indice de végétation par différence normalisée vert) est un indice de végétation qui permet d’estimer la photosynthèse et qui est couramment utilisé pour définir l’absorption en eau et en azote dans la couverture végétale.

GNDVI = (NIR - Green)/(NIR + Green)

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

GNDVI (raster, {nir_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 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 2)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the GNDVI index values.

Exemple de code

GNDVI example

Calculates the Green Normalized Difference Vegetation Index for a Landsat 8 image.

import arcpy

GNDVI_raster = arcpy.sa.GNDVI("Landsat8.tif", 5, 3)

Rubriques connexes