From 3e2d482490ea1098f9d7fbf71e2a9dda1aed3520 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Wed, 30 Sep 2015 03:50:45 +0200 Subject: Add rail/dk/route/TIB11 and related stations. --- data/rail/dk.ttl | 3 +++ data/rail/dk/route/TIB11.ttl | 36 +++++++++++++++++++++++++++++ data/rail/dk/station/copenhagen-airport.ttl | 29 +++++++++++++++++++++++ data/rail/dk/station/copenhagen.ttl | 3 +++ "data/rail/dk/station/t\303\245rnby.ttl" | 26 +++++++++++++++++++++ "data/rail/dk/station/\303\270restad.ttl" | 26 +++++++++++++++++++++ 6 files changed, 123 insertions(+) create mode 100644 data/rail/dk/route/TIB11.ttl create mode 100644 data/rail/dk/station/copenhagen-airport.ttl create mode 100644 "data/rail/dk/station/t\303\245rnby.ttl" create mode 100644 "data/rail/dk/station/\303\270restad.ttl" diff --git a/data/rail/dk.ttl b/data/rail/dk.ttl index 55a73e9..dad808f 100644 --- a/data/rail/dk.ttl +++ b/data/rail/dk.ttl @@ -27,6 +27,7 @@ :station-brejning owl:sameAs . :station-børkop owl:sameAs . :station-copenhagen owl:sameAs . +:station-copenhagen-airport owl:sameAs . :station-ejby owl:sameAs . :station-fredericia owl:sameAs . :station-fruens-bøge owl:sameAs . @@ -72,12 +73,14 @@ :station-tommerup owl:sameAs . :station-trekroner owl:sameAs . :station-tølløse owl:sameAs . +:station-tårnby owl:sameAs . :station-valby owl:sameAs . :station-vejle owl:sameAs . :station-viby-jylland owl:sameAs . :station-viby-sjælland owl:sameAs . :station-vipperød owl:sameAs . :station-værslev owl:sameAs . +:station-ørestad owl:sameAs . :station-aarhus owl:sameAs . :station-årslev owl:sameAs . :station-aarup owl:sameAs . diff --git a/data/rail/dk/route/TIB11.ttl b/data/rail/dk/route/TIB11.ttl new file mode 100644 index 0000000..71f56b1 --- /dev/null +++ b/data/rail/dk/route/TIB11.ttl @@ -0,0 +1,36 @@ +@base . +@prefix : <#> . +@prefix dbpedia: . +@prefix owl: . +@prefix rail: . +@prefix rail-dk: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . + +<> a rail:Route ; + skos:prefLabel "København/Vigerslev–Peberholm" , + "Copenhagen/Vigerslev–Peberholm"@en ; + skos:altLabel "TIB11"@zxx ; + rail:managed_by rail-dk:org-banedanmark ; + rdfs:seeAlso ; + rail:route_origin dbpedia:Copenhagen_Central_Station ; + rail:stations :stations . + +:stations a rdf:List ; + skos:prefLabel "Stations"@en , + "Stationer"@da ; + rdfs:member + rail-dk:station-copenhagen , + rail-dk:station-orestad , + rail-dk:station-tårnby , + rail-dk:station-copenhagen-airport ; + rdf:first rail-dk:station-copenhagen ; + rdf:rest [ a rdf:List ; + rdf:first rail-dk:station-ørestad ; + rdf:rest [ a rdf:List ; + rdf:first rail-dk:station-tårnby ; + rdf:rest [ a rdf:List ; + rdf:first rail-dk:station-copenhagen-airport ; + rdf:rest + ]]] . diff --git a/data/rail/dk/station/copenhagen-airport.ttl b/data/rail/dk/station/copenhagen-airport.ttl new file mode 100644 index 0000000..95674ba --- /dev/null +++ b/data/rail/dk/station/copenhagen-airport.ttl @@ -0,0 +1,29 @@ +@base . +@prefix : <#> . +@prefix dbpedia: . +@prefix foaf: . +@prefix org: . +@prefix owl: . +@prefix rail: . +@prefix rail-dk-route: . +@prefix skos: . +@prefix unit: . + +#TODO: use more specific key than skos:altName for station identifiers + +<> foaf:primaryTopic :station . + +:station a rail:Station ; + skos:prefLabel + "Københavns Lufthavn, Kastrup Station" , + "Copenhagen Airport, Kastrup Station"@en ; + skos:altLabel + "Københavns Lufthavn Kastrup" , + "Kastrup Lufthavn Station" , + "Cph" ; + rail:serves dbpedia:Copenhagen_Airport ; + rail:located_at [ a rail:StationPosition ; + rail:distance [ unit:m 11800 ] ; + rail:along_route rail-dk-route:TIB11 + ] ; + owl:sameAs dbpedia:Copenhagen_Airport,_Kastrup_Station . diff --git a/data/rail/dk/station/copenhagen.ttl b/data/rail/dk/station/copenhagen.ttl index 5f38c60..6379912 100644 --- a/data/rail/dk/station/copenhagen.ttl +++ b/data/rail/dk/station/copenhagen.ttl @@ -22,5 +22,8 @@ rail:located_at [ a rail:StationPosition ; rail:distance [ unit:m 0 ] ; rail:along_route rail-dk-route:TIB1 + ], [ a rail:StationPosition ; + rail:distance [ unit:m 0 ] ; + rail:along_route rail-dk-route:TIB11 ] ; owl:sameAs dbpedia:Copenhagen_Central_Station . diff --git "a/data/rail/dk/station/t\303\245rnby.ttl" "b/data/rail/dk/station/t\303\245rnby.ttl" new file mode 100644 index 0000000..a451299 --- /dev/null +++ "b/data/rail/dk/station/t\303\245rnby.ttl" @@ -0,0 +1,26 @@ +@base . +@prefix : <#> . +@prefix dbpedia: . +@prefix foaf: . +@prefix org: . +@prefix owl: . +@prefix rail: . +@prefix rail-dk-route: . +@prefix skos: . +@prefix unit: . + +#TODO: use more specific key than skos:altName for station identifiers + +<> foaf:primaryTopic :station . + +:station a rail:Station ; + skos:prefLabel "Tårnby Station" ; + skos:altLabel + "Tårnby" , + "Øre" ; + rail:serves dbpedia:Tårnby ; + rail:located_at [ a rail:StationPosition ; + rail:distance [ unit:m 6900 ] ; + rail:along_route rail-dk-route:TIB11 + ] ; + owl:sameAs dbpedia:Tårnby_Station . diff --git "a/data/rail/dk/station/\303\270restad.ttl" "b/data/rail/dk/station/\303\270restad.ttl" new file mode 100644 index 0000000..683a6b9 --- /dev/null +++ "b/data/rail/dk/station/\303\270restad.ttl" @@ -0,0 +1,26 @@ +@base . +@prefix : <#> . +@prefix dbpedia: . +@prefix foaf: . +@prefix org: . +@prefix owl: . +@prefix rail: . +@prefix rail-dk-route: . +@prefix skos: . +@prefix unit: . + +#TODO: use more specific key than skos:altName for station identifiers + +<> foaf:primaryTopic :station . + +:station a rail:Station ; + skos:prefLabel "Ørestad Station" ; + skos:altLabel + "Ørestad" , + "Øre" ; + rail:serves dbpedia:Ørestad ; + rail:located_at [ a rail:StationPosition ; + rail:distance [ unit:m 6900 ] ; + rail:along_route rail-dk-route:TIB11 + ] ; + owl:sameAs dbpedia:Ørestad_Station . -- cgit v1.2.3