NDVI

サマリー

Calculates the Normalized Difference Vegetation Index (NDVI) from a multiband raster object and returns a raster object with the index values.

説明

正規化植生指標 (NDVI) は、植生の有無・活性度を表す標準化された指標です (相対バイオマスとも呼ばれます)。この指標は、マルチスペクトル ラスター データセットの 2 つのバンド間の特性のコントラストを活用しています。具体的には、赤色のバンドにおけるクロロフィル色素の吸収と、近赤外 (NIR) バンドにおける植物の細胞構造による高い反射特性を利用しています。

NDVI = ((NIR - R)/(NIR + R))

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.

構文

NDVI (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.

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

Integer
red_band_id

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

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

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

The output raster object with the NDVI index values.

コードのサンプル

NDVI example

Calculates the Normalized Difference Vegetation Index for a Landsat 8 image.

import arcpy

NDVI_raster = arcpy.sa.NDVI("Landsat8.tif", 5, 4)

関連トピック