CIg

Resumen

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

Debate

El índice Clg (del inglés Chlorophyll Index - Green, índice de clorofila - verde) es un índice de vegetación que permite obtener una estimación del contenido de clorofila de las hojas a partir de la tasa de reflectividad en las bandas infrarroja cercana (NIR) y verde.

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.

Sintaxis

CIg (raster, {nir_band_id}, {green_band_id})
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 7)

Integer
green_band_id

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

(El valor predeterminado es 3)

Integer
Valor de retorno
Tipo de datosExplicación
Raster

The output raster object with the CIg index values.

Muestra de código

CIg example

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

import arcpy

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