-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwheelchair_accessibility.ttl
394 lines (280 loc) · 12.8 KB
/
wheelchair_accessibility.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
@base <http://semweb.mmlab.be/ns/wa#>.
@prefix org: <http://www.w3.org/ns/org#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dvia: <http://purl.org/ontology/dvia#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rev: <http://purl.org/stuff/rev#> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix wa: <http://semweb.mmlab.be/ns/wa#>.
# ------------------------------- Metadata----------------------------------------------
<http://semweb.mmlab.be/ns/wa>
a owl:Ontology;
rdfs:comment "wheelchair accessibility (wa) is an RDF vocabulary defined to describe the spaces' access potential for wheelshairs."@en ;
dct:title "The vocabulary for (L)OD description of wheelchair accessibility"@en;
dct:issued "2014-01-16"^^xsd:date;
#dct:modified "2014-01-22"^^xsd:date;
cc:license <http://creativecommons.org/licenses/by/3.0/> ;
vann:preferredNamespacePrefix "wa" .
########--- Classes --------------##########
#wa:AccessibilityMeasurement
wa:AccessibilityMeasurement a rdfs:Class;
rdfs:label "Accessibility measurement"@en ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa> .
##### Properties ---------#########
####-#############################
#accessibilityMeasurement
wa:accessibilityMeasurement a rdf:Property ;
rdfs:label "has accessibility measurement"@en ;
rdfs:range wa:AccessibilityMeasurement;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa> .
#accessibilityMeasurement_for
wa:accessibilityMeasurement_for a rdf:Property ;
rdfs:label "accessibility measurement for"@en ;
rdfs:domain wa:AccessibilityMeasurement;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa> .
#elevatorDoorWidth
wa:elevatorDoorWidth a rdf:Property ;
rdfs:label "elevator door width"@en ;
rdfs:label "liftdeur breedte"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa> .
#elevatorDoorScore
wa:elevatorDoorScore a rdf:Property ;
rdfs:label "elevator door width score"@en ;
rdfs:label "liftdeur breedte score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa> .
#elevatorSpaceWidth
wa:elevatorSpaceWidth a rdf:Property ;
rdfs:label "elevator space width"@en ;
rdfs:label "liftruimte breedte"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal ;
rdfs:isDefinedBy <http://semweb.mmlab.be/ns/wa>.
#elevatorSpaceWidthScore
wa:elevatorSpaceScore a rdf:Property ;
rdfs:label "elevator space width score"@en ;
rdfs:label "liftruimte breedte score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#elevatorSpaceDepth
wa:elevatorSpaceDepth a rdf:Property ;
rdfs:label "elevator space depth"@en ;
rdfs:label "liftruimte diepte"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#elevatorSpaceDepthScore
wa:elevatorSpaceDepthScore a rdf:Property ;
rdfs:label "elevator space depth score"@en ;
rdfs:label "liftruimte diepte score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#entranceDoorWidth
wa:entranceDoorWidth a rdf:Property ;
rdfs:label "entrance door width"@en ;
rdfs:label "inkomdeur breedte"@nl ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#entranceDoorWidthScore
wa:entranceDoorWidthScore a rdf:Property ;
rdfs:label "entrance door width score"@en ;
rdfs:label "inkomdeur breedte score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#threshold
wa:threshold a rdf:Property ;
rdfs:label "threshold"@en ;
rdfs:label "trede"@nl ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#threshold score
wa:thresholdScore a rdf:Property ;
rdfs:label "threshold score"@en ;
rdfs:label "trede score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Stair .
#rampSteepness
wa:rampSteepness a rdf:Property ;
rdfs:label "ramp steepness"@en ;
rdfs:label "helling"@nl ;
rdfs:comment "PCT dimension (cm)"@en ;
rdfs:comment "PCT afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#rampSteepnessScore
wa:steepnessScore a rdf:Property ;
rdfs:label "rampSteepness score" ;
rdfs:label "helling score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#table height
wa:tableHeight a rdf:Property ;
rdfs:label "table height"@en ;
rdfs:label "tafel onderrijdbare hoogte"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#table height score
wa:tableHeightScore a rdf:Property ;
rdfs:label "tafel onderrijdbare hoogte score"@nl ;
rdfs:label "table height score" ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#table depth
wa:tableDepth a rdf:Property ;
rdfs:label "table depth"@en ;
rdfs:label "tafel onderrijdbare diepte"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#table depth score
wa:tableDepthScore a rdf:Property ;
rdfs:label "table depth score" ;
rdfs:label "tafel onderrijdbare diepte score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletRouteWidth
wa:toiletRouteWidth a rdf:Property ;
rdfs:label "toilet route width"@en ;
rdfs:label "toilet gang"@nl ;
rdfs:comment "breedte smalste gang naar wc"@en ;
rdfs:comment "smallest width on the way to the toilet"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet route width score
wa:toiletRouteWidthScore a rdf:Property ;
rdfs:label "toilet route width score" ;
rdfs:label "toilet gang score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletRouteDoorWidth
wa:toiletRouteDoorWidth a rdf:Property ;
rdfs:label "smallest route width on the way to the toilet"@en ;
rdfs:label "toilet gang"@nl ;
rdfs:comment "breedte smalste deur naar wc (op de route / niet de wc-deur zelf)"@en ;
rdfs:comment "smallest width on the way to the toilet"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet corridor width score
wa:toiletCorridorDoorWidthScore a rdf:Property ;
rdfs:label "score of the smallest door width on the way to the toilet" ;
rdfs:label "breedte smalste deur naar wc (op de route / niet de wc-deur zelf) score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletRouteThreshold
wa:toiletRouteThreshold a rdf:Property ;
rdfs:label "toilet route threshold"@en ;
rdfs:label "toilet drempel"@nl ;
rdfs:comment "drempel op de route naar het toilet"@en ;
rdfs:comment "doorstep on the way to the toilet"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet route threshold score
wa:toiletRouteThresholdScore a rdf:Property ;
rdfs:label "toilet route threshold score" ;
rdfs:label "drempel op de route naar het toilet"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletRouteRampSteepness
wa:toiletRouteRampSteepness a rdf:Property ;
rdfs:label "toilet route ramp steepness"@en ;
rdfs:label "toilet helling"@nl ;
rdfs:comment "helling op de route naar het toilet"@en ;
rdfs:comment "steepness on the way to the toilet"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet route ramp steepness score
wa:toiletRouteRampSteepnessScore a rdf:Property ;
rdfs:label "toilet route ramp steepness score" ;
rdfs:label "toilet helling score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletDoorWidth
wa:toiletDoorWidth a rdf:Property ;
rdfs:label "toilet door width"@en ;
rdfs:label "toilet deur breedte"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet door width score
wa:toiletDoorWidthScore a rdf:Property ;
rdfs:label "toilet door width score" ;
rdfs:label "toilet deur score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toilet space next to the toilet
wa:toiletSpaceNext a rdf:Property ;
rdfs:label "toilet space next to the toilet"@en ;
rdfs:label "toiletruimte opstelruimte naast wc"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#score of the toilet space next to the toilet
wa:toiletSpaceNext a rdf:Property ;
rdfs:label "score of the toilet space next to the toilet" ;
rdfs:label "toiletruimte opstelruimte naast wc score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#toiletSpaceNext
wa:toiletSpaceInfront a rdf:Property ;
rdfs:label "toilet space in front of the toilet"@en ;
rdfs:label "toiletruimte opstelruimte voor wc"@nl ;
rdfs:comment "dimension (cm)"@en ;
rdfs:comment "afmeting (cm)"@nl ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet space in front of the toilet
wa:toiletSpaceInfront a rdf:Property ;
rdfs:label "score of the toilet space in front of the toilet" ;
rdfs:label "toiletruimte opstelruimte voor wc score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .
#number of toilet handrails
wa:toiletHandrails a rdf:Property ;
rdfs:label "number of toilet handrails"@en ;
rdfs:label "aantal steunbeugels"@nl ;
rdfs:comment "any number of 2, 1 or 0"@nl ;
rdfs:comment "2, 1 or 0"@en ;
rdfs:domain wa:Accessibility;
rdfs:range xsd:decimal .
#toilet space in front of the toilet
wa:toiletSpaceInfront a rdf:Property ;
rdfs:label "number of handrails score" ;
rdfs:label "aantal steunbeugels score"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@nl ;
rdfs:comment "score (+ ; +/- ; - )"@en ;
rdfs:domain wa:Accessibility .