Method: monitorLandscape

  • The monitorLandscape method allows you to monitor landscape data at a given geographical location using a POST request.

  • The request body requires a locationSpecifier object to specify the location of the monitored landscape.

  • The response body contains a monitoredLandscape object which includes the data version and the landscape data in GeoJSON format.

Monitor landscape data at a given geographical location.

HTTP request

POST https://agriculturalunderstanding.googleapis.com/v1:monitorLandscape

The URL uses gRPC Transcoding syntax.

Request body

The request body contains data with the following structure:

JSON representation
{
  "locationSpecifier": {
    object (LocationSpecifier)
  },
  "dataVersion": {
    object (DataVersion)
  }
}
Fields
locationSpecifier

object (LocationSpecifier)

Required. The location specifier of the monitored landscape.

dataVersion

object (DataVersion)

Optional. The version of the data. If not specified, the default version will be returned.

Response body

Response message for v1.monitorLandscape method.

If successful, the response body contains data with the following structure:

JSON representation
{
  "monitoredLandscape": {
    object (MonitoredLandscape)
  }
}
Fields
monitoredLandscape

object (MonitoredLandscape)

The monitored landscape data.

MonitoredLandscape

MonitoredLandscape data.

JSON representation
{
  "dataVersion": {
    object (DataVersion)
  },
  "geojson": string
}
Fields
dataVersion

object (DataVersion)

The version of the data.

geojson

string

The monitored landscape data as a GeoJSON string.