-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstoptimes.ttl
More file actions
61 lines (51 loc) · 3.42 KB
/
stoptimes.ttl
File metadata and controls
61 lines (51 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 st: <http://semweb.mmlab.be/ns/stoptimes#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
<http://semweb.mmlab.be/ns/stoptimes> a foaf:Document ;
foaf:primaryTopic <http://semweb.mmlab.be/ns/stoptimes#Ontology> ;
dct:issued "2014-10-31"^^xsd:date ;
dct:modified "2015-09-04"^^xsd:date ;
dct:hasFormat <https://raw.githubusercontent.com/OpenTransport/StopTimes/master/stoptimes.ttl> ;
dct:license <http://creativecommons.org/licenses/by/3.0/> ;
dct:rights "Copyright 2014, 2015 - Open Transport contributors" .
<http://semweb.mmlab.be/ns/stoptimes#Ontology> a owl:Ontology ;
rdfs:label "The Stop Times ontology"@en ;
rdfs:comment "This ontology provides the predicates necessary to describe an arrival of a transit vehicle and its departure at a certain Stop."@en ;
vann:preferredNamespacePrefix "st" ;
vann:preferredNamespaceUri "http://semweb.mmlab.be/ns/stoptimes#" ;
dct:creator <http://pieter.pm/#me> .
<http://pieter.pm/#me> foaf:mbox "Pieter.Colpaert@UGent.be";
foaf:name "Pieter Colpaert" .
st:StopTime a rdfs:Class ;
rdfs:label "Stop Time"@en ;
rdfs:comment "A location and a time where a vehicle stops for the purpose of loading and/or unloading people or things"@en .
st:Arrival a rdfs:Class ;
rdfs:label "Arrival"@en ;
rdfs:comment "A location and a time where a vehicle stops for the purpose of unloading people or things"@en .
st:Departure a rdfs:Class ;
rdfs:label "Arrival"@en ;
rdfs:comment "A location and a departure time where a vehicle departs where people or things can be loaded"@en .
st:nextStopTime a rdf:Property ;
rdfs:label "Next Stop Time"@en ;
rdfs:comment "The next stop time on this vehicle's trajectory."@en ;
rdfs:range st:StopTime ;
rdfs:domain st:StopTime .
st:arrivalDelay a rdf:Property ;
rdfs:label "Arrival Delay"@en ;
rdfs:comment "The time in seconds in which the st:arrivalTime differs from the scheduled arrival time"@en ;
rdfs:range xsd:duration .
st:departureDelay a rdf:Property ;
rdfs:label "Departure Delay"@en ;
rdfs:comment "The time in seconds in which the st:departureTime differs from the scheduled departure time"@en ;
rdfs:range xsd:duration .
st:avgStopTimes a rdf:Property ;
rdfs:label "Average Stop Times"@en ;
rdfs:comment "The average st:StopTimes per day"@en ;
rdfs:range xsd:double .