摘要
计算多波段栅格对象的简单比值 (SR),并返回具有该指数值的栅格对象。
说明
简单比值 (SR) 方法是用于评估植被量的常用植被指数。 该指数是近红外中散射的光线与红光波段中吸收的光线的比值,其降低了大气和地形的影响。
对于叶面积指数较大或冠层郁闭度较高的植被,其值较高;对于土壤、水分和非植被要素,其值较低。 值的范围为 0 至大约 30,其中健康植被通常落在值为 2 到 8 的范围内。
SR = NIR / Red
有关其他多波段栅格索引的信息,请参见 Band Arithmetic 栅格函数。
栅格对象所引用的栅格数据集是临时性的。 要将其设置为永久,可以调用栅格对象的 save 方法。
语法
SR (raster, {nir_band_id}, {red_band_id})
参数 | 说明 | 数据类型 |
raster | The input raster. | Raster |
nir_band_id | The band ID of the near-infrared band. The ID index uses one-based indexing. (默认值为 5) | Integer |
red_band_id | The band ID of the red band. The ID index uses one-based indexing. (默认值为 4) | Integer |
数据类型 | 说明 |
Raster | 具有 SR 值的输出栅格。 |
代码示例
计算多光谱图像的简单比值。
import arcpy
SR_raster = arcpy.ia.SR("MSimage.tif",5,4)