Search in sources :

Example 96 with GeometryWrapper

use of org.apache.jena.geosparql.implementation.GeometryWrapper in project jena by apache.

the class EqualsFFTest method testRelate_linestring_linestring_false.

@Test
public void testRelate_linestring_linestring_false() throws FactoryException, MismatchedDimensionException, TransformException {
    GeometryWrapper subjectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> LINESTRING(50 50, 60 50, 80 50)", WKTDatatype.INSTANCE));
    GeometryWrapper objectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> LINESTRING(40 50, 60 50, 80 50)", WKTDatatype.INSTANCE));
    EqualsFF instance = new EqualsFF();
    Boolean expResult = false;
    Boolean result = instance.relate(subjectGeometryWrapper, objectGeometryWrapper);
    assertEquals(expResult, result);
}
Also used : GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) Test(org.junit.Test)

Example 97 with GeometryWrapper

use of org.apache.jena.geosparql.implementation.GeometryWrapper in project jena by apache.

the class EqualsFFTest method testRelate_polygon_linestring_false.

@Test
public void testRelate_polygon_linestring_false() throws FactoryException, MismatchedDimensionException, TransformException {
    GeometryWrapper subjectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> POLYGON((30 40, 30 70, 90 70, 90 40, 30 40))", WKTDatatype.INSTANCE));
    GeometryWrapper objectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> LINESTRING(75 60, 145 60)", WKTDatatype.INSTANCE));
    EqualsFF instance = new EqualsFF();
    Boolean expResult = false;
    Boolean result = instance.relate(subjectGeometryWrapper, objectGeometryWrapper);
    assertEquals(expResult, result);
}
Also used : GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) Test(org.junit.Test)

Example 98 with GeometryWrapper

use of org.apache.jena.geosparql.implementation.GeometryWrapper in project jena by apache.

the class EqualsFFTest method testRelate_polygon_point_false.

@Test
public void testRelate_polygon_point_false() throws FactoryException, MismatchedDimensionException, TransformException {
    GeometryWrapper subjectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> POLYGON((30 40, 30 70, 90 70, 90 40, 30 40))", WKTDatatype.INSTANCE));
    GeometryWrapper objectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> POINT(30 20)", WKTDatatype.INSTANCE));
    EqualsFF instance = new EqualsFF();
    Boolean expResult = false;
    Boolean result = instance.relate(subjectGeometryWrapper, objectGeometryWrapper);
    assertEquals(expResult, result);
}
Also used : GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) Test(org.junit.Test)

Example 99 with GeometryWrapper

use of org.apache.jena.geosparql.implementation.GeometryWrapper in project jena by apache.

the class EqualsFFTest method testRelate_point_point_false.

@Test
public void testRelate_point_point_false() throws FactoryException, MismatchedDimensionException, TransformException {
    GeometryWrapper subjectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> POINT(60 60)", WKTDatatype.INSTANCE));
    GeometryWrapper objectGeometryWrapper = GeometryWrapper.extract(ResourceFactory.createTypedLiteral("<http://www.opengis.net/def/crs/EPSG/0/27700> POINT(65 65)", WKTDatatype.INSTANCE));
    EqualsFF instance = new EqualsFF();
    Boolean expResult = false;
    Boolean result = instance.relate(subjectGeometryWrapper, objectGeometryWrapper);
    assertEquals(expResult, result);
}
Also used : GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) Test(org.junit.Test)

Example 100 with GeometryWrapper

use of org.apache.jena.geosparql.implementation.GeometryWrapper in project jena by apache.

the class GMLDatatype method read.

@Override
public GeometryWrapper read(String geometryLiteral) {
    try {
        GMLReader gmlReader = GMLReader.extract(geometryLiteral);
        Geometry geometry = gmlReader.getGeometry();
        String srsURI = gmlReader.getSrsURI();
        DimensionInfo dimensionInfo = gmlReader.getDimensionInfo();
        return new GeometryWrapper(geometry, srsURI, URI, dimensionInfo, geometryLiteral);
    } catch (JDOMException | IOException ex) {
        throw new DatatypeFormatException("Illegal GML literal:" + geometryLiteral + ". " + ex.getMessage());
    }
}
Also used : GMLReader(org.apache.jena.geosparql.implementation.parsers.gml.GMLReader) Geometry(org.locationtech.jts.geom.Geometry) DatatypeFormatException(org.apache.jena.datatypes.DatatypeFormatException) DimensionInfo(org.apache.jena.geosparql.implementation.DimensionInfo) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) IOException(java.io.IOException) JDOMException(org.jdom2.JDOMException)

Aggregations

GeometryWrapper (org.apache.jena.geosparql.implementation.GeometryWrapper)356 Test (org.junit.Test)297 DimensionInfo (org.apache.jena.geosparql.implementation.DimensionInfo)70 Node (org.apache.jena.graph.Node)64 SearchEnvelope (org.apache.jena.geosparql.spatial.SearchEnvelope)63 Literal (org.apache.jena.rdf.model.Literal)59 PropFuncArg (org.apache.jena.sparql.pfunction.PropFuncArg)53 LineString (org.locationtech.jts.geom.LineString)52 SpatialArguments (org.apache.jena.geosparql.spatial.property_functions.SpatialArguments)51 Geometry (org.locationtech.jts.geom.Geometry)48 CustomCoordinateSequence (org.apache.jena.geosparql.implementation.jts.CustomCoordinateSequence)39 ExprEvalException (org.apache.jena.sparql.expr.ExprEvalException)36 DatatypeFormatException (org.apache.jena.datatypes.DatatypeFormatException)32 NodeValue (org.apache.jena.sparql.expr.NodeValue)24 TransformException (org.opengis.referencing.operation.TransformException)21 FactoryException (org.opengis.util.FactoryException)21 Envelope (org.locationtech.jts.geom.Envelope)19 MismatchedDimensionException (org.opengis.geometry.MismatchedDimensionException)19 Coordinate (org.locationtech.jts.geom.Coordinate)15 Resource (org.apache.jena.rdf.model.Resource)13