SR

Zusammenfassung

Calculates the Simple Ratio (SR) from a multiband raster object and returns a raster object with the index values.

Diskussion

Die Methode "Simple Ratio (SR)" ist ein allgemeiner Vegetationsindex für das Schätzen der Vegetationsmenge. Er bezeichnet das Verhältnis des Lichts, das im NIR-Band gestreut und im roten Band absorbiert wird, wodurch die Auswirkungen der Atmosphäre und Topografie reduziert werden.

Values are high for vegetation with a large leaf area index, or high canopy closure, and low for soil, water, and nonvegetated features. The range of values is from 0 to approximately 30, where healthy vegetation generally falls between values of 2 and 8.

SR = NIR / Red

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

SR (raster, {nir_band_id}, {red_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 5)

Integer
red_band_id

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

(Der Standardwert ist 4)

Integer
Rückgabewert
DatentypErläuterung
Raster

The output raster with SR values.

Codebeispiel

SR example

Calculates the Simple Ratio for a multispectral image.

import arcpy

SR_raster = arcpy.ia.SR("MSimage.tif",5,4)