Skip to main content

Data Requirements

The European Union Deforestation Regulation requires operators to submit the geolocation of plots of land in GeoJSON format to the EUDR Information System.

Vantage validates plot geometry at registration and import time to help users detect issues before running analysis or preparing due diligence submissions.

Geometry Types

Geometry TypeDescriptionEUDR UsageVantage Handling
PointA single coordinate pair [lon, lat].Allowed for plots smaller than 4 hectares, except cattle.Accepted. Expanded into a buffer polygon for analysis.
PolygonA closed shape with at least 4 coordinates where first equals last.Required for plots larger than 4 hectares.Accepted. Validated for closure and geometry issues.
MultiPointA set of multiple points.Supported by the EUDR spec for edge cases.Not currently supported.
MultiPolygonTwo or more polygons grouped together.Supported by the EUDR spec for multi-parcel properties.Supported by the analytics backend where available; validate current API behavior in the API Reference before integration.
LineString / MultiLineStringSequences of points forming lines.Not valid for production place declaration.Rejected.

Common GeoJSON File Errors

The following list follows the common EUDR GeoJSON requirement categories published by the European Commission.

#Error TypeDescriptionVantage Handling
1Coordinate lines crossingPolygons cannot self-intersect.Rejected.
2Overlapping sidesInternal overlaps or folds inside polygons are not accepted.Rejected.
3Doughnut shapesHoles inside polygons are not accepted by the EUDR system and may need splitting.Supported in some workflows; review before EUDR submission.
4Open polygonsFirst and last coordinates must be identical.Rejected.
5Invalid geometry typesLineString and MultiLineString are not valid plot geometries.Rejected.
6Straight linesA polygon must enclose an area.Rejected.
7Duplicate coordinatesPoints can collapse into duplicates when rounded.Accepted in some cases; reviewed during validation.
8File syntax errorsMissing or extra characters make the GeoJSON invalid.Rejected.
9Invalid property namesWrong property names or casing can break external submissions.Rejected when they do not match the API schema.
10Invalid file formatEUDR upload workflows expect GeoJSON.Not applicable to direct API JSON payloads.
11Invalid coordinate rangeLatitude must be within +/-90 and longitude within +/-180.Rejected.
12Invalid ISO2 country codeProducer country must be valid where required by a submission workflow.Not required for plot geometry registration.
13Password protected filesLocked files cannot be processed.Not applicable to direct API JSON payloads.
14Data representation issuesValues must use the expected types and coordinates must be [lon, lat].Rejected when they do not match the API schema.
15Polygons with holes insideThe EUDR system can treat holes differently than analysis systems.Supported in some workflows; review before EUDR submission.
16File size above EUDR limitsEUDR upload size limits can reject large files.Not applicable to direct API JSON payloads.

Summary

Vantage validates geometry before analysis so teams can catch common data quality problems early. The validation is designed to support operational analysis and EUDR preparation, while still giving teams enough flexibility to work with real-world geospatial datasets.