This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgeoreference.owl.ttl
More file actions
223 lines (189 loc) · 9.14 KB
/
Copy pathgeoreference.owl.ttl
File metadata and controls
223 lines (189 loc) · 9.14 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
@prefix georeference: <https://w3id.org/ascs-ev/envited-x/georeference/v5/> .
@prefix envited-x: <https://w3id.org/ascs-ev/envited-x/envited-x/v3/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# Ontology Metadata
<https://w3id.org/ascs-ev/envited-x/georeference/v5> a owl:Ontology ;
rdfs:label "Ontology definition for Georeferencing"@en ;
rdfs:comment "Georeferencing ontology with common classes for location, coordinate reference systems, and spatial properties."@en ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
a foaf:Person ;
foaf:name "Carlo van Driesten" ;
org:memberOf <https://www.bmwgroup.com/> ;
] , [
a foaf:Person ;
foaf:name "Sebastian Tuttas" ;
org:memberOf <https://www.3d-mapping.de/> ;
] , [
a foaf:Person ;
foaf:name "Mirco Nierenz" ;
org:memberOf <https://triangraphics.de/> ;
] ;
# Permanent identifier for the ontology (not version-specific)
dcterms:identifier <https://w3id.org/ascs-ev/envited-x/georeference> ;
# GitHub repository where the ontology is maintained
dcterms:source <https://github.com/GAIA-X4PLC-AAD/ontology-management-base> ;
# Specific GitHub release used for publishing this version
prov:wasDerivedFrom <https://github.com/GAIA-X4PLC-AAD/ontology-management-base/releases/tag/v0.1.0> ;
# Versioning
owl:versionIRI <https://w3id.org/ascs-ev/envited-x/georeference/v5> ;
owl:versionInfo "v5" ;
# Reference to SHACL validation rules
dcterms:conformsTo <https://w3id.org/ascs-ev/envited-x/georeference/v5/shapes> ;
# References to related ontologies
dcterms:references <https://w3id.org/ascs-ev/envited-x/hdmap/v5/> ;
rdfs:seeAlso <https://github.com/GAIA-X4PLC-AAD/ontology-management-base/blob/main/README.md> .
georeference:Georeference a owl:Class ;
rdfs:label "Class definition for Georeference"@en ;
rdfs:comment """A georeferencing dataset that defines the coordinate system, location, and spatial properties of a simulation asset.
This class serves as an optional metadata extension and does not function as a standalone data resource."""@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty georeference:hasGeodeticReferenceSystem ;
owl:cardinality 1
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty georeference:hasProjectLocation ;
owl:cardinality 1
] .
### **Geodetic Reference System**
georeference:GeodeticReferenceSystem a owl:Class ;
rdfs:label "Class definition for GeodeticReferenceSystem"@en ;
rdfs:comment "Defines the reference system used to represent coordinates, including projection type and ellipsoid model."@en ;
# Must have an EPSG code OR a Coordinate System Name
owl:equivalentClass [
a owl:Class ;
owl:unionOf (
[ a owl:Restriction ; owl:onProperty georeference:codeEPSG ; owl:cardinality 1 ]
[ a owl:Restriction ; owl:onProperty georeference:coordinateSystemName ; owl:cardinality 1 ]
)
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty georeference:hasOrigin ;
owl:cardinality 1 ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty georeference:hasViewPoint ;
owl:maxCardinality 1 ;
owl:someValuesFrom georeference:LatLonCoordinate
] .
georeference:ProjectLocation a owl:Class ;
rdfs:label "Class definition for ProjectLocation"@en ;
rdfs:comment "Contains attributes describing the location of a simulation asset, such as country, region, city, and bounding box."@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty georeference:hasBoundingBox ;
owl:cardinality 1 ;
] .
georeference:BoundingBox a owl:Class ;
rdfs:label "Class definition for BoundingBox"@en ;
rdfs:comment "Defines a rectangular spatial extent using minimum and maximum values for the x and y axes."@en .
georeference:LatLonCoordinate a owl:Class ;
rdfs:label "Class definition for LatLonCoordinate"@en ;
rdfs:comment "Defines world coordinates in latitude and longitude, expressed in degrees."@en .
### **Object Properties**
georeference:hasGeodeticReferenceSystem a owl:ObjectProperty ;
rdfs:label "has geodetic reference system"@en ;
rdfs:comment "Links a Georeference to its Geodetic Reference System. REQUIRED (1 per Georeference)."@en ;
rdfs:domain georeference:Georeference ;
rdfs:range georeference:GeodeticReferenceSystem .
georeference:hasProjectLocation a owl:ObjectProperty ;
rdfs:label "has project location"@en ;
rdfs:comment "Links a Georeference to its Project Location details, which includes the bounding box. REQUIRED (1 per Georeference)."@en ;
rdfs:domain georeference:Georeference ;
rdfs:range georeference:ProjectLocation .
georeference:hasBoundingBox a owl:ObjectProperty ;
rdfs:label "has bounding box"@en ;
rdfs:comment "Bounding Box is only allowed inside ProjectLocation and defines its spatial extent."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range georeference:BoundingBox .
georeference:hasOrigin a owl:ObjectProperty ;
rdfs:label "has origin"@en ;
rdfs:comment "Defines the origin position of the asset in world coordinates. REQUIRED."@en ;
rdfs:domain georeference:GeodeticReferenceSystem ;
rdfs:range georeference:LatLonCoordinate .
georeference:hasViewPoint a owl:ObjectProperty ;
rdfs:label "has view point"@en ;
rdfs:comment "Defines the viewpoint position of the asset in world coordinates. OPTIONAL."@en ;
rdfs:domain georeference:GeodeticReferenceSystem ;
rdfs:range georeference:LatLonCoordinate .
### **Datatype Properties (Missing definitions added)**
georeference:codeEPSG a owl:DatatypeProperty ;
rdfs:label "EPSG code"@en ;
rdfs:comment "Defines the projection EPSG code for the asset."@en ;
rdfs:domain georeference:GeodeticReferenceSystem ;
rdfs:range xsd:integer .
georeference:coordinateSystemName a owl:DatatypeProperty ;
rdfs:label "coordinate system name"@en ;
rdfs:comment "Describes the coordinate system name of the asset as an alternative to the EPSG code."@en ;
rdfs:domain georeference:GeodeticReferenceSystem ;
rdfs:range xsd:string .
georeference:heightSystem a owl:DatatypeProperty ;
rdfs:label "height system"@en ;
rdfs:comment "Defines the height system type of the asset."@en ;
rdfs:domain georeference:GeodeticReferenceSystem ;
rdfs:range xsd:string .
georeference:lat a owl:DatatypeProperty ;
rdfs:label "latitude"@en ;
rdfs:comment "Defines a world latitude value in degrees."@en ;
rdfs:domain georeference:LatLonCoordinate ;
rdfs:range xsd:float .
georeference:lon a owl:DatatypeProperty ;
rdfs:label "longitude"@en ;
rdfs:comment "Defines a world longitude value in degrees."@en ;
rdfs:domain georeference:LatLonCoordinate ;
rdfs:range xsd:float .
georeference:country a owl:DatatypeProperty ;
rdfs:label "country"@en ;
rdfs:comment "Defines an ISO 3166-1, alpha-2 code for the country."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range xsd:string .
georeference:state a owl:DatatypeProperty ;
rdfs:label "state"@en ;
rdfs:comment "Defines an ISO 3166-2 code for the state or province."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range xsd:string .
georeference:region a owl:DatatypeProperty ;
rdfs:label "region"@en ;
rdfs:comment "Specifies the name of the region."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range xsd:string .
georeference:city a owl:DatatypeProperty ;
rdfs:label "city"@en ;
rdfs:comment "Specifies the name of the city."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range xsd:string .
georeference:relationOrArea a owl:DatatypeProperty ;
rdfs:label "relation or area"@en ;
rdfs:comment "Describes the area in which the asset is located."@en ;
rdfs:domain georeference:ProjectLocation ;
rdfs:range xsd:string .
georeference:xMin a owl:DatatypeProperty ;
rdfs:label "xMin"@en ;
rdfs:comment "Defines the minimum bounding box value along the x-axis."@en ;
rdfs:domain georeference:BoundingBox ;
rdfs:range xsd:float .
georeference:yMin a owl:DatatypeProperty ;
rdfs:label "yMin"@en ;
rdfs:comment "Defines the minimum bounding box value along the y-axis."@en ;
rdfs:domain georeference:BoundingBox ;
rdfs:range xsd:float .
georeference:xMax a owl:DatatypeProperty ;
rdfs:label "xMax"@en ;
rdfs:comment "Defines the maximum bounding box value along the x-axis."@en ;
rdfs:domain georeference:BoundingBox ;
rdfs:range xsd:float .
georeference:yMax a owl:DatatypeProperty ;
rdfs:label "yMax"@en ;
rdfs:comment "Defines the maximum bounding box value along the y-axis."@en ;
rdfs:domain georeference:BoundingBox ;
rdfs:range xsd:float .