Search in sources :

Example 1 with IntersectBoxGeomPF

use of org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF in project jena by apache.

the class GenericSpatialGeomPropertyFunctionTest method testExtractObjectArguments_1args.

/**
 * Test of extractObjectArguments method, of class
 * GenericSpatialGeomPropertyFunction.
 */
@Test
public void testExtractObjectArguments_1args() {
    Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
    // Geometry and Envelope parameters
    float lat = 0.0f;
    float lon = 1.0f;
    int limit = -1;
    Literal geometry = ConvertLatLon.toLiteral(lat, lon);
    List<Node> objectNodes = Arrays.asList(geometry.asNode());
    PropFuncArg object = new PropFuncArg(objectNodes);
    // Function arguments
    GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
    SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
    GenericSpatialGeomPropertyFunction instance = new IntersectBoxGeomPF();
    SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
    SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
    assertEquals(expResult, result);
}
Also used : IntersectBoxGeomPF(org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF) Node(org.apache.jena.graph.Node) Literal(org.apache.jena.rdf.model.Literal) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) SearchEnvelope(org.apache.jena.geosparql.spatial.SearchEnvelope) PropFuncArg(org.apache.jena.sparql.pfunction.PropFuncArg) Test(org.junit.Test)

Example 2 with IntersectBoxGeomPF

use of org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF in project jena by apache.

the class GenericSpatialGeomPropertyFunctionTest method testExtractObjectArguments_2args_pos1_fail.

/**
 * Test of extractObjectArguments method, of class
 * GenericSpatialGeomPropertyFunction.
 */
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_2args_pos1_fail() {
    Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
    // Geometry and Envelope parameters
    float lat = 0.0f;
    float lon = 1.0f;
    int limit = 10;
    Literal geometry = ConvertLatLon.toLiteral(lat, lon);
    List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeString("10").asNode());
    PropFuncArg object = new PropFuncArg(objectNodes);
    // Function arguments
    GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
    SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
    GenericSpatialGeomPropertyFunction instance = new IntersectBoxGeomPF();
    SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
    SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
    assertEquals(expResult, result);
}
Also used : IntersectBoxGeomPF(org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF) Node(org.apache.jena.graph.Node) Literal(org.apache.jena.rdf.model.Literal) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) SearchEnvelope(org.apache.jena.geosparql.spatial.SearchEnvelope) PropFuncArg(org.apache.jena.sparql.pfunction.PropFuncArg) Test(org.junit.Test)

Example 3 with IntersectBoxGeomPF

use of org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF in project jena by apache.

the class GenericSpatialGeomPropertyFunctionTest method testExtractObjectArguments_2args.

/**
 * Test of extractObjectArguments method, of class
 * GenericSpatialGeomPropertyFunction.
 */
@Test
public void testExtractObjectArguments_2args() {
    Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
    // Geometry and Envelope parameters
    float lat = 0.0f;
    float lon = 1.0f;
    int limit = 10;
    Literal geometry = ConvertLatLon.toLiteral(lat, lon);
    List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeInteger(limit).asNode());
    PropFuncArg object = new PropFuncArg(objectNodes);
    // Function arguments
    GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
    SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
    GenericSpatialGeomPropertyFunction instance = new IntersectBoxGeomPF();
    SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
    SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
    assertEquals(expResult, result);
}
Also used : IntersectBoxGeomPF(org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF) Node(org.apache.jena.graph.Node) Literal(org.apache.jena.rdf.model.Literal) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) SearchEnvelope(org.apache.jena.geosparql.spatial.SearchEnvelope) PropFuncArg(org.apache.jena.sparql.pfunction.PropFuncArg) Test(org.junit.Test)

Example 4 with IntersectBoxGeomPF

use of org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF in project jena by apache.

the class GenericSpatialGeomPropertyFunctionTest method testExtractObjectArguments_0args_fail.

/**
 * Test of extractObjectArguments method, of class
 * GenericSpatialGeomPropertyFunction.
 */
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_0args_fail() {
    Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
    // Geometry and Envelope parameters
    float lat = 0.0f;
    float lon = 1.0f;
    int limit = 10;
    Literal geometry = ConvertLatLon.toLiteral(lat, lon);
    List<Node> objectNodes = Arrays.asList();
    PropFuncArg object = new PropFuncArg(objectNodes);
    // Function arguments
    GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
    SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
    GenericSpatialGeomPropertyFunction instance = new IntersectBoxGeomPF();
    SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
    SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
    assertEquals(expResult, result);
}
Also used : IntersectBoxGeomPF(org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF) Node(org.apache.jena.graph.Node) Literal(org.apache.jena.rdf.model.Literal) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) SearchEnvelope(org.apache.jena.geosparql.spatial.SearchEnvelope) PropFuncArg(org.apache.jena.sparql.pfunction.PropFuncArg) Test(org.junit.Test)

Example 5 with IntersectBoxGeomPF

use of org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF in project jena by apache.

the class GenericSpatialGeomPropertyFunctionTest method testExtractObjectArguments_3args_fail.

/**
 * Test of extractObjectArguments method, of class
 * GenericSpatialGeomPropertyFunction.
 */
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_3args_fail() {
    Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
    // Geometry and Envelope parameters
    float lat = 0.0f;
    float lon = 1.0f;
    int limit = 10;
    Literal geometry = ConvertLatLon.toLiteral(lat, lon);
    List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeInteger(limit).asNode(), NodeValue.makeBoolean(false).asNode());
    PropFuncArg object = new PropFuncArg(objectNodes);
    // Function arguments
    GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
    SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
    GenericSpatialGeomPropertyFunction instance = new IntersectBoxGeomPF();
    SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
    SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
    assertEquals(expResult, result);
}
Also used : IntersectBoxGeomPF(org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF) Node(org.apache.jena.graph.Node) Literal(org.apache.jena.rdf.model.Literal) GeometryWrapper(org.apache.jena.geosparql.implementation.GeometryWrapper) SearchEnvelope(org.apache.jena.geosparql.spatial.SearchEnvelope) PropFuncArg(org.apache.jena.sparql.pfunction.PropFuncArg) Test(org.junit.Test)

Aggregations

GeometryWrapper (org.apache.jena.geosparql.implementation.GeometryWrapper)6 SearchEnvelope (org.apache.jena.geosparql.spatial.SearchEnvelope)6 IntersectBoxGeomPF (org.apache.jena.geosparql.spatial.property_functions.box.IntersectBoxGeomPF)6 Node (org.apache.jena.graph.Node)6 Literal (org.apache.jena.rdf.model.Literal)6 PropFuncArg (org.apache.jena.sparql.pfunction.PropFuncArg)6 Test (org.junit.Test)6