use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class NearbyGeomPFTest method testExtractObjectArguments_4args.
/**
* Test of extractObjectArguments method, of class NearbyGeomPF.
*/
@Test
public void testExtractObjectArguments_4args() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(geometry.asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyGeomPF instance = new NearbyGeomPF();
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.SearchEnvelope in project jena by apache.
the class NearbyGeomPFTest method testExtractObjectArguments_4args_pos0_fail.
/**
* Test of extractObjectArguments method, of class NearbyGeomPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_4args_pos0_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_PROP);
float lat = 0;
float lon = 1;
float radius = 5000;
String unitsURI = Unit_URI.METRE_URL;
int limit = 10;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeString("0").asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyGeomPF instance = new NearbyGeomPF();
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.SearchEnvelope in project jena by apache.
the class NearbyGeomPFTest method testExtractObjectArguments_1args_fail.
/**
* Test of extractObjectArguments method, of class NearbyGeomPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_1args_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_GEOM_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(geometry.asNode());
PropFuncArg object = new PropFuncArg(objectNodes);
GeometryWrapper geometryWrapper = GeometryWrapper.extract(geometry);
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, radius, unitsURI);
NearbyGeomPF instance = new NearbyGeomPF();
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.SearchEnvelope in project jena by apache.
the class WestGeomPFTest method testBuildSearchEnvelope.
/**
* Test of buildSearchEnvelope method, of class WestGeomPF.
*/
@Test
public void testBuildSearchEnvelope() {
GeometryWrapper geometryWrapper = SpatialIndexTestData.PARIS_GEOMETRY_WRAPPER;
WestGeomPF instance = new WestGeomPF();
SearchEnvelope expResult = SearchEnvelope.build(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO, CardinalDirection.WEST);
SearchEnvelope result = instance.buildSearchEnvelope(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class EastPFTest method testCheckSearchEnvelope_no_wrap.
/**
* Test of checkSearchEnvelope method, of class EastPF.
*/
@Test
public void testCheckSearchEnvelope_no_wrap() {
SpatialIndex spatialIndex = SpatialIndexTestData.createTestIndex();
// Search Envelope
GeometryWrapper geometryWrapper = SpatialIndexTestData.HONOLULU_GEOMETRY_WRAPPER;
EastPF instance = new EastPF();
// Needed to initialise the search.
SearchEnvelope searchEnvelope = instance.buildSearchEnvelope(geometryWrapper, SpatialIndexTestData.WGS_84_SRS_INFO);
HashSet<Resource> expResult = new HashSet<>(Arrays.asList(SpatialIndexTestData.LONDON_FEATURE, SpatialIndexTestData.HONOLULU_FEATURE, SpatialIndexTestData.NEW_YORK_FEATURE));
HashSet<Resource> result = searchEnvelope.check(spatialIndex);
assertEquals(expResult, result);
}
Aggregations