commit | 7af60879a48db60e27e91bc77435ed602aa92d4d | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Tue Mar 02 19:30:25 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Mar 02 19:30:25 2021 +0000 |
tree | 5520f8b348fa75934708b0b968252192d513274b | |
parent | 5f0dc228bf9357e9c408432c057e27c17b2536a3 [diff] | |
parent | 6b8e3f0b0de304def369091d4247837ccb156f9d [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/geojson-jackson am: 6b8e3f0b0d Original change: https://googleplex-android-review.googlesource.com/c/platform/external/geojson-jackson/+/13741057 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I6ae20c1863d0fc4ff2f0b27a47789867e7f4a1c9
A small package of all GeoJson POJOs (Plain Old Java Objects) for serializing and deserializing of objects via JSON Jackson Parser.
If you know what kind of object you expect from a GeoJson file you can directly read it like this:
FeatureCollection featureCollection = new ObjectMapper().readValue(inputStream, FeatureCollection.class);
If you want to read any GeoJson file read the value as GeoJsonObject and then test for the contents via instanceOf:
GeoJsonObject object = new ObjectMapper().readValue(inputStream, GeoJsonObject.class); if (object instanceof Polygon) { ... } else if (object instanceof Feature) { ... }
and so on.
Or you can use the GeoJsonObjectVisitor to visit the right method:
GeoJsonObject object = new ObjectMapper().readValue(inputStream, GeoJsonObject.class); object.accept(visitor);
Writing Json is even easier. You just have to create the GeoJson objects and pass them to the Jackson ObjectMapper.
FeatureCollection featureCollection = new FeatureCollection(); featureCollection.add(new Feature()); String json= new ObjectMapper().writeValueAsString(featureCollection);
You can find the library in the Maven Central Repository.
<dependency> <groupId>de.grundid.opendatalab</groupId> <artifactId>geojson-jackson</artifactId> <version>1.8.1</version> </dependency>