use of org.apache.jena.geosparql.spatial.property_functions.SpatialArguments in project jena by apache.
the class IntersectBoxGeomPFTest method testCheckSecondFilter.
/**
* Test of checkSecondFilter method, of class IntersectBoxGeomPF.
*/
@Test
public void testCheckSecondFilter() {
IntersectBoxGeomPF instance = new IntersectBoxGeomPF();
// Property Function
Node predicate = NodeFactory.createURI(SpatialExtension.INTERSECT_BOX_GEOM_PROP);
// Geometry and Envelope parameters
float lat = 1;
float lon = 1;
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 = true;
boolean result = instance.checkSecondFilter(spatialArguments, targetGeometryWrapper);
assertEquals(expResult, result);
}
Aggregations