IronOxide

サマリー

Calculates the Iron Oxide (IO) ratio from a multiband raster object and returns a raster object with the index values.

説明

酸化鉄 (IO) 比率メソッドは、赤色および青色バンドを使用して鉄含有硫化物が酸化した岩石の特徴を識別するための地質学的指標です。 IO は植生キャノピーの下にある酸化鉄の特徴の識別に役立ち、鉱物組成マッピングで使用されます。

IronOxide = Red / Blue

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.

構文

IronOxide (raster, {red_band_id}, {blue_band_id})
パラメーター説明データ タイプ
raster

The input raster.

Raster
red_band_id

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

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

Integer
blue_band_id

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

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

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

The output raster object with the Iron Oxide ratio values.

コードのサンプル

IronOxide example

Calculates the Iron Oxide ratio for a Sentinel-2 image.

import arcpy

IronOxide_raster = arcpy.ia.IronOxide("Sentinel2.tif", 4, 2)