FerrousMinerals

Résumé

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

Discussion

La méthode du rapport Ferrous Minerals (FM) (Minéraux ferreux) est un indice géologique permettant d’identifier les entités rocher qui contiennent une quantité de minéraux de fer à l’aide des canaux à onde courte infrarouge (SWIR) et proche infrarouge (NIR). Le rapport FM est utilisé dans la cartographie composite de minéraux.

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.

Syntaxe

FerrousMinerals (raster, {swir_band_id}, {nir_band_id})
ParamètreExplicationType de données
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.

(La valeur par défaut est 6)

Integer
nir_band_id

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

(La valeur par défaut est 5)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the Ferrous Minerals ratio values.

Exemple de code

FerrousMinerals example

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

import arcpy

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

Rubriques connexes