NBR

サマリー

Calculates the Normalized Burn Ratio (NBR) from a multiband raster object and returns a raster object with the index values.

説明

正規化燃焼率指数 (NBRI) は、NIR および SWIR バンドを使用して、日照の違いや大気の影響を軽減しながら、焼け跡を強調します。 この指標を使用する前に、画像の反射率の値を補正する必要があります。詳細については、「反射率」をご参照ください。

NBR = (NIR - SWIR) / (NIR+ SWIR)

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.

構文

NBR (raster, {swir_band_id}, {nir_band_id})
パラメーター説明データ タイプ
raster

The input raster.

Raster
swir_band_id

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

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

Integer
nir_band_id

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

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

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

The output raster object with the NBR values.

コードのサンプル

NBR example

Calculates the Normalized Burn Ratio for a Landsat 8 image.

from arcpy.sa import *
out_nbr_raster = NBR("landsat8.tif", 7, 5)
out_nbr_raster.save("C:/arcpyExamples/outputs/NBR.tif")
NBR example

Calculates the Normalized Burn Ratio for a Landsat 8 image.

# Import system modules
import arcpy
from arcpy.sa import *

# Set the analysis environments
arcpy.env.workspace = "C:/arcpyExamples/data"

# Set the local variables
in_raster = "landsat8.tif"

# Execute NBR function
out_nbr_raster = NBR(in_raster, 7, 5)

# Save the output
out_nbr_raster.save("C:/arcpyExamples/outputs/NBR.tif")

関連トピック