VARI

摘要

计算多波段栅格对象的可视化大气阻抗指数 (VARI),并返回具有该指数值的栅格对象。

说明

可见光大气阻抗指数 (VARI) 方法是一种植被指数,用于仅在光谱的可见范围内定量估算植被覆盖度。

VARI = (Green - Red) / (Green + Red – Blue)

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

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

语法

VARI (raster, {red_band_id}, {green_band_id}, {blue_band_id})
参数说明数据类型
raster

The input raster.

Raster
red_band_id

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

(默认值为 3)

Integer
green_band_id

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

(默认值为 2)

Integer
blue_band_id

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

(默认值为 1)

Integer
返回值
数据类型说明
Raster

具有 VARI 值的输出栅格。

代码示例

VARI 示例

计算 Landsat 8 影像的可视化大气阻抗指数。

import arcpy

VARI_raster = arcpy.sa.VARI("Landsat8.tif",4,3,2)

相关主题