EVI

サマリー

Calculates the Enhanced Vegetation Index (EVI) from a multiband raster object and returns a raster object with the index values.

説明

EVI (Enhanced Vegetation Index) 方法は、大気の影響と植生の背景シグナルを考慮して最適化された植生指数です。 EVI は NDVI に似ていますが、背景雑音や大気雑音による影響をあまり受けません。また、非常に高密度の緑色植生を含むエリアを表示しても、NDVI に比べて飽和しません。

EVI = 2.5*(NIR - Red) / (NIR + 6*Red - 7.5*Blue + 1)

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.

構文

EVI (raster, {nir_band_id}, {red_band_id}, {blue_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
blue_band_id

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

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

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

The output raster object with the EVI index values.

コードのサンプル

EVI example

Calculates the Enhanced Vegetation Index for a Landsat 8 image.

import arcpy

EVI_raster = arcpy.sa.EVI("Landsat8.tif", 5, 4, 2)

関連トピック