Method: lookupLandscapeCaptureDate

  • The lookupLandscapeCaptureDate method is used to find available capture dates for landscape data at a specific location.

  • This method uses a POST HTTP request with the URL https://agriculturalunderstanding.googleapis.com/v1:lookupLandscapeCaptureDate.

  • The request body requires a locationSpecifier object and can optionally include a dataVersion.

  • The response body includes the dataVersion and a list of available captureDates.

Lookup available capture dates of landscape data at a given geographical location.

HTTP request

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

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.

dataVersion

object (DataVersion)

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

Response body

Response message for v1.lookupLandscapeCaptureDate method.

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

JSON representation
{
  "dataVersion": {
    object (DataVersion)
  },
  "captureDates": [
    {
      object (Date)
    }
  ]
}
Fields
dataVersion

object (DataVersion)

The version of the data.

captureDates[]

object (Date)

Available capture dates of landscape data.