Skip to content

Soil Moisture

The Soil Moisture service is a tool that indicates the soil moisture status of a polygon. With this analysis, growers can detect and mitigate irrigation-threatening issues early, before the crop yield is impacted. Soil moisture used together with water stress provides a complete view of the water status for a polygon.

Usage

The processSoilMoisture() mutation and retrieveSoilMoisture query are used to generate and retrieve soil moisture analyses. These are the required arguments for both services:

  • polygonId
  • startDate
  • endDate


mutation {
  processSoilMoisture(
    polygonId: "[YOUR POLYGON ID GOES HERE]"
    startDate: "2022-01-01"
    endDate:   "2022-12-31"
  )
  {
    IsSuccess
    Message
    Status
    Result {
      requestId
    }
  }
}


query {
  retrieveSoilMoisture(
    polygonId: "[YOUR POLYGON ID GOES HERE]",
    startDate: "2022-01-01",
    endDate:   "2022-12-31"
  )
  {
    IsSuccess
    Message
    Status
    Result {
      colorlegend
      png
      tif
      json
    }
  }
}

Please refer to the Schema Documentation in the API Playground for more information.