Class GeoWKTParser
java.lang.Object
org.elasticsearch.common.geo.parsers.GeoWKTParser
Parses shape geometry represented in WKT format
complies with OGC(R) document: 12-063r5 and ISO/IEC 13249-3:2016 standard
located at http://docs.opengeospatial.org/is/12-063r5/12-063r5.html
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ShapeBuilder
parse(org.elasticsearch.common.xcontent.XContentParser parser, AbstractShapeGeometryFieldMapper shapeMapper)
static ShapeBuilder
parseExpectedType(org.elasticsearch.common.xcontent.XContentParser parser, GeoShapeType shapeType)
static ShapeBuilder
parseExpectedType(org.elasticsearch.common.xcontent.XContentParser parser, GeoShapeType shapeType, AbstractShapeGeometryFieldMapper shapeMapper)
throws an exception if the parsed geometry type does not match the expected shape type
-
Field Details
-
EMPTY
- See Also:
- Constant Field Values
-
SPACE
- See Also:
- Constant Field Values
-
LPAREN
- See Also:
- Constant Field Values
-
RPAREN
- See Also:
- Constant Field Values
-
COMMA
- See Also:
- Constant Field Values
-
NAN
- See Also:
- Constant Field Values
-
-
Method Details
-
parse
public static ShapeBuilder parse(org.elasticsearch.common.xcontent.XContentParser parser, AbstractShapeGeometryFieldMapper shapeMapper) throws IOException, ElasticsearchParseException -
parseExpectedType
public static ShapeBuilder parseExpectedType(org.elasticsearch.common.xcontent.XContentParser parser, GeoShapeType shapeType) throws IOException, ElasticsearchParseException -
parseExpectedType
public static ShapeBuilder parseExpectedType(org.elasticsearch.common.xcontent.XContentParser parser, GeoShapeType shapeType, AbstractShapeGeometryFieldMapper shapeMapper) throws IOException, ElasticsearchParseExceptionthrows an exception if the parsed geometry type does not match the expected shape type
-