TSAVI

サマリー

Calculates the Transformed Soil Adjusted Vegetation Index (TSAVI) from a multiband raster object and returns a raster object with the index values.

説明

TSAVI (Transformed Soil Adjusted Vegetation Index) は、ソイル ラインの傾きと切片が任意に指定されることを前提として、土壌の明るさによる影響を最小限にする植生指数です。

TSAVI = (s *(NIR - s * Red - a)) / (a * NIR + Red - a * s + X * (1 + s2))
  • NIR = 近赤外バンドのピクセル値
  • Red = 赤色のバンドのピクセル値
  • s = ソイル ラインの傾斜
  • a = ソイル ラインの切片
  • X = 土壌のノイズを最小化するように設定された調整係数

スペース区切りのリストを使用して、NIR Red s a X の順序で NIR および赤色のバンドを指定し、s、a、X 値を入力します。 たとえば、「3 1 0.33 0.50 1.50」と指定します。

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.

構文

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

The slope of the soil line.

(デフォルト値は次のとおりです 0.33)

Double
a

The soil line intercept.

(デフォルト値は次のとおりです 0.5)

Double
X

The adjustment factor that is set to minimize soil noise.

(デフォルト値は次のとおりです 1.5)

Double
戻り値
データ タイプ説明
Raster

The output raster with the TSAVI values.

コードのサンプル

PVI example

Calculates the Transformed Soil Adjusted Vegetation Index for a Landsat 8 image.

import arcpy

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

関連トピック