Zusammenfassung
Calculates the Ferrous Minerals (FM) ratio from a multiband raster object and returns a raster object with the index values.
Auswertung
Das Verhältnis von Eisenmineralien (Ferrous Minerals, FM) ist ein geologischer Wert zur Identifizierung von Fels-Features, die eine bestimmte Menge eisenhaltiger Mineralien enthalten, mithilfe von Kurzwelleninfrarot- (Shortwave Infrared, SWIR) und Nahinfrarotbändern (NIR). FM wird für die Darstellung von mineralischen Gemischen verwendet.
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.
Syntax
FerrousMinerals (raster, {swir_band_id}, {nir_band_id})
Parameter | Erklärung | Datentyp |
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. (Der Standardwert ist 6) | Integer |
nir_band_id | The band ID of the near-infrared band. The ID index uses one-based indexing. (Der Standardwert ist 5) | Integer |
Datentyp | Erklärung |
Raster | The output raster object with the Ferrous Minerals ratio values. |
Codebeispiel
Calculates the Ferrous Minerals ratio for a Sentinel-2 image.
import arcpy
FerrousMinerals_raster = arcpy.ia.FerrousMinerals("Sentinel2.tif", 11, 8)