Skip to content

GeoJSON

AndreasWBartels edited this page Dec 6, 2021 · 13 revisions

GeoJSON

see GeoJSON and rfc7946

maven

<dependency>
  <groupId>net.anwiba.spatial</groupId>
  <artifactId>anwiba-spatial-data-geo-json</artifactId>
  <version>1.1.158</version>
</dependency>

usage

see tests for read and write

    final GeoJsonObjectUnmarshaller<Geometry> unmarshaller = this.factory.create(Geometry.class);
    Geometry geometry = unmarshaller.unmarshal("{\"type\" :\"Point\", \"coordinates\" :[100.0,0.0]}");

Clone this wiki locally