use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class IntersectBoxPFTest method testCheckSecondFilter.
/**
* Test of checkSecondFilter method, of class IntersectBoxPF.
*/
@Test
public void testCheckSecondFilter() {
IntersectBoxPF instance = new IntersectBoxPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_PROP);
// Geometry and Envelope parameters
float lat = 1;
float lon = 1;
float latMin = 0;
float lonMin = 0;
float latMax = 2;
float lonMax = 2;
Literal targetGeometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
SpatialArguments spatialArguments = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
GeometryWrapper targetGeometryWrapper = GeometryWrapper.extract(targetGeometry);
// Test arguments
boolean expResult = true;
boolean result = instance.checkSecondFilter(spatialArguments, targetGeometryWrapper);
assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class IntersectBoxPFTest method testCheckSecondFilter_fail.
/**
* Test of checkSecondFilter method, of class IntersectBoxPF.
*/
@Test
public void testCheckSecondFilter_fail() {
IntersectBoxPF instance = new IntersectBoxPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_PROP);
// Geometry and Envelope parameters
float lat = 5;
float lon = 5;
float latMin = 0;
float lonMin = 0;
float latMax = 2;
float lonMax = 2;
Literal targetGeometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
SpatialArguments spatialArguments = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
GeometryWrapper targetGeometryWrapper = GeometryWrapper.extract(targetGeometry);
// Test arguments
boolean expResult = false;
boolean result = instance.checkSecondFilter(spatialArguments, targetGeometryWrapper);
assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class WithinBoxPFTest method testCheckSecondFilter_fail.
/**
* Test of checkSecondFilter method, of class WithinBoxPF.
*/
@Test
public void testCheckSecondFilter_fail() {
WithinBoxPF instance = new WithinBoxPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.WITHIN_BOX_PROP);
// Geometry and Envelope parameters
float lat = 5;
float lon = 5;
float latMin = 0;
float lonMin = 0;
float latMax = 2;
float lonMax = 2;
Literal targetGeometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(latMin).asNode(), NodeValue.makeFloat(lonMin).asNode(), NodeValue.makeFloat(latMax).asNode(), NodeValue.makeFloat(lonMax).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
// Function arguments
SpatialArguments spatialArguments = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
GeometryWrapper targetGeometryWrapper = GeometryWrapper.extract(targetGeometry);
// Test arguments
boolean expResult = false;
boolean result = instance.checkSecondFilter(spatialArguments, targetGeometryWrapper);
assertEquals(expResult, result);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class GenericCardinalPropertyFunctionTest method testExtractObjectArguments_3args.
/**
* Test of extractObjectArguments method, of class
* GenericCardinalPropertyFunction.
*/
@Test
public void testExtractObjectArguments_3args() {
Node predicate = NodeFactory.createURI(SpatialExtension.NORTH_PROP);
float lat = 0;
float lon = 1;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
NorthPF instance = new NorthPF();
SearchEnvelope searchEnvelope = instance.buildSearchEnvelope(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.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_2args_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_2args_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_PROP);
float lat = 0;
float lon = 1;
float radius = 5;
String unitsURI = Unit_URI.KILOMETER_URL;
int limit = -1;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyPF instance = new NearbyPF();
SpatialArguments expResult = new SpatialArguments(limit, geometryWrapper, searchEnvelope);
SpatialArguments result = instance.extractObjectArguments(predicate, object, SpatialIndexTestData.WGS_84_SRS_INFO);
// assertEquals(expResult, result);
}
Aggregations