Package org.h2gis.functions.io.geojson
Class GJGeometryReader
java.lang.Object
org.h2gis.functions.io.geojson.GJGeometryReader
This class is used to convert a geojon geometry to a JTS geometry.
- Author:
- Erwan Bocher
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.locationtech.jts.geom.GeometryparseGeometry(com.fasterxml.jackson.core.JsonParser jsParser) Parses a GeoJSON geometry and returns its JTS representation.
-
Constructor Details
-
GJGeometryReader
public GJGeometryReader(org.locationtech.jts.geom.GeometryFactory GF)
-
-
Method Details
-
parseGeometry
public org.locationtech.jts.geom.Geometry parseGeometry(com.fasterxml.jackson.core.JsonParser jsParser) throws IOException, SQLException Parses a GeoJSON geometry and returns its JTS representation. Syntax: "geometry":{"type": "Point", "coordinates": [102.0,0.5]}- Parameters:
jsParser-- Returns:
- Geometry
- Throws:
IOExceptionSQLException
-