Strabon
view evaluation/pom.xml @ 1422:f86d1129ce79
it turns out that there is no simple way of having the datatype of a constant geometry available in the query builder, thus it is not easy for geof:getSRID to determine the correct datatype and return the appropriate URI for the CRS, when that has SRID 4326. Therefore, we choose to always return CRS84, even for strdf:WKT arguments. Notice, that when geof:getSRID is called evaluated in Java, we have such information available and we can return the correct result. However, we chose in changeset 1420:37792dd7041b to always push the evaluation of all spatial functions in the database. The respective tests have been updated as well.
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Tue Sep 23 14:05:26 2014 +0300 (2014-09-23) |
parents | e453684f594f |
children | 5b6b65340693 0397b9f4b68f |
line source
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>eu.earthobservatory</groupId>
7 <artifactId>strabon</artifactId>
8 <version>3.2.11-SNAPSHOT</version>
9 </parent>
11 <groupId>org.openrdf.sesame</groupId>
12 <artifactId>sesame-queryalgebra-evaluation-spatial</artifactId>
13 <name>OpenRDF Sesame: Query algebra - evaluation - spatial</name>
14 <description>Spatial Extension Functions - stSPARQL </description>
15 <packaging>jar</packaging>
17 <dependencies>
19 <dependency>
20 <groupId>eu.earthobservatory</groupId>
21 <artifactId>strabon-vocabulary</artifactId>
22 </dependency>
24 <dependency>
25 <groupId>org.openrdf.sesame</groupId>
26 <artifactId>sesame-queryalgebra-evaluation</artifactId>
27 </dependency>
29 <dependency>
30 <groupId>org.openrdf.sesame</groupId>
31 <artifactId>sesame-queryalgebra-model</artifactId>
32 </dependency>
34 <dependency>
35 <groupId>org.openrdf.sesame</groupId>
36 <artifactId>sesame-model</artifactId>
37 </dependency>
39 <dependency>
40 <groupId>org.slf4j</groupId>
41 <artifactId>slf4j-log4j12</artifactId>
42 </dependency>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 </dependency>
49 <dependency>
50 <groupId>org.geotools</groupId>
51 <artifactId>gt-opengis</artifactId>
52 </dependency>
54 <dependency>
55 <groupId>org.geotools</groupId>
56 <artifactId>gt-referencing</artifactId>
57 </dependency>
59 <dependency>
60 <groupId>org.geotools</groupId>
61 <artifactId>gt-jts-wrapper</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.geotools</groupId>
65 <artifactId>gt-xml</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.jvnet.ogc</groupId>
69 <artifactId>ogc-tools-gml-jts</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.sun.xml.bind</groupId>
73 <artifactId>jaxb-impl</artifactId>
74 </dependency>
75 </dependencies>
76 <modules>
77 </modules>
78 </project>