ClayMinerals

Zusammenfassung

Calculates the Clay Minerals (CM) ratio from a multiband raster object and returns a raster object with the index values.

Diskussion

Das Tonmineralienverhältnis ist ein Verhältnis der SWIR1- und SWIR2-Bänder. Dieses Verhältnis nutzt die Tatsache, dass wasserhaltige Mineralien wie Tonarten, Alunit usw. die Strahlung im 2,0- bis 2,3-Mikrometer-Teil des Spektrums absorbieren. Dieser Index mindert Beleuchtungsänderungen, die auf das Terrain zurückzuführen sind, da es ein Verhältnis ist.

Tonmineralienverhältnis = SWIR1/SWIR2
  • SWIR1 = Pixelwerte aus dem Kurzwelleninfrarotband 1
  • SWIR2 = Pixelwerte aus dem Kurzwelleninfrarotband 2

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

ClayMinerals (raster, {swir1_band_id}, {swir2_band_id})
ParameterErläuterungDatentyp
raster

The input raster.

Raster
swir1_band_id

The band ID of the shortwave infrared 1 (SWIR1) band.

The band ID index uses one-based indexing.

(Der Standardwert ist 6)

Integer
swir2_band_id

The band ID of the shortwave infrared 2 (SWIR2) band.

The band ID index uses one-based indexing.

(Der Standardwert ist 7)

Integer
Rückgabewert
DatentypErläuterung
Raster

The output raster object with the Clay Minerals ratio values.

Codebeispiel

ClayMinerals example

Calculates the Clay Minerals ratio for a Sentinel-2 image.

import arcpy

ClayMinerals_raster = arcpy.sa.ClayMinerals("Sentinel2.tif", 11, 12)

Verwandte Themen