use of org.apache.jena.sparql.pfunction.PropFuncArg in project jena by apache.
the class NearbyGeomPFTest method testCheckSecondFilter_fail.
/**
* Test of checkSecondFilter method, of class NearbyGeomPF.
*/
@Test
public void testCheckSecondFilter_fail() {
NearbyGeomPF instance = new NearbyGeomPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_PROP);
// Geometry and Envelope parameters
float lat = 0;
float lon = 1;
float radius = 5;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
Literal targetGeometry = ConvertLatLon.toLiteral(lat + 10f, lon);
List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeFloat(radius).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 IntersectBoxGeomPFTest method testCheckSecondFilter_fail.
/**
* Test of checkSecondFilter method, of class IntersectBoxGeomPF.
*/
@Test
public void testCheckSecondFilter_fail() {
IntersectBoxGeomPF instance = new IntersectBoxGeomPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
// Geometry and Envelope parameters
float lat = 5;
float lon = 5;
float latMin = 0;
float lonMin = 0;
float latMax = 2;
float lonMax = 2;
Literal geometry = ConvertLatLonBox.toLiteral(latMin, lonMin, latMax, lonMax);
Literal targetGeometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(geometry.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 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.sparql.pfunction.PropFuncArg 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);
}
use of org.apache.jena.sparql.pfunction.PropFuncArg 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);
}
Aggregations