-
Notifications
You must be signed in to change notification settings - Fork 2
/
vocabulary.ttl
7732 lines (6029 loc) · 241 KB
/
vocabulary.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix datex: <http://vocab.datex.org/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix td: <http://purl.org/td/transportdisruption#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix status: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix schema: <http://schema.org/> .
<http://vocab.datex.org/terms>
cc:license <http://creativecommons.org/licenses/by/3.0/> ;
dct:hasFormat <https://raw.githubusercontent.com/OpenTransport/linked-datex2/master/vocabulary.ttl> ;
dct:issued "2016-05-23"^^xsd:date ;
dct:modified "2016-06-13"^^xsd:date ;
dct:rights "Copyright 2016, 2017 - Open Transport contributors" ;
a foaf:Document ;
foaf:primaryTopic datex:Ontology .
datex:Ontology
dct:title "Datex2"@en ;
a owl:Ontology ;
rdfs:comment "A mapping of Datex2 to a Linked Data vocabulary"@en ;
dct:description "This document gives URIs to all terms used within Datex II"@en ;
dct:creator <https://pietercolpaert.be/#me>,
<https://people.epfl.ch/prodromos.kolyvakis> ;
vann:preferredNamespacePrefix "datex" ;
vann:preferredNamespaceUri "http://vocab.datex.org/terms#" ;
rdfs:label "Linked Datex II"@en ;
rdfs:seeAlso <http://datex2.eu/schema/2/2_0> .
<https://people.epfl.ch/prodromos.kolyvakis>
foaf:name "Prodromos Kolyvakis" .
<https://pietercolpaert.be/#me>
foaf:name "Pieter Colpaert" ;
owl:sameAs <http://google.com/+PieterColpaert> .
datex:AbnormalTraffic
rdfs:label "abnormal traffic"@en;
a owl:Class ;
rdfs:comment "A traffic condition which is not normal."@en ;
rdfs:subClassOf datex:TrafficElement ;
owl:sameAs td:AbnormalTraffic .
datex:AcceptedPaymentCards
rdfs:label "accepted payment cards"@en;
a owl:Class ;
rdfs:comment "Use this class to describe details in case acceptedMeansOfPayment is set to 'paymentCard'."@en .
datex:Accident
rdfs:label "accident"@en;
a owl:Class ;
rdfs:comment "Accidents are events where one or more vehicles are involved in collisions or in leaving the roadway. These include collisions between vehicles or with other road users or obstacles."@en ;
rdfs:subClassOf datex:TrafficElement ;
owl:sameAs td:Accident .
datex:Activity
rdfs:label "activity"@en;
a owl:Class ;
rdfs:comment "Deliberate human action external to the traffic stream or roadway which could disrupt traffic."@en ;
rdfs:subClassOf datex:TrafficElement ;
owl:sameAs td:Activity .
datex:AffectedCarriagewayAndLanes
rdfs:label "affected carriageway and lanes"@en;
a owl:Class ;
rdfs:comment "Supplementary positional information which details carriageway and lane locations. Several instances may exist where the element being described extends over more than one carriageway."@en ;
.
datex:AlertCArea
rdfs:label "alert c area"@en;
a owl:Class ;
rdfs:comment "An area defined by reference to a predefined ALERT-C location table."@en ;
.
datex:AlertCDirection
rdfs:label "alert c direction"@en;
a owl:Class ;
rdfs:comment "The direction of traffic flow along the road to which the information relates."@en ;
.
datex:AlertCLinear
rdfs:label "alert c linear"@en;
a owl:Class ;
rdfs:comment "A linear section along a road defined between two points on the road by reference to a pre-defined ALERT-C location table."@en ;
.
datex:AlertCLinearByCode
rdfs:label "alert c linear by code"@en;
a owl:Class ;
rdfs:comment "A linear section along a road defined by reference to a linear section in a pre-defined ALERT-C location table."@en ;
rdfs:subClassOf datex:AlertCLinear .
datex:AlertCLocation
rdfs:label "alert c location"@en;
a owl:Class ;
rdfs:comment "Identification of a specific point, linear or area location in an ALERT-C location table."@en .
datex:AlertCMethod2Linear
rdfs:label "alert c method to linear"@en;
a owl:Class ;
rdfs:comment "A linear section along a road between two points, Primary and Secondary, which are pre-defined in an ALERT-C location table. Direction is FROM the Secondary point TO the Primary point, i.e. the Primary point is downstream of the Secondary point."@en ;
rdfs:subClassOf datex:AlertCLinear .
datex:AlertCMethod2Point
rdfs:label "alert c method to point"@en;
a owl:Class ;
rdfs:comment "A single point on the road network defined by reference to a point in a pre-defined ALERT-C location table and which has an associated direction of traffic flow."@en ;
rdfs:subClassOf datex:AlertCPoint .
datex:AlertCMethod2PrimaryPointLocation
rdfs:label "alert c method to primary point location"@en;
a owl:Class ;
rdfs:comment "The point (called Primary point) which is either a single point or at the downstream end of a linear road section. The point is specified by a reference to a point in a pre-defined ALERT-C location table."@en ;
.
datex:AlertCMethod2SecondaryPointLocation
rdfs:label "alert c method to secondary point location"@en;
a owl:Class ;
rdfs:comment "The point (called Secondary point) which is at the upstream end of a linear road section. The point is specified by a reference to a point in a pre-defined ALERT-C location table."@en ;
.
datex:AlertCMethod4Linear
rdfs:label "alert c method for linear"@en;
a owl:Class ;
rdfs:comment "A linear section along a road between two points, Primary and Secondary, which are pre-defined ALERT-C locations plus offset distance. Direction is FROM the Secondary point TO the Primary point, i.e. the Primary point is downstream of the Secondary point."@en ;
rdfs:subClassOf datex:AlertCLinear .
datex:AlertCMethod4Point
rdfs:label "alert c method for point"@en;
a owl:Class ;
rdfs:comment "A single point on the road network defined by reference to a point in a pre-defined ALERT-C location table plus an offset distance and which has an associated direction of traffic flow."@en ;
rdfs:subClassOf datex:AlertCPoint .
datex:AlertCMethod4PrimaryPointLocation
rdfs:label "alert c method for primary point location"@en;
a owl:Class ;
rdfs:comment "The point (called Primary point) which is either a single point or at the downstream end of a linear road section. The point is specified by a reference to a point in a pre-defined ALERT-C location table plus a non-negative offset distance."@en .
datex:AlertCMethod4SecondaryPointLocation
rdfs:label "alert c method for secondary point location"@en;
a owl:Class ;
rdfs:comment "The point (called Secondary point) which is at the upstream end of a linear road section. The point is specified by a reference to a point in a pre-defined Alert-C location table plus a non-negative offset distance."@en ;
.
datex:AlertCPoint
rdfs:label "alert c point"@en;
a owl:Class ;
rdfs:comment "A single point on the road network defined by reference to a pre-defined ALERT-C location table and which has an associated direction of traffic flow."@en ;
.
datex:AnimalPresenceObstruction
rdfs:label "animal presence obstruction"@en;
a owl:Class ;
rdfs:comment "An obstruction on the road resulting from the presence of animals."@en ;
rdfs:subClassOf datex:Obstruction ;
owl:sameAs td:AnimalPresenceObstruction .
datex:ApplicationRateValue
rdfs:label "application rate value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of the application rate of a substance."@en ;
rdfs:subClassOf datex:DataValue .
datex:Area
rdfs:label "area"@en;
a owl:Class ;
rdfs:comment "A geographic or geometric defined area which may be qualified by height information to provide additional geospatial discrimination (e.g. for snow in an area but only above a certain altitude)."@en ;
rdfs:subClassOf datex:Location .
datex:AreaDestination
rdfs:label "area destination"@en;
a owl:Class ;
rdfs:comment "The specification of the destination of a defined route or itinerary which is an area."@en ;
rdfs:subClassOf datex:Destination .
datex:AreaExtended
rdfs:label "area extended"@en;
a owl:Class ;
rdfs:comment "Extension class for area used in parking publication extension."@en .
datex:AuthorityOperation
rdfs:label "authority operation"@en;
a owl:Class ;
rdfs:comment "Authority initiated operation or activity that could disrupt traffic."@en ;
rdfs:subClassOf datex:Activity ;
owl:sameAs td:AuthorityOperation .
datex:AxleFlowValue
rdfs:label "axle flow value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of the flow rate of vehicle axles."@en ;
rdfs:subClassOf datex:DataValue .
datex:AxleSpacing
rdfs:label "axle spacing"@en;
a owl:Class ;
rdfs:comment "The spacing details between the axle sets of an individual vehicle numbered from the front to the back of the vehicle. "@en .
datex:AxleWeight
rdfs:label "axle weight"@en;
a owl:Class ;
rdfs:comment "The weight details of a specific axle on the vehicle. "@en .
datex:BasicData
rdfs:label "basic data"@en;
a owl:Class ;
rdfs:comment "Data that is either measured or calculated (elaborated) at the same time or over the same time period."@en .
datex:CarParks
rdfs:label "car parks"@en;
a owl:Class ;
rdfs:comment "Provides information on the status of one or more car parks."@en ;
rdfs:subClassOf datex:NonRoadEventInformation .
datex:CatalogueReference
rdfs:label "catalogue reference"@en;
a owl:Class ;
rdfs:comment "Identification of the supplier's data catalogue in a data exchange context."@en .
datex:Cause
rdfs:label "cause"@en;
a owl:Class ;
rdfs:comment "Contains details of the cause of a record within a situation"@en ;
.
datex:Charge
rdfs:label "charge"@en;
a owl:Class ;
rdfs:comment "A particular charge for a specified interval belonging a charge band."@en ;
.
datex:ChargeBand
rdfs:label "charge band"@en;
a owl:Class ;
rdfs:comment "A charge band in accordance with the specified conditions, possibly up to a maximum duration, during a specified period and for a vehicle of specified characteristics (in case of parking)."@en ;
.
datex:ChargeBandByReference
rdfs:label "charge band by reference"@en;
a owl:Class ;
rdfs:comment "Using (a) prior defined charge band(s), identified by its reference."@en ;
.
datex:Comment
rdfs:label "comment"@en;
a owl:Class ;
rdfs:comment "A free text comment with an optional date/time stamp that can be used by the operator to convey un-coded observations/information."@en ;
.
datex:ConcentrationOfVehiclesValue
rdfs:label "concentration of vehicles value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of the concentration of vehicles on a unit stretch of road in a given direction."@en ;
rdfs:subClassOf datex:DataValue .
datex:Conditions
rdfs:label "conditions"@en;
a owl:Class ;
rdfs:comment "Any conditions which have the potential to degrade normal driving conditions."@en ;
rdfs:subClassOf datex:TrafficElement .
datex:Contact
rdfs:label "contact"@en;
a owl:Class ;
rdfs:comment "Address and contact information about some person, service or the parking site, provided in detail or via reference."@en ;
.
datex:ContactByReference
rdfs:label "contact by reference"@en;
a owl:Class ;
rdfs:comment "Contact information that is addressed via a reference."@en ;
rdfs:subClassOf datex:Contact .
datex:ContactDetails
rdfs:label "contact details"@en;
a owl:Class ;
rdfs:comment "Details for some person, service or the parking site itself, especially address information."@en ;
rdfs:subClassOf datex:Contact .
datex:D2LogicalModel
rdfs:label "D2 logical model"@en;
a owl:Class ;
rdfs:comment "The DATEX II logical model comprising exchange, content payload and management sub-models."@en ;
.
datex:DataValue
rdfs:label "data value"@en;
a owl:Class ;
rdfs:comment "A data value of something that can be measured or calculated. Any provided meta-data values specified in the attributes override any specified generic characteristics such as defined for a specific measurement in the MeasurementSiteTable. "@en ;
.
datex:DateTimeValue
rdfs:label "date time value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of an instance in time."@en ;
rdfs:subClassOf datex:DataValue .
datex:DayWeekMonth
rdfs:label "day week month"@en;
a owl:Class ;
rdfs:comment "Specification of periods defined by the intersection of days, weeks and months."@en ;
.
datex:DedicatedAccess
rdfs:label "dedicated access"@en;
a owl:Class ;
rdfs:comment "Reference to an access of any type (vehicles, pedestrian, ...)."@en ;
.
datex:Delays
rdfs:label "delays"@en;
a owl:Class ;
rdfs:comment "The details of the delays being caused by the situation element defined in the situation record. It is recommended to only use one of the optional attributes to avoid confusion."@en ;
.
datex:Destination
rdfs:label "destination"@en;
a owl:Class ;
rdfs:comment "The specification a destination. This may be either a point location or an area location."@en ;
.
datex:Dimension
rdfs:label "dimension"@en;
a owl:Class ;
rdfs:comment "A component that provides dimension information. The product of width and height must not be necessarily be the square footage (e.g. in multi-storey buildings or when some zones are not part of the square footage)."@en ;
.
datex:DirectionBearingValue
rdfs:label "direction bearing value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of direction as a bearing."@en ;
rdfs:subClassOf datex:DataValue .
datex:DirectionCompassValue
rdfs:label "direction compass value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of direction as a point of the compass."@en ;
rdfs:subClassOf datex:DataValue .
datex:DistanceAlongLinearElement
rdfs:label "distance along linear element"@en;
a owl:Class ;
rdfs:comment "Distance of a point along a linear element either measured from the start node or a defined referent on that linear element, where the start node is relative to the element definition rather than the direction of traffic flow."@en ;
.
datex:DistanceFromLinearElementReferent
rdfs:label "distance from linear element referent"@en;
a owl:Class ;
rdfs:comment "Distance of a point along a linear element measured from a \"from referent\" on the linear element, in the sense relative to the linear element definition rather than the direction of traffic flow or optionally towards a \"towards referent\"."@en ;
rdfs:subClassOf datex:DistanceAlongLinearElement .
datex:DistanceFromLinearElementStart
rdfs:label "distance from linear element start"@en;
a owl:Class ;
rdfs:comment "Distance of a point along a linear element measured from the start node of the linear element, where start node is relative to the element definition rather than the direction of traffic flow."@en ;
rdfs:subClassOf datex:DistanceAlongLinearElement .
datex:DisturbanceActivity
rdfs:label "disturbance activity"@en;
a owl:Class ;
rdfs:comment "Deliberate human action of either a public disorder nature or of a situation alert type which could disrupt traffic."@en ;
rdfs:subClassOf datex:Activity .
datex:ElaboratedData
rdfs:label "elaborated data"@en;
a owl:Class ;
rdfs:comment "An instance of data which is derived/computed from one or more measurements over a period of time. It may be a current value or a forecast value predicted from historical measurements."@en ;
.
datex:ElaboratedDataFault
rdfs:label "elaborated data fault"@en;
a owl:Class ;
rdfs:comment "Details of a fault which is being reported for the related elaborated data."@en ;
rdfs:subClassOf datex:Fault .
datex:ElaboratedDataPublication
rdfs:label "elaborated data publication"@en;
a owl:Class ;
rdfs:comment "A publication containing one or more elaborated data sets."@en ;
rdfs:subClassOf datex:PayloadPublication .
datex:ElectricCharging
rdfs:label "electric charging"@en;
a owl:Class ;
rdfs:comment "Additional information for the equipment 'electricChargingStation'. This component refers to the number of charging stations specified in the attribute 'numberOfEquipmentOrServiceFacilities'."@en ;
.
datex:EnvironmentalObstruction
rdfs:label "environmental obstruction"@en;
a owl:Class ;
rdfs:comment "An obstruction on the road resulting from an environmental cause."@en ;
rdfs:subClassOf datex:Obstruction .
datex:EquipmentOrSystemFault
rdfs:label "equipment or system fault"@en;
a owl:Class ;
rdfs:comment "Equipment or system which is faulty, malfunctioning or not in a fully operational state that may be of interest or concern to road operators and road users."@en ;
rdfs:subClassOf datex:TrafficElement .
datex:Exchange
rdfs:label "exchange"@en;
a owl:Class ;
rdfs:comment "Details associated with the management of the exchange between the supplier and the client."@en ;
.
datex:ExternalReferencing
rdfs:label "external referencing"@en;
a owl:Class ;
rdfs:comment "A location defined by reference to an external/other referencing system."@en ;
.
datex:Fault
rdfs:label "fault"@en;
a owl:Class ;
rdfs:comment "Information about a fault relating to a specific piece of equipment or process."@en ;
.
datex:FilterExitManagement
rdfs:label "filter exit management"@en;
a owl:Class ;
rdfs:comment "Filter indicators management information."@en ;
.
datex:FilterReference
rdfs:label "filter reference"@en;
a owl:Class ;
rdfs:comment "Details of a supplier's filter in a data exchange context."@en ;
.
datex:FloatingPointMetreDistanceValue
rdfs:label "floating point metre distance value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of distance in metres in a floating point format."@en ;
rdfs:subClassOf datex:DataValue .
datex:GeneralInstructionOrMessageToRoadUsers
rdfs:label "general instruction or message to road users"@en;
a owl:Class ;
rdfs:comment "General instruction and/or message that is issued by the network/road operator which is applicable to drivers and sometimes passengers."@en ;
rdfs:subClassOf datex:NetworkManagement .
datex:GeneralNetworkManagement
rdfs:label "general network management"@en;
a owl:Class ;
rdfs:comment "Network management action that is instigated either manually or automatically by the network/road operator. Compliance with any resulting control may be advisory or mandatory."@en ;
rdfs:subClassOf datex:NetworkManagement .
datex:GenericSituationRecord
rdfs:label "generic situation record"@en;
a owl:Class ;
rdfs:comment "A generic SituationRecord for use when adding level B extensions at the SituationRecord level."@en ;
rdfs:subClassOf datex:SituationRecord .
datex:GrossWeightCharacteristic
rdfs:label "gross weight characteristic"@en;
a owl:Class ;
rdfs:comment "Gross weight characteristic of a vehicle."@en ;
.
datex:GroupOfLocations
rdfs:label "group of locations"@en;
a owl:Class ;
rdfs:comment "One or more physically separate locations. Multiple locations may be related, as in an itinerary (or route), or may be unrelated. It is not for identifying the same physical location using different Location objects for different referencing systems."@en ;
.
datex:GroupOfParkingSites
rdfs:label "group of parking sites"@en;
a owl:Class ;
rdfs:comment "A logical composition of parking sites with aggregated properties (e.g. number of spaces). Examples: Urban parking area \"West\" or all truck parkings along a motorway. The included parking sites may -but must not- be specified as subcomponents."@en ;
rdfs:subClassOf datex:ParkingRecord .
datex:GroupOfParkingSitesStatus
rdfs:label "group of parking sites status"@en;
a owl:Class ;
rdfs:comment "Dynamic status information for the static object 'GroupOfParkingSites'."@en ;
rdfs:subClassOf datex:ParkingRecordStatus .
datex:GroupOfParkingSpaces
rdfs:label "group of parking spaces"@en;
a owl:Class ;
rdfs:comment "A group of parking spaces. All information provided has to be identical for all places in this group. Can also be used just to give the number of lorry parkings, for example. 'GroupOfParkingSpaces' may be multiple defined or include each other."@en ;
rdfs:subClassOf datex:ParkingSpaceBasics .
datex:GroupOfParkingSpacesStatus
rdfs:label "group of parking spaces status"@en;
a owl:Class ;
rdfs:comment "The status of the assigned parking spaces in the specified parking site, i.e. the status of those spaces assigned for particular types of person or vehicle and/or for specific duration types (e.g. short stay)."@en ;
rdfs:subClassOf datex:ParkingOccupancy .
datex:GroupOfPeopleInvolved
rdfs:label "group of people involved"@en;
a owl:Class ;
rdfs:comment "Group of people involved in the event having common characteristics and/or status."@en ;
.
datex:GroupOfVehiclesInvolved
rdfs:label "group of vehicles involved"@en;
a owl:Class ;
rdfs:comment "Group of the vehicles involved having common characteristics and/or status."@en ;
.
datex:HazardousMaterials
rdfs:label "hazardous materials"@en;
a owl:Class ;
rdfs:comment "Details of hazardous materials."@en ;
.
datex:HeaderInformation
rdfs:label "header information"@en;
a owl:Class ;
rdfs:comment "Management information relating to the data contained within a publication."@en ;
.
datex:HeaviestAxleWeightCharacteristic
rdfs:label "heaviest axle weight characteristic"@en;
a owl:Class ;
rdfs:comment "Weight characteristic of the heaviest axle on the vehicle."@en ;
.
datex:HeightCharacteristic
rdfs:label "height characteristic"@en;
a owl:Class ;
rdfs:comment "Height characteristic of a vehicle."@en ;
.
datex:Humidity
rdfs:label "humidity"@en;
a owl:Class ;
rdfs:comment "Details of atmospheric humidity."@en ;
.
datex:HumidityInformation
rdfs:label "humidity information"@en;
a owl:Class ;
rdfs:comment "Measurements of atmospheric humidity."@en ;
rdfs:subClassOf datex:WeatherData .
datex:Impact
rdfs:label "impact"@en;
a owl:Class ;
rdfs:comment "An assessment of the impact that an event or operator action defined by the situation record has on the driving conditions."@en ;
.
datex:IndividualCharge
rdfs:label "individual charge"@en;
a owl:Class ;
rdfs:comment "Information on the individual charge for parking the specified vehicle."@en ;
.
datex:IndividualVehicleDataValues
rdfs:label "individual vehicle data values"@en;
a owl:Class ;
rdfs:comment "Measured or calculated data values relating to individual vehicles derived from detectors at the specified measurement site."@en ;
rdfs:subClassOf datex:TrafficData .
datex:InfrastructureDamageObstruction
rdfs:label "infrastructure damage obstruction"@en;
a owl:Class ;
rdfs:comment "An obstruction on the road resulting from the failure or damage of infrastructure on, under, above or close to the road."@en ;
rdfs:subClassOf datex:Obstruction .
datex:InterUrbanParkingSite
rdfs:label "inter urban parking site"@en;
a owl:Class ;
rdfs:comment "A parking site in an interurban context."@en ;
rdfs:subClassOf datex:ParkingSite .
datex:InternationalIdentifier
rdfs:label "international identifier"@en;
a owl:Class ;
rdfs:comment "An identifier/name whose range is specific to the particular country."@en ;
.
datex:Itinerary
rdfs:label "itinerary"@en;
a owl:Class ;
rdfs:comment "Multiple (i.e. more than one) physically separate locations arranged as an ordered set that defines an itinerary or route."@en ;
rdfs:subClassOf datex:GroupOfLocations .
datex:ItineraryByIndexedLocations
rdfs:label "itinerary by indexed locations"@en;
a owl:Class ;
rdfs:comment "Multiple physically separate locations arranged as an ordered set that defines an itinerary or route. The index qualifier indicates the order."@en ;
rdfs:subClassOf datex:Itinerary .
datex:ItineraryByReference
rdfs:label "itinerary by reference"@en;
a owl:Class ;
rdfs:comment "Multiple (i.e. more than one) physically separate locations which are ordered that constitute an itinerary or route where they are defined by reference to a predefined itinerary."@en ;
rdfs:subClassOf datex:Itinerary .
datex:Junction
rdfs:label "junction"@en;
a owl:Class ;
rdfs:comment "Junction (on a highway), can also be an interchange or if applicable also a motorway service station (see junctionClassification)."@en ;
.
datex:KilogramsConcentrationValue
rdfs:label "kilograms concentration value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of concentration of a substance in grams per unit volume."@en ;
rdfs:subClassOf datex:DataValue .
datex:LengthCharacteristic
rdfs:label "length characteristic"@en;
a owl:Class ;
rdfs:comment "Length characteristic of a vehicle."@en ;
.
datex:LifeCycleManagement
rdfs:label "life cycle management"@en;
a owl:Class ;
rdfs:comment "Information relating to the life cycle management of the situation record."@en ;
.
datex:Linear
rdfs:label "linear"@en;
a owl:Class ;
rdfs:comment "A linear section along a single road with optional directionality defined between two points on the same road. "@en ;
rdfs:subClassOf datex:NetworkLocation .
datex:LinearElement
rdfs:label "linear element"@en;
a owl:Class ;
rdfs:comment "A linear element along a single linear object, consistent with ISO 19148 definitions. "@en ;
.
datex:LinearElementByCode
rdfs:label "linear element by code"@en;
a owl:Class ;
rdfs:comment "A linear element along a single linear object defined by its identifier or code in a road network reference model (specified in LinearElement class) which segments the road network according to specific business rules."@en ;
rdfs:subClassOf datex:LinearElement .
datex:LinearElementByPoints
rdfs:label "linear element by points"@en;
a owl:Class ;
rdfs:comment "A linear element along a single linear object defined by its start and end points."@en ;
rdfs:subClassOf datex:LinearElement .
datex:LinearTrafficView
rdfs:label "linear traffic view"@en;
a owl:Class ;
rdfs:comment "An identifiable instance of a linear traffic view at a single point in time relating to a linear section of road, comprising one or more traffic view records."@en ;
.
datex:LinearWithinLinearElement
rdfs:label "linear within linear element"@en;
a owl:Class ;
rdfs:comment "A linear section along a linear element where the linear element is either a part of or the whole of a linear object (i.e. a road), consistent with ISO 19148 definitions. "@en ;
.
datex:Location
rdfs:label "location"@en;
a owl:Class ;
rdfs:comment "The specification of a location either on a network (as a point or a linear location) or as an area. This may be provided in one or more referencing systems."@en ;
rdfs:subClassOf datex:GroupOfLocations .
datex:LocationByReference
rdfs:label "location by reference"@en;
a owl:Class ;
rdfs:comment "A location defined by reference to a predefined location."@en ;
rdfs:subClassOf datex:Location .
datex:LocationCharacteristicsOverride
rdfs:label "location characteristics override"@en;
a owl:Class ;
rdfs:comment "Location characteristics which override values set in the referenced measurement point."@en ;
.
datex:MaintenanceVehicles
rdfs:label "maintenance vehicles"@en;
a owl:Class ;
rdfs:comment "Details of the maintenance vehicles involved in the roadworks activity."@en ;
.
datex:MaintenanceWorks
rdfs:label "maintenance works"@en;
owl:sameAs td:MaintenanceWork ;
a owl:Class ;
rdfs:comment "Roadworks involving the maintenance or installation of infrastructure."@en ;
rdfs:subClassOf datex:Roadworks .
datex:ManagedCause
rdfs:label "managed cause"@en;
a owl:Class ;
rdfs:comment "A cause of this situation record which is managed by the publication creator, i.e. one which is represented by another situation record produced by the same publication creator."@en ;
rdfs:subClassOf datex:Cause .
datex:Management
rdfs:label "management"@en;
a owl:Class ;
rdfs:comment "Information relating to the management of the situation record."@en ;
.
datex:MeasuredDataPublication
rdfs:label "measured data publication"@en;
a owl:Class ;
rdfs:comment "A publication containing one or more measurement data sets, each set being measured at a single measurement site."@en ;
rdfs:subClassOf datex:PayloadPublication .
datex:MeasuredValue
rdfs:label "measured value"@en;
a owl:Class ;
rdfs:comment "Contains optional characteristics for the specific measured value (indexed to correspond with the defined characteristics of the measurement at the referenced measurement site) which override the static characteristics defined in the MeasurementSiteTable."@en ;
.
datex:MeasurementEquipmentFault
rdfs:label "measurement equipment fault"@en;
a owl:Class ;
rdfs:comment "Details of a fault which is being reported for the related measurement equipment."@en ;
rdfs:subClassOf datex:Fault .
datex:MeasurementSiteRecord
rdfs:label "measurement site record"@en;
a owl:Class ;
rdfs:comment "An identifiable single measurement site entry/record in the Measurement Site table."@en ;
.
datex:MeasurementSiteTable
rdfs:label "measurement site table"@en;
a owl:Class ;
rdfs:comment "A Measurement Site Table comprising a number of sets of data, each describing the location from where a stream of measured data may be derived. Each location is known as a \"measurement site\" which can be a point, a linear road section or an area."@en ;
.
datex:MeasurementSiteTablePublication
rdfs:label "measurement site table publication"@en;
a owl:Class ;
rdfs:comment "A publication containing one or more Measurment Site Tables."@en ;
rdfs:subClassOf datex:PayloadPublication .
datex:MeasurementSpecificCharacteristics
rdfs:label "measurement specific characteristics"@en;
a owl:Class ;
rdfs:comment "Characteristics which are specific to an individual measurement type (specified in a known order) at the given measurement site."@en ;
.
datex:MicrogramsConcentrationValue
rdfs:label "micrograms concentration value"@en;
a owl:Class ;
rdfs:comment "A measured or calculated value of concentration of a substance in micrograms per unit volume."@en ;
rdfs:subClassOf datex:DataValue .
datex:MilitaryConvoy
rdfs:label "military convoy"@en;
owl:sameAs td:MilitaryConvoy .
datex:Mobility
rdfs:label "mobility"@en;
a owl:Class ;
rdfs:comment "An indication of whether the associated instance of a SituationRecord is mobile (e.g. a march or parade moving along a road) or stationary."@en ;
.
datex:MultilingualString
rdfs:label "multilingual string"@en;
a owl:Class ;
.
datex:MultilingualStringValue
rdfs:label "multilingual string value"@en;
a owl:Class ;
.
datex:MultipleVehicleCollision
rdfs:label "multiple vehicle collision"@en;
owl:sameAs td:MultipleVehicleCollision .
datex:NamedArea
rdfs:label "named area"@en;
a owl:Class ;
rdfs:comment "An area defined by a name and/or in terms of known boundaries, such as country or county boundaries or allocated control area of particular authority. The attributes do not form a union; instead, the smallest intersection forms the resulting area."@en ;
.
datex:NetworkLocation
rdfs:label "network location"@en;
a owl:Class ;
rdfs:comment "The specification of a location on a network (as a point or a linear location)."@en ;
rdfs:subClassOf datex:Location .
datex:NetworkManagement
rdfs:label "network management"@en;
a owl:Class ;
rdfs:comment "Network management action which is applicable to the road network and its users."@en ;
rdfs:subClassOf datex:OperatorAction .
datex:NonOrderedLocationGroupByList
rdfs:label "non ordered location group by list"@en;
a owl:Class ;
rdfs:comment "A group of (i.e. more than one) physically separate locations which have no specific order and where each location is explicitly listed."@en ;
rdfs:subClassOf datex:NonOrderedLocations .
datex:NonOrderedLocationGroupByReference
rdfs:label "non ordered location group by reference"@en;
a owl:Class ;
rdfs:comment "A group of (i.e. more than one) physically separate locations which have no specific order that are defined by reference to a predefined non ordered location group."@en ;
rdfs:subClassOf datex:NonOrderedLocations .
datex:NonOrderedLocations
rdfs:label "non ordered locations"@en;
a owl:Class ;
rdfs:comment "Multiple (i.e. more than one) physically separate locations which have no specific order."@en ;
rdfs:subClassOf datex:GroupOfLocations .
datex:NonRoadEventInformation
rdfs:label "non road event information"@en;
a owl:Class ;
rdfs:comment "Information about an event which is not on the road, but which may influence the behaviour of drivers and hence the characteristics of the traffic flow."@en ;
rdfs:subClassOf datex:SituationRecord .
datex:NonWeatherRelatedRoadConditions
rdfs:label "non weather related road conditions"@en;
a owl:Class ;
rdfs:comment "Road surface conditions that are not related to the weather but which may affect driving conditions."@en ;
rdfs:subClassOf datex:RoadConditions .
datex:NumberOfAxlesCharacteristic
rdfs:label "number of axles characteristic"@en;
a owl:Class ;
rdfs:comment "Number of axles characteristic of a vehicle."@en ;
.
datex:Obstruction
rdfs:label "obstruction"@en;
a owl:Class ;
rdfs:comment "Any stationary or moving obstacle of a physical nature (e.g. obstacles or vehicles from an earlier accident, shed loads on carriageway, rock fall, abnormal or dangerous loads, or animals etc.) which could disrupt or endanger traffic."@en ;
rdfs:subClassOf datex:TrafficElement .
datex:OffsetDistance
rdfs:label "offset distance"@en;
a owl:Class ;
rdfs:comment "The non negative offset distance from the ALERT-C referenced point to the actual point."@en ;
.
datex:OpeningTimes
rdfs:label "opening times"@en;
a owl:Class ;
rdfs:comment "A specification of opening times (e.g. for a parking site, a service facility, an access or the availability for equipment)."@en ;
.
datex:OpenlrAreaLocationReference
rdfs:label "openLR area location reference"@en;
a owl:Class ;
rdfs:comment "a two-dimensional part of the surface of the earth which is bounded by a closed curve. An area location may cover parts of the road network but does not necessarily need to. It is represente according to the OpenLR standard for Area Locations"@en ;
.
datex:OpenlrBaseLocationReferencePoint
rdfs:label "openLR base location reference point"@en;
a owl:Class ;
rdfs:comment "Base class used to hold data about a reference point."@en ;
.
datex:OpenlrBasePointLocation
rdfs:label "openLR base point location"@en;
a owl:Class ;
rdfs:comment "Holds common data that are used both in OpenlrPointAccessPoint and OpenlrPointAlongLine."@en ;
.
datex:OpenlrCircleLocationReference
rdfs:label "openLR circle location reference"@en;
a owl:Class ;
rdfs:comment "the openLR method of areadefinition by providing a center position and a radius"@en ;
rdfs:subClassOf datex:OpenlrAreaLocationReference .
datex:OpenlrClosedLineLocationReference
rdfs:label "openLR closed line location reference"@en;
a owl:Class ;
rdfs:comment "the openLR method of areadefinition by providing a closed path (i.e. a circuit) in the road network. The boundary always consists of road segments"@en ;
rdfs:subClassOf datex:OpenlrAreaLocationReference .
datex:OpenlrExtendedArea
rdfs:label "openLR extended area"@en;
a owl:Class ;
rdfs:comment "Extension to provide Area information in openLR format"@en ;
.
datex:OpenlrExtendedLinear
rdfs:label "openLR extended linear"@en;
a owl:Class ;
rdfs:comment "Extension class for OpenLR Line location reference"@en ;
.
datex:OpenlrExtendedPoint
rdfs:label "openLR extended point"@en;
a owl:Class ;
rdfs:comment "Extension class for OpenLR point."@en ;
.
datex:OpenlrGeoCoordinate
rdfs:label "openLR geo coordinate"@en;
a owl:Class ;
rdfs:comment "A geo-coordinate pair is a position in a map defined by its longitude and latitude coordinate values."@en ;
.
datex:OpenlrGridAttributes
rdfs:label "openLR grid attributes"@en;
a owl:Class ;
rdfs:comment "attributes required for the grid method"@en ;
.
datex:OpenlrGridLocationReference
rdfs:label "openLR grid location reference"@en;
a owl:Class ;
rdfs:comment "the openLR method of areadefinition by providing repeating rectangles"@en ;
rdfs:subClassOf datex:OpenlrAreaLocationReference .
datex:OpenlrLastLocationReferencePoint
rdfs:label "openLR last location reference point"@en;
a owl:Class ;
rdfs:comment "The sequence of location reference points is terminated by a last location reference point."@en ;
rdfs:subClassOf datex:OpenlrBaseLocationReferencePoint .
datex:OpenlrLineAttributes
rdfs:label "openLR line attributes"@en;
a owl:Class ;
rdfs:comment "Line attributes are part of a location reference point and consists of functional road class (FRC),form of way (FOW) and bearing (BEAR) data."@en ;
.
datex:OpenlrLineLocationReference
rdfs:label "openLR line location reference"@en;
a owl:Class ;
rdfs:comment "A LineLocationReference is defined by an ordered sequence of location reference points and a terminating last location reference point."@en ;
.
datex:OpenlrLocationReferencePoint
rdfs:label "openLR location reference point"@en;
a owl:Class ;
rdfs:comment "The basis of a location reference is a sequence of location reference points (LRPs)."@en ;
rdfs:subClassOf datex:OpenlrBaseLocationReferencePoint .
datex:OpenlrOffsets
rdfs:label "openLR offsets"@en;
a owl:Class ;
rdfs:comment "Offsets are used to locate the start and end of a location more precisely than bounding to the nodes in a network."@en ;
.
datex:OpenlrPathAttributes
rdfs:label "openLR path attributes"@en;
a owl:Class ;
rdfs:comment "The field path attributes is part of a location reference point (except for the last location reference point) and consists of lowest functional road class (LFRCNP) and distance to next point (DNP) data."@en ;
.
datex:OpenlrPoiWithAccessPoint
rdfs:label "openLR poi with access point"@en;
a owl:Class ;
rdfs:comment "Point along line with access is a point location which is defined by a line,an offset value and a coordinate."@en ;
rdfs:subClassOf datex:OpenlrBasePointLocation .
datex:OpenlrPointAlongLine
rdfs:label "openLR point along line"@en;
a owl:Class ;
rdfs:comment "Point along a line"@en ;
rdfs:subClassOf datex:OpenlrBasePointLocation .
datex:OpenlrPointLocationReference
rdfs:label "openLR point location reference"@en;
a owl:Class ;
rdfs:comment "A point location is a zero-dimensional element in a map that specifies a geometric location."@en ;
.
datex:OpenlrPolygonCorners
rdfs:label "openLR polygon corners"@en;
a owl:Class ;
rdfs:comment "geo-coordinate pairs. The coordinate pairs defining the corners of the underlying geometrical polygon."@en ;
.
datex:OpenlrPolygonLocationReference
rdfs:label "openLR polygon location reference"@en;
a owl:Class ;
rdfs:comment "the openLR method of areadefinition by providing points that bound the area"@en ;
rdfs:subClassOf datex:OpenlrAreaLocationReference .
datex:OpenlrRectangle
rdfs:label "openLR rectangle"@en;
a owl:Class ;
rdfs:comment "two geo-coordinate pairs defining the rectangular"@en ;
.
datex:OpenlrRectangleLocationReference
rdfs:label "openLR rectangle location reference"@en;
a owl:Class ;
rdfs:comment "the openLR method of areadefinition by providing a rectangular shape defined by two geo-coordinate pairs"@en ;
rdfs:subClassOf datex:OpenlrAreaLocationReference .
datex:OperatorAction
rdfs:label "operator action"@en;
a owl:Class ;
rdfs:comment "Actions that a traffic operator can decide to implement to prevent or help correct dangerous or poor driving conditions, including maintenance of the road infrastructure."@en ;
rdfs:subClassOf datex:SituationRecord .
datex:ParkingRouteDetails
rdfs:label "parking route details"@en;
a owl:Class ;
rdfs:comment "Urban context: Defining parking routes leading to the parking site. Truck parking context: Can be used to define a dynamic route management."@en ;