use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class EastPFTest method testCheckSearchEnvelope_wrap.
/**
* Test of checkSearchEnvelope method, of class EastPF.
*/
@Test
public void testCheckSearchEnvelope_wrap() {
SpatialIndex spatialIndex = SpatialIndexTestData.createTestIndex();
// Search Envelope
GeometryWrapper geometryWrapper = SpatialIndexTestData.PERTH_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.AUCKLAND_FEATURE, SpatialIndexTestData.PERTH_FEATURE, SpatialIndexTestData.HONOLULU_FEATURE, SpatialIndexTestData.NEW_YORK_FEATURE));
HashSet<Resource> result = searchEnvelope.check(spatialIndex);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class GenericCardinalPropertyFunctionTest method testExtractObjectArguments_3args_pos1_fail.
/**
* Test of extractObjectArguments method, of class
* GenericCardinalPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_3args_pos1_fail() {
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.makeString("e").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.geosparql.spatial.SearchEnvelope in project jena by apache.
the class GenericCardinalPropertyFunctionTest method testExtractObjectArguments_1args_fail.
/**
* Test of extractObjectArguments method, of class
* GenericCardinalPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_1args_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NORTH_PROP);
float lat = 0;
float lon = 1;
int limit = -1;
Literal geometry = ConvertLatLon.toLiteral(lat, lon);
List<Node> objectNodes = Arrays.asList(NodeValue.makeFloat(lat).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.geosparql.spatial.SearchEnvelope in project jena by apache.
the class GenericCardinalPropertyFunctionTest method testExtractObjectArguments_4args_fail.
/**
* Test of extractObjectArguments method, of class
* GenericCardinalPropertyFunction.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_4args_fail() {
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(), NodeValue.makeBoolean(false).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.geosparql.spatial.SearchEnvelope in project jena by apache.
the class GenericCardinalPropertyFunctionTest method testExtractObjectArguments_2args.
/**
* Test of extractObjectArguments method, of class
* GenericCardinalPropertyFunction.
*/
@Test
public void testExtractObjectArguments_2args() {
Node predicate = NodeFactory.createURI(SpatialExtension.NORTH_PROP);
float lat = 0;
float lon = 1;
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);
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);
}
Aggregations