use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_5args.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test
public void testExtractObjectArguments_5args() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_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.makeFloat(lat).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);
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);
}
use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_6args_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_6args_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_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.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeInteger(limit).asNode(), NodeValue.makeBoolean(false).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);
}
use of org.apache.jena.geosparql.spatial.SearchEnvelope in project jena by apache.
the class NearbyPFTest method testExtractObjectArguments_5args_pos4_fail.
/**
* Test of extractObjectArguments method, of class NearbyPF.
*/
@Test(expected = ExprEvalException.class)
public void testExtractObjectArguments_5args_pos4_fail() {
Node predicate = NodeFactory.createURI(SpatialExtension.NEARBY_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.makeFloat(lat).asNode(), NodeValue.makeFloat(lon).asNode(), NodeValue.makeFloat(radius).asNode(), NodeFactory.createURI(unitsURI), NodeValue.makeString("10").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);
}
use of org.apache.jena.geosparql.spatial.SearchEnvelope 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.geosparql.spatial.SearchEnvelope 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