NDWI

Résumé

Calculates the Normalized Difference Water Index (NDWI) from a multiband raster object and returns a raster object with the index values.

Discussion

La méthode de l’indice Normalized Difference Water Index (NDWI) (Indice de végétation par différence normalisée) est un indice permettant de délimiter et de surveiller les changements de contenu dans l’eau en surface. Cet indice est calculé avec les canaux NIR et vert.

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

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

NDWI (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 3)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the NDWI index values.

Exemple de code

NDWI example

Calculates the Normalized Difference Water Index for a Sentinel-2 image.

import arcpy

NDWI_raster = arcpy.sa.NDWI("Sentinel2.tif", 8, 3)

Rubriques connexes