Strabon
changeset 875:c9f526280eaa
added namespace for the RDFi framework (rdfi) and URIs for the RCC-8 relations of the RDFi framework
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Thu Feb 21 13:48:57 2013 +0200 (2013-02-21) |
parents | 3d85e721218c |
children | b14650cda87d |
files | evaluation/src/main/java/org/openrdf/query/algebra/evaluation/function/spatial/GeoConstants.java |
line diff
1.1 --- a/evaluation/src/main/java/org/openrdf/query/algebra/evaluation/function/spatial/GeoConstants.java Wed Jan 30 23:36:09 2013 +0200 1.2 +++ b/evaluation/src/main/java/org/openrdf/query/algebra/evaluation/function/spatial/GeoConstants.java Thu Feb 21 13:48:57 2013 +0200 1.3 @@ -29,10 +29,15 @@ 1.4 public static final String stRDF = "http://strdf.di.uoa.gr/ontology#"; 1.5 1.6 /** 1.7 + * The namespace for the RDFi framework 1.8 + */ 1.9 + public static final String rdfi = "http://rdfi.di.uoa.gr/ontology#"; 1.10 + 1.11 + /** 1.12 * The URI for the datatype SemiLinearPointSet 1.13 * (linear constraint-based representation of geometries) 1.14 */ 1.15 - public static final String stRDFSemiLinearPointset = stRDF + "SemiLinearPointSet"; 1.16 + public static final String stRDFSemiLinearPointset = stRDF + "SemiLinearPointSet"; 1.17 1.18 /** 1.19 * The URI for the datatype Well-Known Text (WKT) 1.20 @@ -185,4 +190,17 @@ 1.21 */ 1.22 public static final String diffDateTime = "http://strdf.di.uoa.gr/extensions/ontology#diffDateTime"; 1.23 /** End of addition **/ 1.24 + 1.25 + 1.26 + /** 1.27 + * RCC-8 relations for the RDFi framework 1.28 + */ 1.29 + public static final String rdfiDC = rdfi + "DC"; 1.30 + public static final String rdfiEC = rdfi + "EC"; 1.31 + public static final String rdfiPO = rdfi + "PO"; 1.32 + public static final String rdfiNTPP = rdfi + "NTPP"; 1.33 + public static final String rdfiNTPPi = rdfi + "NTPPi"; 1.34 + public static final String rdfiTPP = rdfi + "TPP"; 1.35 + public static final String rdfiTPPi = rdfi + "TPPi"; 1.36 + public static final String rdfiEQ = rdfi + "EQ"; 1.37 }