use of org.apache.jena.geosparql.spatial.CardinalDirection in project jena by apache.
the class GenericCardinalGeomPropertyFunction method buildSearchEnvelope.
@Override
protected SearchEnvelope buildSearchEnvelope(GeometryWrapper geometryWrapper, SRSInfo indexSRSInfo) {
CardinalDirection direction = getCardinalDirection();
SearchEnvelope searchEnvelope = SearchEnvelope.build(geometryWrapper, indexSRSInfo, direction);
return searchEnvelope;
}
Aggregations