Provides Java POJOs for GeoJSON data structures, with Jackson serialization/deserialization support.
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
de.grundid.opendatalab.geojson.Feature
Demonstrates creating a GeoJSON Feature with a Point geometry.
import de.grundid.opendatalab.geojson.Feature;
import de.grundid.opendatalab.geojson.Point;
public class Example {
public static void main(String[] args) {
Point point = new Point(13.4, 52.5);
Feature feature = new Feature(point);
System.out.println(feature.getGeometry().getType());
}
}
Debug
Known footguns
No known footguns recorded.
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.