GeoJSON format
The plots endpoints supports full compatibility with the GeoJSON standard for representing geographic features. This enables easy integration with GIS tools and spatial data pipelines.
What is GeoJSON?
GeoJSON is a widely used format for encoding geographic data structures using JSON. It represents features (like plots) as JSON objects with geometry and associated properties.
Supported GeoJSON Types
The following GeoJSON object types are used for plots:
Feature: Represents a single plot.
FeatureCollection: Represents a collection of plots.
Content-Type and Accept Headers for GeoJSON
To use GeoJSON in your
Request Payload: Set
Content-Type: application/geo+json
Responses: Set
Accept: application/geo+json
The system will automatically serialize and deserialize GeoJSON according to these headers, converting Feature
and FeatureCollection
objects to and from the internal data model.
Plot as GeoJSON Feature
A single plot is represented as a Feature
with the following structure:
Multiple Plots as FeatureCollection
When listing or batch-creating multiple plots, the response or request will use a FeatureCollection
:
Last updated