ClayMinerals

概要

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

ディスカッション

粘土鉱物 (CM) 比率は、2 つの短波赤外 (SWIR) バンドを使用して粘土と明ばん石を含む鉱物の特徴を識別するための地質学的指標です。CM は鉱物組成マッピングに使用されます。

CM = SWIR1 / SWIR2

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.

構文

ClayMinerals (raster, {swir1_band_id}, {swir2_band_id})
パラメーター説明データ タイプ
raster

The input raster.

Raster
swir1_band_id

The band ID of the shortwave infrared 1 (SWIR1) band.

The band ID index uses one-based indexing.

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

Integer
swir2_band_id

The band ID of the shortwave infrared 2 (SWIR2) band.

The band ID index uses one-based indexing.

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

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

The output raster object with the Clay Minerals ratio values.

コードのサンプル

ClayMinerals example

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

import arcpy

ClayMinerals_raster = arcpy.sa.ClayMinerals("Sentinel2.tif", 11, 12)

関連トピック