Skip to main content

ClayMinerals

汇总

计算多波段栅格对象的黏土矿物 (CM) 比率,并返回具有该指数值的栅格对象。

讨论

黏土矿物比为 SWIR1 和 SWIR2 波段的比值。 该比值利用的是粘土、明矾石等含水矿物吸收光谱中 2.0–2.3 微米部分的辐射的实际原理。 因为该指数为比值型,所以可减轻由地形引起的光照变化。

\(粘土矿物比 \space = \space SWIR1 \space / \space SWIR2\)

  • SWIR1 = 短波红外 1 波段的像素值

  • SWIR2 = 短波红外 2 波段的像素值

有关其他多波段栅格索引的信息,请参见 Band Arithmetic 栅格函数。

栅格对象所引用的栅格数据集是临时性的。 要将其设置为永久,可以调用栅格对象的 save 方法。

语法

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.

波段 ID 索引使用以一起始的索引。

(默认值为 6)

Integer

swir2_band_id

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

波段 ID 索引使用以一起始的索引。

(默认值为 7)

Integer

返回值

数据类型 说明

Raster

具有粘土矿物比率值的输出栅格对象。

代码示例

ClayMinerals 示例

计算 Sentinel-2 图像的粘土矿物比率。

import arcpy

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