TSAVI

摘要

计算多波段栅格对象的转换的土壤调节植被指数 (TSAVI),并返回具有该指数值的栅格对象。

说明

“转换型土壤调节植被指数”(TSAVI) 方法是通过假设土壤线具有任意斜率和截距来最小化土壤亮度影响的植被指数。

TSAVI = (s *(NIR - s * Red - a)) / (a * NIR + Red - a * s + X * (1 + s2))

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

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

语法

TSAVI (raster, {nir_band_id}, {red_band_id}, {s}, {a}, {X})
参数说明数据类型
raster

The input raster.

Raster
nir_band_id

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

(默认值为 4)

Integer
red_band_id

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

(默认值为 3)

Integer
s

土壤线的坡度。

(默认值为 0.33)

Double
a

土壤线的截距。

(默认值为 0.5)

Double
X

用于最大限度降低土壤噪声的调整因子。

(默认值为 1.5)

Double
返回值
数据类型说明
Raster

具有 TSAVI 值的输出栅格。

代码示例

PVI 示例

计算 Landsat 8 影像的转换的土壤调节植被指数。

import arcpy

TSAVI_raster = arcpy.sa.TSAVI("Landsat8.tif",5,4,0.33,0.5,1.5)

相关主题