IronOxide

Zusammenfassung

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

Diskussion

Die Methode "Eisenoxidverhältnis (Iron Oxide, IO)" ist ein geologischer Index zur Identifizierung von Fels-Features, bei denen eine Oxidation eisenhaltiger Sulfide stattgefunden hat, mithilfe von roten und blauen Bändern. IO ist nützlich für die Identifizierung von Eisenoxid-Features unter einer Vegetationsbedeckung und wird für die Darstellung von mineralischen Gemischen verwendet.

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.

Syntax

IronOxide (raster, {red_band_id}, {blue_band_id})
ParameterErläuterungDatentyp
raster

The input raster.

Raster
red_band_id

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

(Der Standardwert ist 4)

Integer
blue_band_id

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

(Der Standardwert ist 2)

Integer
Rückgabewert
DatentypErläuterung
Raster

The output raster object with the Iron Oxide ratio values.

Codebeispiel

IronOxide example

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

import arcpy

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