-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path02_PropsFromRevit.ttl
855 lines (748 loc) · 44.8 KB
/
02_PropsFromRevit.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
# Copyright (c) 2018 W3C Linked Building Data Community Group
#
# This copyright applies to the vocabulary specification and
# accompanying documentation in RDF. Regarding underlying technology,
# the ontology uses W3C's RDF technology, an open web standard that can be
# freely used by anyone.
#
# Licensed under the Creative Commons Attribution Share Alike License
# (CC BY-SA 4.0); you may not use this file except in compliance with
# the license. You may obtain a copy of the license at:
#
# https://creativecommons.org/licenses/by-sa/4.0/
#
# Unless required by applicable law or agreed to in writing,
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix props: <https://w3id.org/props#> .
@prefix ex: <https://example.org/> .
@prefix opm: <https://w3id.org/opm#> .
@prefix seas: <https://w3id.org/seas/> .
@prefix schema: <http://schema.org/> .
@prefix bot4osh: <https://w3id.org/ibp/bot4osh/> .
@base <https://w3id.org/ibp/osh/bot4osh> .
<https://w3id.org/ibp/osh/bot4osh> rdf:type owl:Ontology ;
dcterms:title "Ontology hosting properties exported from revit."@en ;
dcterms:creator "Mads Holten Rasmussen" ;
dcterms:contributor "Pieter Pauwels" ;
dcterms:contributor "Georg Ferdinand Schneider" ;
dcterms:contributor "Peter Bonsma" ;
dcterms:contributor "Jyrki Oraskari" ;
rdfs:seeAlso <https://github.com/TechnicalBuildingSystems/OpenSmartHomeData> ;
dcterms:rights """Copyright (c) 2018, Linked Building Data Community Group. This ontology is distributed under a Creative Commons Attribution Share Alike License (CC BY-SA 4.0) http://creativecommons.org/licenses/by-sa/4.0"""@en ;
dcterms:issued "2018-02-05"^^xsd:date ;
dcterms:modified "2017-05-10"^^xsd:date ;
dcterms:license <http://creativecommons.org/licenses/by-sa/4.0> .
### ELEMENTS ###
# WALLS
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
seas:evaluation bot4osh:state_identityDataName_67091175-09f8-4404-92fd-be6e8ea1d47e .
bot4osh:state_identityDataName_67091175-09f8-4404-92fd-be6e8ea1d47e
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
seas:evaluation bot4osh:state_dimensionsWidth_722fbf85-a8c9-4dc9-9371-96f2b309a26a .
bot4osh:state_dimensionsWidth_722fbf85-a8c9-4dc9-9371-96f2b309a26a
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d8eb
seas:evaluation bot4osh:state_dimensionsLength_2ed6fe0e-b076-4a92-83cc-4b621e5c00a7 .
bot4osh:state_dimensionsLength_2ed6fe0e-b076-4a92-83cc-4b621e5c00a7
a opm:CurrentState ;
schema:value "9620"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
seas:evaluation bot4osh:state_identityDataName_26e260d6-946e-4c3b-acd7-14f4cbd203a9 .
bot4osh:state_identityDataName_26e260d6-946e-4c3b-acd7-14f4cbd203a9
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
seas:evaluation bot4osh:state_dimensionsWidth_63c469a4-176c-4a14-b4e9-9572423617cc .
bot4osh:state_dimensionsWidth_63c469a4-176c-4a14-b4e9-9572423617cc
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d93d
seas:evaluation bot4osh:state_dimensionsLength_a5a60c97-e008-4f2e-9acc-a3384ce9e17c .
bot4osh:state_dimensionsLength_a5a60c97-e008-4f2e-9acc-a3384ce9e17c
a opm:CurrentState ;
schema:value "11450"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
seas:evaluation bot4osh:state_identityDataName_85979a70-2bbc-4dc7-922a-4ed0d697609d .
bot4osh:state_identityDataName_85979a70-2bbc-4dc7-922a-4ed0d697609d
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
seas:evaluation bot4osh:state_dimensionsWidth_5457b1b2-6a07-41d0-b957-7e94dcd3a971 .
bot4osh:state_dimensionsWidth_5457b1b2-6a07-41d0-b957-7e94dcd3a971
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d96f
seas:evaluation bot4osh:state_dimensionsLength_bc1367bd-5291-442f-8282-04d9bb74cf5f .
bot4osh:state_dimensionsLength_bc1367bd-5291-442f-8282-04d9bb74cf5f
a opm:CurrentState ;
schema:value "9620"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
seas:evaluation bot4osh:state_identityDataName_15783a4f-ffa6-4f5c-b745-ef48f3eecc3b .
bot4osh:state_identityDataName_15783a4f-ffa6-4f5c-b745-ef48f3eecc3b
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
seas:evaluation bot4osh:state_dimensionsWidth_4f2b9794-a44f-4def-9ce4-4f476d2c0eed .
bot4osh:state_dimensionsWidth_4f2b9794-a44f-4def-9ce4-4f476d2c0eed
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004d9a0
seas:evaluation bot4osh:state_dimensionsLength_a77f3d6b-c9ed-4feb-bbef-99c82ad15472 .
bot4osh:state_dimensionsLength_a77f3d6b-c9ed-4feb-bbef-99c82ad15472
a opm:CurrentState ;
schema:value "11450"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
seas:evaluation bot4osh:state_identityDataName_38aa2233-0a77-4d45-813e-1d6b7c9fdb00 .
bot4osh:state_identityDataName_38aa2233-0a77-4d45-813e-1d6b7c9fdb00
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
seas:evaluation bot4osh:state_dimensionsWidth_57d70537-522e-427e-bb12-ae31a6268869 .
bot4osh:state_dimensionsWidth_57d70537-522e-427e-bb12-ae31a6268869
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da28
seas:evaluation bot4osh:state_dimensionsLength_5bb4dc1d-b406-4359-bef0-8958156057c0 .
bot4osh:state_dimensionsLength_5bb4dc1d-b406-4359-bef0-8958156057c0
a opm:CurrentState ;
schema:value "4980"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
seas:evaluation bot4osh:state_identityDataName_a4f9d4a7-ca28-4109-a44b-51234e9473df .
bot4osh:state_identityDataName_a4f9d4a7-ca28-4109-a44b-51234e9473df
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
seas:evaluation bot4osh:state_dimensionsWidth_87674af8-1932-4414-bed8-858a964ec944 .
bot4osh:state_dimensionsWidth_87674af8-1932-4414-bed8-858a964ec944
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004da52
seas:evaluation bot4osh:state_dimensionsLength_e5c15cf0-413c-4ed7-96c2-7534145222de .
bot4osh:state_dimensionsLength_e5c15cf0-413c-4ed7-96c2-7534145222de
a opm:CurrentState ;
schema:value "4160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
seas:evaluation bot4osh:state_identityDataName_e72f6a0f-6471-4e92-ba5e-db663510b664 .
bot4osh:state_identityDataName_e72f6a0f-6471-4e92-ba5e-db663510b664
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
seas:evaluation bot4osh:state_dimensionsWidth_ef121ce1-1517-4982-b6ee-9b582c0c0310 .
bot4osh:state_dimensionsWidth_ef121ce1-1517-4982-b6ee-9b582c0c0310
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dae1
seas:evaluation bot4osh:state_dimensionsLength_e70cc6e7-05a9-44c1-be36-b930c8c81796 .
bot4osh:state_dimensionsLength_e70cc6e7-05a9-44c1-be36-b930c8c81796
a opm:CurrentState ;
schema:value "3180"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
seas:evaluation bot4osh:state_identityDataName_3e0f37f6-3751-4757-b36c-24b68d6112ee .
bot4osh:state_identityDataName_3e0f37f6-3751-4757-b36c-24b68d6112ee
a opm:CurrentState ;
schema:value "Generic - 100mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
seas:evaluation bot4osh:state_dimensionsWidth_eb9ad1f0-f9c9-41b6-b50d-1fba5a45f54a .
bot4osh:state_dimensionsWidth_eb9ad1f0-f9c9-41b6-b50d-1fba5a45f54a
a opm:CurrentState ;
schema:value "100"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db10
seas:evaluation bot4osh:state_dimensionsLength_dd0de20b-b3c0-48b7-81ee-ebe4fce43a95 .
bot4osh:state_dimensionsLength_dd0de20b-b3c0-48b7-81ee-ebe4fce43a95
a opm:CurrentState ;
schema:value "1810"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
seas:evaluation bot4osh:state_identityDataName_87e8f57d-480d-4885-abcd-60b3848f1c62 .
bot4osh:state_identityDataName_87e8f57d-480d-4885-abcd-60b3848f1c62
a opm:CurrentState ;
schema:value "Generic - 260mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
seas:evaluation bot4osh:state_dimensionsWidth_e95affcc-6060-4922-8561-969c01358ce7 .
bot4osh:state_dimensionsWidth_e95affcc-6060-4922-8561-969c01358ce7
a opm:CurrentState ;
schema:value "260"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004db64
seas:evaluation bot4osh:state_dimensionsLength_db41de0a-a7cc-4e48-abcf-39ae6e5221e9 .
bot4osh:state_dimensionsLength_db41de0a-a7cc-4e48-abcf-39ae6e5221e9
a opm:CurrentState ;
schema:value "4660"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
seas:evaluation bot4osh:state_identityDataName_64e210b8-1b8e-4877-8563-113eb4597e6b .
bot4osh:state_identityDataName_64e210b8-1b8e-4877-8563-113eb4597e6b
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
seas:evaluation bot4osh:state_dimensionsWidth_4191d7af-e7f9-46f0-8974-b1e9b446a49e .
bot4osh:state_dimensionsWidth_4191d7af-e7f9-46f0-8974-b1e9b446a49e
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dbc4
seas:evaluation bot4osh:state_dimensionsLength_ee8d0f59-c3ea-46d1-960f-610a2797c9a2 .
bot4osh:state_dimensionsLength_ee8d0f59-c3ea-46d1-960f-610a2797c9a2
a opm:CurrentState ;
schema:value "3310"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
seas:evaluation bot4osh:state_identityDataName_f6b19f0d-8b82-44bd-8054-7e7cd58f9585 .
bot4osh:state_identityDataName_f6b19f0d-8b82-44bd-8054-7e7cd58f9585
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
seas:evaluation bot4osh:state_dimensionsWidth_aab3e94d-d278-472f-9d30-2ae4bea9340e .
bot4osh:state_dimensionsWidth_aab3e94d-d278-472f-9d30-2ae4bea9340e
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc15
seas:evaluation bot4osh:state_dimensionsLength_d32aab29-9bcb-4935-8897-db90926145f3 .
bot4osh:state_dimensionsLength_d32aab29-9bcb-4935-8897-db90926145f3
a opm:CurrentState ;
schema:value "5020"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
seas:evaluation bot4osh:state_identityDataName_d59f5d15-2624-43f1-9772-38d89e146071 .
bot4osh:state_identityDataName_d59f5d15-2624-43f1-9772-38d89e146071
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
seas:evaluation bot4osh:state_dimensionsWidth_2f065ebe-8d5c-4a28-aa0f-4b875538a4bb .
bot4osh:state_dimensionsWidth_2f065ebe-8d5c-4a28-aa0f-4b875538a4bb
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dc66
seas:evaluation bot4osh:state_dimensionsLength_789ba8c9-8f11-4859-8636-72543d89c683 .
bot4osh:state_dimensionsLength_789ba8c9-8f11-4859-8636-72543d89c683
a opm:CurrentState ;
schema:value "5460"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
seas:evaluation bot4osh:state_identityDataName_5574a280-e83f-4442-b92f-4e62ffee578f .
bot4osh:state_identityDataName_5574a280-e83f-4442-b92f-4e62ffee578f
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
seas:evaluation bot4osh:state_dimensionsWidth_817efa77-b46c-4d92-9537-485af88bcfc4 .
bot4osh:state_dimensionsWidth_817efa77-b46c-4d92-9537-485af88bcfc4
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004dcc3
seas:evaluation bot4osh:state_dimensionsLength_35da7cd7-13b4-4135-9f7a-b3a2d4e2d7ce .
bot4osh:state_dimensionsLength_35da7cd7-13b4-4135-9f7a-b3a2d4e2d7ce
a opm:CurrentState ;
schema:value "3310"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
seas:evaluation bot4osh:state_identityDataName_ee2cddf5-7874-4d0d-be00-63cc8807b6a7 .
bot4osh:state_identityDataName_ee2cddf5-7874-4d0d-be00-63cc8807b6a7
a opm:CurrentState ;
schema:value "Generic - 60mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
seas:evaluation bot4osh:state_dimensionsWidth_bd7d3112-8551-47cd-90b4-f8aa20d2272f .
bot4osh:state_dimensionsWidth_bd7d3112-8551-47cd-90b4-f8aa20d2272f
a opm:CurrentState ;
schema:value "60"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004de3e
seas:evaluation bot4osh:state_dimensionsLength_806b17b2-9e8c-4eb4-9651-26cdcf637640 .
bot4osh:state_dimensionsLength_806b17b2-9e8c-4eb4-9651-26cdcf637640
a opm:CurrentState ;
schema:value "1580"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
seas:evaluation bot4osh:state_identityDataName_07390ae5-e798-4eed-b6ae-4b748dde4cb0 .
bot4osh:state_identityDataName_07390ae5-e798-4eed-b6ae-4b748dde4cb0
a opm:CurrentState ;
schema:value "Generic - 160mm" .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
props:dimensionsWidth bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027 .
bot4osh:dimensionsWidth_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
seas:evaluation bot4osh:state_dimensionsWidth_5e392f9e-c5a4-46e0-9660-fad24f0d1d2b .
bot4osh:state_dimensionsWidth_5e392f9e-c5a4-46e0-9660-fad24f0d1d2b
a opm:CurrentState ;
schema:value "160"^^xsd:decimal .
bot4osh:wall_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
props:dimensionsLength bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027 .
bot4osh:dimensionsLength_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e027
seas:evaluation bot4osh:state_dimensionsLength_0a269389-2544-42ef-903c-069fe2c34173 .
bot4osh:state_dimensionsLength_0a269389-2544-42ef-903c-069fe2c34173
a opm:CurrentState ;
schema:value "1860"^^xsd:decimal .
# WINDOWS & DOORS
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1d4
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1d4 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1d4
seas:evaluation bot4osh:state_identityDataName_6f1a4bd4-bb65-4613-8a6c-ccfe126805f7 .
bot4osh:state_identityDataName_6f1a4bd4-bb65-4613-8a6c-ccfe126805f7
a opm:CurrentState ;
schema:value "0915 x 2134mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e271
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e271 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e271
seas:evaluation bot4osh:state_identityDataName_a7d9d2ee-83fe-43f9-a41f-a519c1b5ed71 .
bot4osh:state_identityDataName_a7d9d2ee-83fe-43f9-a41f-a519c1b5ed71
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e345
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e345 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e345
seas:evaluation bot4osh:state_identityDataName_ffb21636-7d67-43e0-ae0b-f45a995cb8fb .
bot4osh:state_identityDataName_ffb21636-7d67-43e0-ae0b-f45a995cb8fb
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e3d9
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e3d9 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e3d9
seas:evaluation bot4osh:state_identityDataName_32897c47-5493-42e7-be03-1e3d197a4bac .
bot4osh:state_identityDataName_32897c47-5493-42e7-be03-1e3d197a4bac
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e7b4
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e7b4 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e7b4
seas:evaluation bot4osh:state_identityDataName_498fb293-00ed-44d6-8524-2d04f1c77051 .
bot4osh:state_identityDataName_498fb293-00ed-44d6-8524-2d04f1c77051
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e823
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e823 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e823
seas:evaluation bot4osh:state_identityDataName_84f14c02-75e0-4703-8c09-264da8f268d5 .
bot4osh:state_identityDataName_84f14c02-75e0-4703-8c09-264da8f268d5
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e84d
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e84d .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e84d
seas:evaluation bot4osh:state_identityDataName_838fb4a4-9950-4555-82aa-46cd6f360bbe .
bot4osh:state_identityDataName_838fb4a4-9950-4555-82aa-46cd6f360bbe
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:door_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e897
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e897 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e897
seas:evaluation bot4osh:state_identityDataName_a1a89642-9741-43f2-a513-06e23ed8e151 .
bot4osh:state_identityDataName_a1a89642-9741-43f2-a513-06e23ed8e151
a opm:CurrentState ;
schema:value "0762 x 2032mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e962
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e962 .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e962
seas:evaluation bot4osh:state_identityDataName_2f3ad736-8581-4d63-9dbe-3444d3065c6a .
bot4osh:state_identityDataName_2f3ad736-8581-4d63-9dbe-3444d3065c6a
a opm:CurrentState ;
schema:value "1600 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e9d3
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e9d3 .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004e9d3
seas:evaluation bot4osh:state_identityDataName_50d8342e-e1f7-408a-bc56-60b8e01a76f9 .
bot4osh:state_identityDataName_50d8342e-e1f7-408a-bc56-60b8e01a76f9
a opm:CurrentState ;
schema:value "0700 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ea0d
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ea0d .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ea0d
seas:evaluation bot4osh:state_identityDataName_851d9412-57ca-44a9-abbd-55e57a9e9bdb .
bot4osh:state_identityDataName_851d9412-57ca-44a9-abbd-55e57a9e9bdb
a opm:CurrentState ;
schema:value "1900 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eab4
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eab4 .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eab4
seas:evaluation bot4osh:state_identityDataName_04cf8569-472a-4592-9dc3-315954496bec .
bot4osh:state_identityDataName_04cf8569-472a-4592-9dc3-315954496bec
a opm:CurrentState ;
schema:value "1600 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb0d
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb0d .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb0d
seas:evaluation bot4osh:state_identityDataName_5f204371-0cca-4e0d-9be9-db1dbc2ffc29 .
bot4osh:state_identityDataName_5f204371-0cca-4e0d-9be9-db1dbc2ffc29
a opm:CurrentState ;
schema:value "1600 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb9e
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb9e .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004eb9e
seas:evaluation bot4osh:state_identityDataName_7cfc3404-717b-4cba-b46d-7629d9898b39 .
bot4osh:state_identityDataName_7cfc3404-717b-4cba-b46d-7629d9898b39
a opm:CurrentState ;
schema:value "1600 x 1100mm" .
bot4osh:window_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ebd8
props:identityDataName bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ebd8 .
bot4osh:identityDataName_52a273d7-fd5d-4d87-b824-a5c3f59901cc-0004ebd8
seas:evaluation bot4osh:state_identityDataName_763b9fbc-09e5-4335-891b-facc12ba33c6 .
bot4osh:state_identityDataName_763b9fbc-09e5-4335-891b-facc12ba33c6
a opm:CurrentState ;
schema:value "0700 x 1100mm" .
bot4osh:level_e3e052f9-0156-11d5-9301-0000863f27ad-00000137
props:identityDataName bot4osh:identityDataName_e3e052f9-0156-11d5-9301-0000863f27ad-00000137 .
bot4osh:identityDataName_e3e052f9-0156-11d5-9301-0000863f27ad-00000137
seas:evaluation bot4osh:state_identityDataName_ae7bb512-8154-4e6f-8b6e-4ec2af486ab9 .
bot4osh:state_identityDataName_ae7bb512-8154-4e6f-8b6e-4ec2af486ab9
a opm:CurrentState ;
schema:value "Level 1" .
bot4osh:level_458c0e49-01bb-11d5-9302-0000863f27ad-000002b6
props:identityDataName bot4osh:identityDataName_458c0e49-01bb-11d5-9302-0000863f27ad-000002b6 .
bot4osh:identityDataName_458c0e49-01bb-11d5-9302-0000863f27ad-000002b6
seas:evaluation bot4osh:state_identityDataName_f6caba46-d79e-4e45-bc0b-647e9001f12d .
bot4osh:state_identityDataName_f6caba46-d79e-4e45-bc0b-647e9001f12d
a opm:CurrentState ;
schema:value "Level 2" .
### SPACES ###
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
seas:evaluation bot4osh:state_identityDataNumber_aeb3b838-33c5-42ed-94bc-c66213d05623 .
bot4osh:state_identityDataNumber_aeb3b838-33c5-42ed-94bc-c66213d05623
a opm:CurrentState ;
schema:value "1" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
seas:evaluation bot4osh:state_identityDataName_d1650e95-8a8d-4a72-b47c-97391aacdd54 .
bot4osh:state_identityDataName_d1650e95-8a8d-4a72-b47c-97391aacdd54
a opm:CurrentState ;
schema:value "Raum 1 1" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
seas:evaluation bot4osh:state_dimensionsArea_40a1122e-d053-4cdb-9710-ecd0229906c1 .
bot4osh:state_dimensionsArea_40a1122e-d053-4cdb-9710-ecd0229906c1
a opm:CurrentState ;
schema:value "18.6"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e04f
seas:evaluation bot4osh:state_dimensionsVolume_4bacc1b4-dfe6-4a92-9dca-b67e8b53cb2f .
bot4osh:state_dimensionsVolume_4bacc1b4-dfe6-4a92-9dca-b67e8b53cb2f
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
seas:evaluation bot4osh:state_identityDataNumber_b45a9941-03b7-41fa-9cba-78d4ae5feee0 .
bot4osh:state_identityDataNumber_b45a9941-03b7-41fa-9cba-78d4ae5feee0
a opm:CurrentState ;
schema:value "2" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
seas:evaluation bot4osh:state_identityDataName_ceb6fb44-7cc2-4f91-b733-ae94bdfd228a .
bot4osh:state_identityDataName_ceb6fb44-7cc2-4f91-b733-ae94bdfd228a
a opm:CurrentState ;
schema:value "Raum 2 2" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
seas:evaluation bot4osh:state_dimensionsArea_618d99e1-20ea-48f2-99bb-ebaee78ec9ca .
bot4osh:state_dimensionsArea_618d99e1-20ea-48f2-99bb-ebaee78ec9ca
a opm:CurrentState ;
schema:value "20.25"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e052
seas:evaluation bot4osh:state_dimensionsVolume_3834074b-bb04-4c9b-9082-9f9526619cac .
bot4osh:state_dimensionsVolume_3834074b-bb04-4c9b-9082-9f9526619cac
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
seas:evaluation bot4osh:state_identityDataNumber_9d30a843-c1e9-48a0-9c1f-9352b3646254 .
bot4osh:state_identityDataNumber_9d30a843-c1e9-48a0-9c1f-9352b3646254
a opm:CurrentState ;
schema:value "3" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
seas:evaluation bot4osh:state_identityDataName_80ed0bdb-5c0d-46df-84c5-577570146e04 .
bot4osh:state_identityDataName_80ed0bdb-5c0d-46df-84c5-577570146e04
a opm:CurrentState ;
schema:value "Bad 3" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
seas:evaluation bot4osh:state_dimensionsArea_178ad7fa-375c-4e69-9002-68f930cc5903 .
bot4osh:state_dimensionsArea_178ad7fa-375c-4e69-9002-68f930cc5903
a opm:CurrentState ;
schema:value "4.8"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e055
seas:evaluation bot4osh:state_dimensionsVolume_bcdc41ca-f890-4c76-8859-67fbe8e948a9 .
bot4osh:state_dimensionsVolume_bcdc41ca-f890-4c76-8859-67fbe8e948a9
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
seas:evaluation bot4osh:state_identityDataNumber_364c54ec-50ff-4a70-8935-bba2ec4fb08e .
bot4osh:state_identityDataNumber_364c54ec-50ff-4a70-8935-bba2ec4fb08e
a opm:CurrentState ;
schema:value "4" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
seas:evaluation bot4osh:state_identityDataName_f4b64d33-419e-489d-b47b-6dbcd3a592cf .
bot4osh:state_identityDataName_f4b64d33-419e-489d-b47b-6dbcd3a592cf
a opm:CurrentState ;
schema:value "Treppenhaus 4" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
seas:evaluation bot4osh:state_dimensionsArea_af3b515a-bf31-4ced-931d-7e50024ec9bf .
bot4osh:state_dimensionsArea_af3b515a-bf31-4ced-931d-7e50024ec9bf
a opm:CurrentState ;
schema:value "13.05"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e058
seas:evaluation bot4osh:state_dimensionsVolume_efe4129b-2deb-4a14-b8d6-fc5471497c8a .
bot4osh:state_dimensionsVolume_efe4129b-2deb-4a14-b8d6-fc5471497c8a
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
seas:evaluation bot4osh:state_identityDataNumber_76ab47d7-0d78-4b52-9ad2-83aa6ee80077 .
bot4osh:state_identityDataNumber_76ab47d7-0d78-4b52-9ad2-83aa6ee80077
a opm:CurrentState ;
schema:value "5" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
seas:evaluation bot4osh:state_identityDataName_e6d4f19a-96bb-4bba-a2e5-b9d369e93f4b .
bot4osh:state_identityDataName_e6d4f19a-96bb-4bba-a2e5-b9d369e93f4b
a opm:CurrentState ;
schema:value "Küche 5" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
seas:evaluation bot4osh:state_dimensionsArea_e74091c6-927d-4821-848b-f9eb41153aa2 .
bot4osh:state_dimensionsArea_e74091c6-927d-4821-848b-f9eb41153aa2
a opm:CurrentState ;
schema:value "9.3"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e05e
seas:evaluation bot4osh:state_dimensionsVolume_4552056c-3e9d-4000-bc32-02ec72a6a431 .
bot4osh:state_dimensionsVolume_4552056c-3e9d-4000-bc32-02ec72a6a431
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
seas:evaluation bot4osh:state_identityDataNumber_705dbfa8-08fe-4d32-a472-c1e90cd0cf53 .
bot4osh:state_identityDataNumber_705dbfa8-08fe-4d32-a472-c1e90cd0cf53
a opm:CurrentState ;
schema:value "6" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
seas:evaluation bot4osh:state_identityDataName_1af4e04c-729b-4601-af26-3a0cb697998b .
bot4osh:state_identityDataName_1af4e04c-729b-4601-af26-3a0cb697998b
a opm:CurrentState ;
schema:value "Room 6" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
seas:evaluation bot4osh:state_dimensionsArea_1d3738c7-7661-4913-a839-f638d9566923 .
bot4osh:state_dimensionsArea_1d3738c7-7661-4913-a839-f638d9566923
a opm:CurrentState ;
schema:value "2.96"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e061
seas:evaluation bot4osh:state_dimensionsVolume_2a90c53f-9984-4128-bde2-c77b9d9f3c42 .
bot4osh:state_dimensionsVolume_2a90c53f-9984-4128-bde2-c77b9d9f3c42
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
seas:evaluation bot4osh:state_identityDataNumber_2b8c9379-1110-45f6-a9a7-2cbf133d1b83 .
bot4osh:state_identityDataNumber_2b8c9379-1110-45f6-a9a7-2cbf133d1b83
a opm:CurrentState ;
schema:value "7" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
seas:evaluation bot4osh:state_identityDataName_0b61903b-0496-44f2-8802-92058ea6385a .
bot4osh:state_identityDataName_0b61903b-0496-44f2-8802-92058ea6385a
a opm:CurrentState ;
schema:value "Room 7" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
seas:evaluation bot4osh:state_dimensionsArea_0b68269e-98f9-4a75-8a12-8a81ed800c4e .
bot4osh:state_dimensionsArea_0b68269e-98f9-4a75-8a12-8a81ed800c4e
a opm:CurrentState ;
schema:value "2.04"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e064
seas:evaluation bot4osh:state_dimensionsVolume_bcbde213-f02c-40a8-b538-e91a125589f2 .
bot4osh:state_dimensionsVolume_bcbde213-f02c-40a8-b538-e91a125589f2
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
seas:evaluation bot4osh:state_identityDataNumber_f95af7d3-972c-42a0-ab21-59600130ddce .
bot4osh:state_identityDataNumber_f95af7d3-972c-42a0-ab21-59600130ddce
a opm:CurrentState ;
schema:value "8" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
seas:evaluation bot4osh:state_identityDataName_03b5e2a3-6cdd-4fb2-8a39-975525e74be8 .
bot4osh:state_identityDataName_03b5e2a3-6cdd-4fb2-8a39-975525e74be8
a opm:CurrentState ;
schema:value "Raum 3 8" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
seas:evaluation bot4osh:state_dimensionsArea_bbc7649e-1172-4ed3-90ef-10043a69f829 .
bot4osh:state_dimensionsArea_bbc7649e-1172-4ed3-90ef-10043a69f829
a opm:CurrentState ;
schema:value "16.1"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e175
seas:evaluation bot4osh:state_dimensionsVolume_b8f7dbf4-9fc9-42db-9b88-d20191235ee9 .
bot4osh:state_dimensionsVolume_b8f7dbf4-9fc9-42db-9b88-d20191235ee9
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
ex:hasRequirementModel <> .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
props:identityDataNumber bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7 .
bot4osh:identityDataNumber_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
seas:evaluation bot4osh:state_identityDataNumber_c46fe8d7-d82c-453d-8f36-2dd4273004f7 .
bot4osh:state_identityDataNumber_c46fe8d7-d82c-453d-8f36-2dd4273004f7
a opm:CurrentState ;
schema:value "9" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
props:identityDataName bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7 .
bot4osh:identityDataName_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
seas:evaluation bot4osh:state_identityDataName_f3a03199-d7f1-45ec-8a95-63be62341f4b .
bot4osh:state_identityDataName_f3a03199-d7f1-45ec-8a95-63be62341f4b
a opm:CurrentState ;
schema:value "Diele 9" .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
props:dimensionsArea bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7 .
bot4osh:dimensionsArea_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
seas:evaluation bot4osh:state_dimensionsArea_09678a21-3df9-423f-af66-23465f5c2f7c .
bot4osh:state_dimensionsArea_09678a21-3df9-423f-af66-23465f5c2f7c
a opm:CurrentState ;
schema:value "9.48"^^xsd:decimal .
bot4osh:room_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
props:dimensionsVolume bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7 .
bot4osh:dimensionsVolume_05b047f8-dd03-4cd9-a50c-d5d18c6f7ab7-0004e1c7
seas:evaluation bot4osh:state_dimensionsVolume_cb0a7e1f-25cb-42bc-a3a6-a527cac001f9 .
bot4osh:state_dimensionsVolume_cb0a7e1f-25cb-42bc-a3a6-a527cac001f9
a opm:CurrentState ;
schema:value "0"^^xsd:decimal .