SRre

Zusammenfassung

Calculates the Red-Edge Simple Ratio (SRre) from a multiband raster object and returns a raster object with the index values.

Diskussion

Die Methode "Der Red-Edge Simple Ratio (SRre)" ist ein Vegetationsindex für das Schätzen der gesunden und gestressten Vegetationsmenge. Er bezeichnet das Verhältnis des Lichts, das im NIR-Band und an der roten Kante gestreut wird, wodurch die Auswirkungen der Atmosphäre und Topografie reduziert werden.

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.

Syntax

SRre (raster, {nir_band_id}, {redEdge_band_id})
ParameterErläuterungDatentyp
raster

The input raster.

Raster
nir_band_id

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

(Der Standardwert ist 7)

Integer
redEdge_band_id

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

(Der Standardwert ist 6)

Integer
Rückgabewert
DatentypErläuterung
Raster

The output raster with SRre values.

Codebeispiel

SRre example

Calculates the Red-Edge Simple Ratio for a Sentinel-2 image.

import arcpy

SRre_raster = arcpy.sa.SRre("Sentinel2.tif",8,6)

Verwandte Themen