Vegetation Indices
Introduction
Vegetation indices are like health indicators for crops. Just like checking a person's health by measuring factors such as temperature, blood pressure, and heart rate, vegetation indices use the way plants reflect light to give an idea of how well the plants are doing.
Plants absorb sunlight and use it for photosynthesis, which is how they make their own food. But they also reflect some of that sunlight, especially in the visible and near-infrared parts of the light spectrum. The amount of reflection in these two parts of the spectrum can tell a lot about the crop's health.
Growers use these indices to monitor their fields over time. By taking regular measurements, growers can spot changes in plant health before they become visible to the naked eye. This allows the grower to take timely actions to address problems and optimize their crop yield.
Processing Vegetation Indices Images
You can use the processVegetationIndices()
mutation to process the vegetation index images for a given index. The endpoint can also be used for processing daily vegetation index estimates, for more information on daily estimation images, please refer to our documentation.
Usage
The processVegetationIndices()
mutation is used to process vegetation indices images based on the satellite data. The endpoint requires four arguments:
polygonId*
: The polygonId is the unique ID generated when you register/create a polygon in the API. You use this unique identifier to specify the plot you want to analyse.startDate*
: This date specifies the start of the date range that you want to process.endDate*
: This date specifies the end of the date range that you want to process.indexType*
: This indexType is the vegetation index of the enumeration of indices to be processed. The supported indices are listed on the bottom of this page.dailyEstimates
: This optional parameter specificies if the daily estimates should be processed, or if the regular images based on the satellite imagery should be processed. For daily estimation images, it should be set to true.
The endpoint only returns the status of the request itself, with the requestId
. The request can be tracked using the requestId
using the retrieveRequestDetails()
endpoint. For more information on monitoring requests, please refer to our monitoring documentation.
Example
mutation {
processVegetationIndices(
polygonId: "PolygonId"
startDate: "2024-01-01"
endDate: "2024-05-01"
indexType: "LAI",
dailyEstimates: false
)
{
IsSuccess
Message
Status
Result {
requestId
}
}
}
Retrieving Vegetation Indices Images
You can use theretrieveVegetationIndices()
query to retrieve the daily estimation images, by simply setting the dailyEstimates
boolean parameter to true. By enabling this parameter, this will instead of just retrieving the usual vegetation indices images based on the satellite data, retrieve all the daily estimation images between the given time range. The dailyEstimates
is also available on the retrievePlantHealth()
and retrieveWaterStress()
queries for NDVI and NDWI respectively.
Usage
The retrieveVegetationIndices()
query is used to both retrieve vegetation indices images based on the satellite data, and estimates based on these images. The endpoint requires four arguments:
polygonId*
: The polygonId is the unique ID generated when you register/create a polygon in the API. You use this unique identifier to specify the plot you want to analyse.startDate*
: This date specifies the start of the date range that you want to retrieve.endDate*
: This date specifies the end of the date range that you want to retrieve.indexType*
: This indexType is the vegetation index of the enumeration of indices to be retrieved. The supported indices are listed on the bottom of this page.dailyEstimates
: This optional parameter specificies if the daily estimates should be retrieved, or if the regular images based on the satellite imagery should be retrieved. For daily estimation images, it should be set to true.
Example
mutation {
retrieveVegetationIndices(
polygonId: "PolygonId"
startDate: "2024-01-01"
endDate: "2024-05-01"
indexType: "LAI",
dailyEstimates: false
)
{
IsSuccess
Message
Status
Result {
colorlegend
tif
png
json
}
}
}
Supported Indices
The Vultus Analysis Platform (API) can provide an analysis of a polygon using several different vegetation indices.
NDVI - Normalized Difference Vegetation Index
One common vegetation index is the Normalized Difference Vegetation Index, or NDVI. It's calculated by looking at the difference between the amount of light reflected in the near-infrared and the visible red parts of the spectrum. Healthy plants tend to absorb a lot of red light and reflect a lot of near-infrared light, so a high NDVI value often means your plants are doing well.
Think of NDVI like a plant's "greenness meter." If NDVI is high, your plants are lush and healthy. If it's low, there might be an issue with your crops, like water stress, nutrient deficiency, or disease.
NDWI - Normalized Difference Water Index
The Normalized Difference Water Index (NDWI) is used in precision agriculture to detect and monitor water stress in crops. NDWI measure water stress in the canopy. It can also be used in combination with other indices, such as NDVI. NDVI is sensitive to vegetation and NDWI is sensitive to water, so combining NDWI and NDVI, or other, analyses produces a more complete picture of the health and productivity of crops.
MSAVI2 - Modified Soil-Adjusted Vegetation Index
The Modified Soil-Adjusted Vegetation Index 2 (MSAVI2) is a vegetation index that is similar to NDVI, but is designed to reduce the influence of soil brightness on the index values. This means that MSAVI2 is more sensitive to vegetation than NDVI, and it can provide more accurate information about vegetation health and productivity. The MSAVI2 index is calculated by using a different combination of red and near-infrared bands than NDVI. MSAVI2 can be more effective than NDVI for identifying crop stress, especially when used in combination with other indices.
LAI - Leaf Area Index
The Leaf Area Index (LAI) is a measure of the amount of leaf area per unit of ground area. It is often used as an indicator of vegetation canopy structure and biomass. LAI values can range from 0 to over 8, with higher values indicating denser and more extensive vegetation.
NDRE - Normalized Difference Red Edge
The Normalized Difference Red Edge (NDRE) index is calculated using the difference between the red edge and red bands of a multispectral image. NDRE is used to assess vegetation health and productivity as it is sensitive to variations in chlorophyll content, leaf area, and leaf structure. NDRE is particularly useful for monitoring crops that have high chlorophyll content, such as corn, soybeans, and sugarcane.
EVI - Enhanced Vegetation Index
The Enhanced Vegetation Index (EVI and EVI2) is a vegetation index that is similar to NDVI but it is designed to improve the sensitivity and dynamic range of NDVI. EVI is more sensitive to vegetation than NDVI and it can provide more accurate information about vegetation health and productivity. EVI2 is an improved version of the original Enhanced Vegetation Index. EVI2 is particularly useful in regions with dense vegetation or areas that might have challenges like aerosols or haze in the atmosphere. It's designed to minimize the impact of these factors, making it a valuable tool for monitoring vegetation health in diverse environmental conditions.
RVI - Reflectance Vegetation Index
The Reflectance Vegetation Index (RVI) is a measurement of the greenness or health of vegetation. RVI is calculated by taking the ratio of the reflectance of light in the near-infrared (NIR) band to that in the red band. Because healthy vegetation reflects more light in the NIR band than in the red band, the RVI values will be higher for healthier vegetation. RVI values are used to identify areas of the field that may be experiencing stress due to disease, nutrient deficiencies, or water.
GNDVI - Green Normalized Difference Vegetation Index
The Green Normalized Difference Vegetation Index (GNDVI) is calculated by taking the ratio of the reflectance of light in the near-infrared (NIR) band to that in the green band, then normalizing the result by subtracting a constant value from it. GNDVI is sensitive to the chlorophyll content of vegetation making it an indicator of vegetation health and productivity. GNDVI values are high for healthy vegetation, and low for stressed or bare soil.