use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class GenericCardinalGeomPropertyFunctionTest method testCheckSecondFilter.
/**
* Test of checkSecondFilter method, of class
* GenericCardinalGeomPropertyFunction.
*/
@Test
public void testCheckSecondFilter() {
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.NORTH_GEOM_PROP);
// Geometry and Envelope parameters
float lat = 0;
float lon = 1;
Literal targetGeometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper targetGeometryWrapper = GeometryWrapper.extract(targetGeometry);
NorthPF instance = new NorthPF();
SpatialArguments spatialArgumemts = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
boolean expResult = true;
boolean result = instance.checkSecondFilter(spatialArgumemts, targetGeometryWrapper);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class GenericSpatialBoxPropertyFunctionTest method testExtractObjectArguments_5args.
/**
* Test of extractObjectArguments method, of class
* GenericSpatialBoxPropertyFunction.
*/
@Test
public void testExtractObjectArguments_5args() {
GenericSpatialBoxPropertyFunction instance = new WithinBoxPF();
Node predicate = NodeFactory.createURI(SpatialExtension.WITHIN_BOX_PROP);
// Geometry and Envelope parameters
float latMin = 0;
float lonMin = 1;
float latMax = 2;
float lonMax = 3;
int limit = 10;
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode(), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
Literal geometry = ConvertLatLonBox.toLiteral(latMin, lonMin, latMax, lonMax);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class GenericSpatialBoxPropertyFunctionTest method testExtractObjectArguments_6args_fail.
/**
* Test of extractObjectArguments method, of class
* GenericSpatialBoxPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_6args_fail() {
GenericSpatialBoxPropertyFunction instance = new WithinBoxPF();
Node predicate = NodeFactory.createURI(SpatialExtension.WITHIN_BOX_PROP);
// Geometry and Envelope parameters
float latMin = 0;
float lonMin = 1;
float latMax = 2;
float lonMax = 3;
int limit = 10;
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode(), NodeValue.makeInteger(limit).asNode(), NodeValue.makeBoolean(false).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
Literal geometry = ConvertLatLonBox.toLiteral(latMin, lonMin, latMax, lonMax);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class GenericSpatialBoxPropertyFunctionTest method testExtractObjectArguments_5args_pos2_fail.
/**
* Test of extractObjectArguments method, of class
* GenericSpatialBoxPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos2_fail() {
GenericSpatialBoxPropertyFunction instance = new WithinBoxPF();
Node predicate = NodeFactory.createURI(SpatialExtension.WITHIN_BOX_PROP);
// Geometry and Envelope parameters
float latMin = 0;
float lonMin = 1;
float latMax = 2;
float lonMax = 3;
int limit = 10;
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeString("e").asNode(), NodeValue.makeFloat(lonMax).asNode(), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
Literal geometry = ConvertLatLonBox.toLiteral(latMin, lonMin, latMax, lonMax);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class GenericSpatialBoxPropertyFunctionTest method testExtractObjectArguments_5args_pos4_fail.
/**
* Test of extractObjectArguments method, of class
* GenericSpatialBoxPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos4_fail() {
GenericSpatialBoxPropertyFunction instance = new WithinBoxPF();
Node predicate = NodeFactory.createURI(SpatialExtension.WITHIN_BOX_PROP);
// Geometry and Envelope parameters
float latMin = 0;
float lonMin = 1;
float latMax = 2;
float lonMax = 3;
int limit = 10;
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode(), NodeValue.makeString("10").asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
Literal geometry = ConvertLatLonBox.toLiteral(latMin, lonMin, latMax, lonMax);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
Aggregations