Agromonitoring · Schema

GeoJson

GeoJSON polygon geometry defining a field boundary.

AgricultureSatellite ImageryVegetation IndicesWeatherPrecision AgricultureRemote Sensing

Properties

Name Type Description
type string GeoJSON geometry type.
coordinates array Array of coordinate rings defining the polygon.
View JSON Schema on GitHub

JSON Schema

agromonitoring-geojson-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.agromonitoring.com/schemas/GeoJson.json",
  "title": "GeoJson",
  "type": "object",
  "description": "GeoJSON polygon geometry defining a field boundary.",
  "properties": {
    "type": {
      "type": "string",
      "description": "GeoJSON geometry type.",
      "example": "Polygon"
    },
    "coordinates": {
      "type": "array",
      "description": "Array of coordinate rings defining the polygon.",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "items": {
            "type": "number"
          }
        }
      }
    }
  }
}