-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshv-vocab.ttl
173 lines (146 loc) · 6.45 KB
/
shv-vocab.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix shv: <http://ns.aksw.org/spatialHierarchy/> .
@prefix shva: <http://ns.aksw.org/spatialHierarchy/areas/> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix wgs84: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://michael-martin.info/documents/spatialHierarchy/shv.png>
sioc:link <https://raw.github.com/MichaelMartin/spatialHierarchy/master/shv.png> ;
rdfs:label "illustration of the spatial hierarchy" .
<http://ns.aksw.org/spatialHierarchy/>
dc:creator "Michael Martin" ;
a owl:Ontology ;
rdfs:comment "This vocabulary is used for structuring spatial areas hierarchically. Additionally it is possible to add a temporal dimension to the desired spatial hierarchy." ;
rdfs:label "Hierarchie ortsbezogener Ressourcen"@de, "Spatial Hierarchy"@en ;
owl:versionInfo "v0.3 2010/03/10 10:37:00 mdean" ;
foaf:depiction <http://michael-martin.info/documents/spatialHierarchy/shv.png> .
shv:AdministrativeDistrict
a owl:Class ;
rdfs:comment "This Area can be used or country-specific concretised. (For instance as District or province)"@en ;
rdfs:label "Administrative District"@en, "Administrativer Bereich"@de ;
rdfs:subClassOf shv:SpatialArea .
shv:City
a owl:Class ;
rdfs:label "City"@en, "Stad"@nl, "Stadt"@de ;
rdfs:subClassOf shv:SpatialArea .
shv:Continent
a owl:Class ;
rdfs:label "Continent"@en, "Continent"@nl, "Kontinent"@de ;
rdfs:subClassOf shv:SpatialArea .
shv:Country
a owl:Class ;
rdfs:label "Country"@en, "Land"@de, "Land"@nl ;
rdfs:subClassOf shv:SpatialArea .
shv:Planet
a owl:Class ;
rdfs:label "Planet"@de, "Planet"@en ;
rdfs:subClassOf shv:SpatialArea .
shv:SpatialArea
a owl:Class ;
rdfs:label "Räumliches Gebiet"@de, "Spatial Area"@en ;
rdfs:subClassOf wgs84:SpatialThing .
shva:Africa
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Africa"@en, "Afrika"@de .
shva:Antarctica
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Antarctica"@en, "Antarktis"@de .
shva:Asia
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Asia"@en, "Asien"@de .
shva:Australia
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Australia"@en, "Australien"@de .
shva:Earth
shv:contains shva:Africa, shva:Asia, shva:Australia, shva:Europe, shva:NorthAmerica, shva:SouthAmerica ;
a shv:Planet ;
rdfs:label "Earth"@en, "Erde"@de .
shva:Europe
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Europa"@de, "Europe"@en .
shva:NorthAmerica
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "Noord Amerika"@nl, "Nordamerika"@de, "North America"@en .
shva:Oceania
shv:contains shva:Australia ;
shv:isLocatedIn shva:Earth ;
a shv:SpatialArea ;
rdfs:label "Oceania"@en, "Ozeanien"@de .
shva:SouthAmerica
shv:isLocatedIn shva:Earth ;
a shv:Continent ;
rdfs:label "South America"@en, "Südamerika"@de .
shv:contains
a owl:ObjectProperty ;
rdfs:comment "Object property to define which geospatial areas contained in the referencing geospatial area." ;
rdfs:domain shv:SpatialArea ;
rdfs:inverseOf shv:isLocatedIn ;
rdfs:label "contains"@en, "enthält"@de, "omvatten"@nl ;
rdfs:range shv:SpatialArea .
shv:dissolutionDate
a owl:DatatypeProperty ;
rdfs:comment "To encode temporal dependencies of a spatial area, it is necessary to define its dissoltion date." ;
rdfs:domain shv:SpatialArea ;
rdfs:label "has dissolution date"@en, "hat Auflösungssdatum"@de ;
rdfs:range xsd:date .
shv:formationDate
a owl:DatatypeProperty ;
rdfs:comment "To encode temporal dependencies of a spatial area, it is necessary to define its formation date." ;
rdfs:domain shv:SpatialArea ;
rdfs:label "has formation date"@en, "hat Gründungsdatum"@de ;
rdfs:range xsd:date .
shv:hasCenter
a owl:ObjectProperty ;
rdfs:comment "This Relation aggregates a Spatial Area with it centerpoint-resource" ;
rdfs:domain shv:SpatialArea ;
rdfs:label "has Center"@en, "hat Zentrum"@de ;
rdfs:range wgs84:Point .
shv:isLocatedIn
a owl:ObjectProperty ;
rdfs:comment "Object property to define in which geospatial area the referenced geospatial area is located in." ;
rdfs:domain shv:SpatialArea ;
rdfs:inverseOf shv:contains ;
rdfs:label "is located in"@en, "liegt in"@de ;
rdfs:range shv:SpatialArea .
shv:priorTo
a owl:ObjectProperty ;
rdfs:comment "To encode temporal dependencies of a spatial area, it is necessary to aggregate its successor." ;
rdfs:domain shv:SpatialArea ;
rdfs:inverseOf shv:subsequentTo ;
rdfs:label "Vorgänger von"@de, "prior to"@en ;
rdfs:range shv:SpatialArea .
shv:subsequentTo
a owl:ObjectProperty ;
rdfs:comment "To encode temporal dependencies of a spatial area, it is necessary to aggregate its predecessor." ;
rdfs:domain shv:SpatialArea ;
rdfs:inverseOf shv:priorTo ;
rdfs:label "Nachfolger von"@de, "subsequent to"@en ;
rdfs:range shv:SpatialArea .
dc:creator
dct:description "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity."@en-US ;
dct:hasVersion <http://dublincore.org/usage/terms/history/#creator-006> ;
dct:issued "1999-07-02" ;
dct:modified "2008-01-14" ;
a rdf:Property ;
rdfs:comment "An entity primarily responsible for making the resource."@en-US ;
rdfs:isDefinedBy <http://purl.org/dc/elements/1.1/> ;
rdfs:label "Creator"@en-US ;
skos:note "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en-US .
wgs84:SpatialThing
a rdfs:Class ;
rdfs:comment """Anything with spatial extent, i.e. size, shape, or position.
e.g. people, places, bowling balls, as well as abstract areas like cubes.""" ;
rdfs:label "SpatialThing" .