SR

サマリー

Calculates the Simple Ratio (SR) from a multiband raster object and returns a raster object with the index values.

説明

SR (Simple Ratio) 方法は、植生量を推定するための一般的な植生指数です。 これは、NIR で散乱する光と赤色バンドに吸収される光の比率であり、この光の作用により、大気と地形の影響が低減されます。

Values are high for vegetation with a large leaf area index, or high canopy closure, and low for soil, water, and nonvegetated features. The range of values is from 0 to approximately 30, where healthy vegetation generally falls between values of 2 and 8.

SR = NIR / Red

For information about other multiband raster indexes, see the Band Arithmetic raster function.

The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.

構文

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

The output raster with SR values.

コードのサンプル

SR example

Calculates the Simple Ratio for a multispectral image.

import arcpy

SR_raster = arcpy.ia.SR("MSimage.tif",5,4)