IronOxide

Resumen

Calculates the Iron Oxide (IO) ratio from a multiband raster object and returns a raster object with the index values.

Debate

El método de ratio de óxido de hierro (IO, por sus siglas en inglés) es un índice geológico que sirve para identificar las entidades rocosas que han experimentado la oxidación de sulfuros que contienen hierro mediante las bandas roja y azul. El OI resulta útil para identificar entidades de óxido de hierro bajo cubiertas forestales y se utiliza en la representación cartográfica de compuestos minerales.

IronOxide = Red / Blue

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

IronOxide (raster, {red_band_id}, {blue_band_id})
ParámetroExplicaciónTipo de datos
raster

The input raster.

Raster
red_band_id

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

(El valor predeterminado es 4)

Integer
blue_band_id

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

(El valor predeterminado es 2)

Integer
Valor de retorno
Tipo de datosExplicación
Raster

The output raster object with the Iron Oxide ratio values.

Muestra de código

IronOxide example

Calculates the Iron Oxide ratio for a Sentinel-2 image.

import arcpy

IronOxide_raster = arcpy.ia.IronOxide("Sentinel2.tif", 4, 2)