-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vocabularies - Classes.json
1082 lines (1082 loc) · 41.8 KB
/
Vocabularies - Classes.json
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
[
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Access",
"label": "access",
"description": "Any kind of access to a resource. Don't use this, use R W and RW"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Append",
"label": "append",
"description": "Append accesses are specific write access which only add information, and do not remove information. For text files, for example, append access allows bytes to be added onto the end of the file. For RDF graphs, Append access allows adds triples to the graph but does not remove any. Append access is useful for dropbox functionality. Dropbox can be used for link notification, which the information added is a notification that a some link has been made elsewhere relevant to the given resource."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#AuthenticatedAgent",
"label": "Anyone authenticated",
"description": "A class of agents who have been authenticated. In other words, anyone can access this resource, but not anonymously. The social expectation is that the authentication process will provide an identify and a name, or pseudonym. (A new ID should not be minted for every access: the intent is that the user is able to continue to use the ID for continues interactions with peers, and for example to develop a reputation)"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Authorization",
"label": "authorization",
"description": "An element of access control, allowing agent to agents access of some kind to resources or classes of resources"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Control",
"label": "control",
"description": "Allows read/write access to the ACL for the resource(s)"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Origin",
"label": "Origin",
"description": "An Origin is basically a web site (Note WITHOUT the trailing slash after the domain name and port in its URI) and is the basis for controlling access to data by web apps in the Same Origin Model of web security. All scripts from the same origin are given the same right."
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Read",
"label": "read",
"description": "The class of read operations"
},
{
"vocabulary": 2301,
"uri": "http://www.w3.org/ns/auth/acl#Write",
"label": "write",
"description": ""
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/Attribution",
"label": "Attribution",
"description": "Attribution of a storyline used for attributing the interpretation of the storyline to some agent. An interface class, that doesn't restrict the implementation of an attribution."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/Event",
"label": "Event",
"description": "A newsworthy event. An un-disputable real world event."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/Storyline",
"label": "Storyline",
"description": "A news storyline."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/StorylineComponent",
"label": "StorylineComponent",
"description": "An abstract parent class of storyline components."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/StorylineSlot",
"label": "StorylineSlot",
"description": "A storyline slot, used as a container for storyline components."
},
{
"vocabulary": 2302,
"uri": "http://purl.org/ontology/storyline/Topic",
"label": "Topic",
"description": "The topic of a storyline. An interface to some concept in a knowledge domain."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#Catalog",
"label": "Catalog",
"description": "A curated collection of metadata about datasets. Typically, a web-based data catalog is represented as a single instance of this class."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#Dataset",
"label": "Dataset",
"description": "A collection of data, published or curated by a single source, and available for access or download in one or more formats. This class represents the actual dataset as published by the dataset publisher. In cases where a distinction between the actual dataset and its entry in the catalog is necessary (because metadata such as modification date and maintainer might differ), the catalog record class can be used for the latter."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#CatalogRecord",
"label": "Catalog Record",
"description": "A record in a data catalog, describing a single dataset. This class is optional and not all catalogs will use it. It exists for catalogs where a distinction is made between metadata about a dataset and metadata about the dataset's entry in the catalog. For example, the publication date property of the dataset reflects the date when the information was originally made available by the publishing agency, while the publication date of the catalog record is the date when the dataset was added to the catalog. In cases where both dates differ, or where only the latter is known, the publication date should only be specified for the catalog record. Notice that the W3C PROV Ontology allows describing further provenance information such as the details of the process and the agent involved in a particular change to a dataset."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#Distribution",
"label": "Distribution",
"description": "Represents a specific available form of a dataset. Each dataset might be available in different forms, these forms might represent different formats of the dataset or different endpoints. Examples of distributions include a downloadable CSV file, an API or an RSS feed. This represents a general availability of a dataset it implies no information about the actual access method of the data, i.e. whether it is a direct download, API, or some through Web page. The use of dcat:downloadURL property indicates directly downloadable distributions."
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#Feed",
"label": "Feed (Deprecated)",
"description": "Represents availability of a dataset as a feed. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#WebService",
"label": "Web Service (Deprecated)",
"description": "Represents a web service that enables access to the data of a dataset. This term has been deprecated"
},
{
"vocabulary": 2303,
"uri": "http://www.w3.org/ns/dcat#Download",
"label": "Download (Deprecated)",
"description": "Represents a downloadable distribution of a dataset. This term has been deprecated"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsAdjacentTo",
"label": "laneIsAdjacentTo",
"description": "A lane is adjacent to none, one or two other lanes."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#Meta",
"label": "Meta",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#isDerivable",
"label": "isDerivable",
"description": ""
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#laneIsConnectedTo",
"label": "laneIsConnectedTo",
"description": "Two lanes within a local context can be connected with each other, meaning that they are reachable through a driving maneuver like 'drive straight' or 'turn left'"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#dangerSign",
"label": "dangerSign",
"description": "A danger sign indicates some imminant or potential danger and demands attention from the user (e.g. dangerous curve following)"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#orderSign",
"label": "orderSign",
"description": "An order sign indicates an immediate order or prohibition to the driver (e.g. ban on passing or 'do not turn left')."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#informationSign",
"label": "informationSign",
"description": "An information sign provides useful information about the driving environment to the driver (e.g. beginning of a motorway)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#spatialContext",
"label": "spatialContext",
"description": "A spatial context is the logical type of the road, the own-vehicle is currently driving in and is typically valid for a long timespan (minutes to hours). A spatial context is e.g. a highway or a city."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#localContext",
"label": "localContext",
"description": "A local context is a specific point (or short segment) within a spatial context, typically valid for a short time (e.g. intersection, level crossing ...)"
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantHasRelationToVehicle",
"label": "participantHasRelationToVehicle",
"description": "Every participant has a relationship to the own-vehicle. Relationship-properties are measured relative to the own-vehicle (instead of being absolute with respect to the global origin)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#roadConditions",
"label": "roadConditions",
"description": "Conditions on a road are weather and day-time dependent. Examples are heavy rain, insufficient lightning conditions and freezing temperatures (leading to black-ice). Road conditions have enormous impact on the recommended driving maneuvers."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ContextObject",
"label": "ContextObject",
"description": "Object that occurs in the driving environment and has some impact on the driving task."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObjectIsValidForLane",
"label": "trafficObjectIsValidForLane",
"description": "A traffic object is always valid for a lane. One instance exists for every lane, for which the traffic object is valid."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ObjectRelationship",
"label": "ObjectRelationship",
"description": "An object relationship represents a many-to-many-relationship of context objects."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#technicalFeature",
"label": "technicalFeature",
"description": "Modern vehicles are equipped with a variety of technical safety and convenience systems, which influence the driving behavior. Absence of an antilock-brake-system (ABS), for instance, demands for more cautious speed-behavior, because of increased breaking distance."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participantUseLane",
"label": "participantUseLane",
"description": "Each dynamic traffic participant can use a lane. Motorized participants must use lanes, whereas pedestrians and bikes are not obliged to (or have special lanes not relevant for the own-vehicle)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#ownVehicle",
"label": "ownVehicle",
"description": "The own vehicle is the car with the on-board driver assistance system. All other context objects are related to the own vehicle (ego-centric world view)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficSign",
"label": "trafficSign",
"description": "A traffic sign provides information about the spatial/local context and the currently valid traffic rules, different from the default regulation."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#participant",
"label": "participant",
"description": "A participant is a dynamic, moving object within the traffic surrounding and is typically operated by other human (or robot) drivers."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#driver",
"label": "driver",
"description": "The driver is steering the own-vehicle. The driver is typically human, but could be a robot (which would render the dataproperties 'age' and 'state' obsolete)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#history",
"label": "history",
"description": "Longterm- and shortterm history can influence the currently planned driving maneuver (for future use)."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#context",
"label": "context",
"description": "Currently valid context that the own-vehicle is driving in."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#drivingManeuver",
"label": "drivingManeuver",
"description": "A driving maneuver is planned and executed by the driver, e.g. take over, stop and park."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#lane",
"label": "lane",
"description": "A lane is a designated surface on a road (associated with certain rules) used by traffic participants."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#marking",
"label": "marking",
"description": "A marking separates a lane from other lanes or impassable environment."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficObject",
"label": "trafficObject",
"description": "A traffic object is a static, non-moving object within the driving environment, providing additional information about the mandatory behavior to the participants."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#trafficLight",
"label": "trafficLight",
"description": "A traffic light regulates precedence and start/stop of different directions (and lanes) and is usually valid for an intersection or a tunnel."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#MetaInformation",
"label": "MetaInformation",
"description": "Meta-information provides quality information about an object. During the reasoning process, this information is used to deal with e.g. uncertainty and noisy data."
},
{
"vocabulary": 2304,
"uri": "http://vi.uni-klu.ac.at/ontology/DrivingContext.owl#startTime",
"label": "startTime",
"description": "Start time as unix time value: number of seconds since 00:00:00 GMT, Jan 1 1970"
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Infant",
"label": "Infant",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#LivingBeing",
"label": "LivingBeing",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Teenager",
"label": "Teenager",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Event",
"label": "Event",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Child",
"label": "Child",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#RoadAccident",
"label": "RoadAccident",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#DriverLicense",
"label": "DriverLicense",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Location",
"label": "Location",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Senior",
"label": "Senior",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#InsuranceCert",
"label": "InsuranceCert",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Woman",
"label": "Woman",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#OfficialAgency",
"label": "OfficialAgency",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Robot",
"label": "Robot",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Organization",
"label": "Organization",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Document",
"label": "Document",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Person",
"label": "Person",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#InsuranceCompany",
"label": "InsuranceCompany",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Man",
"label": "Man",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Animal",
"label": "Animal",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Vehicle",
"label": "Vehicle",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#NonLivingThings",
"label": "NonLivingThings",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#OfficialID",
"label": "OfficialID",
"description": ""
},
{
"vocabulary": 2305,
"uri": "http://www.w3.org/2012/7/ra3.owl#Adult",
"label": "Adult",
"description": ""
},
{
"vocabulary": 2306,
"uri": "http://www.w3.org/2003/01/geo/wgs84_pos#Point",
"label": "point",
"description": "Uniquely identified by lat/long/alt. i.e. spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT), lat(P2, LAT), long(P2, LONG), alt(P2, ALT). sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2). A point, typically described using a coordinate system relative to Earth, such as WGS84."
},
{
"vocabulary": 2306,
"uri": "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing",
"label": "SpatialThing",
"description": "Anything with spatial extent, i.e. size, shape, or position. e.g. people, places, bowling balls, as well as abstract areas like cubes."
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#AboveRoomTemperature",
"label": "AboveRoomTemperature",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#AboveZeroTemperature",
"label": "AboveZeroTemperature",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#AirPollution",
"label": "AirPollution",
"description": "The current air pollution represented as European Air Quality Index value. The index value is based on 3 pollutants of major concern in Europe: PM10, NO2, O3 and will be able to take into account to 3 additional pollutants (CO, PM2.5 and SO2) where data are also available."
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#AiringWeatherState",
"label": "AiringWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#AtmosphericPressure",
"label": "AtmosphericPressure",
"description": "Atmospheric pressure in hectopascal (hPa)"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#BelowOrZeroTemperature",
"label": "BelowOrZeroTemperature",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#CloudCover",
"label": "CloudCover",
"description": "Cloud cover in the unit 'Okta'"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#CoolingWeatherState",
"label": "CoolingWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#CurrentWeatherReport",
"label": "CurrentWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#CurrentWeatherReportFromSensor",
"label": "CurrentWeatherReportFromSensor",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#CurrentWeatherReportFromService",
"label": "CurrentWeatherReportFromService",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#DewPointTemperature",
"label": "DewPointTemperature",
"description": "The dewpoint temperature in degrees Celsius. It is the temperature at which the air can no longer hold all of its water vapor, and some of the water vapor must condense into liquid water. The dew point is always lower than (or equal to) the air temperature. This concept was known as DewPoint in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#DryHumidity",
"label": "DryHumidity",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ExtremeFrost",
"label": "ExtremeFrost",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ExtremeHeat",
"label": "ExtremeHeat",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#FairWeatherState",
"label": "FairWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast10HoursWeatherReport",
"label": "Forecast10HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast11HoursWeatherReport",
"label": "Forecast11HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast12HoursWeatherReport",
"label": "Forecast12HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast13HoursWeatherReport",
"label": "Forecast13HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast14HoursWeatherReport",
"label": "Forecast14HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast15HoursWeatherReport",
"label": "Forecast15HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast16HoursWeatherReport",
"label": "Forecast16HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast17HoursWeatherReport",
"label": "Forecast17HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast18HoursWeatherReport",
"label": "Forecast18HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast19HoursWeatherReport",
"label": "Forecast19HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast1HourWeatherReport",
"label": "Forecast1HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast20HoursWeatherReport",
"label": "Forecast20HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast21HoursWeatherReport",
"label": "Forecast21HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast22HoursWeatherReport",
"label": "Forecast22HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast23HoursWeatherReport",
"label": "Forecast23HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast24HoursWeatherReport",
"label": "Forecast24HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast2HoursWeatherReport",
"label": "Forecast2HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast3HoursWeatherReport",
"label": "Forecast3HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast4HoursWeatherReport",
"label": "Forecast4HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast5HoursWeatherReport",
"label": "Forecast5HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast6HoursWeatherReport",
"label": "Forecast6HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast7HoursWeatherReport",
"label": "Forecast7HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast8HoursWeatherReport",
"label": "Forecast8HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Forecast9HoursWeatherReport",
"label": "Forecast9HoursWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ForecastWeatherReport",
"label": "ForecastWeatherReport",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#FreshBreeze",
"label": "FreshBreeze",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#FreshGale",
"label": "FreshGale",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Frost",
"label": "Frost",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#GentleBreeze",
"label": "GentleBreeze",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Heat",
"label": "Heat",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#HeatingWeatherState",
"label": "HeatingWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#HeavyPrecipitation",
"label": "HeavyPrecipitation",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#HighAirPollution",
"label": "HighAirPollution",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#HighSolarIrradiance",
"label": "HighSolarIrradiance",
"description": "This concept was known as 'HighSolarRadiation' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#HumidifyingWeatherState",
"label": "HumidifyingWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Humidity",
"label": "Humidity",
"description": "Represents the relative humidity of the air in percent"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Hurricane",
"label": "Hurricane",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LightAir",
"label": "LightAir",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LightBreeze",
"label": "LightBreeze",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LightPrecipitation",
"label": "LightPrecipitation",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LightWind",
"label": "LightWind",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LongRangeForecast",
"label": "LongRangeForecast",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LowAirPollution",
"label": "LowAirPollution",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#LowSolarIrradiance",
"label": "LowSolarIrradiance",
"description": "This concept was known as 'LowSolarRadiation' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#MediumAirPollution",
"label": "MediumAirPollution",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#MidRangeForecast",
"label": "MidRangeForecast",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ModerateBreeze",
"label": "ModerateBreeze",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ModerateGale",
"label": "ModerateGale",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ModeratePrecipitation",
"label": "ModeratePrecipitation",
"description": "This concept was known as 'MediumPrecipitation' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ModerateSolarIrradiance",
"label": "ModerateSolarIrradiance",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#MoistHumidity",
"label": "MoistHumidity",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#MostlyCloudy",
"label": "MostlyCloudy",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#NeglectibleSolarIrradiance",
"label": "NeglectibleSolarIrradiance",
"description": "This concept was known as 'NeglectibleSolarRadiation' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#NeutralWeatherState",
"label": "NeutralWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#NoCloudCover",
"label": "NoCloudCover",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#NoPrecipitation",
"label": "NoPrecipitation",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#NoWind",
"label": "NoWind",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#OptimumHumidity",
"label": "OptimumHumidity",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Overcast",
"label": "Overcast",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#PartlyCloudy",
"label": "PartlyCloudy",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Precipitation",
"label": "Precipitation",
"description": "Represents precipitation in millimetres"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#RainyWeatherState",
"label": "RainyWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#RoomTemperature",
"label": "RoomTemperature",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#SensorReportSource",
"label": "SensorReportSource",
"description": "This class was known as 'SensorSource' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ServiceReportSource",
"label": "ServiceReportSource",
"description": "This class was known as 'ServiceSource' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#SevereWeatherState",
"label": "SevereWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#ShortRangeForecast",
"label": "ShortRangeForecast",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#SnowyWeatherState",
"label": "SnowyWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#SolarIrradiance",
"label": "SolarIrradiance",
"description": "Measurement of solar irrradiation at a specific location in Watts per square meter (W/m²).This concept was known as 'SolarRadiation' in prior versions of the ontology"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Storm",
"label": "Storm",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#StrongBreeze",
"label": "StrongBreeze",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#StrongGale",
"label": "StrongGale",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#StrongWind",
"label": "StrongWind",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#SunnyWeatherState",
"label": "SunnyWeatherState",
"description": ""
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Temperature",
"label": "Temperature",
"description": "Exterior temperature in degrees Celsius"
},
{
"vocabulary": 2306,
"uri": "https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/WeatherOntology.owl#Thunderstorm",