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 pathsurface-model.owl.ttl
More file actions
179 lines (154 loc) · 7.47 KB
/
Copy pathsurface-model.owl.ttl
File metadata and controls
179 lines (154 loc) · 7.47 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
@prefix surface-model: <https://w3id.org/ascs-ev/envited-x/surface-model/v6/> .
@prefix envited-x: <https://w3id.org/ascs-ev/envited-x/envited-x/v3/> .
@prefix georeference: <https://w3id.org/ascs-ev/envited-x/georeference/v5/> .
@prefix manifest: <https://w3id.org/ascs-ev/envited-x/manifest/v5/> .
@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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix gx: <https://w3id.org/gaia-x/development#> .
<https://w3id.org/ascs-ev/envited-x/surface-model/v6> a owl:Ontology ;
rdfs:label "Ontology definition for surface-model"@en ;
rdfs:comment "An ontology with common classes used to describe a surface-model asset."@en ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
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/> ;
] , [
a foaf:Person ;
foaf:name "Carlo van Driesten" ;
org:memberOf <https://www.bmwgroup.com/> ;
] ;
# Permanent identifier for the ontology (not version-specific)
dcterms:identifier <https://w3id.org/ascs-ev/envited-x/surface-model> ;
# 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/surface-model/v6> ;
owl:versionInfo "v6" ;
# Imports strict dependencies
owl:imports <https://w3id.org/ascs-ev/envited-x/envited-x/v3> ,
<https://w3id.org/ascs-ev/envited-x/georeference/v5> ;
# Reference to SHACL validation rules
dcterms:conformsTo <https://w3id.org/ascs-ev/envited-x/surface-model/v6/shapes> ;
# Additional references to the ENVITED Ecosystem Specification (EVES) or related ontologies
dcterms:references <https://www.asam.net/standards/detail/opencrg/> ;
rdfs:seeAlso <https://ascs-ev.github.io/EVES/> .
surface-model:SurfaceModel a owl:Class ;
rdfs:label "Class definition for SurfaceModel"@en ;
rdfs:comment "General properties for defining a surface model asset, including format, content, data sources, quantity, and quality attributes."@en ;
rdfs:subClassOf envited-x:SimulationAsset ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty surface-model:hasDomainSpecification ;
owl:someValuesFrom surface-model:DomainSpecification
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty surface-model:hasResourceDescription ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
]
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty surface-model:hasManifest ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
]
] .
surface-model:DomainSpecification a owl:Class ;
rdfs:label "Class definition for DomainSpecification"@en ;
rdfs:comment "Surface model DomainSpecification containing additional metadata information of the simulation asset."@en ;
rdfs:subClassOf envited-x:DomainSpecification ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty surface-model:hasContent ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty surface-model:hasFormat ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty surface-model:hasQuality ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty surface-model:hasQuantity ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty surface-model:hasGeoreference ;
owl:cardinality 1
] .
surface-model:Content a owl:Class ;
rdfs:label "Class definition for Content"@en ;
rdfs:comment "Contains properties that describe the content type of the surface model asset."@en ;
rdfs:subClassOf envited-x:Content .
surface-model:Format a owl:Class ;
rdfs:label "Class definition for Format"@en ;
rdfs:comment "Contains properties that describe the format of the surface model asset."@en ;
rdfs:subClassOf envited-x:Format .
surface-model:Quality a owl:Class ;
rdfs:label "Class definition for Quality"@en ;
rdfs:comment "Contains properties that describe the accuracy of the surface model asset."@en ;
rdfs:subClassOf envited-x:Quality .
surface-model:Quantity a owl:Class ;
rdfs:label "Class definition for Quantity"@en ;
rdfs:comment "Contains properties that describe the quantity of the surface model asset."@en ;
rdfs:subClassOf envited-x:Quantity .
### Object Properties
surface-model:hasDomainSpecification a owl:ObjectProperty ;
rdfs:label "Object property: hasDomainSpecification"@en ;
rdfs:comment "Links a surface model asset to its specific metadata (DomainSpecification), which may contain additional surface model-specific attributes."@en ;
rdfs:subPropertyOf envited-x:hasDomainSpecification ;
rdfs:domain surface-model:SurfaceModel ;
rdfs:range surface-model:DomainSpecification .
surface-model:hasResourceDescription a owl:ObjectProperty ;
rdfs:label "Object property: hasResourceDescription"@en ;
rdfs:comment "Links a surface model asset to a standard ResourceDescription instance from envited-x."@en ;
rdfs:subPropertyOf envited-x:hasResourceDescription ;
rdfs:domain surface-model:SurfaceModel ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
] .
surface-model:hasManifest a owl:ObjectProperty ;
rdfs:label "Object property: hasManifest"@en ;
rdfs:comment "Links a surface model asset to its manifest. May be inline or via link."@en ;
rdfs:subPropertyOf envited-x:hasManifest ;
rdfs:domain surface-model:SurfaceModel ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
] .
surface-model:hasGeoreference a owl:ObjectProperty ;
rdfs:label "Object property: hasGeoreference"@en ;
rdfs:comment "Links a DomainSpecification to a georeference:Georeference describing how the surface model is georeferenced."@en ;
rdfs:domain surface-model:DomainSpecification ;
rdfs:range georeference:Georeference .
surface-model:hasContent a owl:ObjectProperty ;
rdfs:label "Object property: hasContent"@en ;
rdfs:comment "Links a DomainSpecification to an instance of surface-model:Content that describes the surface model's data content."@en ;
rdfs:subPropertyOf envited-x:hasContent ;
rdfs:domain surface-model:DomainSpecification ;
rdfs:range surface-model:Content .
surface-model:hasFormat a owl:ObjectProperty ;
rdfs:label "Object property: hasFormat"@en ;
rdfs:comment "Links a DomainSpecification to an instance of surface-model:Format that describes the surface model's file format details."@en ;
rdfs:subPropertyOf envited-x:hasFormat ;
rdfs:domain surface-model:DomainSpecification ;
rdfs:range surface-model:Format .