Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix handling of Geometries in the Json converter #9

Open
Aklakan opened this issue Oct 5, 2023 · 0 comments
Open

Fix handling of Geometries in the Json converter #9

Aklakan opened this issue Oct 5, 2023 · 0 comments

Comments

@Aklakan
Copy link
Member

Aklakan commented Oct 5, 2023

The code in RdfJsonUtils will probably fail with exception for non-WKT geometry literals. Needs to be fixed and tested.

} else if(obj instanceof GeometryWrapper) {
WKTReader wktReader = new WKTReader();
try {
final Geometry geom = wktReader.read(node.getLiteralLexicalForm());
GeoJsonWriter geoJsonWriter = new GeoJsonWriter();
String jsonString = geoJsonWriter.write(geom);
Gson gson = new Gson();
result = gson.fromJson(jsonString, JsonObject.class);
} catch (ParseException e) {
throw new RuntimeException("Invalid WKT : " + node);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant