Parcel map for a single site in GeoJSON format

GET /maps/sites/{site_uuid}

Returns all parcels for all locations belonging to one site as a GeoJSON FeatureCollection.

Path parameters

  • site_uuid string(uuid) Required

Responses

  • 200 application/geo+json

    OK

    Hide response attributes Show response attributes object
    • type string Required
    • features array[object] Required
      Hide features attributes Show features attributes object
      • type string Required
      • geometry object Required
        Hide geometry attributes Show geometry attributes object
      • properties object Required
        Hide properties attribute Show properties attribute object
        • name string
GET /maps/sites/{site_uuid}
curl \
 --request GET 'https://api.protect.earth/maps/sites/{site_uuid}'
Response examples (200)
{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -1.9381,
          51.87766
        ]
      },
      "properties": {
        "name": "Lower Hampen Farm"
      }
    }
  ]
}