-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1627 lines (1609 loc) · 80.8 KB
/
index.html
File metadata and controls
1627 lines (1609 loc) · 80.8 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
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
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/primer.css" media="screen"/>
<link rel="stylesheet" href="resources/rec.css" media="screen"/>
<link rel="stylesheet" href="resources/extra.css" media="screen"/>
<link rel="stylesheet" href="resources/owl.css" media="screen"/>
<link rel="stylesheet" href="resources/dark.css" media="(prefers-color-scheme: dark)"/>
<link rel="stylesheet" href="resources/light.css" media="(prefers-color-scheme: light)"/>
<link rel="stylesheet" href="resources/slider.css" media="screen"/>
<meta name="color-scheme" content="dark light">
<script type="module" src="resources/dark-mode-toggle.mjs"></script><div class="darkmode">
<dark-mode-toggle class="slider"></dark-mode-toggle>
</div>
<title>Roof Damage Ontology</title>
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"https://w3id.org/rdo#","image":"http://vowl.visualdataweb.org/webvowl/#iri=https://w3id.org/rdo#","name":"Roof Damage Ontology", "headline":"Document describing the ontology https://w3id.org/rdo#", "dateReleased":"2026-02-06", "version":"0.5", "license":"https://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Frederic Bosche, University of Edinburgh"},{"@type":"Person","name":"Jiajun Li, University of Edinburgh"}]}</script>
<script src="resources/jquery.js"></script>
<script src="resources/marked.min.js"></script>
<script>
function loadHash() {
jQuery(".markdown").each(function(el){jQuery(this).after(marked.parse(jQuery(this).text())).remove()});
var hash = location.hash;
if($(hash).offset()!=null){
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
}
loadTOC();
}
function loadTOC(){
//process toc dynamically
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
jQuery(".list").each(function(){
if(jQuery(this).is('h2')){
if(j>0){
t+='</ul>';
j=0;
}
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
i++;
}
if(jQuery(this).is('h3')){
if(j==0){
t+='<ul>';
}
j++;
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
}
});
t+='</ul>';
$("#toc").html(t);
}
$(function(){
loadHash();
}); $.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};
</script>
</head>
<body>
<div class="container">
<div class="head">
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
<h1>Roof Damage Ontology</h1>
<h2>Release: 2026-02-06</h2>
<dl>
<dt>This version:</dt>
<dd><a href="https://w3id.org/rdo/0.5">https://w3id.org/rdo/0.5</a></dd>
<dt>Latest version:</dt>
<dd><a href="https://w3id.org/rdo#">https://w3id.org/rdo#</a></dd>
<dt>Revision:</dt>
<dd>0.5</dd>
<dt>Authors:</dt>
<dd>Frederic Bosche, University of Edinburgh</dd><dd>Jiajun Li, University of Edinburgh</dd>
<dt>Publisher:</dt>
<dd>Cyberbuild, University of Edinburgh</dd>
<dt>Imported Ontologies:</dt>
<dd><a href="http://purl.org/spar/foaf">foaf</a></dd><dd><a href="https://pi.pauwel.be/voc/buildingelement">buildingelement</a></dd>
<dt>Download serialization:</dt><dd><span><a href="rdo.jsonld" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="rdo.owl" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="rdo.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="rdo.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License:</dt><dd><a href="https://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-https://creativecommons.org/licenses/by/4.0/-blue.svg" alt="https://creativecommons.org/licenses/by/4.0/" /></a>
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
<!-- <dt>Evaluation:</dt><dd><a href="OOPSevaluation/oopsEval.html#" target="_blank"><img src="https://img.shields.io/badge/Evaluate_with-OOPS! (OntOlogy Pitfall Scanner!)-blue.svg" alt="Evaluate with OOPS!" /></a></dd> --><dt>Cite as:</dt>
<dd>Frederic Bosche, University of Edinburgh, Jiajun Li, University of Edinburgh. Roof Damage Ontology. Revision: 0.5. Retrieved from: https://w3id.org/rdo/0.5</dd>
</dl>
<hr/>
</div>
<div class="status">
<div>
<span>Ontology Specification Draft</span>
</div>
</div> <div id="abstract"><h2>Abstract</h2><span class="markdown">
This is a placeholder text for the abstract. The abstract should contain a couple of sentences summarizing the ontology and its purpose.</span>
</div>
<div id="toc"></div>
<!--DESCRIPTION SECTION-->
<div id="description"><h2 id="desc" class="list">Roof Damage Ontology: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">This ontology provides a semantic framework for representing roof condition inspection information, including roofs and roof pitches, inspections, orthophotos, and image-derived defect observations. It is designed to support structured documentation, querying, and interoperability within digital twin–based workflows for roof condition monitoring and maintenance, particularly in the context of existing and heritage buildings.</span></div>
<!--CROSSREF SECTION-->
<div id="crossref"><h2 id="crossreference" class="list">Cross-reference for Roof Damage Ontology classes, object properties and data properties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
This section provides details for each class and property defined by Roof Damage Ontology.
<div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="classes">
<h3 id="classes-headline" class="list">Classes</h3>
<ul class="hlist">
<li><a href="#http://purl.org/dc/terms/AgentClass" title="http://purl.org/dc/terms/AgentClass"> <span>Agent Class</span> </a></li>
<li><a href="#Damage_Inspection_Observation" title="https://w3id.org/rdo#Damage_Inspection_Observation">Damage Inspection Observation</a></li>
<li><a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a></li>
<li><a href="#http://purl.org/dc/terms/FileFormat" title="http://purl.org/dc/terms/FileFormat"> <span>File Format</span> </a></li>
<li><a href="#http://xmlns.com/foaf/0.1/Image" title="http://xmlns.com/foaf/0.1/Image"> <span>Image</span> </a></li>
<li><a href="#Image" title="https://w3id.org/rdo#Image"> <span>Image</span> </a></li>
<li><a href="#http://purl.org/dc/terms/Jurisdiction" title="http://purl.org/dc/terms/Jurisdiction"> <span>Jurisdiction</span> </a></li>
<li><a href="#http://purl.org/dc/terms/LicenseDocument" title="http://purl.org/dc/terms/LicenseDocument"> <span>License Document</span> </a></li>
<li><a href="#http://purl.org/dc/terms/Location" title="http://purl.org/dc/terms/Location"> <span>Location</span> </a></li>
<li><a href="#http://purl.org/dc/terms/MediaType" title="http://purl.org/dc/terms/MediaType"> <span>Media Type</span> </a></li>
<li><a href="#http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD" title="http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD">Orthophoto</a></li>
<li><a href="#http://purl.org/dc/terms/PeriodOfTime" title="http://purl.org/dc/terms/PeriodOfTime"> <span>Period of Time</span> </a></li>
<li><a href="#http://purl.org/dc/terms/PhysicalMedium" title="http://purl.org/dc/terms/PhysicalMedium"> <span>Physical Medium</span> </a></li>
<li><a href="#http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7" title="http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7">Roof Inspection</a></li>
<li><a href="#http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu" title="http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu">Roof Pitch</a></li>
<li><a href="#http://purl.org/dc/terms/SizeOrDuration" title="http://purl.org/dc/terms/SizeOrDuration"> <span>Size or Duration</span> </a></li>
<li><a href="#http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf" title="http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf">Slate Biological Growth</a></li>
<li><a href="#http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc" title="http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc">Slate Structural Defect</a></li>
</ul>
<div class="entity" id="http://purl.org/dc/terms/AgentClass">
<h3>Agent Class<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/AgentClass</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://www.w3.org/2000/01/rdf-schema#Class" target="_blank" title="http://www.w3.org/2000/01/rdf-schema#Class">Class</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has members
</dt>
<dd>
<a href="#http://purl.org/dc/terms/Agent" title="http://purl.org/dc/terms/Agent">Agent</a> <sup class="type-ni" title="named individual">ni</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/AgentClass">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="Damage_Inspection_Observation">
<h3>Damage Inspection Observation<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#Damage_Inspection_Observation</p>
<div class="comment">
<span class="markdown">A Damage Inspection Observation represents an observation made during an inspection indicating the presence of a potential damage.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#has_Location_in" title="https://w3id.org/rdo#has_Location_in">has Location In</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#HasAppearance" title="https://w3id.org/rdo#HasAppearance">has Inspection Observation</a> <sup class="type-op" title="object property">op</sup>, <a href="#locates_Damage" title="https://w3id.org/rdo#locates_Damage">locates</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Damage_Image_Location">
<h3>Damage Observation Image Location<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#Damage_Image_Location</p>
<div class="comment">
<span class="markdown">A Damage Observation Image Location represents the spatial localisation of a detected or observed damage within an image or orthophoto.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#2D_location" title="https://w3id.org/rdo#2D_location">2D location</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#has_Image" title="https://w3id.org/rdo#has_Image">has Image</a> <sup class="type-op" title="object property">op</sup>, <a href="#locates_Damage" title="https://w3id.org/rdo#locates_Damage">locates</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#has_Damage_Observation_Location" title="https://w3id.org/rdo#has_Damage_Observation_Location">has Damage Observation Location</a> <sup class="type-op" title="object property">op</sup>, <a href="#has_Location_in" title="https://w3id.org/rdo#has_Location_in">has Location In</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/FileFormat">
<h3>File Format<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/FileFormat</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#http://purl.org/dc/terms/MediaType" title="http://purl.org/dc/terms/MediaType">Media Type</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/FileFormat">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://xmlns.com/foaf/0.1/Image">
<h3>Image<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://xmlns.com/foaf/0.1/Image</p>
<dl class="description">
<dt>
is equivalent to
</dt>
<dd>
<a href="#Image" title="https://w3id.org/rdo#Image">Image</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="Image">
<h3>Image<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#Image</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://w3id.org/dot#ExternalResource" target="_blank" title="https://w3id.org/dot#ExternalResource">External Resource</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD" title="http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD">Orthophoto</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#has_Damage_Observation_Location" title="https://w3id.org/rdo#has_Damage_Observation_Location">has Damage Observation Location</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasResolution" title="https://w3id.org/rdo#hasResolution">resolution</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#has_Image" title="https://w3id.org/rdo#has_Image">has Image</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/Jurisdiction">
<h3>Jurisdiction<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/Jurisdiction</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/LocationPeriodOrJurisdiction" target="_blank" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/Jurisdiction">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/LicenseDocument">
<h3>License Document<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/LicenseDocument</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/RightsStatement" target="_blank" title="http://purl.org/dc/terms/RightsStatement">Rights Statement</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/LicenseDocument">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/Location">
<h3>Location<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/Location</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/LocationPeriodOrJurisdiction" target="_blank" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/Location">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/MediaType">
<h3>Media Type<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/MediaType</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/MediaTypeOrExtent" target="_blank" title="http://purl.org/dc/terms/MediaTypeOrExtent">Media Type or Extent</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#http://purl.org/dc/terms/FileFormat" title="http://purl.org/dc/terms/FileFormat">File Format</a> <sup class="type-c" title="class">c</sup>, <a href="#http://purl.org/dc/terms/PhysicalMedium" title="http://purl.org/dc/terms/PhysicalMedium">Physical Medium</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/MediaType">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD">
<h3>Orthophoto<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RCY2aGVeb8KpRCsVrf5s8AD</p>
<div class="comment">
<span class="markdown">An Orthophoto is a geometrically corrected image produced from photogrammetric processing, providing a uniform scale representation of roof surfaces and serving as spatial evidence for damage documentation.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#Image" title="https://w3id.org/rdo#Image">Image</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/PeriodOfTime">
<h3>Period of Time<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/PeriodOfTime</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/LocationPeriodOrJurisdiction" target="_blank" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/PeriodOfTime">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/PhysicalMedium">
<h3>Physical Medium<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/PhysicalMedium</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#http://purl.org/dc/terms/MediaType" title="http://purl.org/dc/terms/MediaType">Media Type</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/PhysicalMedium">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7">
<h3>Roof Inspection<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RCiwm3pFp97sUUNZMKSqwg7</p>
<div class="comment">
<span class="markdown">A Roof Inspection is a specialised inspection activity focusing on the condition assessment of roof elements, during which visual observations, images, and damage documentation are produced</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://w3id.org/dot#Inspection" target="_blank" title="https://w3id.org/dot#Inspection">Inspection</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu">
<h3>Roof Pitch<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu</p>
<div class="comment">
<span class="markdown">A Roof Pitch is a subdivision of a roof used as a spatial unit for inspection and damage documentation.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://pi.pauwel.be/voc/buildingelement#BuildingElementPart" target="_blank" title="https://pi.pauwel.be/voc/buildingelement#BuildingElementPart">Building Element Part</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#pitch_angle" title="https://w3id.org/rdo#pitch_angle">Pitch angle</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#exposure_level" title="https://w3id.org/rdo#exposure_level">exposure level</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto" title="urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto">is Pitch Of</a> <sup class="type-op" title="object property">op</sup>, <a href="#orientation" title="https://w3id.org/rdo#orientation">orientation</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#relative_position" title="https://w3id.org/rdo#relative_position">relative position</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk" title="http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk">has Pitch</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/dc/terms/SizeOrDuration">
<h3>Size or Duration<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/SizeOrDuration</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/dc/terms/MediaTypeOrExtent" target="_blank" title="http://purl.org/dc/terms/MediaTypeOrExtent">Media Type or Extent</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/SizeOrDuration">named individual</a>
</dd>
</dl>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf">
<h3>Slate Biological Growth<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RkC6OzV1rmYsTeyuPAyaTf</p>
<div class="comment">
<span class="markdown">Slate Biological Growth represents biologically induced surface conditions observed on roof slates, such as algae, moss, and lichen. These forms of growth are not necessarily defects in themselves, but are indicative of persistent moisture, local environmental conditions, and reduced drying potential. The presence and distribution of biological growth may signal emerging risks, particularly at junctions or areas prone to water retention, and therefore support interpretation of roof condition and prioritisation of further inspection.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://w3id.org/dot#ClassifiedDamage" target="_blank" title="https://w3id.org/dot#ClassifiedDamage">Classified Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc">
<h3>Slate Structural Defect<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/R89LStemoQ1MqtJ4u3wNnCc</p>
<div class="comment">
<span class="markdown">A Slate Structural Defect represents a physical damage potentially affecting the integrity or position of a roof slate, such as broken, displaced, or missing slate.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="https://w3id.org/dot#ClassifiedDamage" target="_blank" title="https://w3id.org/dot#ClassifiedDamage">Classified Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div><div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="objectproperties">
<h3 id="properties" class="list">Object Properties</h3>
<ul class="hlist">
<li><a href="#affect_Product" title="https://w3id.org/rdo#affect_Product">affects Product</a></li>
<li><a href="#https://w3id.org/dot#documentationFromInspection" title="https://w3id.org/dot#documentationFromInspection"> <span>documentation From Inspection</span> </a></li>
<li><a href="#has_Damage_Observation_Location" title="https://w3id.org/rdo#has_Damage_Observation_Location">has Damage Observation Location</a></li>
<li><a href="#has_Image" title="https://w3id.org/rdo#has_Image">has Image</a></li>
<li><a href="#HasAppearance" title="https://w3id.org/rdo#HasAppearance">has Inspection Observation</a></li>
<li><a href="#has_Location_in" title="https://w3id.org/rdo#has_Location_in">has Location In</a></li>
<li><a href="#http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk" title="http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk">has Pitch</a></li>
<li><a href="#Is_Composed_Of" title="https://w3id.org/rdo#Is_Composed_Of">is Composed Of</a></li>
<li><a href="#is_Inspection_Observation_Of" title="https://w3id.org/rdo#is_Inspection_Observation_Of">is Inspection Observation Of</a></li>
<li><a href="#urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto" title="urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto">is Pitch Of</a></li>
<li><a href="#locates_Damage" title="https://w3id.org/rdo#locates_Damage">locates</a></li>
</ul>
<div class="entity" id="affect_Product">
<h3>affects Product<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#affect_Product</p>
<div class="comment">
<span class="markdown">Relationship between a damage and the product it affects.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="https://schema.org/Product" target="_blank" title="https://schema.org/Product">Product</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="https://w3id.org/dot#documentationFromInspection">
<h3>documentation From Inspection<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/dot#documentationFromInspection</p>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Documentation" target="_blank" title="https://w3id.org/dot#Documentation">Documentation</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="https://w3id.org/dot#Inspection" target="_blank" title="https://w3id.org/dot#Inspection">Inspection</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="has_Damage_Observation_Location">
<h3>has Damage Observation Location<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#has_Damage_Observation_Location</p>
<div class="comment">
<span class="markdown">Relationship between an Image and one or more Damage Observation Image Locations recorded within that image. This property is the inverse of has Image and enables queries from an image to the damage observation locations it contains.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Image" title="https://w3id.org/rdo#Image">Image</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#has_Image" title="https://w3id.org/rdo#has_Image">has Image</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="has_Image">
<h3>has Image<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#has_Image</p>
<div class="comment">
<span class="markdown">Relationship between a damage image location and the corresponding image.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Image" title="https://w3id.org/rdo#Image">Image</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#has_Damage_Observation_Location" title="https://w3id.org/rdo#has_Damage_Observation_Location">has Damage Observation Location</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="HasAppearance">
<h3>has Inspection Observation<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#HasAppearance</p>
<div class="comment">
<span class="markdown">Relationship between a damage presence and the corresponding inspection observation.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Damage_Inspection_Observation" title="https://w3id.org/rdo#Damage_Inspection_Observation">Damage Inspection Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#is_Inspection_Observation_Of" title="https://w3id.org/rdo#is_Inspection_Observation_Of">is Inspection Observation Of</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="has_Location_in">
<h3>has Location In<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#has_Location_in</p>
<div class="comment">
<span class="markdown">Links a Damage Inspection Observation to the corresponding Damage Observation Image Location where it is spatially located within visual documentation. This property is the inverse of locates and enables queries from inspection observations to their associated image locations.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Damage_Inspection_Observation" title="https://w3id.org/rdo#Damage_Inspection_Observation">Damage Inspection Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#locates_Damage" title="https://w3id.org/rdo#locates_Damage">locates</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk">
<h3>has Pitch<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk</p>
<div class="comment">
<span class="markdown">Represents a part–whole relationship where a roof consists of one or more pitches. Conceptually aligned with standard part–whole relations (e.g. BFO:has_part), without importing upper-level ontologies.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://pi.pauwel.be/voc/buildingelement#Roof" target="_blank" title="https://pi.pauwel.be/voc/buildingelement#Roof">Roof</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu" title="http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu">Roof Pitch</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto" title="urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto">is Pitch Of</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="Is_Composed_Of">
<h3>is Composed Of<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#Is_Composed_Of</p>
<div class="comment">
<span class="markdown">Relationship between classified damage instances forming a composite classified damage.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="is_Inspection_Observation_Of">
<h3>is Inspection Observation Of<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#is_Inspection_Observation_Of</p>
<div class="comment">
<span class="markdown">Relationship between an inspection observation and the corresponding damage entity</span>
</div>
<div class="description">
<dl>
<dt>
is inverse of
</dt>
<dd>
<a href="#HasAppearance" title="https://w3id.org/rdo#HasAppearance">has Inspection Observation</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto">
<h3>is Pitch Of<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> urn:webprotege:ontology:dc88ba2e-7e28-4c89-8637-655a2b9ad945#belongsto</p>
<div class="comment">
<span class="markdown">Relationship between a pitch and the roof it belongs to.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu" title="http://webprotege.stanford.edu/RCsOXjQhDvzdCqC92ncCBu">Roof Pitch</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="https://pi.pauwel.be/voc/buildingelement#Roof" target="_blank" title="https://pi.pauwel.be/voc/buildingelement#Roof">Roof</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk" title="http://webprotege.stanford.edu/RkSo6PclimyTVhUedJeJUk">has Pitch</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="locates_Damage">
<h3>locates<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#locates_Damage</p>
<div class="comment">
<span class="markdown">Represents the relationship between a damage image location (e.g. a region on an orthophoto) and the damage inspection observation it refers to. This allows a detected damage observed during an inspection to be spatially located within visual documentation.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Damage_Inspection_Observation" title="https://w3id.org/rdo#Damage_Inspection_Observation">Damage Inspection Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is inverse of
</dt>
<dd>
<a href="#has_Location_in" title="https://w3id.org/rdo#has_Location_in">has Location In</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
</div><div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="dataproperties">
<h3 id="dataproperties-headline" class="list">Data Properties</h3>
<ul class="hlist">
<li><a href="#2D_location" title="https://w3id.org/rdo#2D_location">2D location</a></li>
<li><a href="#hasX" title="https://w3id.org/rdo#hasX">3D location</a></li>
<li><a href="#http://purl.org/dc/terms/alternative" title="http://purl.org/dc/terms/alternative"> <span>Alternative Title</span> </a></li>
<li><a href="#analysis_type" title="https://w3id.org/rdo#analysis_type">analysis type</a></li>
<li><a href="#http://purl.org/dc/terms/bibliographicCitation" title="http://purl.org/dc/terms/bibliographicCitation"> <span>Bibliographic Citation</span> </a></li>
<li><a href="#hasConditionLevel" title="https://w3id.org/rdo#hasConditionLevel">condition level</a></li>
<li><a href="#http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb" title="http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb">confidence</a></li>
<li><a href="#Caveat" title="https://w3id.org/rdo#Caveat">data acquisition type</a></li>
<li><a href="#http://purl.org/dc/terms/date" title="http://purl.org/dc/terms/date"> <span>Date</span> </a></li>
<li><a href="#http://purl.org/dc/terms/dateAccepted" title="http://purl.org/dc/terms/dateAccepted"> <span>Date Accepted</span> </a></li>
<li><a href="#http://purl.org/dc/terms/available" title="http://purl.org/dc/terms/available"> <span>Date Available</span> </a></li>
<li><a href="#http://purl.org/dc/terms/dateCopyrighted" title="http://purl.org/dc/terms/dateCopyrighted"> <span>Date Copyrighted</span> </a></li>
<li><a href="#http://purl.org/dc/terms/created" title="http://purl.org/dc/terms/created"> <span>Date Created</span> </a></li>
<li><a href="#http://purl.org/dc/terms/issued" title="http://purl.org/dc/terms/issued"> <span>Date Issued</span> </a></li>
<li><a href="#http://purl.org/dc/terms/issued" title="http://purl.org/dc/terms/issued"> <span>Date Issued</span> </a></li>
<li><a href="#http://purl.org/dc/terms/modified" title="http://purl.org/dc/terms/modified"> <span>Date Modified</span> </a></li>
<li><a href="#http://purl.org/dc/terms/dateSubmitted" title="http://purl.org/dc/terms/dateSubmitted"> <span>Date Submitted</span> </a></li>
<li><a href="#http://purl.org/dc/terms/valid" title="http://purl.org/dc/terms/valid"> <span>Date Valid</span> </a></li>
<li><a href="#hasDefectType" title="https://w3id.org/rdo#hasDefectType">Defect type</a></li>
<li><a href="#environmental_context" title="https://w3id.org/rdo#environmental_context">environmental context</a></li>
<li><a href="#exposure_level" title="https://w3id.org/rdo#exposure_level">exposure level</a></li>
<li><a href="#http://purl.org/dc/terms/identifier" title="http://purl.org/dc/terms/identifier"> <span>Identifier</span> </a></li>
<li><a href="#junction_context" title="https://w3id.org/rdo#junction_context">junction context</a></li>
<li><a href="#junction_type" title="https://w3id.org/rdo#junction_type">junction type</a></li>
<li><a href="#orientation" title="https://w3id.org/rdo#orientation">orientation</a></li>
<li><a href="#pitch_angle" title="https://w3id.org/rdo#pitch_angle">Pitch angle</a></li>
<li><a href="#relative_position" title="https://w3id.org/rdo#relative_position">relative position</a></li>
<li><a href="#hasRepairStatus" title="https://w3id.org/rdo#hasRepairStatus">repair status</a></li>
<li><a href="#hasResolution" title="https://w3id.org/rdo#hasResolution">resolution</a></li>
<li><a href="#roof_build_up" title="https://w3id.org/rdo#roof_build_up">Roof build-up</a></li>
<li><a href="#http://purl.org/dc/terms/title" title="http://purl.org/dc/terms/title"> <span>Title</span> </a></li>
</ul>
<div class="entity" id="2D_location">
<h3>2D location<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#2D_location</p>
<div class="comment">
<span class="markdown">The 2D image location of the observation expressed in pixel coordinates within the associated image or orthophoto.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Damage_Image_Location" title="https://w3id.org/rdo#Damage_Image_Location">Damage Observation Image Location</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2001/XMLSchema#string" target="_blank" title="http://www.w3.org/2001/XMLSchema#string">string</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasX">
<h3>3D location<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#hasX</p>
<div class="comment">
<span class="markdown">The 3D spatial location of the damage instance in the real-world coordinate system.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2001/XMLSchema#string" target="_blank" title="http://www.w3.org/2001/XMLSchema#string">string</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="http://purl.org/dc/terms/alternative">
<h3>Alternative Title<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/alternative</p>
<div class="description">
<dl>
<dt>
has super-properties
</dt>
<dd>
<a href="#http://purl.org/dc/terms/title" title="http://purl.org/dc/terms/title">Title</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2000/01/rdf-schema#Literal" target="_blank" title="http://www.w3.org/2000/01/rdf-schema#Literal">Literal</a>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/alternative">annotation property</a>, <a href="#http://purl.org/dc/terms/alternative">named individual</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="analysis_type">
<h3>analysis type<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#analysis_type</p>
<div class="comment">
<span class="markdown">Specifies the type of analysis applied to inspection data, such as AI-assisted image analysis, manual expert assessment, or hybrid approaches. This property clarifies how inspection findings and defect classifications were produced, and helps to make potential limitations of the inspection results explicit.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Inspection" target="_blank" title="https://w3id.org/dot#Inspection">Inspection</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2001/XMLSchema#string" target="_blank" title="http://www.w3.org/2001/XMLSchema#string">string</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="http://purl.org/dc/terms/bibliographicCitation">
<h3>Bibliographic Citation<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/bibliographicCitation</p>
<div class="description">
<dl>
<dt>
has super-properties
</dt>
<dd>
<a href="#http://purl.org/dc/terms/identifier" title="http://purl.org/dc/terms/identifier">Identifier</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2000/01/rdf-schema#Literal" target="_blank" title="http://www.w3.org/2000/01/rdf-schema#Literal">Literal</a>
</dd>
<dt>
is also defined as
</dt>
<dd>
<a href="#http://purl.org/dc/terms/bibliographicCitation">annotation property</a>, <a href="#http://purl.org/dc/terms/bibliographicCitation">named individual</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasConditionLevel">
<h3>condition level<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#hasConditionLevel</p>
<div class="comment">
<span class="markdown">Represents the assessed condition rating of a building element (e.g., roof or roof pitch), derived from visual inspection and used to indicate the severity of deterioration and the urgency of maintenance or repair. The value typically follows standardised building survey rating systems, such as the RICS Condition Ratings (1–3, traffic light system) or equivalent condition indices (e.g., numerical scales indicating maintenance, restoration, or replacement needs).</span>
</div>
<div class="description">
<p><strong>has characteristics: </strong> functional</p>
<dl>
<dt>
has domain
</dt>
<dd>
<a href="https://schema.org/Product" target="_blank" title="https://schema.org/Product">Product</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2001/XMLSchema#string" target="_blank" title="http://www.w3.org/2001/XMLSchema#string">string</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb">
<h3>confidence<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://webprotege.stanford.edu/RB3bxfNs0KGdXacZxMLhjzb</p>
<div class="comment">
<span class="markdown">The confidence associated with an observation or assessment of a damage.</span>
</div>
<div class="description">
<dl>
<dt>
has super-properties
</dt>
<dd>
<a href="http://www.w3.org/2002/07/owl#topDataProperty" target="_blank" title="http://www.w3.org/2002/07/owl#topDataProperty">top Data Property</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
has domain
</dt>
<dd>
<a href="https://w3id.org/dot#Damage" target="_blank" title="https://w3id.org/dot#Damage">Damage</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2001/XMLSchema#decimal" target="_blank" title="http://www.w3.org/2001/XMLSchema#decimal">decimal</a>
</dd>
</dl>
</div>
</div>
<div class="entity" id="Caveat">
<h3>data acquisition type<sup class="type-dp" title="data property">dp</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a> </span></h3>
<p><strong>IRI:</strong> https://w3id.org/rdo#Caveat</p>
<div class="comment">
<span class="markdown">Specifies how inspection data were acquired, describing the data acquisition method used during an inspection (e.g. UAV-based photogrammetry, ground-based visual inspection, handheld photography, or mixed approaches). This property supports interpretation of inspection outcomes by making data provenance explicit.</span>