Download OpenAPI specification:
Determines the intersection between an input GeoJSON polygon and the EU Forest Map 2020.
| geojson | object A GeoJSON object (Feature or FeatureCollection). |
{- "geojson": {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 10,
- 20
], - [
- 10.1,
- 20
], - [
- 10.1,
- 20.1
], - [
- 10,
- 20.1
], - [
- 10,
- 20
]
]
]
}, - "properties": { }
}
}{- "metadata": {
- "eu_forest_map_version": 2
}, - "data": {
- "has_intersection": true,
- "intersection_geojson": {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 10,
- 20
], - [
- 10.1,
- 20
], - [
- 10.1,
- 20.1
], - [
- 10,
- 20.1
], - [
- 10,
- 20
]
]
]
}, - "properties": { }
}
]
}, - "intersection_percentage": 0.42
}
}