-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathRoadworks.ttl
782 lines (683 loc) · 24.9 KB
/
Roadworks.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
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix olo: <http://purl.org/ontology/olo/core#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix datex: <http://vocab.datex.org/terms#> .
@prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix mv: <http://schema.mobivoc.org/#> .
#########################################################################
#SituationRecord
#- creationTime (xsd:dateTime)
#- versionTime (xsd:dateTime)
#- hasURL (url)
#- probabilityOfOccurence (xsd:string)
#- generalPublicComment (xsd:string)
#- speedLimit (xsd:integer)
#- subject (xsd:string)
#- internalRoadworkIdentifier (xsd:integer)
#- constructionType (xsd:string)
#- impactedRoad (xsd:string)
#- validity VALIDTIY
#- location LOCATION
mv:SituationRecord
a owl:Class ;
owl:equivalentClass datex:SituationRecord;
rdfs:comment "An identifiable instance of a single record/element within a situation."@en ;
rdfs:label "SituationRecord"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:recordCreationTime
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:dateTime ;
rdfs:comment "The creation time of a Situation Record."@en ;
rdfs:label "record creation time"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:recordVersionTime
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:dateTime ;
rdfs:comment "The version time of a Situation Record."@en ;
rdfs:label "record version time"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:recordUrl
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:anyURI ;
rdfs:comment "A website which describes the situation record."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "record URL"@en ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:probabilityOfOccurence
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:string ;
rdfs:comment "The probabily of occurence of a situation record."@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
rdfs:label "probability of occurence"@en ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:generalPublicComment
a owl:DatatypeProperty ;
owl:equivalentProperty datex:generalPublicComment ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:string ;
rdfs:comment "A general public comment about a situation record."@en ;
rdfs:label "general public comment"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:situationSpeedLimit
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:integer ;
rdfs:comment "The speedlimit of the road where the situation takes place."@en ;
rdfs:label "situation speed limit"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:situationSubject
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:integer ;
rdfs:comment "The speedlimit subject of a situation."@en ;
rdfs:label "situation subject"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:internalRoadworkIdentifier
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:string ;
rdfs:comment "The internal roadworks identifier of a situation."@en ;
rdfs:label "internal roadwork identifier"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:constructionType
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:string ;
rdfs:comment "The construction type of a situation."@en ;
rdfs:label "construction type"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:impactedRoad
a owl:DatatypeProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range xsd:string ;
rdfs:comment "The impacted road of a situation."@en ;
rdfs:label "impacted road"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:validity
a owl:ObjectProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range mv:Validity ;
rdfs:comment "The validity of a situation."@en ;
rdfs:label "validity"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:location
a owl:ObjectProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range mv:Location ;
rdfs:comment "The location description of a situation record."@en ;
rdfs:label "location"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:impact
a owl:ObjectProperty ;
rdfs:domain mv:SituationRecord ;
rdfs:range mv:Impact ;
rdfs:comment "The road impact description of a situation record."@en ;
rdfs:label "impact"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
#########################################################################
# Impact
#- status (xsd:string)
#- startTimeOverall (xsd:dateTime)
#- endTimeOverall (xsd:dateTime)
#- period Period (xsd:dateTime)
mv:Impact
a owl:Class ;
owl:equivalentClass datex:Impact ;
rdfs:comment "The impact of a situation record."@en ;
rdfs:label "Impact"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
mv:impactOnRoadLayout
a owl:DatatypeProperty ;
rdfs:domain mv:Impact ;
rdfs:range xsd:string ;
rdfs:comment "The impact on the road layout of a situation record."@en;
rdfs:label "impact on road layout"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
mv:trackCrossSection
a owl:DatatypeProperty ;
rdfs:domain mv:Impact ;
rdfs:range xsd:string ;
rdfs:comment "The track cross section definition of an impacted road in a situation record."@en;
rdfs:label "track cross section"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
mv:trafficConstrictitionType
a owl:DatatypeProperty ;
rdfs:domain mv:Impact ;
rdfs:range xsd:string ;
rdfs:comment "The traffic constriction type of an impacted road in a situation record."@en;
rdfs:label "traffic constrictition type"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
#########################################################################
#Validity
#- status (xsd:string)
#- startTimeOverall (xsd:dateTime)
#- endTimeOverall (xsd:dateTime)
#- period Period (xsd:dateTime)
mv:Validity
a owl:Class ;
owl:equivalentClass datex:Validity ;
rdfs:comment "The validity of a situation record."@en ;
rdfs:label "Validity"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:validityStatus
a owl:DatatypeProperty ;
rdfs:domain mv:Validity ;
rdfs:range xsd:string ;
rdfs:comment "The status of a validity."@en;
rdfs:label "validity status"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:startTimeOverall
a owl:DatatypeProperty ;
rdfs:domain mv:Validity ;
rdfs:range xsd:dateTime ;
rdfs:comment "The overall start time of a situation record validity."@en ;
rdfs:label "start time overall"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:endTimeOverall
a owl:DatatypeProperty ;
rdfs:domain mv:Validity ;
rdfs:range xsd:dateTime ;
rdfs:comment "The overall end time of a situation record validity."@en ;
rdfs:label "end time overall"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:validityPeriod
a owl:ObjectProperty ;
rdfs:domain mv:Validity ;
rdfs:range mv:Period ;
rdfs:comment "A period from when to when a situation record valid."@en ;
rdfs:label "validity period"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
#########################################################################
#Period
#- startOfPeriod (xsd:dateTime)
#- endOfPeriod (xsd:dateTime)
#- recurringWeekday <list> WeekDay (NP: tbc)
mv:Period
a owl:Class ;
owl:equivalentClass datex:Period ;
rdfs:comment "Describes the period from when to when a situation record valid."@en ;
rdfs:label "Period"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:startOfPeriod
a owl:DatatypeProperty ;
rdfs:domain mv:Period ;
rdfs:range xsd:dateTime ;
rdfs:comment "The start time of a period."@en ;
rdfs:label "start of period"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:endOfPeriod
a owl:DatatypeProperty ;
rdfs:domain mv:Period ;
rdfs:range xsd:dateTime ;
rdfs:comment "The end time of a period."@en ;
rdfs:label "end of period"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:recurringWeekday
a owl:DatatypeProperty ;
rdfs:domain mv:Period ;
rdfs:range xsd:string ;
rdfs:comment "The reccurring day of a week in which the period is valid."@en ;
rdfs:label "recurring week day"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
#########################################################################
#Location
#- linearExtension LINEAREXTENSION
#- alertCLocation ALERTCLOCATIOON
mv:Location
a owl:Class ;
owl:equivalentClass datex:Location ;
rdfs:comment "Describes the location of a situation record."@en ;
rdfs:label "Location"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:linearExtension
a owl:ObjectProperty ;
rdfs:domain mv:Location ;
rdfs:range mv:LinearExtension ;
rdfs:comment "The spatial description of a situation record."@en ;
rdfs:label "linear extension"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:alertCLocation
a owl:ObjectProperty ;
rdfs:domain mv:Location ;
rdfs:range mv:AlertCLocation ;
rdfs:comment "The ALertC location description of a situation record."@en ;
rdfs:label "alertCLocation"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:affectedCarriagewayAndLanes
a owl:DatatypeProperty ;
rdfs:domain mv:Location ;
rdfs:range xsd:string;
rdfs:comment "The affected carriage way and lanes a location."@en ;
rdfs:label "affected carriage way and lanes"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
mv:affectedRoadLength
a owl:DatatypeProperty ;
rdfs:domain mv:Location ;
rdfs:range xsd:string;
rdfs:comment "The affected road length of a location."@en ;
rdfs:label "affected road length"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
#########################################################################
#LinearExtension
#- roadName (xsd:string)
#- roadNumber (xsd:string)
#- startLatitude (wgs:lat)
#- startLongitude (wgs:long)
#- endLatitude (wgs:lat)
#- endLongitude (wgs:long)
#- list <intermediatePoints>
# NP: I am sceptical about this class, but kept it for now
mv:LinearExtension
a owl:Class ;
rdfs:comment "Describes the Linear extension of a situation record."@en ;
rdfs:label "Linear Extension"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:roadName
a owl:DatatypeProperty ;
rdfs:domain mv:LinearExtension ;
rdfs:range xsd:string;
rdfs:comment "The affected road of a location."@en ;
rdfs:label "road name"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:roadNumber
a owl:DatatypeProperty ;
rdfs:domain mv:LinearExtension ;
rdfs:range xsd:string;
rdfs:comment "The name number of an affected road of a location."@en ;
rdfs:label "road number"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:startlLatitude
a owl:DatatypeProperty ;
rdfs:domain mv:LinearExtension ;
rdfs:range wgs:lat;
rdfs:comment "The starting latitude of a situation record."@en ;
rdfs:label "start latitude"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:endLatitude
a owl:DatatypeProperty ;
rdfs:domain mv:LinearExtension ;
rdfs:range wgs:long;
rdfs:comment "The ending latitude of a situation record."@en ;
rdfs:label "end latitude"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:intermediatePointList
a owl:ObjectProperty ;
rdfs:domain mv:LinearExtension ;
rdfs:range olo:OrderedList;
rdfs:comment "An ordered list of intermediate geospatial points to where the situation record takes place."@en ;
rdfs:label "intermediate point list"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
#########################################################################
#AlertCLocation
#- cc (?) e.g. "D"
#- tableNumber (xsd:integer)
#- tableVersion (xsd:string)
#- direction (xsd:string)
#- PrimaryLocation PRIMARYLOCATION
#- secondaryLocation SECONDARYLOCATION
mv:AlertCLocation
a owl:Class ;
owl:equivalentClass datex:AlertCLocation ;
rdfs:comment "An AlertCLocation description of a situation record."@en ;
rdfs:label "AlertCLocation"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:countryCode
a owl:DatatypeProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range xsd:string;
rdfs:comment "The country code where the situation record takes place."@en ;
rdfs:label "country code"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:tableNumber
a owl:DatatypeProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range xsd:integer;
rdfs:comment "The table number of an AlertCLocation description."@en ;
rdfs:label "table number"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:tableVersion
a owl:DatatypeProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range xsd:string;
rdfs:comment "The table version of an AlertCLocation description."@en ;
rdfs:label "table version"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:direction
a owl:DatatypeProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range xsd:string;
rdfs:comment "The direction of an AlertCLocation description."@en ;
rdfs:label "direction"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:primaryLocation
a owl:ObjectProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range mv:PrimaryLocation ;
rdfs:comment "The primary location of an AlertCLocation description."@en ;
rdfs:label "primary Location"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:secondaryLocation
a owl:ObjectProperty ;
rdfs:domain mv:AlertCLocation ;
rdfs:range mv:SecondaryLocation ;
rdfs:comment "The secondary location of an AlertCLocation description."@en ;
rdfs:label "secondary Location"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
#########################################################################
#PrimaryLocation
#- locationName (xsd:string)
#- specificLocation (xsd:integer)
mv:PrimaryLocation
a owl:Class ;
owl:equivalentClass datex:AlertCMethod2PrimaryPointLocation ;
rdfs:comment "The primary location of an AlertC location describing roadworks."@en ;
rdfs:label "PrimaryLocation"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:locationName
a owl:DatatypeProperty ;
rdfs:domain [rdf:type owl:Class ;
owl:unionOf (
mv:PrimaryLocation
mv:SecondaryLocation
)] ;
rdfs:range xsd:string ;
rdfs:comment "The location name of a Primary or Secondary AlertCLocation description."@en ;
rdfs:label "location name"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:specificLocation
a owl:DatatypeProperty ;
rdfs:domain [rdf:type owl:Class ;
owl:unionOf (
mv:PrimaryLocation
mv:SecondaryLocation
)] ;
rdfs:range xsd:integer ;
rdfs:comment "The specific location of a Primary or Secondary AlertCLocation description."@en ;
rdfs:label "specific location"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.
mv:directionCode
a owl:DatatypeProperty ;
rdfs:domain [rdf:type owl:Class ;
owl:unionOf (
mv:PrimaryLocation
mv:SecondaryLocation
)] ;
rdfs:range xsd:string ;
rdfs:comment "The direction code of a Primary or Secondary AlertCLocation description."@en ;
rdfs:label "direction code"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2019-08-16"^^xsd:date ;
dct:modified "2019-08-16"^^xsd:date ;
.
#########################################################################
#SecondaryLocation
#- specificLocation (xsd:integer)
mv:SecondaryLocation
a owl:Class ;
owl:equivalentClass datex:AlertCMethod2SecondaryPointLocation ;
rdfs:comment "The secondary location of an AlertC location describing roadworks."@en ;
rdfs:label "SecondaryLocation"@en ;
rdfs:isDefinedBy <http://schema.mobivoc.org/#> ;
vs:term_status "testing" ;
dct:creator <http://np00.github.io/#i> ;
dct:conformsTo "https://datex2.eu/" ;
dct:created "2018-01-30"^^xsd:date ;
dct:modified "2018-01-30"^^xsd:date ;
.