IronOxide

Résumé

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

Discussion

La méthode de rapport Iron Oxide (IO) (Oxyde de fer) est un indice géologique permettant d’identifier les entités rocher ayant fait l’objet d’une oxydation des sulfites de fer à l’aide des canaux rouge et bleu. L’indice IO est utile pour identifier les entités d’oxyde de fer figurant sous les couverts végétaux et permet de cartographier les composés minéraux.

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.

Syntaxe

IronOxide (raster, {red_band_id}, {blue_band_id})
ParamètreExplicationType de données
raster

The input raster.

Raster
red_band_id

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

(La valeur par défaut est 4)

Integer
blue_band_id

The band ID of the blue 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 Iron Oxide ratio values.

Exemple de code

IronOxide example

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

import arcpy

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

Rubriques connexes