FerrousMinerals

Resumen

Calculates the Ferrous Minerals (FM) ratio from a multiband raster object and returns a raster object with the index values.

Debate

El ratio de Minerales ferrosos (FM) es un índice geológico que sirve para identificar las entidades rocosas con cierta cantidad de minerales que contienen hierro mediante la banda infrarroja de onda corta (SWIR) y la banda infrarroja cercana (NIR). Los FM se utilizan en la representación cartográfica de compuestos minerales.

FM = SWIR / NIR

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

FerrousMinerals (raster, {swir_band_id}, {nir_band_id})
ParámetroExplicaciónTipo de datos
raster

The input raster.

Raster
swir_band_id

The band ID of the shortwave infrared (SWIR) band.

The band ID index uses one-based indexing.

(El valor predeterminado es 6)

Integer
nir_band_id

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

(El valor predeterminado es 5)

Integer
Valor de retorno
Tipo de datosExplicación
Raster

The output raster object with the Ferrous Minerals ratio values.

Muestra de código

FerrousMinerals example

Calculates the Ferrous Minerals ratio for a Sentinel-2 image.

import arcpy

FerrousMinerals_raster = arcpy.sa.FerrousMinerals("Sentinel2.tif", 11, 8)

Temas relacionados