ClayMinerals

Synthèse

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

Discussion

Le taux de minéraux argileux est un ratio des canaux SWIR1 et SWIR2. Ce ratio tient compte du fait que les minéraux hydrologiques comme l’argile et l’alunite absorbent le rayonnement de la portion 2.0–2.3 microns du spectre. Cet indice atténue l'évolution de l'éclairage provoquée par le MNT, car il s'agit d'un ratio.

Ratio de minéraux argileux = SWIR1 / SWIR2
  • SWIR1 = valeurs de pixel du canal d'onde courte infrarouge 1
  • SWIR2 = valeurs de pixel du canal d'onde courte infrarouge 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.

Syntaxe

ClayMinerals (raster, {swir1_band_id}, {swir2_band_id})
ParamètreExplicationType de données
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.

(La valeur par défaut est 6)

Integer
swir2_band_id

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

The band ID index uses one-based indexing.

(La valeur par défaut est 7)

Integer
Valeur renvoyée
Type de donnéesExplication
Raster

The output raster object with the Clay Minerals ratio values.

Exemple de code

ClayMinerals example

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

import arcpy

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

Rubriques connexes