-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorka.owl
4183 lines (2856 loc) · 168 KB
/
orka.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/def/orka#"
xml:base="https://w3id.org/def/orka"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:ns="http://creativecommons.org/ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ssn="http://www.w3.org/ns/ssn/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:orka="https://w3id.org/def/orka#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:sosa="http://www.w3.org/ns/sosa/"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:swrla="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:schema="http://schema.org/"
xmlns:oboe-core="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#">
<owl:Ontology rdf:about="https://w3id.org/def/orka">
<owl:imports rdf:resource="file://owl/sosa-fixed.owl/"/>
<owl:imports rdf:resource="file://owl/ssn-fixed.owl/"/>
<owl:imports rdf:resource="file://owl/ssn-systems-fixed.owl/"/>
<owl:imports rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-characteristics.owl"/>
<owl:imports rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-standards.owl"/>
<owl:imports rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe.owl"/>
<terms:description>The Ontology for Robotic Knowledge Acqusition aims at providing a shared understanding and vocabulary for describing robotic perception pipelines including sensors, algorithms and the characteristics of the environment and the objects contained within. The ontology also concerns external sources of knowledge, such as knowledge repositories and The Semantic Web.</terms:description>
<terms:license>https://creativecommons.org/publicdomain/zero/1.0/</terms:license>
<terms:title>Ontology for Robotic Knowledge Acqusition</terms:title>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.0</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled -->
<owl:AnnotationProperty rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- https://w3id.org/def/orka#hasWeBotsName -->
<owl:AnnotationProperty rdf:about="https://w3id.org/def/orka#hasWeBotsName">
<rdfs:comment>Representing the sensors available in the WeBots simulation environment, in a non-case-sensitve manner.</rdfs:comment>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#characteristicFor -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#characteristicFor"/>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasMeasurement -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasMeasurement"/>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasValue -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasValue">
<owl:equivalentProperty rdf:resource="http://www.w3.org/ns/sosa/hasResult"/>
</owl:ObjectProperty>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofCharacteristic -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofCharacteristic">
<owl:equivalentProperty rdf:resource="http://www.w3.org/ns/sosa/observedProperty"/>
</owl:ObjectProperty>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofEntity -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofEntity">
<owl:inverseOf rdf:resource="https://w3id.org/def/orka#observedIn"/>
</owl:ObjectProperty>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#usesProtocol -->
<owl:ObjectProperty rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#usesProtocol">
<owl:equivalentProperty rdf:resource="http://www.w3.org/ns/sosa/usedProcedure"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/sosa/hasFeatureOfInterest -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/hasFeatureOfInterest">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/sosa/hasResult -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/hasResult"/>
<!-- http://www.w3.org/ns/sosa/hosts -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/hosts"/>
<!-- http://www.w3.org/ns/sosa/madeBySensor -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/madeBySensor"/>
<!-- http://www.w3.org/ns/sosa/madeObservation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/madeObservation"/>
<!-- http://www.w3.org/ns/sosa/observedProperty -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/observedProperty"/>
<!-- http://www.w3.org/ns/sosa/observes -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/observes">
<owl:equivalentProperty rdf:resource="https://w3id.org/def/orka#observesCharacteristic"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/sosa/madeObservation"/>
<rdf:Description rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofCharacteristic"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/sosa/usedProcedure -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/sosa/usedProcedure"/>
<!-- http://www.w3.org/ns/ssn/hasInputType -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/ssn/hasInputType">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:comment>Describes the input types of e.g. algorithms.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/ssn/hasOutputType -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/ssn/hasOutputType">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:comment>Describes the output types of e.g. algorithms.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/ssn/implementedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/ssn/implementedBy">
<owl:equivalentProperty rdf:resource="https://w3id.org/def/orka#implementedOn"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#calculatesCharacteristic -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#calculatesCharacteristic">
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Procedure"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic"/>
<rdfs:comment>a relationship between a procedure/protocol and a characteristic</rdfs:comment>
<rdfs:label>calculates characteristic</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#canBeDetectedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#canBeDetectedBy">
<owl:inverseOf rdf:resource="https://w3id.org/def/orka#canDetect"/>
<rdfs:comment>A relationship between an entity and an algorithm</rdfs:comment>
<rdfs:label>can be detected by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#canDetect -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#canDetect">
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Procedure"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:comment>Defines the relationship between an obejct detection algorithm and entities</rdfs:comment>
<rdfs:label>can detect</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#describedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#describedBy">
<rdfs:domain rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:range rdf:resource="https://w3id.org/def/orka#Knowledge_Repository"/>
<rdfs:comment>Connects the entities to some external Knowledge Repository that describes the given entity.</rdfs:comment>
<rdfs:label>described by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasCharacteristic -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasCharacteristic">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/def/orka#observedIn"/>
<rdf:Description rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasMeasurement"/>
<rdf:Description rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ofCharacteristic"/>
</owl:propertyChainAxiom>
<rdfs:comment>Links entities to the characteristics possessed by the entity</rdfs:comment>
<rdfs:label>has characteristic</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasColor -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasColor">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasDensity -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasDensity">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasLocation -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasLocation">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
<rdfs:domain rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:range rdf:resource="https://w3id.org/def/orka#Location"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasObservableCharacteristic -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasObservableCharacteristic">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasOrientation -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasOrientation">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasRequiredEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasRequiredEntity">
<rdfs:domain rdf:resource="https://w3id.org/def/orka#Context"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:comment>This property connects the context to the entities required by the context</rdfs:comment>
<rdfs:label>has required entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasSize -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasSize">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#hasWeight -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#hasWeight">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasObservableCharacteristic"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#implementedOn -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#implementedOn">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#inferrableProperty -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#inferrableProperty">
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic"/>
<rdfs:comment>A property between a Characteristic and a Sensor, which is not the directly observed characteristic of the device.</rdfs:comment>
<rdfs:label>inferrable property</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#measuresUsingStandard -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#measuresUsingStandard">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Standard"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/sosa/madeObservation"/>
<rdf:Description rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#usesStandard"/>
</owl:propertyChainAxiom>
<rdfs:comment>A relationship between a sensor and a measurement standard</rdfs:comment>
<rdfs:label>measures using standard</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#observedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#observedIn">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
<rdfs:range rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation"/>
<rdfs:comment>Relates an entity to an observation</rdfs:comment>
<rdfs:label>observed in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#observesCharacteristic -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#observesCharacteristic"/>
<!-- https://w3id.org/def/orka#observesOther -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#observesOther">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/sosa/observes"/>
<owl:propertyDisjointWith rdf:resource="https://w3id.org/def/orka#observesSelf"/>
</owl:ObjectProperty>
<!-- https://w3id.org/def/orka#observesSelf -->
<owl:ObjectProperty rdf:about="https://w3id.org/def/orka#observesSelf">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/sosa/observes"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasPrecision -->
<rdf:Description rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#hasPrecision">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</rdf:Description>
<!-- https://w3id.org/def/orka#hasAccuracy -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasAccuracy">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasAlgorithmCharacteristic -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasAlgorithmCharacteristic"/>
<!-- https://w3id.org/def/orka#hasAngularResolution -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasAngularResolution">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasDBpediaURI -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasDBpediaURI">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasExternalDescription"/>
<rdfs:label>has DBpedia URI</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasDeepLearningModelCharacteristic -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasAlgorithmCharacteristic"/>
<rdfs:domain rdf:resource="https://w3id.org/def/orka#DeepLearningModel"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasDetectionRange -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasDetectionRange">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasDetectionThreshold -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasDetectionThreshold">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasEnergyConsumption -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasEnergyConsumption">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasExternalDescription -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasExternalDescription">
<rdfs:label>has external description</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasFLOPsat640 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasFLOPsat640">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
<rdfs:comment>Floating Point Operations per Second at a model input size of 640 pixels, measured in billions. This metric estimates the computational complexity of a single forward pass through the model. Higher FLOPs indicate a more computationally intensive model, which can impact inference speed and power consumption.</rdfs:comment>
<rdfs:label>Floating Point Operations per Second at a model input size of 640 pixels</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasInferenceSpeed -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasInferenceSpeed">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasInferenceSpeedCPUb1 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasInferenceSpeedCPUb1">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasInferenceSpeed"/>
<rdfs:comment>The inference speed on a CPU (Central Processing Unit) for a single image (batch size = 1), measured in milliseconds. It indicates how fast the model can process images on a standard computer without GPU acceleration</rdfs:comment>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasInferenceSpeedV100b1 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasInferenceSpeedV100b1">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasInferenceSpeed"/>
<rdfs:comment>The inference speed on an NVIDIA V100 GPU (Graphics Processing Unit) for a single image (batch size = 1), measured in milliseconds. This metric shows the model's performance on high-end GPU hardware, relevant for environments where fast processing times are critical.</rdfs:comment>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasInferenceSpeedV100b32 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasInferenceSpeedV100b32">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasInferenceSpeed"/>
<rdfs:comment>The inference speed on an NVIDIA V100 GPU (Graphics Processing Unit) for a single image (batch size = 32), measured in milliseconds. This metric shows the model's performance on high-end GPU hardware, relevant for environments where fast processing times are critical.</rdfs:comment>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasInputSize -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasInputSize">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
<rdfs:comment>Refers to the size of the image (in pixels) that is used as an input</rdfs:comment>
<rdfs:label>has input size</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasMaxRange -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasMaxRange">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasMeasurementRange -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasMeasurementRange">
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<rdfs:comment>The measurement range of the sensor device</rdfs:comment>
<rdfs:label>has measurement range</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasMinRange -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasMinRange">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasNumberOfParameters -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasNumberOfParameters">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
<rdfs:comment>Indicates the number of trainable parameters of the mode, measured in millions. Gives an idea of the model's complexity and size.</rdfs:comment>
<rdfs:label>number of parameters</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasPowerRequirement -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasPowerRequirement">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>high</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>low</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>Used to indicate the power requirement of the sensor devices</rdfs:comment>
<rdfs:label>has power requirement</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasProbability -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasProbability"/>
<!-- https://w3id.org/def/orka#hasScanningFrequency -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasScanningFrequency">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasSensorCharacteristic"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasSensorCharacteristic -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasSensorCharacteristic"/>
<!-- https://w3id.org/def/orka#hasServiceName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasServiceName">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasValue -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasValue">
<rdfs:domain rdf:resource="http://www.w3.org/ns/ssn/Property"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasWikiDataURI -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasWikiDataURI">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasExternalDescription"/>
<rdfs:label>has WikiData URI</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#hasmAPval50-95 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#hasmAPval50-95">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/def/orka#hasDeepLearningModelCharacteristic"/>
<rdfs:comment>This is a metric that evaluates the accuracy of an object detector algorithm. The value defines the mean Average Percision for detections that have an overlap with the ground truth value (Intersection over Union) of 50% to 95% with 5% increments.</rdfs:comment>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#inDataSet -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#inDataSet"/>
<!-- https://w3id.org/def/orka#sparqlEndpoint -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#sparqlEndpoint">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/def/orka#Knowledge_Repository"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>The SPARQL endpoint of a Semantic Web Knowledge Repository</rdfs:comment>
<rdfs:label>has sparql endpoint</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/def/orka#trainedOnDataSet -->
<owl:DatatypeProperty rdf:about="https://w3id.org/def/orka#trainedOnDataSet"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-characteristics.owl#Speed -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-characteristics.owl#Speed"/>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic">
<owl:equivalentClass rdf:resource="http://www.w3.org/ns/sosa/ObservableProperty"/>
</owl:Class>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/def/orka#describedBy"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/def/orka#Knowledge_Repository"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/def/orka#hasCharacteristic"/>
<owl:someValuesFrom rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Characteristic"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#IdentifyingCharacteristic -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#IdentifyingCharacteristic"/>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement">
<owl:equivalentClass rdf:resource="http://www.w3.org/ns/sosa/Observation"/>
</owl:Class>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation"/>
<!-- http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol -->
<owl:Class rdf:about="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol">
<owl:equivalentClass rdf:resource="http://www.w3.org/ns/sosa/Procedure"/>
</owl:Class>
<!-- http://www.w3.org/ns/sosa/FeatureOfInterest -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/FeatureOfInterest">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
</owl:Class>
<!-- http://www.w3.org/ns/sosa/ObservableProperty -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/ObservableProperty"/>
<!-- http://www.w3.org/ns/sosa/Observation -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/Observation">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/observes"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/ns/sosa/ObservableProperty"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://www.w3.org/ns/sosa/Platform -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/Platform">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
</owl:Class>
<!-- http://www.w3.org/ns/sosa/Procedure -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/Procedure"/>
<!-- http://www.w3.org/ns/sosa/Result -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/Result">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
</owl:Class>
<!-- http://www.w3.org/ns/sosa/Sensor -->
<owl:Class rdf:about="http://www.w3.org/ns/sosa/Sensor">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/ssn/System"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/observes"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/ns/sosa/ObservableProperty"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://www.w3.org/ns/ssn/Property -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/Property"/>
<!-- http://www.w3.org/ns/ssn/System -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/System">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
</owl:Class>
<!-- http://www.w3.org/ns/ssn/systems/Condition -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/Condition"/>
<!-- http://www.w3.org/ns/ssn/systems/OperatingProperty -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/OperatingProperty"/>
<!-- http://www.w3.org/ns/ssn/systems/OperatingRange -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/OperatingRange"/>
<!-- http://www.w3.org/ns/ssn/systems/SurvivalProperty -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/SurvivalProperty"/>
<!-- http://www.w3.org/ns/ssn/systems/SurvivalRange -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/SurvivalRange"/>
<!-- http://www.w3.org/ns/ssn/systems/SystemCapability -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/SystemCapability"/>
<!-- http://www.w3.org/ns/ssn/systems/SystemProperty -->
<owl:Class rdf:about="http://www.w3.org/ns/ssn/systems/SystemProperty"/>
<!-- https://w3id.org/def/orka#Accelerometer -->
<owl:Class rdf:about="https://w3id.org/def/orka#Accelerometer">
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Exteroceptor_Sensor"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Passive_Sensor"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Speed_Sensor"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/observes"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/def/orka#Orientation"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment>A sensor that measures acceleration forces. Accelerometers used in smartphones and fitness trackers to detect movement and orientation.</rdfs:comment>
<rdfs:label>Accelerometer</rdfs:label>
<hasWeBotsName>accelerometer</hasWeBotsName>
</owl:Class>
<!-- https://w3id.org/def/orka#Active_Optical -->
<owl:Class rdf:about="https://w3id.org/def/orka#Active_Optical">
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Active_Sensor"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Exteroceptor_Sensor"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Position_Sensor"/>
<rdfs:comment>A sensor that uses light to actively measure position or distance.</rdfs:comment>
<rdfs:label>Active Optical</rdfs:label>
</owl:Class>
<!-- https://w3id.org/def/orka#Active_Sensor -->
<owl:Class rdf:about="https://w3id.org/def/orka#Active_Sensor">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/def/orka#hasPowerRequirement"/>
<owl:hasValue>high</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A sensor that requires an external power source to operate and emits its own signal which interacts with the environment and measures the return signal.</rdfs:comment>
<rdfs:comment>TODO: Power requirement needs to be further defined</rdfs:comment>
<rdfs:label xml:lang="en">Active Sensor</rdfs:label>
</owl:Class>
<!-- https://w3id.org/def/orka#Activity -->
<owl:Class rdf:about="https://w3id.org/def/orka#Activity">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"/>
</owl:Class>
<!-- https://w3id.org/def/orka#ActivityType -->
<owl:Class rdf:about="https://w3id.org/def/orka#ActivityType">
<rdfs:subClassOf rdf:resource="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#IdentifyingCharacteristic"/>
</owl:Class>
<!-- https://w3id.org/def/orka#Age -->
<owl:Class rdf:about="https://w3id.org/def/orka#Age">
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#TemporalProperty"/>
</owl:Class>
<!-- https://w3id.org/def/orka#Airplane -->
<owl:Class rdf:about="https://w3id.org/def/orka#Airplane">
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#PhysicalEntity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/def/orka#inDataSet"/>
<owl:hasValue>MSCOCO</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- https://w3id.org/def/orka#Altitude -->
<owl:Class rdf:about="https://w3id.org/def/orka#Altitude">
<rdfs:subClassOf rdf:resource="https://w3id.org/def/orka#Position"/>
</owl:Class>
<!-- https://w3id.org/def/orka#Altitude_Sensor -->
<owl:Class rdf:about="https://w3id.org/def/orka#Altitude_Sensor">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/sosa/Sensor"/>