FerrousMinerals

サマリー

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

説明

鉄含有鉱物 (FM) 比率メソッドは、SWIR および NIR バンドを使用して、一定量の鉄含有鉱物を含む岩石の特徴を識別するための地質学的指標です。 FM は鉱物組成マッピングに使用されます。

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.

構文

FerrousMinerals (raster, {swir_band_id}, {nir_band_id})
パラメーター説明データ タイプ
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.

(デフォルト値は次のとおりです 6)

Integer
nir_band_id

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

(デフォルト値は次のとおりです 5)

Integer
戻り値
データ タイプ説明
Raster

The output raster object with the Ferrous Minerals ratio values.

コードのサンプル

FerrousMinerals example

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

import arcpy

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