Usage

Plant Health (NDVI)

Dedicated shortcut endpoints for NDVI-based plant health monitoring. These are convenience wrappers around the general vegetation indices endpoint with indexType: "NDVI".

Process Plant Health

Use processPlantHealth() to generate an NDVI analysis for your field:

GraphQL Mutation
mutation { processPlantHealth( polygonId: "abc123-def456-ghi789" startDate: "2025-06-01" endDate: "2025-08-31" dailyEstimates: false ) { Status Message Result { requestId } } }

Parameters

polygonId REQUIRED
The polygon to analyze.
startDate REQUIRED
Start of the analysis period (YYYY-MM-DD).
endDate REQUIRED
End of the analysis period (YYYY-MM-DD).
dailyEstimates
Optional boolean. Enable ML-based daily gap filling. Consumes processing units.

Retrieve Plant Health

GraphQL Query
query { retrievePlantHealth( polygonId: "abc123-def456-ghi789" startDate: "2025-06-01" endDate: "2025-08-31" ) { colorlegend tif png json } }

Response Format

Field Description
colorlegend URL to the static NDVI color legend image.
tif Array of GeoTIFF URLs with full NDVI raster data for each available date.
png Array of PNG image URLs for visual display, one per date.
json Array of statistical summaries (min, max, mean, std) for each date.

Tip: If you need more flexibility in choosing the index type, use the general Vegetation Indices endpoint instead.