PVI

摘要

计算多波段栅格对象的垂直植被指数 (PVI),并返回具有该指数值的栅格对象。

说明

“垂直植被指数”(PVI) 方法与差值植被指数类似,但对大气变化的敏感度较高。 使用此方法比较影像时,只可将其用于已进行大气修正的影像。

PVI = (NIR - a * Red - b) / (√(1 + a2))

  • a - 土壤线的坡度

  • b - 土壤线的梯度

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

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

语法

PVI (raster, {nir_band_id}, {red_band_id}, {a}, {b})
参数说明数据类型
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
a

土壤线的坡度。

(默认值为 0.3)

Double
b

土壤线的梯度。

(默认值为 0.5)

Double
返回值
数据类型说明
Raster

具有 PVI 指数值的输出栅格对象。

代码示例

PVI 示例

计算 Landsat 8 图像的垂直植被指数。

import arcpy

PVI_raster = arcpy.sa.PVI("Landsat8.tif", 5, 4, 0.3, 0.5)

相关主题