Strabon
changeset 995:38f816f44404
added SimpleFeatures class for keeping SF vocabulary
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Fri Apr 05 20:54:27 2013 +0300 (2013-04-05) |
parents | 4010ebaf0733 |
children | 58d454f3d0bc |
files | constants/src/main/java/eu/earthobservatory/constants/GeoConstants.java constants/src/main/java/eu/earthobservatory/vocabulary/SimpleFeatures.java |
line diff
1.1 --- a/constants/src/main/java/eu/earthobservatory/constants/GeoConstants.java Fri Apr 05 19:53:03 2013 +0300 1.2 +++ b/constants/src/main/java/eu/earthobservatory/constants/GeoConstants.java Fri Apr 05 20:54:27 2013 +0300 1.3 @@ -13,6 +13,8 @@ 1.4 import java.util.ArrayList; 1.5 import java.util.List; 1.6 1.7 +import eu.earthobservatory.vocabulary.SimpleFeatures; 1.8 + 1.9 /** 1.10 * This class is a placeholder for various constants around geometries. These 1.11 * constants range from URIs of namespaces, functions, representations, etc., 1.12 @@ -56,7 +58,7 @@ 1.13 /** 1.14 * The namespace for the ontology of simple features 1.15 */ 1.16 - public static final String SF = "http://www.opengis.net/ont/sf#"; 1.17 + public static final String SF = SimpleFeatures.NAMESPACE; 1.18 1.19 /** 1.20 *
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/constants/src/main/java/eu/earthobservatory/vocabulary/SimpleFeatures.java Fri Apr 05 20:54:27 2013 +0300 2.3 @@ -0,0 +1,20 @@ 2.4 +/** 2.5 + * This Source Code Form is subject to the terms of the Mozilla Public 2.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 2.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. 2.8 + * 2.9 + * Copyright (C) 2012, Pyravlos Team 2.10 + * 2.11 + * http://www.strabon.di.uoa.gr/ 2.12 + */ 2.13 +package eu.earthobservatory.vocabulary; 2.14 + 2.15 + 2.16 +/** 2.17 + * @author Charalampos Nikolaou <charnik@di.uoa.gr> 2.18 + * 2.19 + */ 2.20 +public class SimpleFeatures { 2.21 + 2.22 + public static final String NAMESPACE = "http://www.opengis.net/ont/sf#"; 2.23 +}