Resumen
Calculates the Iron Oxide (IO) ratio from a multiband raster object and returns a raster object with the index values.
Debate
La relación de óxido de hierro es una proporción entre las longitudes de onda roja y azul. La presencia de filosilicatos con contenido limonítico y una alteración del óxido de hierro limonítico causan absorción en la banda azul y reflectancia en la banda roja. Esto hace que las áreas con una gran alteración de hierro brillen. La naturaleza de la relación permite que el índice atenúe las diferencias de iluminación causadas por las sombras del terreno.
Ratio de óxido de hierro = rojo / azul
- Rojo = valores de píxel de la banda roja
- Azul = valores de píxel de la banda azul
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ámetro | Explicación | Tipo 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 |
Tipo de datos | Explicación |
Raster | The output raster object with the Iron Oxide ratio values. |
Muestra de código
Calculates the Iron Oxide ratio for a Sentinel-2 image.
import arcpy
IronOxide_raster = arcpy.ia.IronOxide("Sentinel2.tif", 4, 2)