-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCG_building.owl
136 lines (94 loc) · 4.62 KB
/
CG_building.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_building#"
xml:base="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_building#"
xmlns:cg_building="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_building#"
xmlns:cg_entities="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_entities#"
xmlns:cg_language="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_language#"
xmlns:onto="ontologenius"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_building">
<owl:imports rdf:resource="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_entities"/>
<owl:imports rdf:resource="https://github.com/RIS-WITH/common_ground_ontology/blob/master/CG_language"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- cg_building#hasBuildingPart -->
<owl:ObjectProperty rdf:about="cg_building#hasBuildingPart">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="cg_building#Building"/>
<rdfs:range rdf:resource="cg_building#BuildingPart"/>
</owl:ObjectProperty>
<!-- cg_building#isPartOfBuilding -->
<owl:ObjectProperty rdf:about="cg_building#isPartOfBuilding">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="cg_building#BuildingPart"/>
<rdfs:range rdf:resource="cg_building#Building"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- cg_building#Building -->
<owl:Class rdf:about="cg_building#Building">
<rdfs:subClassOf rdf:resource="cg_entities#PhysicalEntity"/>
</owl:Class>
<!-- cg_building#BuildingPart -->
<owl:Class rdf:about="cg_building#BuildingPart">
<rdfs:subClassOf rdf:resource="cg_entities#PhysicalEntity"/>
</owl:Class>
<!-- cg_building#Door -->
<owl:Class rdf:about="cg_building#Door">
<rdfs:subClassOf rdf:resource="cg_building#BuildingPart"/>
<rdfs:subClassOf rdf:resource="cg_language#FrFemaleGender"/>
<rdfs:label xml:lang="en">door</rdfs:label>
<rdfs:label xml:lang="fr">porte</rdfs:label>
</owl:Class>
<!-- cg_building#Floor -->
<owl:Class rdf:about="cg_building#Floor">
<rdfs:subClassOf rdf:resource="cg_building#BuildingPart"/>
<rdfs:subClassOf rdf:resource="cg_language#FrMaleGender"/>
<rdfs:label xml:lang="en">floor</rdfs:label>
<rdfs:label xml:lang="fr">sol</rdfs:label>
</owl:Class>
<!-- cg_building#Wall -->
<owl:Class rdf:about="cg_building#Wall">
<rdfs:subClassOf rdf:resource="cg_building#BuildingPart"/>
<rdfs:subClassOf rdf:resource="cg_language#FrMaleGender"/>
<rdfs:label xml:lang="en">wall</rdfs:label>
<rdfs:label xml:lang="fr">mur</rdfs:label>
</owl:Class>
<!-- cg_building#Window -->
<owl:Class rdf:about="cg_building#Window">
<rdfs:subClassOf rdf:resource="cg_building#BuildingPart"/>
<rdfs:subClassOf rdf:resource="cg_language#FrFemaleGender"/>
<rdfs:label xml:lang="en">window</rdfs:label>
<rdfs:label xml:lang="fr">fenetre</rdfs:label>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// General axioms
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
<owl:members rdf:parseType="Collection">
<rdf:Description rdf:about="cg_building#Floor"/>
<rdf:Description rdf:about="cg_building#Wall"/>
<rdf:Description rdf:about="cg_building#Window"/>
</owl:members>
</rdf:Description>
</rdf:RDF>