CIg

Résumé

Calculates the Green Chlorophyll Index (CIg) from a multiband raster object and returns a raster object with the index values.

Discussion

La méthode Clg (Chlorophyll Index - Green, Indice chlorophyllien vert) est un indice de végétation qui permet d’estimer la quantité de chlorophylle des feuilles à l’aide du ratio de réflectivité dans les canaux NIR et vert.

CIg = (NIR / Green)-1

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

CIg (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 7)

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 CIg index values.

Exemple de code

CIg example

Calculates the Chlorophyll Index - Green for a Landsat 8 image.

import arcpy

CIg_raster = arcpy.sa.CIg("Landsat8.tif", 5, 3)

Rubriques connexes