Synthèse
Calculates the Ferrous Minerals (FM) ratio from a multiband raster object and returns a raster object with the index values.
Discussion
Le ratio de minéraux ferreux met en évidence les minéraux à base de fer. Il utilise le ratio entre le canal SWIR et le canal NIR.
Ratio de minéraux ferreux = SWIR / NIR
- SWIR = valeurs de pixel du canal d'onde courte infrarouge
- NIR = valeurs de pixel du canal proche infrarouge
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
FerrousMinerals (raster, {swir_band_id}, {nir_band_id})
Paramètre | Explication | Type de données |
raster | The input raster. | Raster |
swir_band_id | The band ID of the shortwave infrared (SWIR) band. The band ID index uses one-based indexing. (La valeur par défaut est 6) | Integer |
nir_band_id | The band ID of the near-infrared band. The ID index uses one-based indexing. (La valeur par défaut est 5) | Integer |
Type de données | Explication |
Raster | The output raster object with the Ferrous Minerals ratio values. |
Exemple de code
Calculates the Ferrous Minerals ratio for a Sentinel-2 image.
import arcpy
FerrousMinerals_raster = arcpy.ia.FerrousMinerals("Sentinel2.tif", 11, 8)
Vous avez un commentaire à formuler concernant cette rubrique ?