Strabon
changeset 624:c1c2701395be
bug fix (an exception was raised due to unused external function call declaration)
author | Konstantina Bereta <Konstantina.Bereta@di.uoa.gr> |
---|---|
date | Fri Oct 05 15:27:48 2012 +0300 (2012-10-05) |
parents | e47be5e2bc98 |
children | f4e410b430fb |
files | evaluation/src/main/resources/META-INF/services/org.openrdf.query.algebra.evaluation.function.Function generaldb/src/main/java/org/openrdf/sail/generaldb/evaluation/GeneralDBEvaluation.java |
line diff
1.1 --- a/evaluation/src/main/resources/META-INF/services/org.openrdf.query.algebra.evaluation.function.Function Fri Oct 05 14:09:22 2012 +0300 1.2 +++ b/evaluation/src/main/resources/META-INF/services/org.openrdf.query.algebra.evaluation.function.Function Fri Oct 05 15:27:48 2012 +0300 1.3 @@ -8,7 +8,6 @@ 1.4 org.openrdf.query.algebra.evaluation.function.link.SimilarTermFunc 1.5 org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.mbb.MbbIntersectsFunc 1.6 org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.mbb.MbbContainsFunc 1.7 -org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.mbb.MbbWithinFunc 1.8 org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.mbb.MbbInsideFunc 1.9 org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.mbb.MbbEqualsFunc 1.10 org.openrdf.query.algebra.evaluation.function.spatial.stsparql.relation.IntersectsFunc
2.1 --- a/generaldb/src/main/java/org/openrdf/sail/generaldb/evaluation/GeneralDBEvaluation.java Fri Oct 05 14:09:22 2012 +0300 2.2 +++ b/generaldb/src/main/java/org/openrdf/sail/generaldb/evaluation/GeneralDBEvaluation.java Fri Oct 05 15:27:48 2012 +0300 2.3 @@ -446,6 +446,7 @@ 2.4 int targetSRID = leftGeom.getSRID(); 2.5 int sourceSRID = rightGeom.getSRID(); 2.6 Geometry rightConverted = JTSWrapper.getInstance().transform(rightGeom, sourceSRID, targetSRID); 2.7 + System.out.println("FUNCTION TOUCHFUNC CALLED AND JTS WILL BE USED!!!"); 2.8 funcResult = leftGeom.touches(rightConverted); 2.9 } 2.10 else if(function instanceof MbbIntersectsFunc)