Synthèse
Calculates the Perpendicular Vegetation Index (PVI) from a multiband raster object and returns a raster object with the index values.
Discussion
La méthode de l’indice de végétation perpendiculaire (PVI, Perpendicular Vegetation Index) est similaire à un indice de végétation par différence. Il est toutefois sensible aux variations atmosphériques. Si vous utilisez cette méthode pour comparer des images, ne l’appliquez qu’à des images qui ont subi une correction atmosphérique.
PVI = (NIR - a * Red - b) / (√(1 + a2))
a—slope of the soil line
b—gradient of the soil line
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
PVI (raster, {nir_band_id}, {red_band_id}, {a}, {b})
Paramètre | Explication | Type de données |
raster | The input raster. | Raster |
nir_band_id | The band ID of the near-infrared band. The ID index uses one-based indexing. (La valeur par défaut est 4) | Integer |
red_band_id | The band ID of the red band. The ID index uses one-based indexing. (La valeur par défaut est 3) | Integer |
a | The slope of the soil line. (La valeur par défaut est 0.3) | Double |
b | The gradient of the soil line. (La valeur par défaut est 0.5) | Double |
Type de données | Explication |
Raster | The output raster object with the PVI index values. |
Exemple de code
Calculates the Perpendicular Vegetation Index for a Landsat 8 image.
import arcpy
PVI_raster = arcpy.ia.PVI("Landsat8.tif", 5, 4, 0.3, 0.5)
Vous avez un commentaire à formuler concernant cette rubrique ?