サマリー
Calculates the Red-Edge Simple Ratio (SRre) from a multiband raster object and returns a raster object with the index values.
説明
Red-Edge Simple Ratio (SRre) メソッドは、健全な植生とストレスを受けた植生の量を推定するための植生指数です。 これは、NIR バンドとレッド エッジ バンドで散乱する光の比率であり、この光の作用により、大気と地形の影響が低減されます。
SRre = NIR / RedEdge
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.
構文
SRre (raster, {nir_band_id}, {redEdge_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. (デフォルト値は次のとおりです 7) | Integer |
redEdge_band_id | The band ID of the red-edge band. The band ID index uses one-based indexing. (デフォルト値は次のとおりです 6) | Integer |
データ タイプ | 説明 |
Raster | The output raster with SRre values. |
コードのサンプル
Calculates the Red-Edge Simple Ratio for a Sentinel-2 image.
import arcpy
SRre_raster = arcpy.ia.SRre("Sentinel2.tif",8,6)