Skip to content

Instantly share code, notes, and snippets.

@nl-hugo
Last active January 12, 2018 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nl-hugo/4c5451073af7886e634cccc3e76198e6 to your computer and use it in GitHub Desktop.
Save nl-hugo/4c5451073af7886e634cccc3e76198e6 to your computer and use it in GitHub Desktop.
Transformations with voronoi
height: 450
license: MIT
border: no
node_modules
npm-debug.log

Transforming geo-locations with voronoi. Inspired by this project.

function makeChart() {
console.log("chart");
var t = d3.transition().duration(2000),
r = 5,
s = 25;
// fade out the map
d3.selectAll(".borders").transition(t)
.style("opacity", 0);
// voronoi
var voronoi = d3.voronoi()
.x((d,i) => margin.left + i * s)
.y(10)
.extent([[margin.left - s/2, 0],[margin.left + megastations.length * s - s/2, height - margin.top - margin.bottom]])(megastations);
var polygon = svg.selectAll(".polygons").selectAll("path")
.data(voronoi.polygons());
polygon.exit().remove();
polygon.enter()
.append("path")
.on("mouseover", d => {
console.log(d.data.code);
d3.selectAll(".station").classed("dimmed", true);
d3.selectAll(".station-" + d.data.code).classed("dimmed", false).classed("highlighted", true);
})
.on("mouseout", () => d3.selectAll(".station").classed("dimmed highlighted", false))
.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
polygon.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
// stations
var station = svg.selectAll(".stations").selectAll(".station")
.data(megastations);
station.exit().remove();
station.enter()
.append("circle")
.attr("class", d => "station station-" + d.code + " " + d.stationtype)
.attr("cx", (d,i) => margin.left + i * s)
.attr("cy", 10)
.attr("r", r);
station.transition(t)
.attr("cx", (d,i) => margin.left + i * s)
.attr("cy", 10);
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<style>
body {
font-size: 10px;
font-family: "Montserrat", sans-serif;
font-weight: 400;
fill: #aaa;
}
.borders {
fill:none;
stroke: #777;
stroke-width: .5px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
opacity: 0;
}
.polygons {
fill: none;
stroke: #c5b0d5;
pointer-events: all;
}
circle.station {
fill: #9467bd;
}
circle.station.dimmed {
fill-opacity: 0.25;
}
</style>
<body>
<svg width="400" height="450"></svg>
<a href="#" id="link_0">vertical</a> |
<a href="#" id="link_1">horizontal</a> |
<a href="#" id="link_2">map</a>
</body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script src="main.js"></script>
<script src="chart.js"></script>
<script src="slope.js"></script>
<script src="map.js"></script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
margin = {top: 20, right: 30, bottom: 20, left: 30},
legend = {width: 200, height: 12, top: 32, left: 20},
current = 0,
megastations;
var projection = d3.geoMercator()
.center([5.4, 52.088]) // Utrecht
.translate([(width - margin.left - margin.right) / 2, height / 2])
.scale(width * 12);
var path = d3.geoPath()
.projection(projection);
svg.append("g")
.attr("class", "g-map")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.queue()
.defer(d3.json, "gemeente.json")
.defer(d3.json, "stations.json")
.defer(d3.csv, "timetable.csv")
.await(ready);
function ready(error, map, stations, departures) {
if (error) return console.error(error);
svg.selectAll(".g-map").append("path")
.datum(topojson.mesh(map, map.objects.area, (a,b) => a === b))
.attr("class", "borders")
.attr("d", path);
megastations = stations.filter(d => d.stationtype === "megastation");
var num_departures = d3.nest()
.key(d => d.station)
.rollup(v => v.length)
.map(departures.filter(d => megastations.map(d => d.code).indexOf(d.station) >= 0));
svg.selectAll(".g-map").append("g")
.attr("class", "stations");
svg.selectAll(".g-map").append("g")
.attr("class", "polygons");
draw();
}
/*
* what chart to draw?
*/
function draw() {
switch(current) {
case 0:
makeChart();
break;
case 1:
makeSlope();
break;
case 2:
makeMap();
break;
default:
console.log("unknown");
}
}
/*
* activate links
*/
d3.select("#link_0")
.on("click", function(e){
current = 0;
draw();
});
d3.select("#link_1")
.on("click", function(e){
current = 1;
draw();
});
d3.select("#link_2")
.on("click", function(e){
current = 2;
draw();
});
function makeMap() {
console.log("map");
var t = d3.transition().duration(2000),
r = 5;
// fade in the map
d3.selectAll(".borders").transition(t)
.style("opacity", 1);
// voronoi
var voronoi = d3.voronoi()
.x(d => projection([d.lon, d.lat])[0])
.y(d => projection([d.lon, d.lat])[1])
.size([width - margin.left - margin.right, height - margin.top - margin.bottom])(megastations);
var polygon = svg.selectAll(".polygons").selectAll("path")
.data(voronoi.polygons());
polygon.exit().remove();
polygon.enter()
.append("path")
.on("mouseover", d => {
console.log(d.data.code);
d3.selectAll(".station").classed("dimmed", true);
d3.selectAll(".station-" + d.data.code).classed("dimmed", false).classed("highlighted", true);
})
.on("mouseout", () => d3.selectAll(".station").classed("dimmed highlighted", false))
.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
polygon.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
// stations
var station = svg.selectAll(".stations").selectAll(".station")
.data(megastations);
station.exit().remove();
station.enter()
.append("circle")
.attr("class", d => "station station-" + d.code + " " + d.stationtype)
.attr("cx", d => projection([d.lon, d.lat])[0])
.attr("cy", d => projection([d.lon, d.lat])[1])
.attr("r", r);
station.transition(t)
.attr("cx", d => projection([d.lon, d.lat])[0])
.attr("cy", d => projection([d.lon, d.lat])[1]);
}
function makeSlope() {
console.log("slope");
var t = d3.transition().duration(2000),
r = 5,
s = 25;
// fade out the map
d3.selectAll(".borders").transition(t)
.style("opacity", 0);
// voronoi
var voronoi = d3.voronoi()
.x(10)
.y((d,i) => margin.top + i * s)
.extent([[0, margin.top - s/2],[width - margin.left - margin.right, margin.top + megastations.length * s - s/2]])(megastations);
var polygon = svg.selectAll(".polygons").selectAll("path")
.data(voronoi.polygons());
polygon.exit().remove();
polygon.enter()
.append("path")
.on("mouseover", d => {
console.log(d.data.code);
d3.selectAll(".station").classed("dimmed", true);
d3.selectAll(".station-" + d.data.code).classed("dimmed", false).classed("highlighted", true);
})
.on("mouseout", () => d3.selectAll(".station").classed("dimmed highlighted", false))
.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
polygon.transition(t)
.attr("d", d => d ? "M" + d.join("L") + "Z" : null);
// stations
var station = svg.selectAll(".stations").selectAll(".station")
.data(megastations);
station.exit().remove();
station.enter()
.append("circle")
.attr("class", d => "station station-" + d.code + " " + d.stationtype)
.attr("cx", 10)
.attr("cy", (d,i) => margin.top + i * s)
.attr("r", r);
station.transition(t)
.attr("cx", 10)
.attr("cy", (d,i) => margin.top + i * s);
}
[
{
"code": "HT",
"country": "NL",
"key": "HT",
"lat": "51.69048",
"lon": "5.29362",
"names": {
"long": "'s-Hertogenbosch",
"middle": "'s-Hertogenbosch",
"short": "Den Bosch"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [
"Hertogenbosch ('s)",
"Den Bosch"
],
"uic_code": "8400319"
},
{
"code": "HTO",
"country": "NL",
"key": "HTO",
"lat": "51.700553894043",
"lon": "5.3183331489563",
"names": {
"long": "'s-Hertogenbosch Oost",
"middle": "Hertogenb. Oost",
"short": "Dn Bosch O"
},
"stationtype": "stoptreinstation",
"synonyms": [
"Hertogenbosch Oost ('s)",
"Den Bosch Oost"
],
"uic_code": "8400320"
},
{
"code": "HDE",
"country": "NL",
"key": "HDE",
"lat": "52.4091682",
"lon": "5.893611",
"names": {
"long": "'t Harde",
"middle": "'t Harde",
"short": "'t Harde"
},
"stationtype": "stoptreinstation",
"synonyms": [
"Harde ('t)"
],
"uic_code": "8400388"
},
{
"code": "ATN",
"country": "NL",
"key": "ATN",
"lat": "51.9213265245505",
"lon": "6.57862722873687",
"names": {
"long": "Aalten",
"middle": "Aalten",
"short": "Aalten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400045"
},
{
"code": "AC",
"country": "NL",
"key": "AC",
"lat": "52.2785",
"lon": "4.977",
"names": {
"long": "Abcoude",
"middle": "Abcoude",
"short": "Abcoude"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400047"
},
{
"code": "AKM",
"country": "NL",
"key": "AKM",
"lat": "53.0463905334473",
"lon": "5.84361124038696",
"names": {
"long": "Akkrum",
"middle": "Akkrum",
"short": "Akkrum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400049"
},
{
"code": "AMR",
"country": "NL",
"key": "AMR",
"lat": "52.6377792358398",
"lon": "4.73972225189209",
"names": {
"long": "Alkmaar",
"middle": "Alkmaar",
"short": "Alkmaar"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400050"
},
{
"code": "AMRN",
"country": "NL",
"key": "AMRN",
"lat": "52.6438903808594",
"lon": "4.76416683197022",
"names": {
"long": "Alkmaar Noord",
"middle": "Alkmaar Noord",
"short": "Alkmaar N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400052"
},
{
"code": "AML",
"country": "NL",
"key": "AML",
"lat": "52.3580551147461",
"lon": "6.65388870239258",
"names": {
"long": "Almelo",
"middle": "Almelo",
"short": "Almelo"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400051"
},
{
"code": "AMRI",
"country": "NL",
"key": "AMRI",
"lat": "52.3419456481934",
"lon": "6.66666650772095",
"names": {
"long": "Almelo de Riet",
"middle": "Almelo de Riet",
"short": "de Riet"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400520"
},
{
"code": "ALMB",
"country": "NL",
"key": "ALMB",
"lat": "52.3941650390625",
"lon": "5.2780556678772",
"names": {
"long": "Almere Buiten",
"middle": "Almere Buiten",
"short": "Buiten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400081"
},
{
"code": "ALM",
"country": "NL",
"key": "ALM",
"lat": "52.37503",
"lon": "5.21764",
"names": {
"long": "Almere Centrum",
"middle": "Almere C.",
"short": "Almere C"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [
"Almere"
],
"uic_code": "8400080"
},
{
"code": "ALMM",
"country": "NL",
"key": "ALMM",
"lat": "52.3675003051758",
"lon": "5.19027757644653",
"names": {
"long": "Almere Muziekwijk",
"middle": "Muziekwijk",
"short": "Muziekwijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400082"
},
{
"code": "ALMO",
"country": "NL",
"key": "ALMO",
"lat": "52.4033317565918",
"lon": "5.30055570602417",
"names": {
"long": "Almere Oostvaarders",
"middle": "Oostvaarders",
"short": "Oostvaard"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400226"
},
{
"code": "ALMP",
"country": "NL",
"key": "ALMP",
"lat": "52.3766670227051",
"lon": "5.24472236633301",
"names": {
"long": "Almere Parkwijk",
"middle": "Almere Parkwijk",
"short": "Parkwijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400104"
},
{
"code": "AMPO",
"country": "NL",
"key": "AMPO",
"lat": "52.342778",
"lon": "5.151944",
"names": {
"long": "Almere Poort",
"middle": "Almere Poort",
"short": "Almere Prt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400450"
},
{
"code": "APN",
"country": "NL",
"key": "APN",
"lat": "52.1244430541992",
"lon": "4.65777778625488",
"names": {
"long": "Alphen a/d Rijn",
"middle": "Alphen a/d Rijn",
"short": "Alphen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [
"Alphen aan den Rijn"
],
"uic_code": "8400053"
},
{
"code": "AMF",
"country": "NL",
"key": "AMF",
"lat": "52.1538887023926",
"lon": "5.37055540084839",
"names": {
"long": "Amersfoort",
"middle": "Amersfoort",
"short": "Amersfoort"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400055"
},
{
"code": "AMFS",
"country": "NL",
"key": "AMFS",
"lat": "52.1748221374512",
"lon": "5.40388870239258",
"names": {
"long": "Amersfoort Schothorst",
"middle": "Schothorst",
"short": "Schothorst"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400054"
},
{
"code": "AVAT",
"country": "NL",
"key": "AVAT",
"lat": "52.1927795410156",
"lon": "5.43388891220093",
"names": {
"long": "Amersfoort Vathorst",
"middle": "Vathorst",
"short": "Vathorst"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400228"
},
{
"code": "ASA",
"country": "NL",
"key": "ASA",
"lat": "52.3466682434082",
"lon": "4.91777801513672",
"names": {
"long": "Amsterdam Amstel",
"middle": "Amsterdam Amstel",
"short": "Amstel"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400057"
},
{
"code": "ASB",
"country": "NL",
"key": "ASB",
"lat": "52.3122215270996",
"lon": "4.94694423675537",
"names": {
"long": "Amsterdam Bijlmer ArenA",
"middle": "Bijlmer ArenA",
"short": "Bijlmer A"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400074"
},
{
"code": "ASD",
"country": "NL",
"key": "ASD",
"lat": "52.3788871765137",
"lon": "4.90027761459351",
"names": {
"long": "Amsterdam Centraal",
"middle": "Amsterdam CS",
"short": "Amsterdam"
},
"stationtype": "megastation",
"synonyms": [
"Amsterdam"
],
"uic_code": "8400058"
},
{
"code": "ASHD",
"country": "NL",
"key": "ASHD",
"lat": "52.29844",
"lon": "4.95972",
"names": {
"long": "Amsterdam Holendrecht",
"middle": "Holendrecht",
"short": "Holendrcht"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400231"
},
{
"code": "ASDL",
"country": "NL",
"key": "ASDL",
"lat": "52.3577766418457",
"lon": "4.83388900756836",
"names": {
"long": "Amsterdam Lelylaan",
"middle": "Lelylaan",
"short": "Lelylaan"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400079"
},
{
"code": "ASDM",
"country": "NL",
"key": "ASDM",
"lat": "52.3605537414551",
"lon": "4.93111133575439",
"names": {
"long": "Amsterdam Muiderpoort",
"middle": "Muiderpoort",
"short": "Muiderprt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400060"
},
{
"code": "RAI",
"country": "NL",
"key": "RAI",
"lat": "52.3372230529785",
"lon": "4.89027786254883",
"names": {
"long": "Amsterdam RAI",
"middle": "Amsterdam RAI",
"short": "RAI"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400056"
},
{
"code": "ASSP",
"country": "NL",
"key": "ASSP",
"lat": "52.35526",
"lon": "4.94651",
"names": {
"long": "Amsterdam Science Park",
"middle": "Science Park",
"short": "Scienceprk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400235"
},
{
"code": "ASS",
"country": "NL",
"key": "ASS",
"lat": "52.3888893127441",
"lon": "4.83777761459351",
"names": {
"long": "Amsterdam Sloterdijk",
"middle": "Sloterdijk",
"short": "Sloterdijk"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400059"
},
{
"code": "VMW",
"country": "NL",
"key": "VMW",
"lat": "52.330134",
"lon": "4.92975",
"names": {
"long": "Amsterdam Van der Madeweg",
"middle": "Van der Madeweg",
"short": "vd Madeweg"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400078"
},
{
"code": "ASDZ",
"country": "NL",
"key": "ASDZ",
"lat": "52.3388900756836",
"lon": "4.871666431427",
"names": {
"long": "Amsterdam Zuid",
"middle": "Amsterdam Zuid",
"short": "Amsterdm Z"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400061"
},
{
"code": "ANA",
"country": "NL",
"key": "ANA",
"lat": "52.8672218322754",
"lon": "4.81111097335815",
"names": {
"long": "Anna Paulowna",
"middle": "Anna Paulowna",
"short": "Anna Paulo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400065"
},
{
"code": "APD",
"country": "NL",
"key": "APD",
"lat": "52.2091674804687",
"lon": "5.97027778625488",
"names": {
"long": "Apeldoorn",
"middle": "Apeldoorn",
"short": "Apeldoorn"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400066"
},
{
"code": "APDM",
"country": "NL",
"key": "APDM",
"lat": "52.2052764892578",
"lon": "6.00055551528931",
"names": {
"long": "Apeldoorn De Maten",
"middle": "De Maten",
"short": "De Maten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400233"
},
{
"code": "APDO",
"country": "NL",
"key": "APDO",
"lat": "52.2152786254883",
"lon": "6.00444459915161",
"names": {
"long": "Apeldoorn Osseveld",
"middle": "Osseveld",
"short": "Osseveld"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400229"
},
{
"code": "APG",
"country": "NL",
"key": "APG",
"lat": "53.3258135",
"lon": "6.8619577",
"names": {
"long": "Appingedam",
"middle": "Appingedam",
"short": "Appingedam"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400067"
},
{
"code": "AKL",
"country": "NL",
"key": "AKL",
"lat": "51.8719444274902",
"lon": "4.99277782440186",
"names": {
"long": "Arkel",
"middle": "Arkel",
"short": "Arkel"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400068"
},
{
"code": "ARN",
"country": "NL",
"key": "ARN",
"lat": "51.5016670227051",
"lon": "3.66916656494141",
"names": {
"long": "Arnemuiden",
"middle": "Arnemuiden",
"short": "Arnemuiden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400069"
},
{
"code": "AH",
"country": "NL",
"key": "AH",
"lat": "51.9850006103516",
"lon": "5.89916658401489",
"names": {
"long": "Arnhem Centraal",
"middle": "Arnhem C.",
"short": "Arnhem C"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [
"Arnhem"
],
"uic_code": "8400071"
},
{
"code": "AHPR",
"country": "NL",
"key": "AHPR",
"lat": "51.9880561828613",
"lon": "5.94388866424561",
"names": {
"long": "Arnhem Presikhaaf",
"middle": "Presikhaaf",
"short": "Presikhaaf"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400075"
},
{
"code": "AHP",
"country": "NL",
"key": "AHP",
"lat": "51.985279083252",
"lon": "5.91944456100464",
"names": {
"long": "Arnhem Velperpoort",
"middle": "Velperpoort",
"short": "Velperprt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400072"
},
{
"code": "AHZ",
"country": "NL",
"key": "AHZ",
"lat": "51.9550018310547",
"lon": "5.85194444656372",
"names": {
"long": "Arnhem Zuid",
"middle": "Arnhem Zuid",
"short": "Arnhem Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400227"
},
{
"code": "ASN",
"country": "NL",
"key": "ASN",
"lat": "52.9916648864746",
"lon": "6.57083320617676",
"names": {
"long": "Assen",
"middle": "Assen",
"short": "Assen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400073"
},
{
"code": "BRN",
"country": "NL",
"key": "BRN",
"lat": "52.2083320617676",
"lon": "5.28083324432373",
"names": {
"long": "Baarn",
"middle": "Baarn",
"short": "Baarn"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400086"
},
{
"code": "NSCH",
"country": "NL",
"key": "NSCH",
"lat": "53.1844",
"lon": "7.19937",
"names": {
"long": "Bad Nieuweschans",
"middle": "Bad Nieuweschans",
"short": "Nweschans"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [
"Nieuweschans"
],
"uic_code": "8400457"
},
{
"code": "BF",
"country": "NL",
"key": "BF",
"lat": "53.3608969",
"lon": "6.5185581",
"names": {
"long": "Baflo",
"middle": "Baflo",
"short": "Baflo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400089"
},
{
"code": "BRD",
"country": "NL",
"key": "BRD",
"lat": "51.8547210693359",
"lon": "4.5533332824707",
"names": {
"long": "Barendrecht",
"middle": "Barendrecht",
"short": "Barendrcht"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400090"
},
{
"code": "BNC",
"country": "NL",
"key": "BNC",
"lat": "52.1399993896484",
"lon": "5.59027767181396",
"names": {
"long": "Barneveld Centrum",
"middle": "Barneveld C.",
"short": "Barnevld C"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400091"
},
{
"code": "BNN",
"country": "NL",
"key": "BNN",
"lat": "52.1613883972168",
"lon": "5.59805536270142",
"names": {
"long": "Barneveld Noord",
"middle": "Barneveld Noord",
"short": "Barnevld N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400092"
},
{
"code": "BNZ",
"country": "NL",
"key": "BNZ",
"lat": "52.128853",
"lon": "5.60246",
"names": {
"long": "Barneveld Zuid",
"middle": "Barneveld Zuid",
"short": "Barnevld Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400115"
},
{
"code": "BDM",
"country": "NL",
"key": "BDM",
"lat": "53.3068857",
"lon": "6.593054",
"names": {
"long": "Bedum",
"middle": "Bedum",
"short": "Bedum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400094"
},
{
"code": "BK",
"country": "NL",
"key": "BK",
"lat": "50.9474983215332",
"lon": "5.78666687011719",
"names": {
"long": "Beek-Elsloo",
"middle": "Beek-Elsloo",
"short": "Beek-E"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400096"
},
{
"code": "BSD",
"country": "NL",
"key": "BSD",
"lat": "51.8994445800781",
"lon": "5.19444465637207",
"names": {
"long": "Beesd",
"middle": "Beesd",
"short": "Beesd"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400097"
},
{
"code": "BL",
"country": "NL",
"key": "BL",
"lat": "52.8547210693359",
"lon": "6.52111101150513",
"names": {
"long": "Beilen",
"middle": "Beilen",
"short": "Beilen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400100"
},
{
"code": "BGN",
"country": "NL",
"key": "BGN",
"lat": "51.4938888549805",
"lon": "4.29611110687256",
"names": {
"long": "Bergen op Zoom",
"middle": "Bergen op Zoom",
"short": "Bergen opZ"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400108"
},
{
"code": "BET",
"country": "NL",
"key": "BET",
"lat": "51.5099983215332",
"lon": "5.38916683197022",
"names": {
"long": "Best",
"middle": "Best",
"short": "Best"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400112"
},
{
"code": "BV",
"country": "NL",
"key": "BV",
"lat": "52.4783325195313",
"lon": "4.65666675567627",
"names": {
"long": "Beverwijk",
"middle": "Beverwijk",
"short": "Beverwijk"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400113"
},
{
"code": "BHV",
"country": "NL",
"key": "BHV",
"lat": "52.1300010681152",
"lon": "5.20388889312744",
"names": {
"long": "Bilthoven",
"middle": "Bilthoven",
"short": "Bilthoven"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400114"
},
{
"code": "BR",
"country": "NL",
"key": "BR",
"lat": "51.372501373291",
"lon": "6.15500020980835",
"names": {
"long": "Blerick",
"middle": "Blerick",
"short": "Blerick"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400117"
},
{
"code": "BLL",
"country": "NL",
"key": "BLL",
"lat": "52.404167175293",
"lon": "4.62750005722046",
"names": {
"long": "Bloemendaal",
"middle": "Bloemendaal",
"short": "Bloemendl"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400118"
},
{
"code": "BDG",
"country": "NL",
"key": "BDG",
"lat": "52.0813903808594",
"lon": "4.7461109161377",
"names": {
"long": "Bodegraven",
"middle": "Bodegraven",
"short": "Bodegraven"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400121"
},
{
"code": "BN",
"country": "NL",
"key": "BN",
"lat": "52.2988891601562",
"lon": "6.74805545806885",
"names": {
"long": "Borne",
"middle": "Borne",
"short": "Borne"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400124"
},
{
"code": "BSK",
"country": "NL",
"key": "BSK",
"lat": "52.0777778625488",
"lon": "4.64694452285767",
"names": {
"long": "Boskoop",
"middle": "Boskoop",
"short": "Boskoop"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400125"
},
{
"code": "BHDV",
"country": "NL",
"key": "BHDV",
"lat": "51.832222",
"lon": "4.878056",
"names": {
"long": "Boven-Hardinxveld",
"middle": "Boven-Hardinxv.",
"short": "Boven-Har"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400236"
},
{
"code": "BKF",
"country": "NL",
"key": "BKF",
"lat": "52.6961097717285",
"lon": "5.25277757644653",
"names": {
"long": "Bovenkarspel Flora",
"middle": "Bovenkarspel Fl.",
"short": "Bovenk Flo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400230"
},
{
"code": "BKG",
"country": "NL",
"key": "BKG",
"lat": "52.6949996948242",
"lon": "5.23777770996094",
"names": {
"long": "Bovenkarspel-Grootebroek",
"middle": "Bovenkarspel-Gr.",
"short": "Bovenk-Gr"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400127"
},
{
"code": "BMR",
"country": "NL",
"key": "BMR",
"lat": "51.6445217676531",
"lon": "5.93903303146362",
"names": {
"long": "Boxmeer",
"middle": "Boxmeer",
"short": "Boxmeer"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400128"
},
{
"code": "BTL",
"country": "NL",
"key": "BTL",
"lat": "51.58433",
"lon": "5.31912",
"names": {
"long": "Boxtel",
"middle": "Boxtel",
"short": "Boxtel"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400129"
},
{
"code": "BD",
"country": "NL",
"key": "BD",
"lat": "51.5955543518066",
"lon": "4.78000020980835",
"names": {
"long": "Breda",
"middle": "Breda",
"short": "Breda"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400131"
},
{
"code": "BDPB",
"country": "NL",
"key": "BDPB",
"lat": "51.606388092041",
"lon": "4.72083330154419",
"names": {
"long": "Breda-Prinsenbeek",
"middle": "Prinsenbeek",
"short": "Prinsenbk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400132"
},
{
"code": "BKL",
"country": "NL",
"key": "BKL",
"lat": "52.17149",
"lon": "4.9906",
"names": {
"long": "Breukelen",
"middle": "Breukelen",
"short": "Breukelen"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400133"
},
{
"code": "BMN",
"country": "NL",
"key": "BMN",
"lat": "52.0911102294922",
"lon": "6.14694452285767",
"names": {
"long": "Brummen",
"middle": "Brummen",
"short": "Brummen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400136"
},
{
"code": "BP",
"country": "NL",
"key": "BP",
"lat": "53.2564547",
"lon": "6.1446496",
"names": {
"long": "Buitenpost",
"middle": "Buitenpost",
"short": "Buitenpost"
},
"stationtype": "knooppuntSneltreinstation",
"synonyms": [],
"uic_code": "8400139"
},
{
"code": "BDE",
"country": "NL",
"key": "BDE",
"lat": "50.8969459533691",
"lon": "5.73666667938232",
"names": {
"long": "Bunde",
"middle": "Bunde",
"short": "Bunde"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400140"
},
{
"code": "BNK",
"country": "NL",
"key": "BNK",
"lat": "52.0630569458008",
"lon": "5.19444465637207",
"names": {
"long": "Bunnik",
"middle": "Bunnik",
"short": "Bunnik"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400141"
},
{
"code": "BSMZ",
"country": "NL",
"key": "BSMZ",
"lat": "52.2658348083496",
"lon": "5.16305541992188",
"names": {
"long": "Bussum Zuid",
"middle": "Bussum Zuid",
"short": "Bussum Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400145"
},
{
"code": "CPS",
"country": "NL",
"key": "CPS",
"lat": "51.9541664123535",
"lon": "4.58416652679443",
"names": {
"long": "Capelle Schollevaar",
"middle": "Schollevaar",
"short": "Schollevr"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400147"
},
{
"code": "CAS",
"country": "NL",
"key": "CAS",
"lat": "52.5458335876465",
"lon": "4.65861129760742",
"names": {
"long": "Castricum",
"middle": "Castricum",
"short": "Castricum"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400151"
},
{
"code": "CVM",
"country": "NL",
"key": "CVM",
"lat": "50.8761100769043",
"lon": "6.05972242355347",
"names": {
"long": "Chevremont",
"middle": "Chevremont",
"short": "Chevremont"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400152"
},
{
"code": "CO",
"country": "NL",
"key": "CO",
"lat": "52.6636123657227",
"lon": "6.73555564880371",
"names": {
"long": "Coevorden",
"middle": "Coevorden",
"short": "Coevorden"
},
"stationtype": "knooppuntSneltreinstation",
"synonyms": [],
"uic_code": "8400153"
},
{
"code": "CK",
"country": "NL",
"key": "CK",
"lat": "51.7266825879048",
"lon": "5.87429523468017",
"names": {
"long": "Cuijk",
"middle": "Cuijk",
"short": "Cuijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400155"
},
{
"code": "CL",
"country": "NL",
"key": "CL",
"lat": "51.9466667175293",
"lon": "5.22694444656372",
"names": {
"long": "Culemborg",
"middle": "Culemborg",
"short": "Culemborg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400154"
},
{
"code": "DA",
"country": "NL",
"key": "DA",
"lat": "52.4407702",
"lon": "6.5759947",
"names": {
"long": "Daarlerveen",
"middle": "Daarlerveen",
"short": "Daarlervn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400164"
},
{
"code": "DLN",
"country": "NL",
"key": "DLN",
"lat": "52.6941680908203",
"lon": "6.75805568695068",
"names": {
"long": "Dalen",
"middle": "Dalen",
"short": "Dalen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400161"
},
{
"code": "DL",
"country": "NL",
"key": "DL",
"lat": "52.4983329772949",
"lon": "6.25861120223999",
"names": {
"long": "Dalfsen",
"middle": "Dalfsen",
"short": "Dalfsen"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400167"
},
{
"code": "DVNK",
"country": "NL",
"key": "DVNK",
"lat": "52.1472206115723",
"lon": "4.4563889503479",
"names": {
"long": "De Vink",
"middle": "De Vink",
"short": "De Vink"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400188"
},
{
"code": "DWE",
"country": "NL",
"key": "DWE",
"lat": "53.24817",
"lon": "6.03463",
"names": {
"long": "De Westereen",
"middle": "De Westereen",
"short": "Westereen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400745"
},
{
"code": "DEI",
"country": "NL",
"key": "DEI",
"lat": "53.1888115",
"lon": "5.7281572",
"names": {
"long": "Deinum",
"middle": "Deinum",
"short": "Deinum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400168"
},
{
"code": "DDN",
"country": "NL",
"key": "DDN",
"lat": "52.2599983215332",
"lon": "6.7161111831665",
"names": {
"long": "Delden",
"middle": "Delden",
"short": "Delden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400169"
},
{
"code": "DT",
"country": "NL",
"key": "DT",
"lat": "52.0066680908203",
"lon": "4.35638904571533",
"names": {
"long": "Delft",
"middle": "Delft",
"short": "Delft"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400170"
},
{
"code": "DTZ",
"country": "NL",
"key": "DTZ",
"lat": "51.9908332824707",
"lon": "4.36472225189209",
"names": {
"long": "Delft Zuid",
"middle": "Delft Zuid",
"short": "Delft Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400166"
},
{
"code": "DZ",
"country": "NL",
"key": "DZ",
"lat": "53.3336625",
"lon": "6.9240797",
"names": {
"long": "Delfzijl",
"middle": "Delfzijl",
"short": "Delfzijl"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400171"
},
{
"code": "DZW",
"country": "NL",
"key": "DZW",
"lat": "53.3320834",
"lon": "6.9069092",
"names": {
"long": "Delfzijl West",
"middle": "Delfzijl West",
"short": "Delfzijl W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400175"
},
{
"code": "DLD",
"country": "NL",
"key": "DLD",
"lat": "52.1402778625488",
"lon": "5.24277782440186",
"names": {
"long": "Den Dolder",
"middle": "Den Dolder",
"short": "Den Dolder"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400179"
},
{
"code": "GVC",
"country": "NL",
"key": "GVC",
"lat": "52.0802764892578",
"lon": "4.32499980926514",
"names": {
"long": "Den Haag Centraal",
"middle": "Den Haag C.",
"short": "Den Haag C"
},
"stationtype": "megastation",
"synonyms": [
"'s-Gravenhage",
"Den Haag"
],
"uic_code": "8400282"
},
{
"code": "GV",
"country": "NL",
"key": "GV",
"lat": "52.0697212219238",
"lon": "4.32250022888184",
"names": {
"long": "Den Haag HS",
"middle": "Den Haag HS",
"short": "Dn Haag HS"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400280"
},
{
"code": "LAA",
"country": "NL",
"key": "LAA",
"lat": "52.0786094665527",
"lon": "4.34277772903442",
"names": {
"long": "Den Haag Laan v NOI",
"middle": "Laan v NOI",
"short": "Laan v NOI"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400380"
},
{
"code": "GVM",
"country": "NL",
"key": "GVM",
"lat": "52.0905570983887",
"lon": "4.36944437026978",
"names": {
"long": "Den Haag Mariahoeve",
"middle": "Mariahoeve",
"short": "Mariahoeve"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400278"
},
{
"code": "GVMW",
"country": "NL",
"key": "GVMW",
"lat": "52.0538902282715",
"lon": "4.3086109161377",
"names": {
"long": "Den Haag Moerwijk",
"middle": "Moerwijk",
"short": "Moerwijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400279"
},
{
"code": "YPB",
"country": "NL",
"key": "YPB",
"lat": "52.0552787780762",
"lon": "4.39222240447998",
"names": {
"long": "Den Haag Ypenburg",
"middle": "Ypenburg",
"short": "Ypenburg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400379"
},
{
"code": "HDR",
"country": "NL",
"key": "HDR",
"lat": "52.9552764892578",
"lon": "4.76111125946045",
"names": {
"long": "Den Helder",
"middle": "Den Helder",
"short": "Den Helder"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400311"
},
{
"code": "HDRZ",
"country": "NL",
"key": "HDRZ",
"lat": "52.9324989318848",
"lon": "4.76416683197022",
"names": {
"long": "Den Helder Zuid",
"middle": "Den Helder Zuid",
"short": "Dn Heldr Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400303"
},
{
"code": "DN",
"country": "NL",
"key": "DN",
"lat": "51.4558334350586",
"lon": "5.78888893127441",
"names": {
"long": "Deurne",
"middle": "Deurne",
"short": "Deurne"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400172"
},
{
"code": "DV",
"country": "NL",
"key": "DV",
"lat": "52.2574996948242",
"lon": "6.16055536270142",
"names": {
"long": "Deventer",
"middle": "Deventer",
"short": "Deventer"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400173"
},
{
"code": "DVC",
"country": "NL",
"key": "DVC",
"lat": "52.2502784729004",
"lon": "6.21444463729858",
"names": {
"long": "Deventer Colmschate",
"middle": "Colmschate",
"short": "Colmschate"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400185"
},
{
"code": "DID",
"country": "NL",
"key": "DID",
"lat": "51.933502",
"lon": "6.1324106",
"names": {
"long": "Didam",
"middle": "Didam",
"short": "Didam"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400174"
},
{
"code": "DMN",
"country": "NL",
"key": "DMN",
"lat": "52.345832824707",
"lon": "4.9655556678772",
"names": {
"long": "Diemen",
"middle": "Diemen",
"short": "Diemen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400165"
},
{
"code": "DMNZ",
"country": "NL",
"key": "DMNZ",
"lat": "52.3302764892578",
"lon": "4.95583343505859",
"names": {
"long": "Diemen Zuid",
"middle": "Diemen Zuid",
"short": "Diemen Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400163"
},
{
"code": "DR",
"country": "NL",
"key": "DR",
"lat": "52.0449981689453",
"lon": "6.10305547714233",
"names": {
"long": "Dieren",
"middle": "Dieren",
"short": "Dieren"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400176"
},
{
"code": "DTC",
"country": "NL",
"key": "DTC",
"lat": "51.9585962",
"lon": "6.2962148",
"names": {
"long": "Doetinchem",
"middle": "Doetinchem",
"short": "Doetinchem"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400177"
},
{
"code": "DTCH",
"country": "NL",
"key": "DTCH",
"lat": "51.9591413",
"lon": "6.2598521",
"names": {
"long": "Doetinchem De Huet",
"middle": "De Huet",
"short": "De Huet"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400184"
},
{
"code": "DDR",
"country": "NL",
"key": "DDR",
"lat": "51.8072204589844",
"lon": "4.66833353042603",
"names": {
"long": "Dordrecht",
"middle": "Dordrecht",
"short": "Dordrecht"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400180"
},
{
"code": "DDRS",
"country": "NL",
"key": "DDRS",
"lat": "51.801944732666",
"lon": "4.71666669845581",
"names": {
"long": "Dordrecht Stadspolders",
"middle": "Stadspolders",
"short": "Stadspldrs"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400186"
},
{
"code": "DDZD",
"country": "NL",
"key": "DDZD",
"lat": "51.7900009155273",
"lon": "4.67138910293579",
"names": {
"long": "Dordrecht Zuid",
"middle": "Dordrecht Zuid",
"short": "Dordrcht Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400181"
},
{
"code": "DB",
"country": "NL",
"key": "DB",
"lat": "52.0652770996094",
"lon": "5.25861120223999",
"names": {
"long": "Driebergen-Zeist",
"middle": "Driebergen-Zeist",
"short": "Driebergen"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400182"
},
{
"code": "DRH",
"country": "NL",
"key": "DRH",
"lat": "52.4425010681152",
"lon": "4.63805532455444",
"names": {
"long": "Driehuis",
"middle": "Driehuis",
"short": "Driehuis"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400183"
},
{
"code": "DRP",
"country": "NL",
"key": "DRP",
"lat": "53.1778086",
"lon": "5.6347411",
"names": {
"long": "Dronryp",
"middle": "Dronryp",
"short": "Dronryp"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400192"
},
{
"code": "DRON",
"country": "NL",
"key": "DRON",
"lat": "52.5344",
"lon": "5.72089",
"names": {
"long": "Dronten",
"middle": "Dronten",
"short": "Dronten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400198"
},
{
"code": "DVN",
"country": "NL",
"key": "DVN",
"lat": "51.9433326721191",
"lon": "6.01472234725952",
"names": {
"long": "Duiven",
"middle": "Duiven",
"short": "Duiven"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400193"
},
{
"code": "DVD",
"country": "NL",
"key": "DVD",
"lat": "52.3233337402344",
"lon": "4.93638896942139",
"names": {
"long": "Duivendrecht",
"middle": "Duivendrecht",
"short": "Duivendrt"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400194"
},
{
"code": "EC",
"country": "NL",
"key": "EC",
"lat": "51.1005554199219",
"lon": "5.87888908386231",
"names": {
"long": "Echt",
"middle": "Echt",
"short": "Echt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400195"
},
{
"code": "EDC",
"country": "NL",
"key": "EDC",
"lat": "52.0436096191406",
"lon": "5.66833353042603",
"names": {
"long": "Ede Centrum",
"middle": "Ede C.",
"short": "Ede C"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400201"
},
{
"code": "ED",
"country": "NL",
"key": "ED",
"lat": "52.0277786254883",
"lon": "5.67305564880371",
"names": {
"long": "Ede-Wageningen",
"middle": "Ede-Wageningen",
"short": "Ede-Wag"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400200"
},
{
"code": "WTM",
"country": "NL",
"key": "WTM",
"lat": "50.82317",
"lon": "5.92479",
"names": {
"long": "Eijs-Wittem",
"middle": "Eijs-Wittem",
"short": "Eijs-Witt"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400608"
},
{
"code": "EDN",
"country": "NL",
"key": "EDN",
"lat": "50.7719459533691",
"lon": "5.71000003814697",
"names": {
"long": "Eijsden",
"middle": "Eijsden",
"short": "Eijsden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400219"
},
{
"code": "EHV",
"country": "NL",
"key": "EHV",
"lat": "51.4433326721191",
"lon": "5.48138904571533",
"names": {
"long": "Eindhoven",
"middle": "Eindhoven",
"short": "Eindhoven"
},
"stationtype": "megastation",
"synonyms": [],
"uic_code": "8400206"
},
{
"code": "EHS",
"country": "NL",
"key": "EHS",
"lat": "51.4511108398438",
"lon": "5.45583343505859",
"names": {
"long": "Eindhoven Strijp-S",
"middle": "Strijp-S",
"short": "Strijp-S"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400196"
},
{
"code": "EST",
"country": "NL",
"key": "EST",
"lat": "51.9169425964355",
"lon": "5.85500001907349",
"names": {
"long": "Elst",
"middle": "Elst",
"short": "Elst"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400207"
},
{
"code": "EMN",
"country": "NL",
"key": "EMN",
"lat": "52.7900009155273",
"lon": "6.89944458007812",
"names": {
"long": "Emmen",
"middle": "Emmen",
"short": "Emmen"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400208"
},
{
"code": "EMNZ",
"country": "NL",
"key": "EMNZ",
"lat": "52.7488663746914",
"lon": "6.87478065490722",
"names": {
"long": "Emmen Zuid",
"middle": "Emmen Zuid",
"short": "Emmen Z"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400407"
},
{
"code": "EKZ",
"country": "NL",
"key": "EKZ",
"lat": "52.6991653442383",
"lon": "5.28638887405396",
"names": {
"long": "Enkhuizen",
"middle": "Enkhuizen",
"short": "Enkhuizen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400210"
},
{
"code": "ES",
"country": "NL",
"key": "ES",
"lat": "52.2224998474121",
"lon": "6.8899998664856",
"names": {
"long": "Enschede",
"middle": "Enschede",
"short": "Enschede"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400212"
},
{
"code": "ESE",
"country": "NL",
"key": "ESE",
"lat": "52.2213897705078",
"lon": "6.95111131668091",
"names": {
"long": "Enschede De Eschmarke",
"middle": "De Eschmarke",
"short": "Eschmarke"
},
"stationtype": "stoptreinstation",
"synonyms": [
"De Eschmarke",
"Eschmarke"
],
"uic_code": "8400217"
},
{
"code": "ESK",
"country": "NL",
"key": "ESK",
"lat": "52.2374992370605",
"lon": "6.83888912200928",
"names": {
"long": "Enschede Kennispark",
"middle": "Kennispark",
"short": "Kennispark"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400221"
},
{
"code": "EML",
"country": "NL",
"key": "EML",
"lat": "52.3016662597656",
"lon": "5.61472225189209",
"names": {
"long": "Ermelo",
"middle": "Ermelo",
"short": "Ermelo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400216"
},
{
"code": "ETN",
"country": "NL",
"key": "ETN",
"lat": "51.5750007629395",
"lon": "4.63583326339722",
"names": {
"long": "Etten-Leur",
"middle": "Etten-Leur",
"short": "Etten-Leur"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400218"
},
{
"code": "EGH",
"country": "NL",
"key": "EGH",
"lat": "50.8905563354492",
"lon": "6.04500007629395",
"names": {
"long": "Eygelshoven",
"middle": "Eygelshoven",
"short": "Eygelshov"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400338"
},
{
"code": "EGHM",
"country": "NL",
"key": "EGHM",
"lat": "50.8960498196442",
"lon": "6.0602474212646396",
"names": {
"long": "Eygelshoven Markt",
"middle": "Eygelshoven Mrkt",
"short": "Eygelsh M"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400234"
},
{
"code": "FWD",
"country": "NL",
"key": "FWD",
"lat": "53.2351834",
"lon": "5.9886615",
"names": {
"long": "Feanwalden",
"middle": "Feanwalden",
"short": "Feanwalden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400638"
},
{
"code": "FN",
"country": "NL",
"key": "FN",
"lat": "53.1824488",
"lon": "5.5483094",
"names": {
"long": "Franeker",
"middle": "Franeker",
"short": "Franeker"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400232"
},
{
"code": "GDR",
"country": "NL",
"key": "GDR",
"lat": "51.93074",
"lon": "6.3486",
"names": {
"long": "Gaanderen",
"middle": "Gaanderen",
"short": "Gaanderen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400241"
},
{
"code": "GDM",
"country": "NL",
"key": "GDM",
"lat": "51.88301",
"lon": "5.27127",
"names": {
"long": "Geldermalsen",
"middle": "Geldermalsen",
"short": "Geldermlsn"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400244"
},
{
"code": "GP",
"country": "NL",
"key": "GP",
"lat": "51.4197235107422",
"lon": "5.55055570602417",
"names": {
"long": "Geldrop",
"middle": "Geldrop",
"short": "Geldrop"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400245"
},
{
"code": "GLN",
"country": "NL",
"key": "GLN",
"lat": "50.9669456481934",
"lon": "5.84305572509766",
"names": {
"long": "Geleen Oost",
"middle": "Geleen Oost",
"short": "Geleen O"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400246"
},
{
"code": "LUT",
"country": "NL",
"key": "LUT",
"lat": "50.9755554199219",
"lon": "5.82472229003906",
"names": {
"long": "Geleen-Lutterade",
"middle": "Geleen-Lutterade",
"short": "Geleen-Lut"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400248"
},
{
"code": "GZ",
"country": "NL",
"key": "GZ",
"lat": "51.583610534668",
"lon": "4.92611122131348",
"names": {
"long": "Gilze-Rijen",
"middle": "Gilze-Rijen",
"short": "Gilze-Rij"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400251"
},
{
"code": "GBR",
"country": "NL",
"key": "GBR",
"lat": "52.2186126708984",
"lon": "6.97444438934326",
"names": {
"long": "Glanerbrug",
"middle": "Glanerbrug",
"short": "Glanerbrug"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400262"
},
{
"code": "GS",
"country": "NL",
"key": "GS",
"lat": "51.4980545043945",
"lon": "3.89055562019348",
"names": {
"long": "Goes",
"middle": "Goes",
"short": "Goes"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400253"
},
{
"code": "GO",
"country": "NL",
"key": "GO",
"lat": "52.2302780151367",
"lon": "6.58444452285767",
"names": {
"long": "Goor",
"middle": "Goor",
"short": "Goor"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400254"
},
{
"code": "GR",
"country": "NL",
"key": "GR",
"lat": "51.8338890075684",
"lon": "4.96833324432373",
"names": {
"long": "Gorinchem",
"middle": "Gorinchem",
"short": "Gorinchem"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400256"
},
{
"code": "GD",
"country": "NL",
"key": "GD",
"lat": "52.0175018310547",
"lon": "4.70444440841675",
"names": {
"long": "Gouda",
"middle": "Gouda",
"short": "Gouda"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400258"
},
{
"code": "GDG",
"country": "NL",
"key": "GDG",
"lat": "52.0149993896484",
"lon": "4.7408332824707",
"names": {
"long": "Gouda Goverwelle",
"middle": "Gouda Goverwelle",
"short": "Goverwelle"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400257"
},
{
"code": "GBG",
"country": "NL",
"key": "GBG",
"lat": "52.6091651916504",
"lon": "6.67583322525024",
"names": {
"long": "Gramsbergen",
"middle": "Gramsbergen",
"short": "Gramsbergn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400259"
},
{
"code": "GK",
"country": "NL",
"key": "GK",
"lat": "53.2557403255735",
"lon": "6.30977869033813",
"names": {
"long": "Grijpskerk",
"middle": "Grijpskerk",
"short": "Grijpskerk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400267"
},
{
"code": "GN",
"country": "NL",
"key": "GN",
"lat": "53.2105560302734",
"lon": "6.56472206115723",
"names": {
"long": "Groningen",
"middle": "Groningen",
"short": "Groningen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400263"
},
{
"code": "GERP",
"country": "NL",
"key": "GERP",
"lat": "53.20480027",
"lon": "6.5854178",
"names": {
"long": "Groningen Europapark",
"middle": "Europapark",
"short": "Europapark"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400238"
},
{
"code": "GNN",
"country": "NL",
"key": "GNN",
"lat": "53.2301469",
"lon": "6.5563172",
"names": {
"long": "Groningen Noord",
"middle": "Groningen Noord",
"short": "Groningn N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400264"
},
{
"code": "GW",
"country": "NL",
"key": "GW",
"lat": "53.0888900756836",
"lon": "5.82250022888184",
"names": {
"long": "Grou-Jirnsum",
"middle": "Grou-Jirnsum",
"short": "Grou-Jirns"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400266"
},
{
"code": "WIJ",
"country": "NL",
"key": "WIJ",
"lat": "50.833056",
"lon": "5.898056",
"names": {
"long": "Gulpen-Wijlre",
"middle": "Gulpen-Wijlre",
"short": "Gulpen-W"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400712"
},
{
"code": "HLM",
"country": "NL",
"key": "HLM",
"lat": "52.3877792358398",
"lon": "4.63833332061768",
"names": {
"long": "Haarlem",
"middle": "Haarlem",
"short": "Haarlem"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400285"
},
{
"code": "HLMS",
"country": "NL",
"key": "HLMS",
"lat": "52.3827781677246",
"lon": "4.67305564880371",
"names": {
"long": "Haarlem Spaarnwoude",
"middle": "Spaarnwoude",
"short": "Spaarnwde"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400270"
},
{
"code": "HWZB",
"country": "NL",
"key": "HWZB",
"lat": "52.385935",
"lon": "4.747165",
"names": {
"long": "Halfweg-Zwanenburg",
"middle": "Halfweg-Zwanenb.",
"short": "Halfweg-Zw"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400400"
},
{
"code": "HDB",
"country": "NL",
"key": "HDB",
"lat": "52.5727767944336",
"lon": "6.62861108779907",
"names": {
"long": "Hardenberg",
"middle": "Hardenberg",
"short": "Hardenberg"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400293"
},
{
"code": "HD",
"country": "NL",
"key": "HD",
"lat": "52.3375015258789",
"lon": "5.61972236633301",
"names": {
"long": "Harderwijk",
"middle": "Harderwijk",
"short": "Harderwijk"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400294"
},
{
"code": "HBZM",
"country": "NL",
"key": "HBZM",
"lat": "51.82944",
"lon": "4.81556",
"names": {
"long": "Hardinxveld Blauwe Zoom",
"middle": "Blauwe Zoom",
"short": "Blauwe Zm"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400438"
},
{
"code": "GND",
"country": "NL",
"key": "GND",
"lat": "51.8305549621582",
"lon": "4.83583354949951",
"names": {
"long": "Hardinxveld-Giessendam",
"middle": "Hardinxveld-G.",
"short": "Hardinxvld"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400295"
},
{
"code": "HRN",
"country": "NL",
"key": "HRN",
"lat": "53.1761093139648",
"lon": "6.61722230911255",
"names": {
"long": "Haren",
"middle": "Haren",
"short": "Haren"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400297"
},
{
"code": "HLG",
"country": "NL",
"key": "HLG",
"lat": "53.1704205",
"lon": "5.4251932",
"names": {
"long": "Harlingen",
"middle": "Harlingen",
"short": "Harlingen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400296"
},
{
"code": "HLGH",
"country": "NL",
"key": "HLGH",
"lat": "53.174917",
"lon": "5.4112885",
"names": {
"long": "Harlingen Haven",
"middle": "Harlingen Haven",
"short": "Harl Haven"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400298"
},
{
"code": "HK",
"country": "NL",
"key": "HK",
"lat": "52.4952774047852",
"lon": "4.68694448471069",
"names": {
"long": "Heemskerk",
"middle": "Heemskerk",
"short": "Heemskerk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400317"
},
{
"code": "HAD",
"country": "NL",
"key": "HAD",
"lat": "52.3591651916504",
"lon": "4.60666656494141",
"names": {
"long": "Heemstede-Aerdenhout",
"middle": "Heemstede-A.",
"short": "Heemstede"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400302"
},
{
"code": "HR",
"country": "NL",
"key": "HR",
"lat": "52.9613876342773",
"lon": "5.91416645050049",
"names": {
"long": "Heerenveen",
"middle": "Heerenveen",
"short": "Heerenveen"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400305"
},
{
"code": "HRY",
"country": "NL",
"key": "HRY",
"lat": "52.9352760314941",
"lon": "5.94388866424561",
"names": {
"long": "Heerenveen IJsstadion",
"middle": "IJsstadion",
"short": "IJsstadion"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400301"
},
{
"code": "HWD",
"country": "NL",
"key": "HWD",
"lat": "52.6697235107422",
"lon": "4.82277774810791",
"names": {
"long": "Heerhugowaard",
"middle": "Heerhugowaard",
"short": "Heerhugow"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400306"
},
{
"code": "HRL",
"country": "NL",
"key": "HRL",
"lat": "50.8908348083496",
"lon": "5.97499990463257",
"names": {
"long": "Heerlen",
"middle": "Heerlen",
"short": "Heerlen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400307"
},
{
"code": "HRLK",
"country": "NL",
"key": "HRLK",
"lat": "50.8901689328708",
"lon": "5.99334239959716",
"names": {
"long": "Heerlen De Kissel",
"middle": "Hrl De Kissel",
"short": "De Kissel"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400409"
},
{
"code": "HRLW",
"country": "NL",
"key": "HRLW",
"lat": "50.896667",
"lon": "5.952222",
"names": {
"long": "Heerlen Woonboulevard",
"middle": "Hrl Woonblvd",
"short": "Heerlen W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400404"
},
{
"code": "HZE",
"country": "NL",
"key": "HZE",
"lat": "51.3849983215332",
"lon": "5.56944465637207",
"names": {
"long": "Heeze",
"middle": "Heeze",
"short": "Heeze"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400308"
},
{
"code": "HLO",
"country": "NL",
"key": "HLO",
"lat": "52.5994453430176",
"lon": "4.70055532455444",
"names": {
"long": "Heiloo",
"middle": "Heiloo",
"short": "Heiloo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400309"
},
{
"code": "HNO",
"country": "NL",
"key": "HNO",
"lat": "52.4272232055664",
"lon": "6.22111129760742",
"names": {
"long": "Heino",
"middle": "Heino",
"short": "Heino"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400310"
},
{
"code": "HM",
"country": "NL",
"key": "HM",
"lat": "51.4755554199219",
"lon": "5.66194438934326",
"names": {
"long": "Helmond",
"middle": "Helmond",
"short": "Helmond"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400313"
},
{
"code": "HMH",
"country": "NL",
"key": "HMH",
"lat": "51.46794",
"lon": "5.63085",
"names": {
"long": "Helmond 't Hout",
"middle": "Helmond 't Hout",
"short": "'t Hout"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400300"
},
{
"code": "HMBV",
"country": "NL",
"key": "HMBV",
"lat": "51.4622230529785",
"lon": "5.60722208023071",
"names": {
"long": "Helmond Brandevoort",
"middle": "Brandevoort",
"short": "Brandevrt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400242"
},
{
"code": "HMBH",
"country": "NL",
"key": "HMBH",
"lat": "51.47068",
"lon": "5.70177",
"names": {
"long": "Helmond Brouwhuis",
"middle": "Brouwhuis",
"short": "Brouwhuis"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400299"
},
{
"code": "HMN",
"country": "NL",
"key": "HMN",
"lat": "51.9222129",
"lon": "5.6737254",
"names": {
"long": "Hemmen-Dodewaard",
"middle": "Hemmen-Dodewaard",
"short": "Hemmen-D"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400315"
},
{
"code": "HGL",
"country": "NL",
"key": "HGL",
"lat": "52.2616653442383",
"lon": "6.79388904571533",
"names": {
"long": "Hengelo",
"middle": "Hengelo",
"short": "Hengelo"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400316"
},
{
"code": "HGLG",
"country": "NL",
"key": "HGLG",
"lat": "52.261667",
"lon": "6.773611",
"names": {
"long": "Hengelo Gezondheidspark",
"middle": "Hengelo Gezondh.",
"short": "Gezondhprk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400433"
},
{
"code": "HGLO",
"country": "NL",
"key": "HGLO",
"lat": "52.2688903808594",
"lon": "6.81944465637207",
"names": {
"long": "Hengelo Oost",
"middle": "Hengelo Oost",
"short": "Hengelo O"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400312"
},
{
"code": "HIL",
"country": "NL",
"key": "HIL",
"lat": "52.3025016784668",
"lon": "4.56555557250977",
"names": {
"long": "Hillegom",
"middle": "Hillegom",
"short": "Hillegom"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400329"
},
{
"code": "HVS",
"country": "NL",
"key": "HVS",
"lat": "52.2258338928223",
"lon": "5.18194437026978",
"names": {
"long": "Hilversum",
"middle": "Hilversum",
"short": "Hilversum"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400322"
},
{
"code": "HVSM",
"country": "NL",
"key": "HVSM",
"lat": "52.2380561828613",
"lon": "5.17388868331909",
"names": {
"long": "Hilversum Media Park",
"middle": "Media Park",
"short": "Media Park"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400324"
},
{
"code": "HVSP",
"country": "NL",
"key": "HVSP",
"lat": "52.2161102294922",
"lon": "5.18722200393677",
"names": {
"long": "Hilversum Sportpark",
"middle": "Sportpark",
"short": "Sportpark"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400570"
},
{
"code": "HNP",
"country": "NL",
"key": "HNP",
"lat": "52.9464903",
"lon": "5.423063",
"names": {
"long": "Hindeloopen",
"middle": "Hindeloopen",
"short": "Hindeloopn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400323"
},
{
"code": "HLD",
"country": "NL",
"key": "HLD",
"lat": "51.9752769470215",
"lon": "4.1288890838623",
"names": {
"long": "Hoek van Holland Haven",
"middle": "Hoek v H. Haven",
"short": "HvH Haven"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400325"
},
{
"code": "HLDS",
"country": "NL",
"key": "HLDS",
"lat": "51.9816665649414",
"lon": "4.11972236633301",
"names": {
"long": "Hoek van Holland Strand",
"middle": "Hoek v H. Strand",
"short": "HvH Strand"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400342"
},
{
"code": "HB",
"country": "NL",
"key": "HB",
"lat": "50.9055557250977",
"lon": "5.93055534362793",
"names": {
"long": "Hoensbroek",
"middle": "Hoensbroek",
"short": "Hoensbroek"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400326"
},
{
"code": "HVL",
"country": "NL",
"key": "HVL",
"lat": "52.16652",
"lon": "5.45718",
"names": {
"long": "Hoevelaken",
"middle": "Hoevelaken",
"short": "Hoevelaken"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400490"
},
{
"code": "HOR",
"country": "NL",
"key": "HOR",
"lat": "52.1777763366699",
"lon": "5.17916679382324",
"names": {
"long": "Hollandsche Rading",
"middle": "Holl. Rading",
"short": "Hol Rading"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400327"
},
{
"code": "HON",
"country": "NL",
"key": "HON",
"lat": "52.2838897705078",
"lon": "6.42027759552002",
"names": {
"long": "Holten",
"middle": "Holten",
"short": "Holten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400328"
},
{
"code": "HFD",
"country": "NL",
"key": "HFD",
"lat": "52.2933349609375",
"lon": "4.70055532455444",
"names": {
"long": "Hoofddorp",
"middle": "Hoofddorp",
"short": "Hoofddorp"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400332"
},
{
"code": "HGV",
"country": "NL",
"key": "HGV",
"lat": "52.7338905334473",
"lon": "6.47361087799072",
"names": {
"long": "Hoogeveen",
"middle": "Hoogeveen",
"short": "Hoogeveen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400330"
},
{
"code": "HGZ",
"country": "NL",
"key": "HGZ",
"lat": "53.1598181316756",
"lon": "6.77075386047363",
"names": {
"long": "Hoogezand-Sappemeer",
"middle": "Hoogezand-Sap.",
"short": "Hoogezand"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400331"
},
{
"code": "HKS",
"country": "NL",
"key": "HKS",
"lat": "52.6905555725098",
"lon": "5.18388891220093",
"names": {
"long": "Hoogkarspel",
"middle": "Hoogkarspel",
"short": "Hoogkrspl"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400334"
},
{
"code": "HN",
"country": "NL",
"key": "HN",
"lat": "52.6447219848633",
"lon": "5.05555534362793",
"names": {
"long": "Hoorn",
"middle": "Hoorn",
"short": "Hoorn"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400337"
},
{
"code": "HNK",
"country": "NL",
"key": "HNK",
"lat": "52.6536102294922",
"lon": "5.08555555343628",
"names": {
"long": "Hoorn Kersenboogerd",
"middle": "Kersenboogerd",
"short": "Hoorn Kers"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400336"
},
{
"code": "HRT",
"country": "NL",
"key": "HRT",
"lat": "51.4263877868652",
"lon": "6.04222202301025",
"names": {
"long": "Horst-Sevenum",
"middle": "Horst-Sevenum",
"short": "Horst-Sev"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400339"
},
{
"code": "HTN",
"country": "NL",
"key": "HTN",
"lat": "52.03402",
"lon": "5.16821",
"names": {
"long": "Houten",
"middle": "Houten",
"short": "Houten"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400340"
},
{
"code": "HTNC",
"country": "NL",
"key": "HTNC",
"lat": "52.01701",
"lon": "5.17949",
"names": {
"long": "Houten Castellum",
"middle": "Houten Castellum",
"short": "Houten Cas"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400335"
},
{
"code": "SGL",
"country": "NL",
"key": "SGL",
"lat": "50.8733329772949",
"lon": "5.79722213745117",
"names": {
"long": "Houthem-St Gerlach",
"middle": "Houthem-St Gerl.",
"short": "Houthem-St"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400341"
},
{
"code": "HDG",
"country": "NL",
"key": "HDG",
"lat": "53.2187783",
"lon": "5.934543",
"names": {
"long": "Hurdegaryp",
"middle": "Hurdegaryp",
"short": "Hurdegaryp"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400292"
},
{
"code": "IJT",
"country": "NL",
"key": "IJT",
"lat": "53.0146614",
"lon": "5.6160801",
"names": {
"long": "IJlst",
"middle": "IJlst",
"short": "IJlst"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400722"
},
{
"code": "KPN",
"country": "NL",
"key": "KPN",
"lat": "52.5597229003906",
"lon": "5.92166662216186",
"names": {
"long": "Kampen",
"middle": "Kampen",
"short": "Kampen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400353"
},
{
"code": "KPNZ",
"country": "NL",
"key": "KPNZ",
"lat": "52.5331",
"lon": "5.91309",
"names": {
"long": "Kampen Zuid",
"middle": "Kampen Zuid",
"short": "Kampen Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400360"
},
{
"code": "BZL",
"country": "NL",
"key": "BZL",
"lat": "51.4808349609375",
"lon": "3.95611119270325",
"names": {
"long": "Kapelle-Biezelinge",
"middle": "Kapelle-Biezel.",
"short": "Kapelle-Bi"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400354"
},
{
"code": "KRD",
"country": "NL",
"key": "KRD",
"lat": "50.8616676330566",
"lon": "6.05749988555908",
"names": {
"long": "Kerkrade Centrum",
"middle": "Kerkrade C.",
"short": "Kerkrade C"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400355"
},
{
"code": "KTR",
"country": "NL",
"key": "KTR",
"lat": "51.9313869",
"lon": "5.5833465",
"names": {
"long": "Kesteren",
"middle": "Kesteren",
"short": "Kesteren"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400359"
},
{
"code": "KBK",
"country": "NL",
"key": "KBK",
"lat": "52.1780548095703",
"lon": "6.08361101150513",
"names": {
"long": "Klarenbeek",
"middle": "Klarenbeek",
"short": "Klarenbk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400361"
},
{
"code": "KMR",
"country": "NL",
"key": "KMR",
"lat": "50.8663902282715",
"lon": "5.8905553817749",
"names": {
"long": "Klimmen-Ransdaal",
"middle": "Klimmen-Ransdaal",
"short": "Klimmen-R"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400362"
},
{
"code": "KZ",
"country": "NL",
"key": "KZ",
"lat": "52.458610534668",
"lon": "4.80555534362793",
"names": {
"long": "Koog aan de Zaan",
"middle": "Koog a.d. Zaan",
"short": "Koog Zaan"
},
"stationtype": "stoptreinstation",
"synonyms": [
"Koog Bloemwijk"
],
"uic_code": "8400363"
},
{
"code": "KMW",
"country": "NL",
"key": "KMW",
"lat": "52.9028197",
"lon": "5.4106913",
"names": {
"long": "Koudum-Molkwerum",
"middle": "Koudum-Molkwerum",
"short": "Koudum-M"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400366"
},
{
"code": "KBD",
"country": "NL",
"key": "KBD",
"lat": "51.4333343505859",
"lon": "4.11694431304932",
"names": {
"long": "Krabbendijke",
"middle": "Krabbendijke",
"short": "Krabbendke"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400367"
},
{
"code": "KMA",
"country": "NL",
"key": "KMA",
"lat": "52.49511",
"lon": "4.75417",
"names": {
"long": "Krommenie-Assendelft",
"middle": "Krommenie-Ass.",
"short": "Krommenie"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400368"
},
{
"code": "KW",
"country": "NL",
"key": "KW",
"lat": "53.1617362",
"lon": "6.7220882",
"names": {
"long": "Kropswolde",
"middle": "Kropswolde",
"short": "Kropswolde"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400369"
},
{
"code": "KRG",
"country": "NL",
"key": "KRG",
"lat": "51.4650001525879",
"lon": "4.03722238540649",
"names": {
"long": "Kruiningen-Yerseke",
"middle": "Kruiningen-Y.",
"short": "Kruiningen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400370"
},
{
"code": "ZLW",
"country": "NL",
"key": "ZLW",
"lat": "51.6911125183105",
"lon": "4.66305541992188",
"names": {
"long": "Lage Zwaluwe",
"middle": "Lage Zwaluwe",
"short": "Lage Zwalu"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400382"
},
{
"code": "LG",
"country": "NL",
"key": "LG",
"lat": "50.8963890075684",
"lon": "6.01916646957398",
"names": {
"long": "Landgraaf",
"middle": "Landgraaf",
"short": "Landgraaf"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400548"
},
{
"code": "LDM",
"country": "NL",
"key": "LDM",
"lat": "51.8947219848633",
"lon": "5.09138870239258",
"names": {
"long": "Leerdam",
"middle": "Leerdam",
"short": "Leerdam"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400386"
},
{
"code": "LW",
"country": "NL",
"key": "LW",
"lat": "53.1958351135254",
"lon": "5.79222202301025",
"names": {
"long": "Leeuwarden",
"middle": "Leeuwarden",
"short": "Leeuwarden"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400387"
},
{
"code": "ADH",
"country": "NL",
"key": "ADH",
"lat": "53.19889",
"lon": "5.81639",
"names": {
"long": "Leeuwarden Achter d Hoven",
"middle": "Achter de Hoven",
"short": "Achter d.H"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400406"
},
{
"code": "LWC",
"country": "NL",
"key": "LWC",
"lat": "53.2021808",
"lon": "5.8422968",
"names": {
"long": "Leeuwarden Camminghaburen",
"middle": "Camminghaburen",
"short": "Camminghab"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400389"
},
{
"code": "LEDN",
"country": "NL",
"key": "LEDN",
"lat": "52.1661109924316",
"lon": "4.48166656494141",
"names": {
"long": "Leiden Centraal",
"middle": "Leiden C.",
"short": "Leiden C"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [
"Leiden"
],
"uic_code": "8400390"
},
{
"code": "LDL",
"country": "NL",
"key": "LDL",
"lat": "52.1469459533691",
"lon": "4.49249982833862",
"names": {
"long": "Leiden Lammenschans",
"middle": "Lammenschans",
"short": "Leiden Lam"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400384"
},
{
"code": "LLS",
"country": "NL",
"key": "LLS",
"lat": "52.5077781677246",
"lon": "5.47277784347534",
"names": {
"long": "Lelystad Centrum",
"middle": "Lelystad C.",
"short": "Lelystad C"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400394"
},
{
"code": "LTV",
"country": "NL",
"key": "LTV",
"lat": "52.01188",
"lon": "6.59641",
"names": {
"long": "Lichtenvoorde-Groenlo",
"middle": "Lichtenvoorde-G.",
"short": "Lichtenv-G"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400395"
},
{
"code": "LC",
"country": "NL",
"key": "LC",
"lat": "52.1666679382324",
"lon": "6.42638874053955",
"names": {
"long": "Lochem",
"middle": "Lochem",
"short": "Lochem"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400399"
},
{
"code": "LP",
"country": "NL",
"key": "LP",
"lat": "53.3347145",
"lon": "6.7472625",
"names": {
"long": "Loppersum",
"middle": "Loppersum",
"short": "Loppersum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400403"
},
{
"code": "LTN",
"country": "NL",
"key": "LTN",
"lat": "52.085277557373",
"lon": "5.62444448471069",
"names": {
"long": "Lunteren",
"middle": "Lunteren",
"short": "Lunteren"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400405"
},
{
"code": "MZ",
"country": "NL",
"key": "MZ",
"lat": "51.3037623603504",
"lon": "5.63034296035766",
"names": {
"long": "Maarheeze",
"middle": "Maarheeze",
"short": "Maarheeze"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400432"
},
{
"code": "MRN",
"country": "NL",
"key": "MRN",
"lat": "52.0641670227051",
"lon": "5.36999988555908",
"names": {
"long": "Maarn",
"middle": "Maarn",
"short": "Maarn"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400417"
},
{
"code": "MAS",
"country": "NL",
"key": "MAS",
"lat": "52.1352767944336",
"lon": "5.03361129760742",
"names": {
"long": "Maarssen",
"middle": "Maarssen",
"short": "Maarssen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400419"
},
{
"code": "MHV",
"country": "NL",
"key": "MHV",
"lat": "51.897222",
"lon": "4.494",
"names": {
"long": "Maashaven",
"middle": "Maashaven",
"short": "Maashaven"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400670"
},
{
"code": "MSS",
"country": "NL",
"key": "MSS",
"lat": "51.9161109924316",
"lon": "4.25472211837769",
"names": {
"long": "Maassluis",
"middle": "Maassluis",
"short": "Maassluis"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400422"
},
{
"code": "MSW",
"country": "NL",
"key": "MSW",
"lat": "51.9258346557617",
"lon": "4.23611116409302",
"names": {
"long": "Maassluis West",
"middle": "Maassluis West",
"short": "Maassl W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400421"
},
{
"code": "MT",
"country": "NL",
"key": "MT",
"lat": "50.8502769470215",
"lon": "5.70555543899536",
"names": {
"long": "Maastricht",
"middle": "Maastricht",
"short": "Maastricht"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400424"
},
{
"code": "MTN",
"country": "NL",
"key": "MTN",
"lat": "50.87087",
"lon": "5.71774",
"names": {
"long": "Maastricht Noord",
"middle": "Maastricht Noord",
"short": "Maastr N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400449"
},
{
"code": "MTR",
"country": "NL",
"key": "MTR",
"lat": "50.8386116027832",
"lon": "5.71722221374512",
"names": {
"long": "Maastricht Randwyck",
"middle": "Maastricht Randw",
"short": "Maastr Rw"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400426"
},
{
"code": "MG",
"country": "NL",
"key": "MG",
"lat": "53.1296368",
"lon": "5.7131996",
"names": {
"long": "Mantgum",
"middle": "Mantgum",
"short": "Mantgum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400427"
},
{
"code": "MRB",
"country": "NL",
"key": "MRB",
"lat": "52.5094451904297",
"lon": "6.57527780532837",
"names": {
"long": "Mari\u00ebnberg",
"middle": "Mari\u00ebnberg",
"short": "Mari\u00ebnberg"
},
"stationtype": "knooppuntSneltreinstation",
"synonyms": [],
"uic_code": "8400428"
},
{
"code": "MTH",
"country": "NL",
"key": "MTH",
"lat": "53.1607232",
"lon": "6.7402989",
"names": {
"long": "Martenshoek",
"middle": "Martenshoek",
"short": "Martenshk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400430"
},
{
"code": "MES",
"country": "NL",
"key": "MES",
"lat": "50.882879392551",
"lon": "5.75099945068359",
"names": {
"long": "Meerssen",
"middle": "Meerssen",
"short": "Meerssen"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400434"
},
{
"code": "MP",
"country": "NL",
"key": "MP",
"lat": "52.6908340454102",
"lon": "6.19750022888184",
"names": {
"long": "Meppel",
"middle": "Meppel",
"short": "Meppel"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400435"
},
{
"code": "MDB",
"country": "NL",
"key": "MDB",
"lat": "51.4947204589844",
"lon": "3.61722230911255",
"names": {
"long": "Middelburg",
"middle": "Middelburg",
"short": "Middelburg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400436"
},
{
"code": "MMLH",
"country": "NL",
"key": "MMLH",
"lat": "51.77158",
"lon": "5.88145",
"names": {
"long": "Mook Molenhoek",
"middle": "Molenhoek",
"short": "Mook Molen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400446"
},
{
"code": "NDB",
"country": "NL",
"key": "NDB",
"lat": "52.2802772521973",
"lon": "5.15694427490234",
"names": {
"long": "Naarden-Bussum",
"middle": "Naarden-Bussum",
"short": "Naarden-Bu"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400452"
},
{
"code": "NA",
"country": "NL",
"key": "NA",
"lat": "52.7186126708984",
"lon": "6.84861087799072",
"names": {
"long": "Nieuw Amsterdam",
"middle": "Nieuw Amsterdam",
"short": "Nw A'dam"
},
"stationtype": "sneltreinstation",
"synonyms": [],
"uic_code": "8400454"
},
{
"code": "NVP",
"country": "NL",
"key": "NVP",
"lat": "52.2588882446289",
"lon": "4.64555549621582",
"names": {
"long": "Nieuw Vennep",
"middle": "Nieuw Vennep",
"short": "Nw Vennep"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400460"
},
{
"code": "NWK",
"country": "NL",
"key": "NWK",
"lat": "51.9652786254883",
"lon": "4.61694431304932",
"names": {
"long": "Nieuwerkerk a/d IJssel",
"middle": "Nieuwerkerk",
"short": "Nieuwerkrk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400455"
},
{
"code": "NKK",
"country": "NL",
"key": "NKK",
"lat": "52.2222213745117",
"lon": "5.49388885498047",
"names": {
"long": "Nijkerk",
"middle": "Nijkerk",
"short": "Nijkerk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400469"
},
{
"code": "NM",
"country": "NL",
"key": "NM",
"lat": "51.8436126708984",
"lon": "5.85222244262695",
"names": {
"long": "Nijmegen",
"middle": "Nijmegen",
"short": "Nijmegen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400470"
},
{
"code": "NMD",
"country": "NL",
"key": "NMD",
"lat": "51.8241653442383",
"lon": "5.79555559158325",
"names": {
"long": "Nijmegen Dukenburg",
"middle": "Dukenburg",
"short": "Dukenburg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400475"
},
{
"code": "NMGO",
"country": "NL",
"key": "NMGO",
"lat": "51.8273",
"lon": "5.822722",
"names": {
"long": "Nijmegen Goffert",
"middle": "Nijmegen Goffert",
"short": "Goffert"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400477"
},
{
"code": "NMH",
"country": "NL",
"key": "NMH",
"lat": "51.8269462585449",
"lon": "5.86749982833862",
"names": {
"long": "Nijmegen Heyendaal",
"middle": "Nm Heyendaal",
"short": "Heyendaal"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400468"
},
{
"code": "NML",
"country": "NL",
"key": "NML",
"lat": "51.861811",
"lon": "5.859686",
"names": {
"long": "Nijmegen Lent",
"middle": "Nijmegen Lent",
"short": "Lent"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400451"
},
{
"code": "NVD",
"country": "NL",
"key": "NVD",
"lat": "52.36555",
"lon": "6.471111",
"names": {
"long": "Nijverdal",
"middle": "Nijverdal",
"short": "Nijverdal"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400472"
},
{
"code": "NS",
"country": "NL",
"key": "NS",
"lat": "52.3708343505859",
"lon": "5.78527784347534",
"names": {
"long": "Nunspeet",
"middle": "Nunspeet",
"short": "Nunspeet"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400466"
},
{
"code": "NH",
"country": "NL",
"key": "NH",
"lat": "50.9194450378418",
"lon": "5.89277791976929",
"names": {
"long": "Nuth",
"middle": "Nuth",
"short": "Nuth"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400467"
},
{
"code": "OBD",
"country": "NL",
"key": "OBD",
"lat": "52.6780548095703",
"lon": "4.90722227096558",
"names": {
"long": "Obdam",
"middle": "Obdam",
"short": "Obdam"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400480"
},
{
"code": "OT",
"country": "NL",
"key": "OT",
"lat": "51.5822219848633",
"lon": "5.19416666030884",
"names": {
"long": "Oisterwijk",
"middle": "Oisterwijk",
"short": "Oisterwijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400482"
},
{
"code": "ODZ",
"country": "NL",
"key": "ODZ",
"lat": "52.3063888549805",
"lon": "6.93472242355347",
"names": {
"long": "Oldenzaal",
"middle": "Oldenzaal",
"short": "Oldenzaal"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400483"
},
{
"code": "OST",
"country": "NL",
"key": "OST",
"lat": "52.3347206115723",
"lon": "6.11305570602417",
"names": {
"long": "Olst",
"middle": "Olst",
"short": "Olst"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400486"
},
{
"code": "OMN",
"country": "NL",
"key": "OMN",
"lat": "52.5094451904297",
"lon": "6.41583347320557",
"names": {
"long": "Ommen",
"middle": "Ommen",
"short": "Ommen"
},
"stationtype": "knooppuntSneltreinstation",
"synonyms": [],
"uic_code": "8400487"
},
{
"code": "OTB",
"country": "NL",
"key": "OTB",
"lat": "51.9949989318848",
"lon": "5.84000015258789",
"names": {
"long": "Oosterbeek",
"middle": "Oosterbeek",
"short": "Oosterbeek"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400489"
},
{
"code": "OP",
"country": "NL",
"key": "OP",
"lat": "51.9261615",
"lon": "5.6371145",
"names": {
"long": "Opheusden",
"middle": "Opheusden",
"short": "Opheusden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400494"
},
{
"code": "O",
"country": "NL",
"key": "O",
"lat": "51.7655563354492",
"lon": "5.53222227096558",
"names": {
"long": "Oss",
"middle": "Oss",
"short": "Oss"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400495"
},
{
"code": "OW",
"country": "NL",
"key": "OW",
"lat": "51.758056640625",
"lon": "5.50555562973022",
"names": {
"long": "Oss West",
"middle": "Oss West",
"short": "Oss W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400496"
},
{
"code": "ODB",
"country": "NL",
"key": "ODB",
"lat": "51.587776184082",
"lon": "4.53333330154419",
"names": {
"long": "Oudenbosch",
"middle": "Oudenbosch",
"short": "Oudenbosch"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400498"
},
{
"code": "OVN",
"country": "NL",
"key": "OVN",
"lat": "52.3911094665527",
"lon": "4.6061110496521",
"names": {
"long": "Overveen",
"middle": "Overveen",
"short": "Overveen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400501"
},
{
"code": "PMR",
"country": "NL",
"key": "PMR",
"lat": "52.5030555725098",
"lon": "4.95361089706421",
"names": {
"long": "Purmerend",
"middle": "Purmerend",
"short": "Purmerend"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400508"
},
{
"code": "PMO",
"country": "NL",
"key": "PMO",
"lat": "52.5113906860352",
"lon": "4.96833324432373",
"names": {
"long": "Purmerend Overwhere",
"middle": "Overwhere",
"short": "Overwhere"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400506"
},
{
"code": "PMW",
"country": "NL",
"key": "PMW",
"lat": "52.4965906325416",
"lon": "4.93562936782836",
"names": {
"long": "Purmerend Weidevenne",
"middle": "Weidevenne",
"short": "Weidevenne"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400499"
},
{
"code": "PT",
"country": "NL",
"key": "PT",
"lat": "52.2649993896484",
"lon": "5.57527780532837",
"names": {
"long": "Putten",
"middle": "Putten",
"short": "Putten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400509"
},
{
"code": "RAT",
"country": "NL",
"key": "RAT",
"lat": "52.3916664123535",
"lon": "6.27750015258789",
"names": {
"long": "Raalte",
"middle": "Raalte",
"short": "Raalte"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400513"
},
{
"code": "RVS",
"country": "NL",
"key": "RVS",
"lat": "51.7941665649414",
"lon": "5.63583326339722",
"names": {
"long": "Ravenstein",
"middle": "Ravenstein",
"short": "Ravenstein"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400515"
},
{
"code": "RV",
"country": "NL",
"key": "RV",
"lat": "51.2832191665301",
"lon": "6.07895851135253",
"names": {
"long": "Reuver",
"middle": "Reuver",
"short": "Reuver"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400518"
},
{
"code": "RH",
"country": "NL",
"key": "RH",
"lat": "52.0099983215332",
"lon": "6.03055572509766",
"names": {
"long": "Rheden",
"middle": "Rheden",
"short": "Rheden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400519"
},
{
"code": "RHN",
"country": "NL",
"key": "RHN",
"lat": "51.958610534668",
"lon": "5.57833337783814",
"names": {
"long": "Rhenen",
"middle": "Rhenen",
"short": "Rhenen"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400517"
},
{
"code": "RSN",
"country": "NL",
"key": "RSN",
"lat": "52.3122215270996",
"lon": "6.52027797698975",
"names": {
"long": "Rijssen",
"middle": "Rijssen",
"short": "Rijssen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400538"
},
{
"code": "RSW",
"country": "NL",
"key": "RSW",
"lat": "52.039722442627",
"lon": "4.31916666030884",
"names": {
"long": "Rijswijk",
"middle": "Rijswijk",
"short": "Rijswijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400505"
},
{
"code": "RB",
"country": "NL",
"key": "RB",
"lat": "51.422779083252",
"lon": "4.16111087799072",
"names": {
"long": "Rilland-Bath",
"middle": "Rilland-Bath",
"short": "Rilland-Ba"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400521"
},
{
"code": "RM",
"country": "NL",
"key": "RM",
"lat": "51.1930541992188",
"lon": "5.9941668510437",
"names": {
"long": "Roermond",
"middle": "Roermond",
"short": "Roermond"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400523"
},
{
"code": "RD",
"country": "NL",
"key": "RD",
"lat": "53.4192128",
"lon": "6.7606167",
"names": {
"long": "Roodeschool",
"middle": "Roodeschool",
"short": "Roodeschl"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400525"
},
{
"code": "RSD",
"country": "NL",
"key": "RSD",
"lat": "51.5402793884277",
"lon": "4.45833349227905",
"names": {
"long": "Roosendaal",
"middle": "Roosendaal",
"short": "Roosendaal"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400526"
},
{
"code": "RS",
"country": "NL",
"key": "RS",
"lat": "51.7147216796875",
"lon": "5.36805534362793",
"names": {
"long": "Rosmalen",
"middle": "Rosmalen",
"short": "Rosmalen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400524"
},
{
"code": "RTA",
"country": "NL",
"key": "RTA",
"lat": "51.9519462585449",
"lon": "4.55361127853394",
"names": {
"long": "Rotterdam Alexander",
"middle": "Alexander",
"short": "Alexander"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400507"
},
{
"code": "RTB",
"country": "NL",
"key": "RTB",
"lat": "51.9202766418457",
"lon": "4.48888874053955",
"names": {
"long": "Rotterdam Blaak",
"middle": "Rotterdam Blaak",
"short": "Blaak"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400529"
},
{
"code": "RTD",
"country": "NL",
"key": "RTD",
"lat": "51.9249992370605",
"lon": "4.46888875961304",
"names": {
"long": "Rotterdam Centraal",
"middle": "Rotterdam C.",
"short": "Rotterdam"
},
"stationtype": "megastation",
"synonyms": [
"Rotterdam"
],
"uic_code": "8400530"
},
{
"code": "RLB",
"country": "NL",
"key": "RLB",
"lat": "51.8800010681152",
"lon": "4.53138875961304",
"names": {
"long": "Rotterdam Lombardijen",
"middle": "Lombardijen",
"short": "Lombardije"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400542"
},
{
"code": "RTN",
"country": "NL",
"key": "RTN",
"lat": "51.9422225952148",
"lon": "4.48166656494141",
"names": {
"long": "Rotterdam Noord",
"middle": "Rotterdam Noord",
"short": "Rotterdm N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400531"
},
{
"code": "RTST",
"country": "NL",
"key": "RTST",
"lat": "51.8938903808594",
"lon": "4.51972198486328",
"names": {
"long": "Rotterdam Stadion",
"middle": "R'dam Stadion",
"short": "R'dam Sta"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400534"
},
{
"code": "RTZ",
"country": "NL",
"key": "RTZ",
"lat": "51.9044456481934",
"lon": "4.51027774810791",
"names": {
"long": "Rotterdam Zuid",
"middle": "Rotterdam Zuid",
"short": "Rotterdm Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400533"
},
{
"code": "RL",
"country": "NL",
"key": "RL",
"lat": "52.0810888",
"lon": "6.4492656",
"names": {
"long": "Ruurlo",
"middle": "Ruurlo",
"short": "Ruurlo"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400537"
},
{
"code": "SPTN",
"country": "NL",
"key": "SPTN",
"lat": "52.4338874816895",
"lon": "4.63250017166138",
"names": {
"long": "Santpoort Noord",
"middle": "Santpoort Noord",
"short": "Santprt N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400543"
},
{
"code": "SPTZ",
"country": "NL",
"key": "SPTZ",
"lat": "52.4197235107422",
"lon": "4.63138866424561",
"names": {
"long": "Santpoort Zuid",
"middle": "Santpoort Zuid",
"short": "Santprt Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400544"
},
{
"code": "SPM",
"country": "NL",
"key": "SPM",
"lat": "53.1589183",
"lon": "6.7955648",
"names": {
"long": "Sappemeer Oost",
"middle": "Sappemeer Oost",
"short": "Sappemr O"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400545"
},
{
"code": "SSH",
"country": "NL",
"key": "SSH",
"lat": "52.215278",
"lon": "4.517222",
"names": {
"long": "Sassenheim",
"middle": "Sassenheim",
"short": "Sassenheim"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400603"
},
{
"code": "SWD",
"country": "NL",
"key": "SWD",
"lat": "53.29113",
"lon": "6.5404",
"names": {
"long": "Sauwerd",
"middle": "Sauwerd",
"short": "Sauwerd"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400547"
},
{
"code": "SGN",
"country": "NL",
"key": "SGN",
"lat": "52.7844429016113",
"lon": "4.80527782440186",
"names": {
"long": "Schagen",
"middle": "Schagen",
"short": "Schagen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400549"
},
{
"code": "SDA",
"country": "NL",
"key": "SDA",
"lat": "53.1655362",
"lon": "6.9777775",
"names": {
"long": "Scheemda",
"middle": "Scheemda",
"short": "Scheemda"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400551"
},
{
"code": "SDM",
"country": "NL",
"key": "SDM",
"lat": "51.9212438128032",
"lon": "4.4089937210083",
"names": {
"long": "Schiedam Centrum",
"middle": "Schiedam C.",
"short": "Schiedam C"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400553"
},
{
"code": "NWL",
"country": "NL",
"key": "NWL",
"lat": "51.9222221374512",
"lon": "4.38222217559814",
"names": {
"long": "Schiedam Nieuwland",
"middle": "Nieuwland",
"short": "Nieuwland"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400563"
},
{
"code": "SOG",
"country": "NL",
"key": "SOG",
"lat": "50.856388092041",
"lon": "5.87222242355347",
"names": {
"long": "Schin op Geul",
"middle": "Schin op Geul",
"short": "Schin op G"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400555"
},
{
"code": "SN",
"country": "NL",
"key": "SN",
"lat": "50.9391670227051",
"lon": "5.87444448471069",
"names": {
"long": "Schinnen",
"middle": "Schinnen",
"short": "Schinnen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400554"
},
{
"code": "SHL",
"country": "NL",
"key": "SHL",
"lat": "52.3094444274902",
"lon": "4.76194429397583",
"names": {
"long": "Schiphol Airport",
"middle": "Schiphol Airport",
"short": "Schiphol"
},
"stationtype": "megastation",
"synonyms": [
"Amsterdam Airport"
],
"uic_code": "8400561"
},
{
"code": "SPV",
"country": "NL",
"key": "SPV",
"lat": "50.8314750744184",
"lon": "5.97973823547363",
"names": {
"long": "Simpelveld",
"middle": "Simpelveld",
"short": "Simpelveld"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400559"
},
{
"code": "STD",
"country": "NL",
"key": "STD",
"lat": "51.0016670227051",
"lon": "5.85861110687256",
"names": {
"long": "Sittard",
"middle": "Sittard",
"short": "Sittard"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400564"
},
{
"code": "SDT",
"country": "NL",
"key": "SDT",
"lat": "51.8297233581543",
"lon": "4.77833318710327",
"names": {
"long": "Sliedrecht",
"middle": "Sliedrecht",
"short": "Sliedrecht"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400565"
},
{
"code": "SDTB",
"country": "NL",
"key": "SDTB",
"lat": "51.829722",
"lon": "4.743333",
"names": {
"long": "Sliedrecht Baanhoek",
"middle": "Baanhoek",
"short": "Baanhoek"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400497"
},
{
"code": "SK",
"country": "NL",
"key": "SK",
"lat": "53.0328688",
"lon": "5.6523969",
"names": {
"long": "Sneek",
"middle": "Sneek",
"short": "Sneek"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400566"
},
{
"code": "SKND",
"country": "NL",
"key": "SKND",
"lat": "53.0409319",
"lon": "5.6631808",
"names": {
"long": "Sneek Noord",
"middle": "Sneek Noord",
"short": "Sneek N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400574"
},
{
"code": "ST",
"country": "NL",
"key": "ST",
"lat": "52.1733322143555",
"lon": "5.30999994277954",
"names": {
"long": "Soest",
"middle": "Soest",
"short": "Soest"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400567"
},
{
"code": "STZ",
"country": "NL",
"key": "STZ",
"lat": "52.1652793884277",
"lon": "5.30305576324463",
"names": {
"long": "Soest Zuid",
"middle": "Soest Zuid",
"short": "Soest Z"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400571"
},
{
"code": "SD",
"country": "NL",
"key": "SD",
"lat": "52.1836128234863",
"lon": "5.30000019073486",
"names": {
"long": "Soestdijk",
"middle": "Soestdijk",
"short": "Soestdijk"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400569"
},
{
"code": "SBK",
"country": "NL",
"key": "SBK",
"lat": "50.94327",
"lon": "5.850529",
"names": {
"long": "Spaubeek",
"middle": "Spaubeek",
"short": "Spaubeek"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400572"
},
{
"code": "SPH",
"country": "NL",
"key": "SPH",
"lat": "50.85355",
"lon": "6.02578",
"names": {
"long": "Spekholzerheide",
"middle": "Spekholzerheide",
"short": "Spekholzer"
},
"stationtype": "facultatiefStation",
"synonyms": [],
"uic_code": "8400670"
},
{
"code": "STV",
"country": "NL",
"key": "STV",
"lat": "52.8865535",
"lon": "5.3600212",
"names": {
"long": "Stavoren",
"middle": "Stavoren",
"short": "Stavoren"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400575"
},
{
"code": "STM",
"country": "NL",
"key": "STM",
"lat": "53.3262092",
"lon": "6.6875551",
"names": {
"long": "Stedum",
"middle": "Stedum",
"short": "Stedum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400576"
},
{
"code": "SWK",
"country": "NL",
"key": "SWK",
"lat": "52.7915109924316",
"lon": "6.11455576324463",
"names": {
"long": "Steenwijk",
"middle": "Steenwijk",
"short": "Steenwijk"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400578"
},
{
"code": "SRN",
"country": "NL",
"key": "SRN",
"lat": "51.0613899230957",
"lon": "5.86305570602417",
"names": {
"long": "Susteren",
"middle": "Susteren",
"short": "Susteren"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400582"
},
{
"code": "SM",
"country": "NL",
"key": "SM",
"lat": "51.23582",
"lon": "6.03228",
"names": {
"long": "Swalmen",
"middle": "Swalmen",
"short": "Swalmen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400583"
},
{
"code": "TG",
"country": "NL",
"key": "TG",
"lat": "51.33894",
"lon": "6.14253",
"names": {
"long": "Tegelen",
"middle": "Tegelen",
"short": "Tegelen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400591"
},
{
"code": "TBG",
"country": "NL",
"key": "TBG",
"lat": "51.9224549",
"lon": "6.3642466",
"names": {
"long": "Terborg",
"middle": "Terborg",
"short": "Terborg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400592"
},
{
"code": "TL",
"country": "NL",
"key": "TL",
"lat": "51.8894462585449",
"lon": "5.42222213745117",
"names": {
"long": "Tiel",
"middle": "Tiel",
"short": "Tiel"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400596"
},
{
"code": "TPSW",
"country": "NL",
"key": "TPSW",
"lat": "51.8738899230957",
"lon": "5.39222240447998",
"names": {
"long": "Tiel Passewaaij",
"middle": "Tiel Passewaaij",
"short": "Passewaaij"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400600"
},
{
"code": "TB",
"country": "NL",
"key": "TB",
"lat": "51.5605545043945",
"lon": "5.08361101150513",
"names": {
"long": "Tilburg",
"middle": "Tilburg",
"short": "Tilburg"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400597"
},
{
"code": "TBR",
"country": "NL",
"key": "TBR",
"lat": "51.5736122131348",
"lon": "4.99444437026978",
"names": {
"long": "Tilburg Reeshof",
"middle": "Tilburg Reeshof",
"short": "Reeshof"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400598"
},
{
"code": "TBU",
"country": "NL",
"key": "TBU",
"lat": "51.564998626709",
"lon": "5.05111122131348",
"names": {
"long": "Tilburg Universiteit",
"middle": "Tilburg Univers.",
"short": "Tilburg Un"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400594"
},
{
"code": "TWL",
"country": "NL",
"key": "TWL",
"lat": "52.2377777099609",
"lon": "6.09861087799072",
"names": {
"long": "Twello",
"middle": "Twello",
"short": "Twello"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400599"
},
{
"code": "UTG",
"country": "NL",
"key": "UTG",
"lat": "52.5216674804687",
"lon": "4.70166683197022",
"names": {
"long": "Uitgeest",
"middle": "Uitgeest",
"short": "Uitgeest"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400615"
},
{
"code": "UHZ",
"country": "NL",
"key": "UHZ",
"lat": "53.4099568",
"lon": "6.6748869",
"names": {
"long": "Uithuizen",
"middle": "Uithuizen",
"short": "Uithuizen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400617"
},
{
"code": "UHM",
"country": "NL",
"key": "UHM",
"lat": "53.4145845",
"lon": "6.7202975",
"names": {
"long": "Uithuizermeeden",
"middle": "Uithuizermeeden",
"short": "Uithuizerm"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400618"
},
{
"code": "UST",
"country": "NL",
"key": "UST",
"lat": "53.4014742",
"lon": "6.6093776",
"names": {
"long": "Usquert",
"middle": "Usquert",
"short": "Usquert"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400619"
},
{
"code": "UT",
"country": "NL",
"key": "UT",
"lat": "52.0888900756836",
"lon": "5.11027765274048",
"names": {
"long": "Utrecht Centraal",
"middle": "Utrecht C.",
"short": "Utrecht C"
},
"stationtype": "megastation",
"synonyms": [
"Utrecht"
],
"uic_code": "8400621"
},
{
"code": "UTLR",
"country": "NL",
"key": "UTLR",
"lat": "52.09896",
"lon": "5.06523",
"names": {
"long": "Utrecht Leidsche Rijn",
"middle": "Leidsche Rijn",
"short": "LeidscheRn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400607"
},
{
"code": "UTLN",
"country": "NL",
"key": "UTLN",
"lat": "52.0655555725098",
"lon": "5.14416646957397",
"names": {
"long": "Utrecht Lunetten",
"middle": "Utrecht Lunetten",
"short": "Lunetten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400623"
},
{
"code": "UTM",
"country": "NL",
"key": "UTM",
"lat": "52.087776184082",
"lon": "5.13138866424561",
"names": {
"long": "Utrecht Maliebaan",
"middle": "Maliebaan",
"short": "Maliebaan"
},
"stationtype": "stoptreinstation",
"synonyms": [
"Spoorwegmuseum"
],
"uic_code": "8400624"
},
{
"code": "UTO",
"country": "NL",
"key": "UTO",
"lat": "52.1100006103516",
"lon": "5.12472200393677",
"names": {
"long": "Utrecht Overvecht",
"middle": "Overvecht",
"short": "Overvecht"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400620"
},
{
"code": "UTT",
"country": "NL",
"key": "UTT",
"lat": "52.1005554199219",
"lon": "5.04166650772095",
"names": {
"long": "Utrecht Terwijde",
"middle": "Utrecht Terwijde",
"short": "Terwijde"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400614"
},
{
"code": "UTVR",
"country": "NL",
"key": "UTVR",
"lat": "52.078889",
"lon": "5.121667",
"names": {
"long": "Utrecht Vaartsche Rijn",
"middle": "Vaartsche Rijn",
"short": "VaartscheR"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400606"
},
{
"code": "UTZL",
"country": "NL",
"key": "UTZL",
"lat": "52.103055",
"lon": "5.09",
"names": {
"long": "Utrecht Zuilen",
"middle": "Utrecht Zuilen",
"short": "Zuilen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400613"
},
{
"code": "VK",
"country": "NL",
"key": "VK",
"lat": "50.8697204589844",
"lon": "5.83222198486328",
"names": {
"long": "Valkenburg",
"middle": "Valkenburg",
"short": "Valkenburg"
},
"stationtype": "knooppuntSneltreinstation",
"synonyms": [],
"uic_code": "8400632"
},
{
"code": "VSV",
"country": "NL",
"key": "VSV",
"lat": "51.937257",
"lon": "6.458839",
"names": {
"long": "Varsseveld",
"middle": "Varsseveld",
"short": "Varsseveld"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400635"
},
{
"code": "VDM",
"country": "NL",
"key": "VDM",
"lat": "53.10324",
"lon": "6.88475",
"names": {
"long": "Veendam",
"middle": "Veendam",
"short": "Veendam"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400636"
},
{
"code": "VNDC",
"country": "NL",
"key": "VNDC",
"lat": "52.0200004577637",
"lon": "5.54861116409302",
"names": {
"long": "Veenendaal Centrum",
"middle": "Veenendaal C.",
"short": "Veenendl C"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400627"
},
{
"code": "VNDW",
"country": "NL",
"key": "VNDW",
"lat": "52.0280570983887",
"lon": "5.53138875961304",
"names": {
"long": "Veenendaal West",
"middle": "Veenendaal West",
"short": "Veenendl W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400628"
},
{
"code": "KLP",
"country": "NL",
"key": "KLP",
"lat": "52.0458335876465",
"lon": "5.57388877868652",
"names": {
"long": "Veenendaal-De Klomp",
"middle": "De Klomp",
"short": "De Klomp"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400637"
},
{
"code": "VP",
"country": "NL",
"key": "VP",
"lat": "51.9947204589844",
"lon": "5.98027801513672",
"names": {
"long": "Velp",
"middle": "Velp",
"short": "Velp"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400640"
},
{
"code": "VL",
"country": "NL",
"key": "VL",
"lat": "51.3636093139648",
"lon": "6.17277765274048",
"names": {
"long": "Venlo",
"middle": "Venlo",
"short": "Venlo"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400644"
},
{
"code": "VRY",
"country": "NL",
"key": "VRY",
"lat": "51.526568099007",
"lon": "6.01417779922485",
"names": {
"long": "Venray",
"middle": "Venray",
"short": "Venray"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400646"
},
{
"code": "VLB",
"country": "NL",
"key": "VLB",
"lat": "51.59193",
"lon": "5.99714",
"names": {
"long": "Vierlingsbeek",
"middle": "Vierlingsbeek",
"short": "Vierlingsb"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400647"
},
{
"code": "VDG",
"country": "NL",
"key": "VDG",
"lat": "51.9030570983887",
"lon": "4.34416675567627",
"names": {
"long": "Vlaardingen Centrum",
"middle": "Vlaardingen C.",
"short": "Vlaard C"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400650"
},
{
"code": "VDO",
"country": "NL",
"key": "VDO",
"lat": "51.9102783203125",
"lon": "4.36166667938232",
"names": {
"long": "Vlaardingen Oost",
"middle": "Vlaardingen Oost",
"short": "Vlaard O"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400649"
},
{
"code": "VDW",
"country": "NL",
"key": "VDW",
"lat": "51.904167175293",
"lon": "4.31305551528931",
"names": {
"long": "Vlaardingen West",
"middle": "Vlaardingen West",
"short": "Vlaard W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400642"
},
{
"code": "VTN",
"country": "NL",
"key": "VTN",
"lat": "52.1030540466309",
"lon": "5.01083326339722",
"names": {
"long": "Vleuten",
"middle": "Vleuten",
"short": "Vleuten"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400651"
},
{
"code": "VS",
"country": "NL",
"key": "VS",
"lat": "51.4458351135254",
"lon": "3.59527778625488",
"names": {
"long": "Vlissingen",
"middle": "Vlissingen",
"short": "Vlissingen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400652"
},
{
"code": "VSS",
"country": "NL",
"key": "VSS",
"lat": "51.4647216796875",
"lon": "3.59527778625488",
"names": {
"long": "Vlissingen Souburg",
"middle": "Souburg",
"short": "Souburg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400653"
},
{
"code": "VDL",
"country": "NL",
"key": "VDL",
"lat": "50.8872222900391",
"lon": "5.93027782440186",
"names": {
"long": "Voerendaal",
"middle": "Voerendaal",
"short": "Voerendaal"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400656"
},
{
"code": "VB",
"country": "NL",
"key": "VB",
"lat": "52.0666656494141",
"lon": "4.3594446182251",
"names": {
"long": "Voorburg",
"middle": "Voorburg",
"short": "Voorburg"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400658"
},
{
"code": "VH",
"country": "NL",
"key": "VH",
"lat": "52.2244453430176",
"lon": "4.4844446182251",
"names": {
"long": "Voorhout",
"middle": "Voorhout",
"short": "Voorhout"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400655"
},
{
"code": "VST",
"country": "NL",
"key": "VST",
"lat": "52.1252784729004",
"lon": "4.43249988555908",
"names": {
"long": "Voorschoten",
"middle": "Voorschoten",
"short": "Voorschtn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400659"
},
{
"code": "VEM",
"country": "NL",
"key": "VEM",
"lat": "52.1575012207031",
"lon": "6.14361095428467",
"names": {
"long": "Voorst-Empe",
"middle": "Voorst-Empe",
"short": "Voorst-E"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400668"
},
{
"code": "VD",
"country": "NL",
"key": "VD",
"lat": "52.1071949",
"lon": "6.3170457",
"names": {
"long": "Vorden",
"middle": "Vorden",
"short": "Vorden"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400661"
},
{
"code": "VZ",
"country": "NL",
"key": "VZ",
"lat": "52.40203",
"lon": "6.60041",
"names": {
"long": "Vriezenveen",
"middle": "Vriezenveen",
"short": "Vriezenvn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400664"
},
{
"code": "VHP",
"country": "NL",
"key": "VHP",
"lat": "52.4571921",
"lon": "6.5696679",
"names": {
"long": "Vroomshoop",
"middle": "Vroomshoop",
"short": "Vroomshoop"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400666"
},
{
"code": "VG",
"country": "NL",
"key": "VG",
"lat": "51.6555557250977",
"lon": "5.29194450378418",
"names": {
"long": "Vught",
"middle": "Vught",
"short": "Vught"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400667"
},
{
"code": "WAD",
"country": "NL",
"key": "WAD",
"lat": "52.0441665649414",
"lon": "4.6497220993042",
"names": {
"long": "Waddinxveen",
"middle": "Waddinxveen",
"short": "Waddinxvn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400675"
},
{
"code": "WADN",
"country": "NL",
"key": "WADN",
"lat": "52.0550003051758",
"lon": "4.64833354949951",
"names": {
"long": "Waddinxveen Noord",
"middle": "Waddinxveen N.",
"short": "Waddinxv N"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400674"
},
{
"code": "WFM",
"country": "NL",
"key": "WFM",
"lat": "53.3908431",
"lon": "6.5671364",
"names": {
"long": "Warffum",
"middle": "Warffum",
"short": "Warffum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400679"
},
{
"code": "WT",
"country": "NL",
"key": "WT",
"lat": "51.2486114501953",
"lon": "5.70361089706421",
"names": {
"long": "Weert",
"middle": "Weert",
"short": "Weert"
},
"stationtype": "intercitystation",
"synonyms": [],
"uic_code": "8400684"
},
{
"code": "WP",
"country": "NL",
"key": "WP",
"lat": "52.3127784729004",
"lon": "5.04305553436279",
"names": {
"long": "Weesp",
"middle": "Weesp",
"short": "Weesp"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400685"
},
{
"code": "WL",
"country": "NL",
"key": "WL",
"lat": "51.9578065",
"lon": "6.213844",
"names": {
"long": "Wehl",
"middle": "Wehl",
"short": "Wehl"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400686"
},
{
"code": "WTV",
"country": "NL",
"key": "WTV",
"lat": "51.96286",
"lon": "5.9695",
"names": {
"long": "Westervoort",
"middle": "Westervoort",
"short": "Westervrt"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400688"
},
{
"code": "WZ",
"country": "NL",
"key": "WZ",
"lat": "52.4541664123535",
"lon": "6.00250005722046",
"names": {
"long": "Wezep",
"middle": "Wezep",
"short": "Wezep"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400690"
},
{
"code": "WDN",
"country": "NL",
"key": "WDN",
"lat": "52.3613891601562",
"lon": "6.59166669845581",
"names": {
"long": "Wierden",
"middle": "Wierden",
"short": "Wierden"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400691"
},
{
"code": "WC",
"country": "NL",
"key": "WC",
"lat": "51.8116683959961",
"lon": "5.73083353042603",
"names": {
"long": "Wijchen",
"middle": "Wijchen",
"short": "Wijchen"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400710"
},
{
"code": "WH",
"country": "NL",
"key": "WH",
"lat": "52.3902778625488",
"lon": "6.1405553817749",
"names": {
"long": "Wijhe",
"middle": "Wijhe",
"short": "Wijhe"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400711"
},
{
"code": "WS",
"country": "NL",
"key": "WS",
"lat": "53.1392377",
"lon": "7.035101",
"names": {
"long": "Winschoten",
"middle": "Winschoten",
"short": "Winschoten"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400696"
},
{
"code": "WSM",
"country": "NL",
"key": "WSM",
"lat": "53.3300994",
"lon": "6.5202905",
"names": {
"long": "Winsum",
"middle": "Winsum",
"short": "Winsum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400697"
},
{
"code": "WW",
"country": "NL",
"key": "WW",
"lat": "51.9677307",
"lon": "6.7155181",
"names": {
"long": "Winterswijk",
"middle": "Winterswijk",
"short": "Winterswk"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400698"
},
{
"code": "WWW",
"country": "NL",
"key": "WWW",
"lat": "51.97453",
"lon": "6.70417",
"names": {
"long": "Winterswijk West",
"middle": "Winterswijk West",
"short": "Wintersw W"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400700"
},
{
"code": "WD",
"country": "NL",
"key": "WD",
"lat": "52.0849990844727",
"lon": "4.89361095428467",
"names": {
"long": "Woerden",
"middle": "Woerden",
"short": "Woerden"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400702"
},
{
"code": "WF",
"country": "NL",
"key": "WF",
"lat": "52.0055541992188",
"lon": "5.7936110496521",
"names": {
"long": "Wolfheze",
"middle": "Wolfheze",
"short": "Wolfheze"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400704"
},
{
"code": "WV",
"country": "NL",
"key": "WV",
"lat": "52.8808326721191",
"lon": "6.00361108779907",
"names": {
"long": "Wolvega",
"middle": "Wolvega",
"short": "Wolvega"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400705"
},
{
"code": "WK",
"country": "NL",
"key": "WK",
"lat": "52.9724864",
"lon": "5.4564285",
"names": {
"long": "Workum",
"middle": "Workum",
"short": "Workum"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400706"
},
{
"code": "WM",
"country": "NL",
"key": "WM",
"lat": "52.4891662597656",
"lon": "4.79222202301025",
"names": {
"long": "Wormerveer",
"middle": "Wormerveer",
"short": "Wormerveer"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400707"
},
{
"code": "ZD",
"country": "NL",
"key": "ZD",
"lat": "52.4388885498047",
"lon": "4.81361103057861",
"names": {
"long": "Zaandam",
"middle": "Zaandam",
"short": "Zaandam"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400731"
},
{
"code": "ZDK",
"country": "NL",
"key": "ZDK",
"lat": "52.4566650390625",
"lon": "4.82027769088745",
"names": {
"long": "Zaandam Kogerveld",
"middle": "Kogerveld",
"short": "Kogerveld"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400728"
},
{
"code": "ZZS",
"country": "NL",
"key": "ZZS",
"lat": "52.469165802002",
"lon": "4.80499982833862",
"names": {
"long": "Zaandijk Zaanse Schans",
"middle": "Zaanse Schans",
"short": "Zaanse S."
},
"stationtype": "stoptreinstation",
"synonyms": [
"Koog Zaandijk"
],
"uic_code": "8400364"
},
{
"code": "ZBM",
"country": "NL",
"key": "ZBM",
"lat": "51.8088874816895",
"lon": "5.26333332061768",
"names": {
"long": "Zaltbommel",
"middle": "Zaltbommel",
"short": "Zaltbommel"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400732"
},
{
"code": "ZVT",
"country": "NL",
"key": "ZVT",
"lat": "52.3752784729004",
"lon": "4.53277778625488",
"names": {
"long": "Zandvoort aan Zee",
"middle": "Zandvoort a Zee",
"short": "Zandvoort"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400733"
},
{
"code": "ZA",
"country": "NL",
"key": "ZA",
"lat": "51.920056",
"lon": "5.7228408",
"names": {
"long": "Zetten-Andelst",
"middle": "Zetten-Andelst",
"short": "Zetten-And"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400734"
},
{
"code": "ZV",
"country": "NL",
"key": "ZV",
"lat": "51.9230537414551",
"lon": "6.07194423675537",
"names": {
"long": "Zevenaar",
"middle": "Zevenaar",
"short": "Zevenaar"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400735"
},
{
"code": "ZVB",
"country": "NL",
"key": "ZVB",
"lat": "51.64042",
"lon": "4.60904",
"names": {
"long": "Zevenbergen",
"middle": "Zevenbergen",
"short": "Zevenbergn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400737"
},
{
"code": "ZTM",
"country": "NL",
"key": "ZTM",
"lat": "52.0475006103516",
"lon": "4.47722244262695",
"names": {
"long": "Zoetermeer",
"middle": "Zoetermeer",
"short": "Zoetermeer"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400741"
},
{
"code": "ZTMO",
"country": "NL",
"key": "ZTMO",
"lat": "52.0463905334473",
"lon": "4.49277782440186",
"names": {
"long": "Zoetermeer Oost",
"middle": "Zoetermeer Oost",
"short": "Zoetermr O"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400740"
},
{
"code": "ZB",
"country": "NL",
"key": "ZB",
"lat": "53.1596122800056",
"lon": "6.8679141998291",
"names": {
"long": "Zuidbroek",
"middle": "Zuidbroek",
"short": "Zuidbroek"
},
"stationtype": "knooppuntStoptreinstation",
"synonyms": [],
"uic_code": "8400742"
},
{
"code": "ZH",
"country": "NL",
"key": "ZH",
"lat": "53.2486292",
"lon": "6.4062361",
"names": {
"long": "Zuidhorn",
"middle": "Zuidhorn",
"short": "Zuidhorn"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400743"
},
{
"code": "ZP",
"country": "NL",
"key": "ZP",
"lat": "52.1452789306641",
"lon": "6.19416666030884",
"names": {
"long": "Zutphen",
"middle": "Zutphen",
"short": "Zutphen"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400744"
},
{
"code": "ZWD",
"country": "NL",
"key": "ZWD",
"lat": "51.814998626709",
"lon": "4.64166688919067",
"names": {
"long": "Zwijndrecht",
"middle": "Zwijndrecht",
"short": "Zwijndrcht"
},
"stationtype": "stoptreinstation",
"synonyms": [],
"uic_code": "8400752"
},
{
"code": "ZL",
"country": "NL",
"key": "ZL",
"lat": "52.5047225952148",
"lon": "6.09194421768188",
"names": {
"long": "Zwolle",
"middle": "Zwolle",
"short": "Zwolle"
},
"stationtype": "knooppuntIntercitystation",
"synonyms": [],
"uic_code": "8400747"
}
]
We can make this file beautiful and searchable if this error is corrected: It looks like row 205 should actually have 5 columns, instead of 6. in line 204.
ritnummer,station,treinsoort,vertrektijd,vervoerder
7649,AHPR,Sprinter,2017-03-28T15:00:00+0200,NS
15849,AMF,Sprinter,2017-03-28T15:00:00+0200,NS
7945,AML,Sprinter,2017-03-28T15:00:00+0200,NS
7954,AML,Sprinter,2017-03-28T15:00:00+0200,NS
1552,APD,Intercity,2017-03-28T15:00:00+0200,NS
149,ASD,Intercity,2017-03-28T15:00:00+0200,NS International
846,ASS,Intercity,2017-03-28T15:00:00+0200,NS
5442,ASS,Sprinter,2017-03-28T15:00:00+0200,NS
30954,ATN,stoptrein,2017-03-28T15:00:00+0200,Arriva
30945,ATN,stoptrein,2017-03-28T15:00:00+0200,Arriva
5254,BET,Sprinter,2017-03-28T15:00:00+0200,NS
32251,BMR,stoptrein,2017-03-28T15:00:00+0200,Arriva
4853,CAS,Sprinter,2017-03-28T15:00:00+0200,NS
3843,CO,Sneltrein,2017-03-28T15:00:00+0200,Arriva
36746,DDRS,stoptrein,2017-03-28T15:00:00+0200,Arriva
36853,DDRS,stoptrein,2017-03-28T15:00:00+0200,Arriva
6652,DDZD,Sprinter,2017-03-28T15:00:00+0200,NS
8045,DL,stoptrein,2017-03-28T15:00:00+0200,Arriva
3856,DL,Sneltrein,2017-03-28T15:00:00+0200,Arriva
1649,DV,Intercity,2017-03-28T15:00:00+0200,NS
30752,DVN,stoptrein,2017-03-28T15:00:00+0200,Breng
37758,DZ,stoptrein,2017-03-28T15:00:00+0200,Arriva
6051,GDM,Sprinter,2017-03-28T15:00:00+0200,NS
6050,GDM,Sprinter,2017-03-28T15:00:00+0200,NS
31245,GO,stoptrein,2017-03-28T15:00:00+0200,Syntus
6650,GZ,Sprinter,2017-03-28T15:00:00+0200,NS
37443,HDG,stoptrein,2017-03-28T15:00:00+0200,Arriva
7952,HNO,Sprinter,2017-03-28T15:00:00+0200,NS
8156,HRN,Sprinter,2017-03-28T15:00:00+0200,NS
6953,HTN,Sprinter,2017-03-28T15:00:00+0200,NS
5751,HVS,Sprinter,2017-03-28T15:00:00+0200,NS
32552,KRD,stoptrein,2017-03-28T15:00:00+0200,Arriva
2457,LEDN,Intercity,2017-03-28T15:00:00+0200,NS
2157,LEDN,Intercity,2017-03-28T15:00:00+0200,NS
20321,LG,stoptrein,2017-03-28T15:00:00+0200,DB
30843,LTV,stoptrein,2017-03-28T15:00:00+0200,Arriva
30858,LTV,stoptrein,2017-03-28T15:00:00+0200,Arriva
32450,LUT,stoptrein,2017-03-28T15:00:00+0200,Arriva
2236,MDB,Intercity,2017-03-28T15:00:00+0200,NS
4851,OBD,Sprinter,2017-03-28T15:00:00+0200,NS
31156,OP,stoptrein,2017-03-28T15:00:00+0200,Arriva
5650,PT,Sprinter,2017-03-28T15:00:00+0200,NS
4050,RTN,Sprinter,2017-03-28T15:00:00+0200,NS
4644,SHL,Sprinter,2017-03-28T15:00:00+0200,NS
3155,SHL,Intercity,2017-03-28T15:00:00+0200,NS
37858,SPM,stoptrein,2017-03-28T15:00:00+0200,Arriva
9047,SWK,Sprinter,2017-03-28T15:00:00+0200,NS
7052,TWL,Sprinter,2017-03-28T15:00:00+0200,NS
11748,UT,Intercity,2017-03-28T15:00:00+0200,NS
6855,VB,Sprinter,2017-03-28T15:00:00+0200,NS
4244,VDG,Sprinter,2017-03-28T15:00:00+0200,NS
31056,VHP,stoptrein,2017-03-28T15:00:00+0200,Arriva
31045,VHP,stoptrein,2017-03-28T15:00:00+0200,Arriva
7450,VNDC,Sprinter,2017-03-28T15:00:00+0200,NS
3657,WH,Intercity,2017-03-28T15:00:00+0200,NS
3644,WH,Intercity,2017-03-28T15:00:00+0200,NS
30952,WL,stoptrein,2017-03-28T15:00:00+0200,Arriva
5652,WZ,Sprinter,2017-03-28T15:00:00+0200,NS
37458,ZH,stoptrein,2017-03-28T15:00:00+0200,Arriva
5950,ZLW,Sprinter,2017-03-28T15:00:00+0200,NS
5048,ZWD,Sprinter,2017-03-28T15:00:00+0200,NS
5053,ZWD,Sprinter,2017-03-28T15:00:00+0200,NS
3050,AH,Intercity,2017-03-28T15:01:00+0200,NS
4455,AHZ,Sprinter,2017-03-28T15:01:00+0200,NS
14651,ALMB,Sprinter,2017-03-28T15:01:00+0200,NS
15850,AMF,Sprinter,2017-03-28T15:01:00+0200,NS
4948,AMPO,Sprinter,2017-03-28T15:01:00+0200,NS
857,AMR,Intercity,2017-03-28T15:01:00+0200,NS
14646,ASDM,Sprinter,2017-03-28T15:01:00+0200,NS
7453,ASHD,Sprinter,2017-03-28T15:01:00+0200,NS
5461,ASS,Sprinter,2017-03-28T15:01:00+0200,NS
14653,ASSP,Sprinter,2017-03-28T15:01:00+0200,NS
5648,BHV,Sprinter,2017-03-28T15:01:00+0200,NS
4557,BKG,Intercity,2017-03-28T15:01:00+0200,NS
4544,BKG,Intercity,2017-03-28T15:01:00+0200,NS
4844,CAS,Sprinter,2017-03-28T15:01:00+0200,NS
6647,DDZD,Sprinter,2017-03-28T15:01:00+0200,NS
5651,DLD,Sprinter,2017-03-28T15:01:00+0200,NS
5746,DMNZ,Sprinter,2017-03-28T15:01:00+0200,NS
2442,DVD,Intercity,2017-03-28T15:01:00+0200,NS
4055,DVD,Sprinter,2017-03-28T15:01:00+0200,NS
5363,EDN,stoptrein,2017-03-28T15:01:00+0200,NMBS
849,EHV,Intercity,2017-03-28T15:01:00+0200,NS
32550,GLN,stoptrein,2017-03-28T15:01:00+0200,Arriva
31254,GO,stoptrein,2017-03-28T15:01:00+0200,Syntus
6357,GVM,Sprinter,2017-03-28T15:01:00+0200,NS
5157,GVMW,Sprinter,2017-03-28T15:01:00+0200,NS
6649,GZ,Sprinter,2017-03-28T15:01:00+0200,NS
4855,HLM,Sprinter,2017-03-28T15:01:00+0200,NS
3346,HN,Sprinter,2017-03-28T15:01:00+0200,NS
3357,HN,Sprinter,2017-03-28T15:01:00+0200,NS
5748,HVS,Sprinter,2017-03-28T15:01:00+0200,NS
3057,HWD,Intercity,2017-03-28T15:01:00+0200,NS
4057,KZ,Sprinter,2017-03-28T15:01:00+0200,NS
37145,LW,stoptrein,2017-03-28T15:01:00+0200,Arriva
32141,MES,Sneltrein,2017-03-28T15:01:00+0200,Arriva
7650,NM,Sprinter,2017-03-28T15:01:00+0200,NS
7651,NM,Sprinter,2017-03-28T15:01:00+0200,NS
4846,OBD,Sprinter,2017-03-28T15:01:00+0200,NS
7549,OTB,Sprinter,2017-03-28T15:01:00+0200,NS
2259,RSD,Intercity,2017-03-28T15:01:00+0200,NS
2846,RTA,Intercity,2017-03-28T15:01:00+0200,NS
5148,RTB,Sprinter,2017-03-28T15:01:00+0200,NS
5055,SDM,Sprinter,2017-03-28T15:01:00+0200,NS
4655,SHL,Sprinter,2017-03-28T15:01:00+0200,NS
3353,SSH,Sprinter,2017-03-28T15:01:00+0200,NS
5551,ST,Sprinter,2017-03-28T15:01:00+0200,NS
37656,SWD,stoptrein,2017-03-28T15:01:00+0200,Arriva
6148,UTLR,Sprinter,2017-03-28T15:01:00+0200,NS
4255,VDO,Sprinter,2017-03-28T15:01:00+0200,NS
6342,VST,Sprinter,2017-03-28T15:01:00+0200,NS
37558,WS,stoptrein,2017-03-28T15:01:00+0200,Arriva
37843,ZB,stoptrein,2017-03-28T15:01:00+0200,Arriva
30749,ZV,stoptrein,2017-03-28T15:01:00+0200,Breng
4044,ZZS,Sprinter,2017-03-28T15:01:00+0200,NS
7446,AC,Sprinter,2017-03-28T15:02:00+0200,NS
30949,AH,stoptrein,2017-03-28T15:02:00+0200,Arriva
7652,AHPR,Sprinter,2017-03-28T15:02:00+0200,NS
2648,ALM,Intercity,2017-03-28T15:02:00+0200,NS
14648,ALMP,Sprinter,2017-03-28T15:02:00+0200,NS
1549,APD,Intercity,2017-03-28T15:02:00+0200,NS
4046,ASA,Sprinter,2017-03-28T15:02:00+0200,NS
3553,ASB,Intercity,2017-03-28T15:02:00+0200,NS
5846,ASD,Sprinter,2017-03-28T15:02:00+0200,NS
37743,BDM,stoptrein,2017-03-28T15:02:00+0200,Arriva
36846,BHDV,stoptrein,2017-03-28T15:02:00+0200,Arriva
36753,BHDV,stoptrein,2017-03-28T15:02:00+0200,Arriva
32451,BK,stoptrein,2017-03-28T15:02:00+0200,Arriva
8145,BL,Sprinter,2017-03-28T15:02:00+0200,NS
7451,BNK,Sprinter,2017-03-28T15:02:00+0200,NS
32250,BR,stoptrein,2017-03-28T15:02:00+0200,Arriva
32552,CVM,stoptrein,2017-03-28T15:02:00+0200,Arriva
30947,DTCH,stoptrein,2017-03-28T15:02:00+0200,Arriva
5046,DTZ,Sprinter,2017-03-28T15:02:00+0200,NS
37758,DZW,stoptrein,2017-03-28T15:02:00+0200,Arriva
852,EHV,Intercity,2017-03-28T15:02:00+0200,NS
20269,ES,stoptrein,2017-03-28T15:02:00+0200,DB
8646,GD,Sprinter,2017-03-28T15:02:00+0200,R-net
4842,HLM,Sprinter,2017-03-28T15:02:00+0200,NS
13554,HM,Intercity,2017-03-28T15:02:00+0200,NS
31145,HMN,stoptrein,2017-03-28T15:02:00+0200,Arriva
32045,HRL,stoptrein,2017-03-28T15:02:00+0200,Arriva
4452,HT,Sprinter,2017-03-28T15:02:00+0200,NS
31441,HVL,stoptrein,2017-03-28T15:02:00+0200,Valleilijn
8552,KPN,Sprinter,2017-03-28T15:02:00+0200,NS
8846,LDL,Intercity,2017-03-28T15:02:00+0200,NS
2444,LEDN,Intercity,2017-03-28T15:02:00+0200,NS
32351,MMLH,stoptrein,2017-03-28T15:02:00+0200,Arriva
32046,MTN,stoptrein,2017-03-28T15:02:00+0200,Arriva
6456,MZ,Sprinter,2017-03-28T15:02:00+0200,NS
31256,ODZ,stoptrein,2017-03-28T15:02:00+0200,Syntus
2261,RB,Intercity,2017-03-28T15:02:00+0200,NS
4146,RTD,Sprinter,2017-03-28T15:02:00+0200,NS
5155,RTZ,Sprinter,2017-03-28T15:02:00+0200,NS
2446,SDM,Intercity,2017-03-28T15:02:00+0200,NS
32553,SN,stoptrein,2017-03-28T15:02:00+0200,Arriva
5548,ST,Sprinter,2017-03-28T15:02:00+0200,NS
37160,STV,stoptrein,2017-03-28T15:02:00+0200,Arriva
5249,TBU,Sprinter,2017-03-28T15:02:00+0200,NS
37658,UHM,stoptrein,2017-03-28T15:02:00+0200,Arriva
37641,UHM,stoptrein,2017-03-28T15:02:00+0200,Arriva
6948,UTLN,Sprinter,2017-03-28T15:02:00+0200,NS
4048,WD,Sprinter,2017-03-28T15:02:00+0200,NS
7047,WDN,Sprinter,2017-03-28T15:02:00+0200,NS
1851,ALM,Intercity,2017-03-28T15:03:00+0200,NS
15849,AMFS,Sprinter,2017-03-28T15:03:00+0200,NS
7945,AMRI,Sprinter,2017-03-28T15:03:00+0200,NS
2263,ARN,Intercity,2017-03-28T15:03:00+0200,NS
3053,ASA,Intercity,2017-03-28T15:03:00+0200,NS
4353,ASDZ,Sprinter,2017-03-28T15:03:00+0200,NS
3355,ASS,Sprinter,2017-03-28T15:03:00+0200,NS
4744,ASS,Sprinter,2017-03-28T15:03:00+0200,NS
4544,BKF,Intercity,2017-03-28T15:03:00+0200,NS
31440,BNN,stoptrein,2017-03-28T15:03:00+0200,Valleilijn
31056,DA,stoptrein,2017-03-28T15:03:00+0200,Arriva
14653,DMN,Sprinter,2017-03-28T15:03:00+0200,NS
37256,DRP,stoptrein,2017-03-28T15:03:00+0200,Arriva
1652,DV,Intercity,2017-03-28T15:03:00+0200,NS
5746,DVD,Sprinter,2017-03-28T15:03:00+0200,NS
3151,ED,Intercity,2017-03-28T15:03:00+0200,NS
20321,EGHM,stoptrein,2017-03-28T15:03:00+0200,DB
9649,EHV,Sprinter,2017-03-28T15:03:00+0200,NS
5649,EML,Sprinter,2017-03-28T15:03:00+0200,NS
20148,GERP,stoptrein,2017-03-28T15:03:00+0200,Arriva
37756,GNN,stoptrein,2017-03-28T15:03:00+0200,Arriva
2255,GV,Intercity,2017-03-28T15:03:00+0200,NS
1855,GVC,Intercity,2017-03-28T15:03:00+0200,NS
2253,HAD,Intercity,2017-03-28T15:03:00+0200,NS
146,HGL,Intercity,2017-03-28T15:03:00+0200,NS International
37858,HGZ,stoptrein,2017-03-28T15:03:00+0200,Arriva
654,HR,Intercity,2017-03-28T15:03:00+0200,NS
6651,HT,Sprinter,2017-03-28T15:03:00+0200,NS
5748,HVSM,Sprinter,2017-03-28T15:03:00+0200,NS
5751,HVSP,Sprinter,2017-03-28T15:03:00+0200,NS
20157,KW,stoptrein,2017-03-28T15:03:00+0200,Arriva
4157,MSW,Sprinter,2017-03-28T15:03:00+0200,NS
32043,MT,stoptrein,2017-03-28T15:03:00+0200,Arriva
32348,NMH,stoptrein,2017-03-28T15:03:00+0200,Arriva
847,RM,Intercity,2017-03-28T15:03:00+0200,NS
7054,RSN,Sprinter,2017-03-28T15:03:00+0200,NS
9239,RTD,Intercity,2017-03-28T15:03:00+0200,NS International
37643,SWD,stoptrein,2017-03-28T15:03:00+0200,Arriva
3652,TB,Intercity,2017-03-28T15:03:00+0200,NS
126,UT,ICE,International,2017-03-28T15:03:00+0200,NS International
2848,UT,Intercity,2017-03-28T15:03:00+0200,NS
4757,UTG,Sprinter,2017-03-28T15:03:00+0200,NS
6148,UTT,Sprinter,2017-03-28T15:03:00+0200,NS
4244,VDW,Sprinter,2017-03-28T15:03:00+0200,NS
32249,VL,stoptrein,2017-03-28T15:03:00+0200,Arriva
7450,VNDW,Sprinter,2017-03-28T15:03:00+0200,NS
32350,VRY,stoptrein,2017-03-28T15:03:00+0200,Arriva
4450,WC,Sprinter,2017-03-28T15:03:00+0200,NS
7846,WD,Sprinter,2017-03-28T15:03:00+0200,NS
6855,YPB,Sprinter,2017-03-28T15:03:00+0200,NS
3348,ZD,Sprinter,2017-03-28T15:03:00+0200,NS
7453,AC,Sprinter,2017-03-28T15:04:00+0200,NS
30949,AHP,stoptrein,2017-03-28T15:04:00+0200,Arriva
11650,AMFS,Intercity,2017-03-28T15:04:00+0200,NS
4055,ASB,Sprinter,2017-03-28T15:04:00+0200,NS
2248,ASD,Intercity,2017-03-28T15:04:00+0200,NS
2142,ASS,Intercity,2017-03-28T15:04:00+0200,NS
4855,BLL,Sprinter,2017-03-28T15:04:00+0200,NS
3044,CAS,Intercity,2017-03-28T15:04:00+0200,NS
13547,DN,Intercity,2017-03-28T15:04:00+0200,NS
2244,DT,Intercity,2017-03-28T15:04:00+0200,NS
6342,DVNK,Sprinter,2017-03-28T15:04:00+0200,NS
32552,EGH,stoptrein,2017-03-28T15:04:00+0200,Arriva
5247,EHS,Sprinter,2017-03-28T15:04:00+0200,NS
7956,ES,Sprinter,2017-03-28T15:04:00+0200,NS
37443,FWD,stoptrein,2017-03-28T15:04:00+0200,Arriva
2046,GD,Intercity,2017-03-28T15:04:00+0200,NS
5146,GV,Sprinter,2017-03-28T15:04:00+0200,NS
3059,HDR,Intercity,2017-03-28T15:04:00+0200,NS
4644,HFD,Sprinter,2017-03-28T15:04:00+0200,NS
5755,HFD,Sprinter,2017-03-28T15:04:00+0200,NS
6953,HTNC,Sprinter,2017-03-28T15:04:00+0200,NS
4950,HVSP,Sprinter,2017-03-28T15:04:00+0200,NS
2238,KRG,Intercity,2017-03-28T15:04:00+0200,NS
31156,KTR,stoptrein,2017-03-28T15:04:00+0200,Arriva
31338,LTN,stoptrein,2017-03-28T15:04:00+0200,Valleilijn
37456,LWC,stoptrein,2017-03-28T15:04:00+0200,Arriva
1847,MP,Intercity,2017-03-28T15:04:00+0200,NS
7651,NML,Sprinter,2017-03-28T15:04:00+0200,NS
4255,NWL,Sprinter,2017-03-28T15:04:00+0200,NS
7947,RAT,Sprinter,2017-03-28T15:04:00+0200,NS
5157,RSW,Sprinter,2017-03-28T15:04:00+0200,NS
4453,RVS,Sprinter,2017-03-28T15:04:00+0200,NS
5551,SD,Sprinter,2017-03-28T15:04:00+0200,NS
36853,SDTB,stoptrein,2017-03-28T15:04:00+0200,Arriva
753,SHL,Intercity,2017-03-28T15:04:00+0200,NS
32450,STD,stoptrein,2017-03-28T15:04:00+0200,Arriva
5548,STZ,Sprinter,2017-03-28T15:04:00+0200,NS
127,UT,ICE,International,2017-03-28T15:04:00+0200,NS International
13556,VL,Intercity,2017-03-28T15:04:00+0200,NS
7649,VP,Sprinter,2017-03-28T15:04:00+0200,NS
2236,VSS,Intercity,2017-03-28T15:04:00+0200,NS
4044,WM,Sprinter,2017-03-28T15:04:00+0200,NS
15848,WP,Sprinter,2017-03-28T15:04:00+0200,NS
30752,WTV,stoptrein,2017-03-28T15:04:00+0200,Breng
6950,ZBM,Sprinter,2017-03-28T15:04:00+0200,NS
3646,ZP,Intercity,2017-03-28T15:04:00+0200,NS
7844,ZTMO,Sprinter,2017-03-28T15:04:00+0200,NS
3049,AH,Intercity,2017-03-28T15:05:00+0200,NS
7652,AHP,Sprinter,2017-03-28T15:05:00+0200,NS
2461,ALMB,Intercity,2017-03-28T15:05:00+0200,NS
4948,ALMM,Sprinter,2017-03-28T15:05:00+0200,NS
551,AMF,Intercity,2017-03-28T15:05:00+0200,NS
4351,AMPO,Sprinter,2017-03-28T15:05:00+0200,NS
17845,APD,stoptrein,2017-03-28T15:05:00+0200,Arriva
7052,APDO,Sprinter,2017-03-28T15:05:00+0200,NS
37758,APG,stoptrein,2017-03-28T15:05:00+0200,Arriva
7455,ASD,Sprinter,2017-03-28T15:05:00+0200,NS
4046,ASDM,Sprinter,2017-03-28T15:05:00+0200,NS
2459,ASDZ,Intercity,2017-03-28T15:05:00+0200,NS
3548,ASDZ,Intercity,2017-03-28T15:05:00+0200,NS
754,ASN,Intercity,2017-03-28T15:05:00+0200,NS
2448,DDR,Intercity,2017-03-28T15:05:00+0200,NS
14649,DRON,Sprinter,2017-03-28T15:05:00+0200,NS
5046,DT,Sprinter,2017-03-28T15:05:00+0200,NS
9652,EHV,Sprinter,2017-03-28T15:05:00+0200,NS
4455,EST,Sprinter,2017-03-28T15:05:00+0200,NS
8058,GBG,stoptrein,2017-03-28T15:05:00+0200,Arriva
6846,GDG,Sprinter,2017-03-28T15:05:00+0200,NS
37458,GK,stoptrein,2017-03-28T15:05:00+0200,Arriva
36846,GND,stoptrein,2017-03-28T15:05:00+0200,Arriva
8154,HGV,Sprinter,2017-03-28T15:05:00+0200,NS
6359,HIL,Sprinter,2017-03-28T15:05:00+0200,NS
4557,HKS,Intercity,2017-03-28T15:05:00+0200,NS
4842,HLMS,Sprinter,2017-03-28T15:05:00+0200,NS
4853,HLO,Sprinter,2017-03-28T15:05:00+0200,NS
3558,HRL,Intercity,2017-03-28T15:05:00+0200,NS
32045,HRLW,stoptrein,2017-03-28T15:05:00+0200,Arriva
4452,HTO,Sprinter,2017-03-28T15:05:00+0200,NS
6357,LAA,Sprinter,2017-03-28T15:05:00+0200,NS
2144,LEDN,Intercity,2017-03-28T15:05:00+0200,NS
4642,LEDN,Sprinter,2017-03-28T15:05:00+0200,NS
31339,LTN,stoptrein,2017-03-28T15:05:00+0200,Valleilijn
32046,MES,stoptrein,2017-03-28T15:05:00+0200,Arriva
20157,MTH,stoptrein,2017-03-28T15:05:00+0200,Arriva
32553,NH,stoptrein,2017-03-28T15:05:00+0200,Arriva
5650,NKK,Sprinter,2017-03-28T15:05:00+0200,NS
7650,NMGO,Sprinter,2017-03-28T15:05:00+0200,NS
3350,NVP,Sprinter,2017-03-28T15:05:00+0200,NS
3650,O,Intercity,2017-03-28T15:05:00+0200,NS
4353,RAI,Sprinter,2017-03-28T15:05:00+0200,NS
5155,RLB,Sprinter,2017-03-28T15:05:00+0200,NS
32252,RM,stoptrein,2017-03-28T15:05:00+0200,Arriva
4050,RTA,Sprinter,2017-03-28T15:05:00+0200,NS
9339,RTD,Thalys,2017-03-28T15:05:00+0200,NS International
2455,RTD,Intercity,2017-03-28T15:05:00+0200,NS
555,RTD,Intercity,2017-03-28T15:05:00+0200,NS
11655,SHL,Intercity,2017-03-28T15:05:00+0200,NS
1046,SHL,Intercity,direct,2017-03-28T15:05:00+0200,NS
6650,TBR,Sprinter,2017-03-28T15:05:00+0200,NS
6053,UT,Sprinter,2017-03-28T15:05:00+0200,NS
6948,UTVR,Sprinter,2017-03-28T15:05:00+0200,NS
9650,VG,Sprinter,2017-03-28T15:05:00+0200,NS
20085,VL,stoptrein,2017-03-28T15:05:00+0200,Keolis
7855,WD,Sprinter,2017-03-28T15:05:00+0200,NS
4057,ZD,Sprinter,2017-03-28T15:05:00+0200,NS
5953,ZLW,Sprinter,2017-03-28T15:05:00+0200,NS
14648,ALM,Sprinter,2017-03-28T15:06:00+0200,NS
1754,AML,Intercity,2017-03-28T15:06:00+0200,NS
3057,AMRN,Intercity,2017-03-28T15:06:00+0200,NS
4548,ASD,Intercity,2017-03-28T15:06:00+0200,NS
4055,ASHD,Sprinter,2017-03-28T15:06:00+0200,NS
7446,ASHD,Sprinter,2017-03-28T15:06:00+0200,NS
5048,BRD,Sprinter,2017-03-28T15:06:00+0200,NS
9651,BTL,Sprinter,2017-03-28T15:06:00+0200,NS
6050,CL,Sprinter,2017-03-28T15:06:00+0200,NS
7451,DB,Sprinter,2017-03-28T15:06:00+0200,NS
31245,DDN,stoptrein,2017-03-28T15:06:00+0200,Syntus
2453,DDR,Intercity,2017-03-28T15:06:00+0200,NS
30952,DID,stoptrein,2017-03-28T15:06:00+0200,Arriva
7049,DV,Sprinter,2017-03-28T15:06:00+0200,NS
20269,ESE,stoptrein,2017-03-28T15:06:00+0200,DB
3654,ETN,Intercity,2017-03-28T15:06:00+0200,NS
5057,GVC,Sprinter,2017-03-28T15:06:00+0200,NS
5855,HFD,Sprinter,2017-03-28T15:06:00+0200,NS
37243,HLG,stoptrein,2017-03-28T15:06:00+0200,Arriva
2159,HLM,Intercity,2017-03-28T15:06:00+0200,NS
5751,HOR,Sprinter,2017-03-28T15:06:00+0200,NS
5461,HWZB,Sprinter,2017-03-28T15:06:00+0200,NS
37160,KMW,stoptrein,2017-03-28T15:06:00+0200,Arriva
2255,LAA,Intercity,2017-03-28T15:06:00+0200,NS
31045,MRB,stoptrein,2017-03-28T15:06:00+0200,Arriva
4157,MSS,Sprinter,2017-03-28T15:06:00+0200,NS
37858,MTH,stoptrein,2017-03-28T15:06:00+0200,Arriva
32452,MTR,stoptrein,2017-03-28T15:06:00+0200,Arriva
15851,NDB,Sprinter,2017-03-28T15:06:00+0200,NS
3657,OST,Intercity,2017-03-28T15:06:00+0200,NS
2240,RSD,Intercity,2017-03-28T15:06:00+0200,NS
2257,RTB,Intercity,2017-03-28T15:06:00+0200,NS
5148,RTD,Sprinter,2017-03-28T15:06:00+0200,NS
37558,SDA,stoptrein,2017-03-28T15:06:00+0200,Arriva
37658,UHZ,stoptrein,2017-03-28T15:06:00+0200,Arriva
11753,UT,Intercity,2017-03-28T15:06:00+0200,NS
5553,UT,Sprinter,2017-03-28T15:06:00+0200,NS
4844,UTG,Sprinter,2017-03-28T15:06:00+0200,NS
5648,UTO,Sprinter,2017-03-28T15:06:00+0200,NS
6148,VTN,Sprinter,2017-03-28T15:06:00+0200,NS
8848,WD,Intercity,2017-03-28T15:06:00+0200,NS
7954,WDN,Sprinter,2017-03-28T15:06:00+0200,NS
31145,ZA,stoptrein,2017-03-28T15:06:00+0200,Arriva
846,ZD,Intercity,2017-03-28T15:06:00+0200,NS
3348,ZDK,Sprinter,2017-03-28T15:06:00+0200,NS
17858,ZP,stoptrein,2017-03-28T15:06:00+0200,Arriva
31247,ZP,stoptrein,2017-03-28T15:06:00+0200,Syntus
7654,ZP,Sprinter,2017-03-28T15:06:00+0200,NS
30845,ZP,stoptrein,2017-03-28T15:06:00+0200,Arriva
7844,ZTM,Sprinter,2017-03-28T15:06:00+0200,NS
5444,ZVT,Sprinter,2017-03-28T15:06:00+0200,NS
8855,APN,Intercity,2017-03-28T15:07:00+0200,NS
946,ASD,Intercity,direct,2017-03-28T15:07:00+0200,NS
3355,ASDL,Sprinter,2017-03-28T15:07:00+0200,NS
11153,BD,Intercity,2017-03-28T15:07:00+0200,NS
13556,BR,Intercity,2017-03-28T15:07:00+0200,NS
5748,BSMZ,Sprinter,2017-03-28T15:07:00+0200,NS
32248,CK,stoptrein,2017-03-28T15:07:00+0200,Arriva
32351,CK,stoptrein,2017-03-28T15:07:00+0200,Arriva
30749,DID,stoptrein,2017-03-28T15:07:00+0200,Breng
9654,DN,Sprinter,2017-03-28T15:07:00+0200,NS
30754,DTC,stoptrein,2017-03-28T15:07:00+0200,Breng
30947,DTC,stoptrein,2017-03-28T15:07:00+0200,Arriva
646,GD,Intercity,2017-03-28T15:07:00+0200,NS
7857,GD,Sprinter,2017-03-28T15:07:00+0200,NS
4053,GDG,Sprinter,2017-03-28T15:07:00+0200,NS
37656,GNN,stoptrein,2017-03-28T15:07:00+0200,Arriva
5652,HDE,Sprinter,2017-03-28T15:07:00+0200,NS
1747,HGL,Intercity,2017-03-28T15:07:00+0200,NS
20157,HGZ,stoptrein,2017-03-28T15:07:00+0200,Arriva
3552,HT,Intercity,2017-03-28T15:07:00+0200,NS
4846,HWD,Sprinter,2017-03-28T15:07:00+0200,NS
4757,KMA,Sprinter,2017-03-28T15:07:00+0200,NS
32552,LG,stoptrein,2017-03-28T15:07:00+0200,Arriva
4244,MSS,Sprinter,2017-03-28T15:07:00+0200,NS
3843,NA,Sneltrein,2017-03-28T15:07:00+0200,Arriva
4450,NMD,Sprinter,2017-03-28T15:07:00+0200,NS
7650,NMD,Sprinter,2017-03-28T15:07:00+0200,NS
5746,RAI,Sprinter,2017-03-28T15:07:00+0200,NS
32453,RM,stoptrein,2017-03-28T15:07:00+0200,Arriva
4146,SDM,Sprinter,2017-03-28T15:07:00+0200,NS
4255,SDM,Sprinter,2017-03-28T15:07:00+0200,NS
3042,SGN,Intercity,2017-03-28T15:07:00+0200,NS
935,SHL,Intercity,direct,2017-03-28T15:07:00+0200,NS
4346,SHL,Sprinter,2017-03-28T15:07:00+0200,NS
4855,SPTZ,Sprinter,2017-03-28T15:07:00+0200,NS
5249,TB,Sprinter,2017-03-28T15:07:00+0200,NS
32249,TG,stoptrein,2017-03-28T15:07:00+0200,Arriva
6053,UTVR,Sprinter,2017-03-28T15:07:00+0200,NS
32045,VDL,stoptrein,2017-03-28T15:07:00+0200,Arriva
30954,VSV,stoptrein,2017-03-28T15:07:00+0200,Arriva
31056,VZ,stoptrein,2017-03-28T15:07:00+0200,Arriva
37643,WSM,stoptrein,2017-03-28T15:07:00+0200,Arriva
3547,WT,Intercity,2017-03-28T15:07:00+0200,NS
30843,WWW,stoptrein,2017-03-28T15:07:00+0200,Arriva
14652,ZL,Sprinter,2017-03-28T15:07:00+0200,NS
31158,AH,stoptrein,2017-03-28T15:08:00+0200,Arriva
4350,ALMO,Sprinter,2017-03-28T15:08:00+0200,NS
17845,APDM,stoptrein,2017-03-28T15:08:00+0200,Arriva
8645,APN,Sprinter,2017-03-28T15:08:00+0200,R-net
2653,ASD,Intercity,2017-03-28T15:08:00+0200,NS
4655,ASDL,Sprinter,2017-03-28T15:08:00+0200,NS
5846,ASS,Sprinter,2017-03-28T15:08:00+0200,NS
2450,BD,Intercity,2017-03-28T15:08:00+0200,NS
32451,BDE,stoptrein,2017-03-28T15:08:00+0200,Arriva
15850,BRN,Sprinter,2017-03-28T15:08:00+0200,NS
5254,BTL,Sprinter,2017-03-28T15:08:00+0200,NS
4050,CPS,Sprinter,2017-03-28T15:08:00+0200,NS
5150,DDR,Sprinter,2017-03-28T15:08:00+0200,NS
37256,DEI,stoptrein,2017-03-28T15:08:00+0200,Arriva
4642,DVNK,Sprinter,2017-03-28T15:08:00+0200,NS
37443,DWE,stoptrein,2017-03-28T15:08:00+0200,Arriva
9652,EHS,Sprinter,2017-03-28T15:08:00+0200,NS
7956,ESK,Sprinter,2017-03-28T15:08:00+0200,NS
37845,GN,stoptrein,2017-03-28T15:08:00+0200,Arriva
1146,GV,Intercity,2017-03-28T15:08:00+0200,NS
2057,GVC,Intercity,2017-03-28T15:08:00+0200,NS
32553,HB,stoptrein,2017-03-28T15:08:00+0200,Arriva
5649,HD,Sprinter,2017-03-28T15:08:00+0200,NS
3059,HDRZ,Intercity,2017-03-28T15:08:00+0200,NS
31256,HGLO,stoptrein,2017-03-28T15:08:00+0200,Syntus
1653,HVS,Intercity,2017-03-28T15:08:00+0200,NS
4044,KMA,Sprinter,2017-03-28T15:08:00+0200,NS
37858,KW,stoptrein,2017-03-28T15:08:00+0200,Arriva
8953,LEDN,Sprinter,2017-03-28T15:08:00+0200,NS
4657,LEDN,Sprinter,2017-03-28T15:08:00+0200,NS
1856,LW,Intercity,2017-03-28T15:08:00+0200,NS
37056,MG,stoptrein,2017-03-28T15:08:00+0200,Arriva
32253,NM,stoptrein,2017-03-28T15:08:00+0200,Arriva
8045,OMN,stoptrein,2017-03-28T15:08:00+0200,Arriva
7649,RH,Sprinter,2017-03-28T15:08:00+0200,NS
30858,RL,stoptrein,2017-03-28T15:08:00+0200,Arriva
3556,RM,Intercity,2017-03-28T15:08:00+0200,NS
9244,RTD,Intercity,2017-03-28T15:08:00+0200,NS International
36853,SDT,stoptrein,2017-03-28T15:08:00+0200,Arriva
32046,SGL,stoptrein,2017-03-28T15:08:00+0200,Arriva
9248,SHL,Intercity,2017-03-28T15:08:00+0200,NS International
37743,STM,stoptrein,2017-03-28T15:08:00+0200,Arriva
11150,TB,Intercity,2017-03-28T15:08:00+0200,NS
6051,TPSW,Sprinter,2017-03-28T15:08:00+0200,NS
3048,UT,Intercity,2017-03-28T15:08:00+0200,NS
30949,WTV,stoptrein,2017-03-28T15:08:00+0200,Arriva
9047,WV,Sprinter,2017-03-28T15:08:00+0200,NS
3055,ZD,Intercity,2017-03-28T15:08:00+0200,NS
6855,ZTM,Sprinter,2017-03-28T15:08:00+0200,NS
30752,AHP,stoptrein,2017-03-28T15:09:00+0200,Breng
4351,ALMM,Sprinter,2017-03-28T15:09:00+0200,NS
14648,ALMM,Sprinter,2017-03-28T15:09:00+0200,NS
14651,ALMO,Sprinter,2017-03-28T15:09:00+0200,NS
31341,AMF,stoptrein,2017-03-28T15:09:00+0200,Valleilijn
8946,APN,Sprinter,2017-03-28T15:09:00+0200,NS
7446,ASB,Sprinter,2017-03-28T15:09:00+0200,NS
3046,ASD,Intercity,2017-03-28T15:09:00+0200,NS
3155,ASDZ,Intercity,2017-03-28T15:09:00+0200,NS
2248,ASS,Intercity,2017-03-28T15:09:00+0200,NS
7945,BN,Sprinter,2017-03-28T15:09:00+0200,NS
31441,BNN,stoptrein,2017-03-28T15:09:00+0200,Valleilijn
31338,BNZ,stoptrein,2017-03-28T15:09:00+0200,Valleilijn
5155,BRD,Sprinter,2017-03-28T15:09:00+0200,NS
15851,BSMZ,Sprinter,2017-03-28T15:09:00+0200,NS
2242,DDR,Intercity,2017-03-28T15:09:00+0200,NS
5950,DDZD,Sprinter,2017-03-28T15:09:00+0200,NS
15848,DMN,Sprinter,2017-03-28T15:09:00+0200,NS
3655,DR,Intercity,2017-03-28T15:09:00+0200,NS
5157,DT,Sprinter,2017-03-28T15:09:00+0200,NS
2446,DT,Intercity,2017-03-28T15:09:00+0200,NS
6449,EHV,Sprinter,2017-03-28T15:09:00+0200,NS
7651,EST,Sprinter,2017-03-28T15:09:00+0200,NS
20269,GBR,stoptrein,2017-03-28T15:09:00+0200,DB
6846,GD,Sprinter,2017-03-28T15:09:00+0200,NS
2855,GD,Intercity,2017-03-28T15:09:00+0200,NS
36750,GDM,stoptrein,2017-03-28T15:09:00+0200,Arriva
36748,GR,stoptrein,2017-03-28T15:09:00+0200,Arriva
36753,GR,stoptrein,2017-03-28T15:09:00+0200,Arriva
4659,GVC,Sprinter,2017-03-28T15:09:00+0200,NS
8058,HDB,stoptrein,2017-03-28T15:09:00+0200,Arriva
3350,HFD,Sprinter,2017-03-28T15:09:00+0200,NS
4844,HK,Sprinter,2017-03-28T15:09:00+0200,NS
7054,HON,Sprinter,2017-03-28T15:09:00+0200,NS
851,HT,Intercity,2017-03-28T15:09:00+0200,NS
1550,HVS,Intercity,2017-03-28T15:09:00+0200,NS
4842,HWZB,Sprinter,2017-03-28T15:09:00+0200,NS
6456,HZE,Sprinter,2017-03-28T15:09:00+0200,NS
2457,LAA,Intercity,2017-03-28T15:09:00+0200,NS
31254,LC,stoptrein,2017-03-28T15:09:00+0200,Syntus
37145,MG,stoptrein,2017-03-28T15:09:00+0200,Arriva
5363,MTR,stoptrein,2017-03-28T15:09:00+0200,NMBS
3653,NM,Intercity,2017-03-28T15:09:00+0200,NS
4644,NVP,Sprinter,2017-03-28T15:09:00+0200,NS
4146,NWL,Sprinter,2017-03-28T15:09:00+0200,NS
5048,RLB,Sprinter,2017-03-28T15:09:00+0200,NS
4452,RS,Sprinter,2017-03-28T15:09:00+0200,NS
2455,RTB,Intercity,2017-03-28T15:09:00+0200,NS
36846,SDT,stoptrein,2017-03-28T15:09:00+0200,Arriva
6650,TBU,Sprinter,2017-03-28T15:09:00+0200,NS
853,UT,Intercity,2017-03-28T15:09:00+0200,NS
3153,UT,Intercity,2017-03-28T15:09:00+0200,NS
32350,VLB,stoptrein,2017-03-28T15:09:00+0200,Arriva
32251,VLB,stoptrein,2017-03-28T15:09:00+0200,Arriva
8646,WAD,Sprinter,2017-03-28T15:09:00+0200,R-net
4744,ZD,Sprinter,2017-03-28T15:09:00+0200,NS
6652,ZLW,Sprinter,2017-03-28T15:09:00+0200,NS
4055,AC,Sprinter,2017-03-28T15:10:00+0200,NS
4350,ALMB,Sprinter,2017-03-28T15:10:00+0200,NS
1750,AMF,Intercity,2017-03-28T15:10:00+0200,NS
11650,AMF,Intercity,2017-03-28T15:10:00+0200,NS
855,ASD,Intercity,2017-03-28T15:10:00+0200,NS
7455,ASDM,Sprinter,2017-03-28T15:10:00+0200,NS
5650,AVAT,Sprinter,2017-03-28T15:10:00+0200,NS
2238,BZL,Intercity,2017-03-28T15:10:00+0200,NS
857,CAS,Intercity,2017-03-28T15:10:00+0200,NS
6953,CL,Sprinter,2017-03-28T15:10:00+0200,NS
5548,DLD,Sprinter,2017-03-28T15:10:00+0200,NS
30754,DTCH,stoptrein,2017-03-28T15:10:00+0200,Breng
1648,DVD,Intercity,2017-03-28T15:10:00+0200,NS
3843,EMNZ,Sneltrein,2017-03-28T15:10:00+0200,Arriva
2159,HAD,Intercity,2017-03-28T15:10:00+0200,NS
31245,HGLG,stoptrein,2017-03-28T15:10:00+0200,Syntus
2253,HLM,Intercity,2017-03-28T15:10:00+0200,NS
5461,HLMS,Sprinter,2017-03-28T15:10:00+0200,NS
3044,HLO,Intercity,2017-03-28T15:10:00+0200,NS
9649,HMBV,Sprinter,2017-03-28T15:10:00+0200,NS
32552,HRLK,stoptrein,2017-03-28T15:10:00+0200,Arriva
6342,LEDN,Sprinter,2017-03-28T15:10:00+0200,NS
14650,LLS,Sprinter,2017-03-28T15:10:00+0200,NS
5748,NDB,Sprinter,2017-03-28T15:10:00+0200,NS
4450,NMGO,Sprinter,2017-03-28T15:10:00+0200,NS
4455,NML,Sprinter,2017-03-28T15:10:00+0200,NS
5046,RSW,Sprinter,2017-03-28T15:10:00+0200,NS
937,RTD,Intercity,direct,2017-03-28T15:10:00+0200,NS
7757,RTD,Sprinter,2017-03-28T15:10:00+0200,NS
5148,SDM,Sprinter,2017-03-28T15:10:00+0200,NS
32252,SM,stoptrein,2017-03-28T15:10:00+0200,Arriva
20157,SPM,stoptrein,2017-03-28T15:10:00+0200,Arriva
4855,SPTN,Sprinter,2017-03-28T15:10:00+0200,NS
32450,SRN,stoptrein,2017-03-28T15:10:00+0200,Arriva
7848,UT,Sprinter,2017-03-28T15:10:00+0200,NS
5750,UT,Sprinter,2017-03-28T15:10:00+0200,NS
6053,UTLN,Sprinter,2017-03-28T15:10:00+0200,NS
5553,UTO,Sprinter,2017-03-28T15:10:00+0200,NS
4157,VDW,Sprinter,2017-03-28T15:10:00+0200,NS
17858,VEM,stoptrein,2017-03-28T15:10:00+0200,Arriva
7855,VTN,Sprinter,2017-03-28T15:10:00+0200,NS
4757,WM,Sprinter,2017-03-28T15:10:00+0200,NS
4348,WP,Sprinter,2017-03-28T15:10:00+0200,NS
14653,WP,Sprinter,2017-03-28T15:10:00+0200,NS
7844,YPB,Sprinter,2017-03-28T15:10:00+0200,NS
6855,ZTMO,Sprinter,2017-03-28T15:10:00+0200,NS
7652,AH,Sprinter,2017-03-28T15:11:00+0200,NS
3648,AH,Intercity,2017-03-28T15:11:00+0200,NS
5651,AMF,Sprinter,2017-03-28T15:11:00+0200,NS
4846,AMRN,Sprinter,2017-03-28T15:11:00+0200,NS
15853,ASD,Sprinter,2017-03-28T15:11:00+0200,NS
4857,ASD,Sprinter,2017-03-28T15:11:00+0200,NS
4646,ASD,Sprinter,2017-03-28T15:11:00+0200,NS
5846,ASDL,Sprinter,2017-03-28T15:11:00+0200,NS
4655,ASS,Sprinter,2017-03-28T15:11:00+0200,NS
4057,ASS,Sprinter,2017-03-28T15:11:00+0200,NS
15848,ASSP,Sprinter,2017-03-28T15:11:00+0200,NS
6649,BD,Sprinter,2017-03-28T15:11:00+0200,NS
4048,BKL,Sprinter,2017-03-28T15:11:00+0200,NS
7654,BMN,Sprinter,2017-03-28T15:11:00+0200,NS
36755,DDR,stoptrein,2017-03-28T15:11:00+0200,Arriva
5157,DTZ,Sprinter,2017-03-28T15:11:00+0200,NS
7049,DVC,Sprinter,2017-03-28T15:11:00+0200,NS
4353,DVD,Sprinter,2017-03-28T15:11:00+0200,NS
3050,ED,Intercity,2017-03-28T15:11:00+0200,NS
37845,GERP,stoptrein,2017-03-28T15:11:00+0200,Arriva
7859,GVC,Sprinter,2017-03-28T15:11:00+0200,NS
37160,HNP,stoptrein,2017-03-28T15:11:00+0200,Arriva
31440,HVL,stoptrein,2017-03-28T15:11:00+0200,Valleilijn
32045,KMR,stoptrein,2017-03-28T15:11:00+0200,Arriva
32248,MMLH,stoptrein,2017-03-28T15:11:00+0200,Arriva
8147,MP,Sprinter,2017-03-28T15:11:00+0200,NS
4951,NDB,Sprinter,2017-03-28T15:11:00+0200,NS
32253,NMH,stoptrein,2017-03-28T15:11:00+0200,Arriva
4050,NWK,Sprinter,2017-03-28T15:11:00+0200,NS
1155,RTD,Intercity,2017-03-28T15:11:00+0200,NS
5055,RTD,Sprinter,2017-03-28T15:11:00+0200,NS
5855,SHL,Sprinter,2017-03-28T15:11:00+0200,NS
5755,SHL,Sprinter,2017-03-28T15:11:00+0200,NS
3545,STD,Intercity,2017-03-28T15:11:00+0200,NS
856,STD,Intercity,2017-03-28T15:11:00+0200,NS
3550,UT,Intercity,2017-03-28T15:11:00+0200,NS
4642,VST,Sprinter,2017-03-28T15:11:00+0200,NS
8646,WADN,Sprinter,2017-03-28T15:11:00+0200,R-net
854,WT,Intercity,2017-03-28T15:11:00+0200,NS
30952,ZV,stoptrein,2017-03-28T15:11:00+0200,Arriva
5953,ZVB,Sprinter,2017-03-28T15:11:00+0200,NS
14648,AMPO,Sprinter,2017-03-28T15:12:00+0200,NS
848,ASA,Intercity,2017-03-28T15:12:00+0200,NS
753,ASDZ,Intercity,2017-03-28T15:12:00+0200,NS
5746,ASDZ,Sprinter,2017-03-28T15:12:00+0200,NS
8145,ASN,Sprinter,2017-03-28T15:12:00+0200,NS
37643,BF,stoptrein,2017-03-28T15:12:00+0200,Arriva
2261,BGN,Intercity,2017-03-28T15:12:00+0200,NS
7453,BKL,Sprinter,2017-03-28T15:12:00+0200,NS
3150,DB,Intercity,2017-03-28T15:12:00+0200,NS
4855,DRH,Sprinter,2017-03-28T15:12:00+0200,NS
7446,DVD,Sprinter,2017-03-28T15:12:00+0200,NS
30949,DVN,stoptrein,2017-03-28T15:12:00+0200,Arriva
31339,EDC,stoptrein,2017-03-28T15:12:00+0200,Valleilijn
1755,GD,Intercity,2017-03-28T15:12:00+0200,NS
4053,GD,Sprinter,2017-03-28T15:12:00+0200,NS
30947,GDR,stoptrein,2017-03-28T15:12:00+0200,Arriva
36853,GND,stoptrein,2017-03-28T15:12:00+0200,Arriva
9654,HMBH,Sprinter,2017-03-28T15:12:00+0200,NS
4557,HNK,Intercity,2017-03-28T15:12:00+0200,NS
3651,HT,Intercity,2017-03-28T15:12:00+0200,NS
6050,HTNC,Sprinter,2017-03-28T15:12:00+0200,NS
4950,HVS,Sprinter,2017-03-28T15:12:00+0200,NS
15851,HVSM,Sprinter,2017-03-28T15:12:00+0200,NS
3051,KLP,Intercity,2017-03-28T15:12:00+0200,NS
4744,KZ,Sprinter,2017-03-28T15:12:00+0200,NS
4659,LAA,Sprinter,2017-03-28T15:12:00+0200,NS
37743,LP,stoptrein,2017-03-28T15:12:00+0200,Arriva
7451,MRN,Sprinter,2017-03-28T15:12:00+0200,NS
7450,MRN,Sprinter,2017-03-28T15:12:00+0200,NS
5444,OVN,Sprinter,2017-03-28T15:12:00+0200,NS
3357,PMO,Sprinter,2017-03-28T15:12:00+0200,NS
2257,RTD,Intercity,2017-03-28T15:12:00+0200,NS
36846,SDTB,stoptrein,2017-03-28T15:12:00+0200,Arriva
2459,SHL,Intercity,2017-03-28T15:12:00+0200,NS
37658,UST,stoptrein,2017-03-28T15:12:00+0200,Arriva
7448,UT,Sprinter,2017-03-28T15:12:00+0200,NS
4146,VDO,Sprinter,2017-03-28T15:12:00+0200,NS
6359,VH,Sprinter,2017-03-28T15:12:00+0200,NS
32046,VK,stoptrein,2017-03-28T15:12:00+0200,Arriva
37558,ZB,stoptrein,2017-03-28T15:12:00+0200,Arriva
7651,AHZ,Sprinter,2017-03-28T15:13:00+0200,NS
2461,ALM,Intercity,2017-03-28T15:13:00+0200,NS
5650,AMFS,Sprinter,2017-03-28T15:13:00+0200,NS
7455,ASA,Sprinter,2017-03-28T15:13:00+0200,NS
4046,ASD,Sprinter,2017-03-28T15:13:00+0200,NS
9651,BET,Sprinter,2017-03-28T15:13:00+0200,NS
5548,BHV,Sprinter,2017-03-28T15:13:00+0200,NS
31338,BNC,stoptrein,2017-03-28T15:13:00+0200,Valleilijn
31441,BNC,stoptrein,2017-03-28T15:13:00+0200,Valleilijn
4844,BV,Sprinter,2017-03-28T15:13:00+0200,NS
4353,DMNZ,Sprinter,2017-03-28T15:13:00+0200,NS
7649,DR,Sprinter,2017-03-28T15:13:00+0200,NS
32450,EC,stoptrein,2017-03-28T15:13:00+0200,Arriva
6950,GDM,Sprinter,2017-03-28T15:13:00+0200,NS
6456,GP,Sprinter,2017-03-28T15:13:00+0200,NS
2263,GS,Intercity,2017-03-28T15:13:00+0200,NS
2457,GV,Intercity,2017-03-28T15:13:00+0200,NS
5046,GVMW,Sprinter,2017-03-28T15:13:00+0200,NS
37258,HLGH,stoptrein,2017-03-28T15:13:00+0200,Arriva
9649,HMH,Sprinter,2017-03-28T15:13:00+0200,NS
6053,HTN,Sprinter,2017-03-28T15:13:00+0200,NS
14649,KPNZ,Sprinter,2017-03-28T15:13:00+0200,NS
8953,LDL,Sprinter,2017-03-28T15:13:00+0200,NS
750,LLS,Intercity,2017-03-28T15:13:00+0200,NS
37758,LP,stoptrein,2017-03-28T15:13:00+0200,Arriva
32141,MT,Sneltrein,2017-03-28T15:13:00+0200,Arriva
3052,NM,Intercity,2017-03-28T15:13:00+0200,NS
5652,NS,Sprinter,2017-03-28T15:13:00+0200,NS
5249,OT,Sprinter,2017-03-28T15:13:00+0200,NS
3348,PMW,Sprinter,2017-03-28T15:13:00+0200,NS
9243,RSD,Intercity,2017-03-28T15:13:00+0200,NS International
555,RTA,Intercity,2017-03-28T15:13:00+0200,NS
5048,RTZ,Sprinter,2017-03-28T15:13:00+0200,NS
2244,SDM,Intercity,2017-03-28T15:13:00+0200,NS
4657,SSH,Sprinter,2017-03-28T15:13:00+0200,NS
1847,SWK,Intercity,2017-03-28T15:13:00+0200,NS
6650,TB,Sprinter,2017-03-28T15:13:00+0200,NS
7855,UTT,Sprinter,2017-03-28T15:13:00+0200,NS
7844,VB,Sprinter,2017-03-28T15:13:00+0200,NS
4157,VDG,Sprinter,2017-03-28T15:13:00+0200,NS
5753,WP,Sprinter,2017-03-28T15:13:00+0200,NS
36753,AKL,stoptrein,2017-03-28T15:14:00+0200,Arriva
4351,ALM,Sprinter,2017-03-28T15:14:00+0200,NS
4350,ALMP,Sprinter,2017-03-28T15:14:00+0200,NS
3057,AMR,Intercity,2017-03-28T15:14:00+0200,NS
1652,APD,Intercity,2017-03-28T15:14:00+0200,NS
15848,ASDM,Sprinter,2017-03-28T15:14:00+0200,NS
4548,ASS,Intercity,2017-03-28T15:14:00+0200,NS
3055,ASS,Intercity,2017-03-28T15:14:00+0200,NS
37458,BP,stoptrein,2017-03-28T15:14:00+0200,Arriva
11152,EHV,Intercity,2017-03-28T15:14:00+0200,NS
5057,GV,Sprinter,2017-03-28T15:14:00+0200,NS
1157,GVC,Intercity,2017-03-28T15:14:00+0200,NS
4546,HN,Intercity,2017-03-28T15:14:00+0200,NS
32553,HRL,stoptrein,2017-03-28T15:14:00+0200,Arriva
13556,HRT,Intercity,2017-03-28T15:14:00+0200,NS
32148,MTR,Sneltrein,2017-03-28T15:14:00+0200,Arriva
7954,NVD,Sprinter,2017-03-28T15:14:00+0200,NS
5055,RTB,Sprinter,2017-03-28T15:14:00+0200,NS
32045,SOG,stoptrein,2017-03-28T15:14:00+0200,Arriva
30954,TBG,stoptrein,2017-03-28T15:14:00+0200,Arriva
30947,TBG,stoptrein,2017-03-28T15:14:00+0200,Arriva
2048,UT,Intercity,2017-03-28T15:14:00+0200,NS
7848,UTLR,Sprinter,2017-03-28T15:14:00+0200,NS
5751,UTO,Sprinter,2017-03-28T15:14:00+0200,NS
5750,UTO,Sprinter,2017-03-28T15:14:00+0200,NS
30749,WL,stoptrein,2017-03-28T15:14:00+0200,Breng
4757,ZZS,Sprinter,2017-03-28T15:14:00+0200,NS
5651,AMFS,Sprinter,2017-03-28T15:15:00+0200,NS
4853,AMR,Sprinter,2017-03-28T15:15:00+0200,NS
3042,ANA,Intercity,2017-03-28T15:15:00+0200,NS
3059,ANA,Intercity,2017-03-28T15:15:00+0200,NS
11655,ASDZ,Intercity,2017-03-28T15:15:00+0200,NS
8156,ASN,Sprinter,2017-03-28T15:15:00+0200,NS
4842,ASS,Sprinter,2017-03-28T15:15:00+0200,NS
3046,ASS,Intercity,2017-03-28T15:15:00+0200,NS
939,BD,Intercity,direct,2017-03-28T15:15:00+0200,NS
3649,BD,Intercity,2017-03-28T15:15:00+0200,NS
8848,BDG,Intercity,2017-03-28T15:15:00+0200,NS
8855,BDG,Intercity,2017-03-28T15:15:00+0200,NS
9652,BET,Sprinter,2017-03-28T15:15:00+0200,NS
2240,BGN,Intercity,2017-03-28T15:15:00+0200,NS
36748,BHDV,stoptrein,2017-03-28T15:15:00+0200,Arriva
5553,BHV,Sprinter,2017-03-28T15:15:00+0200,NS
32350,BMR,stoptrein,2017-03-28T15:15:00+0200,Arriva
32351,BMR,stoptrein,2017-03-28T15:15:00+0200,Arriva
37443,BP,stoptrein,2017-03-28T15:15:00+0200,Arriva
36750,BSD,stoptrein,2017-03-28T15:15:00+0200,Arriva
8646,BSK,Sprinter,2017-03-28T15:15:00+0200,R-net
8645,BSK,Sprinter,2017-03-28T15:15:00+0200,R-net
36755,DDRS,stoptrein,2017-03-28T15:15:00+0200,Arriva
3657,DV,Intercity,2017-03-28T15:15:00+0200,NS
30952,DVN,stoptrein,2017-03-28T15:15:00+0200,Arriva
32453,EC,stoptrein,2017-03-28T15:15:00+0200,Arriva
3860,EMN,Sneltrein,2017-03-28T15:15:00+0200,Arriva
31145,EST,stoptrein,2017-03-28T15:15:00+0200,Arriva
31158,EST,stoptrein,2017-03-28T15:15:00+0200,Arriva
6449,GP,Sprinter,2017-03-28T15:15:00+0200,NS
4659,GVM,Sprinter,2017-03-28T15:15:00+0200,NS
7956,HGL,Sprinter,2017-03-28T15:15:00+0200,NS
5461,HLM,Sprinter,2017-03-28T15:15:00+0200,NS
13547,HRT,Intercity,2017-03-28T15:15:00+0200,NS
6050,HTN,Sprinter,2017-03-28T15:15:00+0200,NS
31341,HVL,stoptrein,2017-03-28T15:15:00+0200,Valleilijn
15850,HVS,Sprinter,2017-03-28T15:15:00+0200,NS
17858,KBK,stoptrein,2017-03-28T15:15:00+0200,Arriva
17845,KBK,stoptrein,2017-03-28T15:15:00+0200,Arriva
746,LEDN,Intercity,2017-03-28T15:15:00+0200,NS
2246,LEDN,Intercity,2017-03-28T15:15:00+0200,NS
8045,MRB,stoptrein,2017-03-28T15:15:00+0200,Arriva
32452,MT,stoptrein,2017-03-28T15:15:00+0200,Arriva
5649,NS,Sprinter,2017-03-28T15:15:00+0200,NS
4453,O,Sprinter,2017-03-28T15:15:00+0200,NS
3348,PMR,Sprinter,2017-03-28T15:15:00+0200,NS
3357,PMR,Sprinter,2017-03-28T15:15:00+0200,NS
7757,RTN,Sprinter,2017-03-28T15:15:00+0200,NS
32249,RV,stoptrein,2017-03-28T15:15:00+0200,Arriva
3350,SHL,Sprinter,2017-03-28T15:15:00+0200,NS
3355,SHL,Sprinter,2017-03-28T15:15:00+0200,NS
37058,SK,stoptrein,2017-03-28T15:15:00+0200,Arriva
32046,SOG,stoptrein,2017-03-28T15:15:00+0200,Arriva
4644,SSH,Sprinter,2017-03-28T15:15:00+0200,NS
7448,UTZL,Sprinter,2017-03-28T15:15:00+0200,NS
7859,VB,Sprinter,2017-03-28T15:15:00+0200,NS
30845,VD,stoptrein,2017-03-28T15:15:00+0200,Arriva
30858,VD,stoptrein,2017-03-28T15:15:00+0200,Arriva
4146,VDG,Sprinter,2017-03-28T15:15:00+0200,NS
6342,VH,Sprinter,2017-03-28T15:15:00+0200,NS
32251,VRY,stoptrein,2017-03-28T15:15:00+0200,Arriva
37160,WK,stoptrein,2017-03-28T15:15:00+0200,Arriva
30754,WL,stoptrein,2017-03-28T15:15:00+0200,Breng
20157,ZB,stoptrein,2017-03-28T15:15:00+0200,Arriva
749,ZL,Intercity,2017-03-28T15:15:00+0200,NS
5150,ZWD,Sprinter,2017-03-28T15:15:00+0200,NS
4744,ZZS,Sprinter,2017-03-28T15:15:00+0200,NS
3152,AH,Intercity,2017-03-28T15:16:00+0200,NS
7652,AHZ,Sprinter,2017-03-28T15:16:00+0200,NS
4351,ALMP,Sprinter,2017-03-28T15:16:00+0200,NS
146,AML,Intercity,2017-03-28T15:16:00+0200,NS International
7446,ASA,Sprinter,2017-03-28T15:16:00+0200,NS
3148,ASB,Intercity,2017-03-28T15:16:00+0200,NS
15853,ASDM,Sprinter,2017-03-28T15:16:00+0200,NS
4857,ASS,Sprinter,2017-03-28T15:16:00+0200,NS
6649,BDPB,Sprinter,2017-03-28T15:16:00+0200,NS
6652,BDPB,Sprinter,2017-03-28T15:16:00+0200,NS
36853,BHDV,stoptrein,2017-03-28T15:16:00+0200,Arriva
3153,DB,Intercity,2017-03-28T15:16:00+0200,NS
36846,DDRS,stoptrein,2017-03-28T15:16:00+0200,Arriva
4348,DMNZ,Sprinter,2017-03-28T15:16:00+0200,NS
1656,ES,Intercity,2017-03-28T15:16:00+0200,NS
30954,GDR,stoptrein,2017-03-28T15:16:00+0200,Arriva
37858,GERP,stoptrein,2017-03-28T15:16:00+0200,Arriva
2238,GS,Intercity,2017-03-28T15:16:00+0200,NS
4642,GVM,Sprinter,2017-03-28T15:16:00+0200,NS
5057,GVMW,Sprinter,2017-03-28T15:16:00+0200,NS
31058,HDB,stoptrein,2017-03-28T15:16:00+0200,Arriva
31256,HGL,stoptrein,2017-03-28T15:16:00+0200,Syntus
37258,HLG,stoptrein,2017-03-28T15:16:00+0200,Arriva
9649,HM,Sprinter,2017-03-28T15:16:00+0200,NS
9654,HM,Sprinter,2017-03-28T15:16:00+0200,NS
9047,HR,Sprinter,2017-03-28T15:16:00+0200,NS
32143,HRL,Sneltrein,2017-03-28T15:16:00+0200,Arriva
32552,HRL,stoptrein,2017-03-28T15:16:00+0200,Arriva
32553,HRLK,stoptrein,2017-03-28T15:16:00+0200,Arriva
15851,HVS,Sprinter,2017-03-28T15:16:00+0200,NS
4757,KZ,Sprinter,2017-03-28T15:16:00+0200,NS
8058,MRB,stoptrein,2017-03-28T15:16:00+0200,Arriva
4450,NM,Sprinter,2017-03-28T15:16:00+0200,NS
4455,NM,Sprinter,2017-03-28T15:16:00+0200,NS
20152,NSCH,stoptrein,2017-03-28T15:16:00+0200,Arriva
7947,NVD,Sprinter,2017-03-28T15:16:00+0200,NS
5254,OT,Sprinter,2017-03-28T15:16:00+0200,NS
4452,OW,Sprinter,2017-03-28T15:16:00+0200,NS
5952,RSD,Sprinter,2017-03-28T15:16:00+0200,NS
646,RTA,Intercity,2017-03-28T15:16:00+0200,NS
5048,RTB,Sprinter,2017-03-28T15:16:00+0200,NS
32252,RV,stoptrein,2017-03-28T15:16:00+0200,Arriva
7855,UTLR,Sprinter,2017-03-28T15:16:00+0200,NS
7848,UTT,Sprinter,2017-03-28T15:16:00+0200,NS
4157,VDO,Sprinter,2017-03-28T15:16:00+0200,NS
32250,VRY,stoptrein,2017-03-28T15:16:00+0200,Arriva
30949,ZV,stoptrein,2017-03-28T15:16:00+0200,Arriva
30751,AH,stoptrein,2017-03-28T15:17:00+0200,Breng
14653,AMPO,Sprinter,2017-03-28T15:17:00+0200,NS
1751,APD,Intercity,2017-03-28T15:17:00+0200,NS
3155,ASB,Intercity,2017-03-28T15:17:00+0200,NS
9996,ASD,Thalys,2017-03-28T15:17:00+0200,NS International
1648,ASDZ,Intercity,2017-03-28T15:17:00+0200,NS
4555,ASS,Intercity,2017-03-28T15:17:00+0200,NS
4646,ASS,Sprinter,2017-03-28T15:17:00+0200,NS
31338,BNN,stoptrein,2017-03-28T15:17:00+0200,Valleilijn
4855,BV,Sprinter,2017-03-28T15:17:00+0200,NS
7654,DR,Sprinter,2017-03-28T15:17:00+0200,NS
4844,DRH,Sprinter,2017-03-28T15:17:00+0200,NS
30749,DTCH,stoptrein,2017-03-28T15:17:00+0200,Breng
5148,DTZ,Sprinter,2017-03-28T15:17:00+0200,NS
3646,DV,Intercity,2017-03-28T15:17:00+0200,NS
7455,DVD,Sprinter,2017-03-28T15:17:00+0200,NS
3554,EHV,Intercity,2017-03-28T15:17:00+0200,NS
1856,GW,Intercity,2017-03-28T15:17:00+0200,NS
7945,HGL,Sprinter,2017-03-28T15:17:00+0200,NS
5444,HLM,Sprinter,2017-03-28T15:17:00+0200,NS
6053,HTNC,Sprinter,2017-03-28T15:17:00+0200,NS
15850,HVSM,Sprinter,2017-03-28T15:17:00+0200,NS
3050,KLP,Intercity,2017-03-28T15:17:00+0200,NS
32046,KMR,stoptrein,2017-03-28T15:17:00+0200,Arriva
14652,KPNZ,Sprinter,2017-03-28T15:17:00+0200,NS
1855,LEDN,Intercity,2017-03-28T15:17:00+0200,NS
1851,LLS,Intercity,2017-03-28T15:17:00+0200,NS
7453,MAS,Sprinter,2017-03-28T15:17:00+0200,NS
32253,MMLH,stoptrein,2017-03-28T15:17:00+0200,Arriva
8154,MP,Sprinter,2017-03-28T15:17:00+0200,NS
5953,ODB,Sprinter,2017-03-28T15:17:00+0200,NS
3348,PMO,Sprinter,2017-03-28T15:17:00+0200,NS
3357,PMW,Sprinter,2017-03-28T15:17:00+0200,NS
4246,RTD,Sprinter,2017-03-28T15:17:00+0200,NS
5055,RTZ,Sprinter,2017-03-28T15:17:00+0200,NS
2257,SDM,Intercity,2017-03-28T15:17:00+0200,NS
37558,SPM,stoptrein,2017-03-28T15:17:00+0200,Arriva
37758,STM,stoptrein,2017-03-28T15:17:00+0200,Arriva
31147,TL,stoptrein,2017-03-28T15:17:00+0200,Arriva
6052,TL,Sprinter,2017-03-28T15:17:00+0200,NS
6155,WD,Sprinter,2017-03-28T15:17:00+0200,NS
37658,WFM,stoptrein,2017-03-28T15:17:00+0200,Arriva
849,WT,Intercity,2017-03-28T15:17:00+0200,NS
1852,ZL,Intercity,2017-03-28T15:17:00+0200,NS
5155,ZWD,Sprinter,2017-03-28T15:17:00+0200,NS
4048,AC,Sprinter,2017-03-28T15:18:00+0200,NS
4350,ALM,Sprinter,2017-03-28T15:18:00+0200,NS
31047,AML,stoptrein,2017-03-28T15:18:00+0200,Arriva
4853,AMRN,Sprinter,2017-03-28T15:18:00+0200,NS
855,ASA,Intercity,2017-03-28T15:18:00+0200,NS
5855,ASDL,Sprinter,2017-03-28T15:18:00+0200,NS
4046,ASS,Sprinter,2017-03-28T15:18:00+0200,NS
5651,AVAT,Sprinter,2017-03-28T15:18:00+0200,NS
7649,BMN,Sprinter,2017-03-28T15:18:00+0200,NS
2263,BZL,Intercity,2017-03-28T15:18:00+0200,NS
7450,DB,Sprinter,2017-03-28T15:18:00+0200,NS
5955,DDR,Sprinter,2017-03-28T15:18:00+0200,NS
7054,DVC,Sprinter,2017-03-28T15:18:00+0200,NS
3051,ED,Intercity,2017-03-28T15:18:00+0200,NS
7857,GDG,Sprinter,2017-03-28T15:18:00+0200,NS
6953,GDM,Sprinter,2017-03-28T15:18:00+0200,NS
37745,GN,stoptrein,2017-03-28T15:18:00+0200,Arriva
556,GN,Intercity,2017-03-28T15:18:00+0200,NS
36748,GND,stoptrein,2017-03-28T15:18:00+0200,Arriva
2446,GV,Intercity,2017-03-28T15:18:00+0200,NS
2146,GVC,Intercity,2017-03-28T15:18:00+0200,NS
2144,HAD,Intercity,2017-03-28T15:18:00+0200,NS
4355,HFD,Sprinter,2017-03-28T15:18:00+0200,NS
31245,HGL,stoptrein,2017-03-28T15:18:00+0200,Syntus
4546,HNK,Intercity,2017-03-28T15:18:00+0200,NS
4257,MSW,Sprinter,2017-03-28T15:18:00+0200,NS
32248,NMH,stoptrein,2017-03-28T15:18:00+0200,Arriva
4053,NWK,Sprinter,2017-03-28T15:18:00+0200,NS
5461,OVN,Sprinter,2017-03-28T15:18:00+0200,NS
4453,OW,Sprinter,2017-03-28T15:18:00+0200,NS
1148,RTD,Intercity,2017-03-28T15:18:00+0200,NS
5157,SDM,Sprinter,2017-03-28T15:18:00+0200,NS
3555,SHL,Intercity,2017-03-28T15:18:00+0200,NS
2444,SHL,Intercity,2017-03-28T15:18:00+0200,NS
37058,SKND,stoptrein,2017-03-28T15:18:00+0200,Arriva
37145,SKND,stoptrein,2017-03-28T15:18:00+0200,Arriva
32453,SRN,stoptrein,2017-03-28T15:18:00+0200,Arriva
653,UT,Intercity,2017-03-28T15:18:00+0200,NS
548,UT,Intercity,2017-03-28T15:18:00+0200,NS
5653,UT,Sprinter,2017-03-28T15:18:00+0200,NS
4059,UTG,Sprinter,2017-03-28T15:18:00+0200,NS
5548,UTO,Sprinter,2017-03-28T15:18:00+0200,NS
37860,VDM,stoptrein,2017-03-28T15:18:00+0200,Arriva
4146,VDW,Sprinter,2017-03-28T15:18:00+0200,NS
32045,VK,stoptrein,2017-03-28T15:18:00+0200,Arriva
8645,WADN,Sprinter,2017-03-28T15:18:00+0200,R-net
7653,WC,Sprinter,2017-03-28T15:18:00+0200,NS
37643,WFM,stoptrein,2017-03-28T15:18:00+0200,Arriva
30952,WTV,stoptrein,2017-03-28T15:18:00+0200,Arriva
7859,YPB,Sprinter,2017-03-28T15:18:00+0200,NS
7949,ZL,Sprinter,2017-03-28T15:18:00+0200,NS
8549,ZL,Sprinter,2017-03-28T15:18:00+0200,NS
649,ZL,Intercity,2017-03-28T15:18:00+0200,NS
30751,AHP,stoptrein,2017-03-28T15:19:00+0200,Breng
2442,ALM,Intercity,2017-03-28T15:19:00+0200,NS
37743,APG,stoptrein,2017-03-28T15:19:00+0200,Arriva
2161,ASD,Intercity,2017-03-28T15:19:00+0200,NS
4057,ASD,Sprinter,2017-03-28T15:19:00+0200,NS
7446,ASDM,Sprinter,2017-03-28T15:19:00+0200,NS
1848,ASDZ,Intercity,2017-03-28T15:19:00+0200,NS
5755,ASDZ,Sprinter,2017-03-28T15:19:00+0200,NS
2253,ASS,Intercity,2017-03-28T15:19:00+0200,NS
15853,ASSP,Sprinter,2017-03-28T15:19:00+0200,NS
4055,BKL,Sprinter,2017-03-28T15:19:00+0200,NS
846,CAS,Intercity,2017-03-28T15:19:00+0200,NS
6950,CL,Sprinter,2017-03-28T15:19:00+0200,NS
5553,DLD,Sprinter,2017-03-28T15:19:00+0200,NS
2457,DT,Intercity,2017-03-28T15:19:00+0200,NS
9651,EHS,Sprinter,2017-03-28T15:19:00+0200,NS
13549,EHV,Intercity,2017-03-28T15:19:00+0200,NS
3860,EMNZ,Sneltrein,2017-03-28T15:19:00+0200,Arriva
20218,GBR,stoptrein,2017-03-28T15:19:00+0200,DB
11748,GD,Intercity,2017-03-28T15:19:00+0200,NS
4050,GD,Sprinter,2017-03-28T15:19:00+0200,NS
7846,GDG,Sprinter,2017-03-28T15:19:00+0200,NS
5046,GV,Sprinter,2017-03-28T15:19:00+0200,NS
31256,HGLG,stoptrein,2017-03-28T15:19:00+0200,Syntus
3057,HLO,Intercity,2017-03-28T15:19:00+0200,NS
9654,HMH,Sprinter,2017-03-28T15:19:00+0200,NS
9653,HT,Sprinter,2017-03-28T15:19:00+0200,NS
4951,HVS,Sprinter,2017-03-28T15:19:00+0200,NS
6449,HZE,Sprinter,2017-03-28T15:19:00+0200,NS
37845,KW,stoptrein,2017-03-28T15:19:00+0200,Arriva
8946,LDL,Sprinter,2017-03-28T15:19:00+0200,NS
32553,LG,stoptrein,2017-03-28T15:19:00+0200,Arriva
37245,LW,stoptrein,2017-03-28T15:19:00+0200,Arriva
7448,MAS,Sprinter,2017-03-28T15:19:00+0200,NS
32148,MT,Sneltrein,2017-03-28T15:19:00+0200,Arriva
4450,NML,Sprinter,2017-03-28T15:19:00+0200,NS
4657,NVP,Sprinter,2017-03-28T15:19:00+0200,NS
4157,NWL,Sprinter,2017-03-28T15:19:00+0200,NS
5057,RSW,Sprinter,2017-03-28T15:19:00+0200,NS
2448,RTB,Intercity,2017-03-28T15:19:00+0200,NS
36755,SDTB,stoptrein,2017-03-28T15:19:00+0200,Arriva
5846,SHL,Sprinter,2017-03-28T15:19:00+0200,NS
654,SWK,Intercity,2017-03-28T15:19:00+0200,NS
6651,TB,Sprinter,2017-03-28T15:19:00+0200,NS
6050,UTLN,Sprinter,2017-03-28T15:19:00+0200,NS
17845,VEM,stoptrein,2017-03-28T15:19:00+0200,Arriva
7848,VTN,Sprinter,2017-03-28T15:19:00+0200,NS
4744,WM,Sprinter,2017-03-28T15:19:00+0200,NS
6846,ZTMO,Sprinter,2017-03-28T15:19:00+0200,NS
3151,AH,Intercity,2017-03-28T15:20:00+0200,NS
4351,ALMB,Sprinter,2017-03-28T15:20:00+0200,NS
5650,AMF,Sprinter,2017-03-28T15:20:00+0200,NS
3044,AMR,Intercity,2017-03-28T15:20:00+0200,NS
4846,AMR,Sprinter,2017-03-28T15:20:00+0200,NS
7051,APD,Sprinter,2017-03-28T15:20:00+0200,NS
7455,ASB,Sprinter,2017-03-28T15:20:00+0200,NS
3654,BD,Intercity,2017-03-28T15:20:00+0200,NS
7956,BN,Sprinter,2017-03-28T15:20:00+0200,NS
5148,DT,Sprinter,2017-03-28T15:20:00+0200,NS
11655,DVD,Intercity,2017-03-28T15:20:00+0200,NS
4348,DVD,Sprinter,2017-03-28T15:20:00+0200,NS
37458,DWE,stoptrein,2017-03-28T15:20:00+0200,Arriva
7652,EST,Sprinter,2017-03-28T15:20:00+0200,NS
37460,GN,stoptrein,2017-03-28T15:20:00+0200,Arriva
1157,GV,Intercity,2017-03-28T15:20:00+0200,NS
32552,HB,stoptrein,2017-03-28T15:20:00+0200,Arriva
36748,HBZM,stoptrein,2017-03-28T15:20:00+0200,Arriva
8045,HDB,stoptrein,2017-03-28T15:20:00+0200,Arriva
3355,HFD,Sprinter,2017-03-28T15:20:00+0200,NS
37558,HGZ,stoptrein,2017-03-28T15:20:00+0200,Arriva
4855,HK,Sprinter,2017-03-28T15:20:00+0200,NS
2248,HLM,Intercity,2017-03-28T15:20:00+0200,NS
5444,HLMS,Sprinter,2017-03-28T15:20:00+0200,NS
9649,HMBH,Sprinter,2017-03-28T15:20:00+0200,NS
4557,HN,Intercity,2017-03-28T15:20:00+0200,NS
4848,HN,Sprinter,2017-03-28T15:20:00+0200,NS
4642,LAA,Sprinter,2017-03-28T15:20:00+0200,NS
2255,LEDN,Intercity,2017-03-28T15:20:00+0200,NS
6359,LEDN,Sprinter,2017-03-28T15:20:00+0200,NS
37445,LW,stoptrein,2017-03-28T15:20:00+0200,Arriva
9058,LW,Sprinter,2017-03-28T15:20:00+0200,NS
4950,NDB,Sprinter,2017-03-28T15:20:00+0200,NS
5753,NDB,Sprinter,2017-03-28T15:20:00+0200,NS
4455,NMGO,Sprinter,2017-03-28T15:20:00+0200,NS
4452,O,Sprinter,2017-03-28T15:20:00+0200,NS
5055,RLB,Sprinter,2017-03-28T15:20:00+0200,NS
7757,RTA,Sprinter,2017-03-28T15:20:00+0200,NS
2857,RTD,Intercity,2017-03-28T15:20:00+0200,NS
5746,SHL,Sprinter,2017-03-28T15:20:00+0200,NS
32249,SM,stoptrein,2017-03-28T15:20:00+0200,Arriva
4844,SPTN,Sprinter,2017-03-28T15:20:00+0200,NS
847,STD,Intercity,2017-03-28T15:20:00+0200,NS
6052,TPSW,Sprinter,2017-03-28T15:20:00+0200,NS
7348,UT,Sprinter,2017-03-28T15:20:00+0200,NS
4659,VST,Sprinter,2017-03-28T15:20:00+0200,NS
30956,WW,stoptrein,2017-03-28T15:20:00+0200,Arriva
30860,WW,stoptrein,2017-03-28T15:20:00+0200,Arriva
4757,ZD,Sprinter,2017-03-28T15:20:00+0200,NS
3659,ZL,Intercity,2017-03-28T15:20:00+0200,NS
552,ZL,Intercity,2017-03-28T15:20:00+0200,NS
7552,AH,Sprinter,2017-03-28T15:21:00+0200,NS
4350,ALMM,Sprinter,2017-03-28T15:21:00+0200,NS
14653,ALMM,Sprinter,2017-03-28T15:21:00+0200,NS
17858,APDM,stoptrein,2017-03-28T15:21:00+0200,Arriva
4646,ASDL,Sprinter,2017-03-28T15:21:00+0200,NS
4048,ASHD,Sprinter,2017-03-28T15:21:00+0200,NS
32452,BDE,stoptrein,2017-03-28T15:21:00+0200,Arriva
5150,BRD,Sprinter,2017-03-28T15:21:00+0200,NS
15850,BSMZ,Sprinter,2017-03-28T15:21:00+0200,NS
5249,BTL,Sprinter,2017-03-28T15:21:00+0200,NS
4053,CPS,Sprinter,2017-03-28T15:21:00+0200,NS
5955,DDZD,Sprinter,2017-03-28T15:21:00+0200,NS
30754,DID,stoptrein,2017-03-28T15:21:00+0200,Breng
15853,DMN,Sprinter,2017-03-28T15:21:00+0200,NS
7551,ED,Sprinter,2017-03-28T15:21:00+0200,NS
32553,EGH,stoptrein,2017-03-28T15:21:00+0200,Arriva
3549,EHV,Intercity,2017-03-28T15:21:00+0200,NS
5256,EHV,Sprinter,2017-03-28T15:21:00+0200,NS
6344,GVC,Sprinter,2017-03-28T15:21:00+0200,NS
5652,HD,Sprinter,2017-03-28T15:21:00+0200,NS
5649,HDE,Sprinter,2017-03-28T15:21:00+0200,NS
31245,HGLO,stoptrein,2017-03-28T15:21:00+0200,Syntus
7049,HON,Sprinter,2017-03-28T15:21:00+0200,NS
5750,HOR,Sprinter,2017-03-28T15:21:00+0200,NS
4857,HWZB,Sprinter,2017-03-28T15:21:00+0200,NS
2446,LAA,Intercity,2017-03-28T15:21:00+0200,NS
31247,LC,stoptrein,2017-03-28T15:21:00+0200,Syntus
36753,LDM,stoptrein,2017-03-28T15:21:00+0200,Arriva
37045,LW,stoptrein,2017-03-28T15:21:00+0200,Arriva
4257,MSS,Sprinter,2017-03-28T15:21:00+0200,NS
37845,MTH,stoptrein,2017-03-28T15:21:00+0200,Arriva
32048,MTR,stoptrein,2017-03-28T15:21:00+0200,Arriva
5755,RAI,Sprinter,2017-03-28T15:21:00+0200,NS
944,RTD,Intercity,direct,2017-03-28T15:21:00+0200,NS
5048,RTD,Sprinter,2017-03-28T15:21:00+0200,NS
2244,RTD,Intercity,2017-03-28T15:21:00+0200,NS
20157,SDA,stoptrein,2017-03-28T15:21:00+0200,Arriva
32045,SGL,stoptrein,2017-03-28T15:21:00+0200,Arriva
3059,SGN,Intercity,2017-03-28T15:21:00+0200,NS
3558,STD,Intercity,2017-03-28T15:21:00+0200,NS
11153,TB,Intercity,2017-03-28T15:21:00+0200,NS
7453,UTZL,Sprinter,2017-03-28T15:21:00+0200,NS
32046,VDL,stoptrein,2017-03-28T15:21:00+0200,Arriva
32351,VLB,stoptrein,2017-03-28T15:21:00+0200,Arriva
30947,VSV,stoptrein,2017-03-28T15:21:00+0200,Arriva
8645,WAD,Sprinter,2017-03-28T15:21:00+0200,R-net
14648,WP,Sprinter,2017-03-28T15:21:00+0200,NS
1847,WV,Intercity,2017-03-28T15:21:00+0200,NS
3847,ZL,Sneltrein,2017-03-28T15:21:00+0200,Arriva
6846,ZTM,Sprinter,2017-03-28T15:21:00+0200,NS
30952,AHP,stoptrein,2017-03-28T15:22:00+0200,Arriva
1856,AKM,Intercity,2017-03-28T15:22:00+0200,NS
4953,ALM,Sprinter,2017-03-28T15:22:00+0200,NS
1653,AMF,Intercity,2017-03-28T15:22:00+0200,NS
1048,ASD,Intercity,direct,2017-03-28T15:22:00+0200,NS
3350,ASDL,Sprinter,2017-03-28T15:22:00+0200,NS
5855,ASS,Sprinter,2017-03-28T15:22:00+0200,NS
15852,AVAT,Sprinter,2017-03-28T15:22:00+0200,NS
37658,BF,stoptrein,2017-03-28T15:22:00+0200,Arriva
7450,BNK,Sprinter,2017-03-28T15:22:00+0200,NS
31341,BNN,stoptrein,2017-03-28T15:22:00+0200,Valleilijn
31442,BNZ,stoptrein,2017-03-28T15:22:00+0200,Valleilijn
15851,BRN,Sprinter,2017-03-28T15:22:00+0200,NS
5550,BRN,Sprinter,2017-03-28T15:22:00+0200,NS
32350,CK,stoptrein,2017-03-28T15:22:00+0200,Arriva
32253,CK,stoptrein,2017-03-28T15:22:00+0200,Arriva
30949,DID,stoptrein,2017-03-28T15:22:00+0200,Arriva
30954,DTC,stoptrein,2017-03-28T15:22:00+0200,Arriva
37743,DZW,stoptrein,2017-03-28T15:22:00+0200,Arriva
4559,EKZ,Intercity,2017-03-28T15:22:00+0200,NS
20218,ESE,stoptrein,2017-03-28T15:22:00+0200,DB
7945,ESK,Sprinter,2017-03-28T15:22:00+0200,NS
3649,ETN,Intercity,2017-03-28T15:22:00+0200,NS
6855,GD,Sprinter,2017-03-28T15:22:00+0200,NS
2848,GD,Intercity,2017-03-28T15:22:00+0200,NS
4050,GDG,Sprinter,2017-03-28T15:22:00+0200,NS
37645,GN,stoptrein,2017-03-28T15:22:00+0200,Arriva
37547,GN,stoptrein,2017-03-28T15:22:00+0200,Arriva
37745,GNN,stoptrein,2017-03-28T15:22:00+0200,Arriva
3042,HDRZ,Intercity,2017-03-28T15:22:00+0200,NS
6342,HIL,Sprinter,2017-03-28T15:22:00+0200,NS
9654,HMBV,Sprinter,2017-03-28T15:22:00+0200,NS
149,HVS,Intercity,2017-03-28T15:22:00+0200,NS International
4951,HVSP,Sprinter,2017-03-28T15:22:00+0200,NS
4059,KMA,Sprinter,2017-03-28T15:22:00+0200,NS
4744,KMA,Sprinter,2017-03-28T15:22:00+0200,NS
36750,LDM,stoptrein,2017-03-28T15:22:00+0200,Arriva
8857,LEDN,Intercity,2017-03-28T15:22:00+0200,NS
4146,MSS,Sprinter,2017-03-28T15:22:00+0200,NS
7653,NMD,Sprinter,2017-03-28T15:22:00+0200,NS
5952,ODB,Sprinter,2017-03-28T15:22:00+0200,NS
7654,RH,Sprinter,2017-03-28T15:22:00+0200,NS
7452,RHN,Sprinter,2017-03-28T15:22:00+0200,NS
30845,RL,stoptrein,2017-03-28T15:22:00+0200,Arriva
4246,SDM,Sprinter,2017-03-28T15:22:00+0200,NS
4157,SDM,Sprinter,2017-03-28T15:22:00+0200,NS
32555,STD,stoptrein,2017-03-28T15:22:00+0200,Arriva
6651,TBU,Sprinter,2017-03-28T15:22:00+0200,NS
32252,TG,stoptrein,2017-03-28T15:22:00+0200,Arriva
37643,UST,stoptrein,2017-03-28T15:22:00+0200,Arriva
4952,UT,Sprinter,2017-03-28T15:22:00+0200,NS
6955,UT,Sprinter,2017-03-28T15:22:00+0200,NS
5653,UTO,Sprinter,2017-03-28T15:22:00+0200,NS
6050,UTVR,Sprinter,2017-03-28T15:22:00+0200,NS
32250,VLB,stoptrein,2017-03-28T15:22:00+0200,Arriva
7451,VNDW,Sprinter,2017-03-28T15:22:00+0200,NS
2265,VS,Intercity,2017-03-28T15:22:00+0200,NS
6155,VTN,Sprinter,2017-03-28T15:22:00+0200,NS
3556,WT,Intercity,2017-03-28T15:22:00+0200,NS
30860,WWW,stoptrein,2017-03-28T15:22:00+0200,Arriva
3046,ZD,Intercity,2017-03-28T15:22:00+0200,NS
3655,AH,Intercity,2017-03-28T15:23:00+0200,NS
9047,AKM,Sprinter,2017-03-28T15:23:00+0200,NS
2442,ALMB,Intercity,2017-03-28T15:23:00+0200,NS
11753,AMF,Intercity,2017-03-28T15:23:00+0200,NS
7056,AML,Sprinter,2017-03-28T15:23:00+0200,NS
3044,AMRN,Intercity,2017-03-28T15:23:00+0200,NS
7051,APDO,Sprinter,2017-03-28T15:23:00+0200,NS
8848,APN,Intercity,2017-03-28T15:23:00+0200,NS
14655,ASD,Sprinter,2017-03-28T15:23:00+0200,NS
3148,ASDZ,Intercity,2017-03-28T15:23:00+0200,NS
7455,ASHD,Sprinter,2017-03-28T15:23:00+0200,NS
1150,BD,Intercity,2017-03-28T15:23:00+0200,NS
6652,BD,Sprinter,2017-03-28T15:23:00+0200,NS
37758,BDM,stoptrein,2017-03-28T15:23:00+0200,Arriva
5753,BSMZ,Sprinter,2017-03-28T15:23:00+0200,NS
6053,CL,Sprinter,2017-03-28T15:23:00+0200,NS
7757,CPS,Sprinter,2017-03-28T15:23:00+0200,NS
31256,DDN,stoptrein,2017-03-28T15:23:00+0200,Syntus
9244,DDR,Intercity,2017-03-28T15:23:00+0200,NS International
37245,DEI,stoptrein,2017-03-28T15:23:00+0200,Arriva
3648,DR,Intercity,2017-03-28T15:23:00+0200,NS
4659,DVNK,Sprinter,2017-03-28T15:23:00+0200,NS
6359,DVNK,Sprinter,2017-03-28T15:23:00+0200,NS
31340,ED,stoptrein,2017-03-28T15:23:00+0200,Valleilijn
37258,FN,stoptrein,2017-03-28T15:23:00+0200,Arriva
7748,GDG,Sprinter,2017-03-28T15:23:00+0200,NS
37443,GK,stoptrein,2017-03-28T15:23:00+0200,Arriva
8158,GN,Sprinter,2017-03-28T15:23:00+0200,NS
11757,GVC,Intercity,2017-03-28T15:23:00+0200,NS
5159,GVC,Sprinter,2017-03-28T15:23:00+0200,NS
8147,HGV,Sprinter,2017-03-28T15:23:00+0200,NS
37845,HGZ,stoptrein,2017-03-28T15:23:00+0200,Arriva
852,HT,Intercity,2017-03-28T15:23:00+0200,NS
3652,HT,Intercity,2017-03-28T15:23:00+0200,NS
11650,HVS,Intercity,2017-03-28T15:23:00+0200,NS
4853,HWD,Sprinter,2017-03-28T15:23:00+0200,NS
2263,KRG,Intercity,2017-03-28T15:23:00+0200,NS
3352,LEDN,Sprinter,2017-03-28T15:23:00+0200,NS
37558,MTH,stoptrein,2017-03-28T15:23:00+0200,Arriva
3860,NA,Sneltrein,2017-03-28T15:23:00+0200,Arriva
32552,NH,stoptrein,2017-03-28T15:23:00+0200,Arriva
5651,NKK,Sprinter,2017-03-28T15:23:00+0200,NS
32353,NM,stoptrein,2017-03-28T15:23:00+0200,Arriva
4455,NMD,Sprinter,2017-03-28T15:23:00+0200,NS
8058,OMN,stoptrein,2017-03-28T15:23:00+0200,Arriva
7954,RAT,Sprinter,2017-03-28T15:23:00+0200,NS
3547,RM,Intercity,2017-03-28T15:23:00+0200,NS
2586,RSD,stoptrein,2017-03-28T15:23:00+0200,NMBS
36748,SDT,stoptrein,2017-03-28T15:23:00+0200,Arriva
36755,SDT,stoptrein,2017-03-28T15:23:00+0200,Arriva
1037,SHL,Intercity,direct,2017-03-28T15:23:00+0200,NS
946,SHL,Intercity,direct,2017-03-28T15:23:00+0200,NS
4844,SPTZ,Sprinter,2017-03-28T15:23:00+0200,NS
5254,TB,Sprinter,2017-03-28T15:23:00+0200,NS
850,UT,Intercity,2017-03-28T15:23:00+0200,NS
7348,UTZL,Sprinter,2017-03-28T15:23:00+0200,NS
9653,VG,Sprinter,2017-03-28T15:23:00+0200,NS
31047,VZ,stoptrein,2017-03-28T15:23:00+0200,Arriva
30751,WTV,stoptrein,2017-03-28T15:23:00+0200,Breng
857,ZD,Intercity,2017-03-28T15:23:00+0200,NS
3357,ZDK,Sprinter,2017-03-28T15:23:00+0200,NS
5654,ZL,Sprinter,2017-03-28T15:23:00+0200,NS
6649,ZLW,Sprinter,2017-03-28T15:23:00+0200,NS
7859,ZTM,Sprinter,2017-03-28T15:23:00+0200,NS
4350,AMPO,Sprinter,2017-03-28T15:24:00+0200,NS
848,ASD,Intercity,2017-03-28T15:24:00+0200,NS
4057,ASDM,Sprinter,2017-03-28T15:24:00+0200,NS
2161,ASS,Intercity,2017-03-28T15:24:00+0200,NS
7448,BKL,Sprinter,2017-03-28T15:24:00+0200,NS
8156,BL,Sprinter,2017-03-28T15:24:00+0200,NS
13547,BR,Intercity,2017-03-28T15:24:00+0200,NS
5055,BRD,Sprinter,2017-03-28T15:24:00+0200,NS
32553,CVM,stoptrein,2017-03-28T15:24:00+0200,Arriva
2259,DDR,Intercity,2017-03-28T15:24:00+0200,NS
2257,DT,Intercity,2017-03-28T15:24:00+0200,NS
5057,DT,Sprinter,2017-03-28T15:24:00+0200,NS
5256,EHS,Sprinter,2017-03-28T15:24:00+0200,NS
4450,EST,Sprinter,2017-03-28T15:24:00+0200,NS
37458,FWD,stoptrein,2017-03-28T15:24:00+0200,Arriva
7846,GD,Sprinter,2017-03-28T15:24:00+0200,NS
555,GD,Intercity,2017-03-28T15:24:00+0200,NS
2248,HAD,Intercity,2017-03-28T15:24:00+0200,NS
4657,HFD,Sprinter,2017-03-28T15:24:00+0200,NS
1656,HGL,Intercity,2017-03-28T15:24:00+0200,NS
32046,HRLW,stoptrein,2017-03-28T15:24:00+0200,Arriva
8145,HRN,Sprinter,2017-03-28T15:24:00+0200,NS
5444,HWZB,Sprinter,2017-03-28T15:24:00+0200,NS
6344,LAA,Sprinter,2017-03-28T15:24:00+0200,NS
2246,LAA,Intercity,2017-03-28T15:24:00+0200,NS
2463,LLS,Intercity,2017-03-28T15:24:00+0200,NS
14651,LLS,Sprinter,2017-03-28T15:24:00+0200,NS
37445,LWC,stoptrein,2017-03-28T15:24:00+0200,Arriva
32148,MES,Sneltrein,2017-03-28T15:24:00+0200,Arriva
32045,MES,stoptrein,2017-03-28T15:24:00+0200,Arriva
32451,MT,stoptrein,2017-03-28T15:24:00+0200,Arriva
15850,NDB,Sprinter,2017-03-28T15:24:00+0200,NS
3650,NM,Intercity,2017-03-28T15:24:00+0200,NS
3355,NVP,Sprinter,2017-03-28T15:24:00+0200,NS
3646,OST,Intercity,2017-03-28T15:24:00+0200,NS
4348,RAI,Sprinter,2017-03-28T15:24:00+0200,NS
2240,RB,Intercity,2017-03-28T15:24:00+0200,NS
5150,RLB,Sprinter,2017-03-28T15:24:00+0200,NS
4053,RTA,Sprinter,2017-03-28T15:24:00+0200,NS
2244,RTB,Intercity,2017-03-28T15:24:00+0200,NS
4355,SHL,Sprinter,2017-03-28T15:24:00+0200,NS
32453,STD,stoptrein,2017-03-28T15:24:00+0200,Arriva
5553,STZ,Sprinter,2017-03-28T15:24:00+0200,NS
3553,UT,Intercity,2017-03-28T15:24:00+0200,NS
8850,UT,Intercity,2017-03-28T15:24:00+0200,NS
6955,UTVR,Sprinter,2017-03-28T15:24:00+0200,NS
31158,ZA,stoptrein,2017-03-28T15:24:00+0200,Arriva
6953,ZBM,Sprinter,2017-03-28T15:24:00+0200,NS
8149,ZL,Sprinter,2017-03-28T15:24:00+0200,NS
7651,AH,Sprinter,2017-03-28T15:25:00+0200,NS
14653,ALM,Sprinter,2017-03-28T15:25:00+0200,NS
4953,ALMM,Sprinter,2017-03-28T15:25:00+0200,NS
14650,ALMO,Sprinter,2017-03-28T15:25:00+0200,NS
15852,AMFS,Sprinter,2017-03-28T15:25:00+0200,NS
1649,AML,Intercity,2017-03-28T15:25:00+0200,NS
2238,ARN,Intercity,2017-03-28T15:25:00+0200,NS
3055,ASD,Intercity,2017-03-28T15:25:00+0200,NS
547,ASN,Intercity,2017-03-28T15:25:00+0200,NS
300547,ASN,Intercity,2017-03-28T15:25:00+0200,NS
3057,CAS,Intercity,2017-03-28T15:25:00+0200,NS
13556,DN,Intercity,2017-03-28T15:25:00+0200,NS
14652,DRON,Sprinter,2017-03-28T15:25:00+0200,NS
30954,DTCH,stoptrein,2017-03-28T15:25:00+0200,Arriva
7054,DV,Sprinter,2017-03-28T15:25:00+0200,NS
5652,EML,Sprinter,2017-03-28T15:25:00+0200,NS
8045,GBG,stoptrein,2017-03-28T15:25:00+0200,Arriva
37547,GERP,stoptrein,2017-03-28T15:25:00+0200,Arriva
32555,GLN,stoptrein,2017-03-28T15:25:00+0200,Arriva
9239,GV,Intercity,2017-03-28T15:25:00+0200,NS International
4546,HKS,Intercity,2017-03-28T15:25:00+0200,NS
2144,HLM,Intercity,2017-03-28T15:25:00+0200,NS
6361,HLM,Sprinter,2017-03-28T15:25:00+0200,NS
4857,HLMS,Sprinter,2017-03-28T15:25:00+0200,NS
4846,HLO,Sprinter,2017-03-28T15:25:00+0200,NS
3359,HNK,Sprinter,2017-03-28T15:25:00+0200,NS
6950,HTNC,Sprinter,2017-03-28T15:25:00+0200,NS
31338,HVL,stoptrein,2017-03-28T15:25:00+0200,Valleilijn
37160,IJT,stoptrein,2017-03-28T15:25:00+0200,Arriva
37558,KW,stoptrein,2017-03-28T15:25:00+0200,Arriva
31058,MRB,stoptrein,2017-03-28T15:25:00+0200,Arriva
4146,MSW,Sprinter,2017-03-28T15:25:00+0200,NS
858,MT,Intercity,2017-03-28T15:25:00+0200,NS
7653,NMGO,Sprinter,2017-03-28T15:25:00+0200,NS
7652,NML,Sprinter,2017-03-28T15:25:00+0200,NS
4246,NWL,Sprinter,2017-03-28T15:25:00+0200,NS
3653,O,Intercity,2017-03-28T15:25:00+0200,NS
7552,OTB,Sprinter,2017-03-28T15:25:00+0200,NS
4453,RS,Sprinter,2017-03-28T15:25:00+0200,NS
5148,RSW,Sprinter,2017-03-28T15:25:00+0200,NS
4052,RTD,Sprinter,2017-03-28T15:25:00+0200,NS
5048,SDM,Sprinter,2017-03-28T15:25:00+0200,NS
6155,UTT,Sprinter,2017-03-28T15:25:00+0200,NS
4257,VDW,Sprinter,2017-03-28T15:25:00+0200,NS
2265,VSS,Intercity,2017-03-28T15:25:00+0200,NS
7947,WDN,Sprinter,2017-03-28T15:25:00+0200,NS
4059,WM,Sprinter,2017-03-28T15:25:00+0200,NS
5748,WP,Sprinter,2017-03-28T15:25:00+0200,NS
6846,YPB,Sprinter,2017-03-28T15:25:00+0200,NS
37860,ZB,stoptrein,2017-03-28T15:25:00+0200,Arriva
4046,ZD,Sprinter,2017-03-28T15:25:00+0200,NS
7859,ZTMO,Sprinter,2017-03-28T15:25:00+0200,NS
7455,AC,Sprinter,2017-03-28T15:26:00+0200,NS
4457,AH,Sprinter,2017-03-28T15:26:00+0200,NS
1552,AMF,Intercity,2017-03-28T15:26:00+0200,NS
31443,AMF,stoptrein,2017-03-28T15:26:00+0200,Valleilijn
7956,AMRI,Sprinter,2017-03-28T15:26:00+0200,NS
4048,ASB,Sprinter,2017-03-28T15:26:00+0200,NS
5463,ASD,Sprinter,2017-03-28T15:26:00+0200,NS
3555,ASDZ,Intercity,2017-03-28T15:26:00+0200,NS
2444,ASDZ,Intercity,2017-03-28T15:26:00+0200,NS
3350,ASS,Sprinter,2017-03-28T15:26:00+0200,NS
4757,ASS,Sprinter,2017-03-28T15:26:00+0200,NS
4844,BLL,Sprinter,2017-03-28T15:26:00+0200,NS
31341,BNC,stoptrein,2017-03-28T15:26:00+0200,Valleilijn
36855,DDR,stoptrein,2017-03-28T15:26:00+0200,Arriva
6654,DDR,Sprinter,2017-03-28T15:26:00+0200,NS
14648,DMN,Sprinter,2017-03-28T15:26:00+0200,NS
5755,DVD,Sprinter,2017-03-28T15:26:00+0200,NS
3152,ED,Intercity,2017-03-28T15:26:00+0200,NS
20320,EGHM,stoptrein,2017-03-28T15:26:00+0200,DB
8158,GERP,Sprinter,2017-03-28T15:26:00+0200,NS
37645,GNN,stoptrein,2017-03-28T15:26:00+0200,Arriva
36848,GR,stoptrein,2017-03-28T15:26:00+0200,Arriva
6857,GVC,Sprinter,2017-03-28T15:26:00+0200,NS
36755,HBZM,stoptrein,2017-03-28T15:26:00+0200,Arriva
4159,HLD,Sprinter,2017-03-28T15:26:00+0200,NS
6952,HT,Sprinter,2017-03-28T15:26:00+0200,NS
3551,HT,Intercity,2017-03-28T15:26:00+0200,NS
5753,HVSM,Sprinter,2017-03-28T15:26:00+0200,NS
5750,HVSP,Sprinter,2017-03-28T15:26:00+0200,NS
31147,KTR,stoptrein,2017-03-28T15:26:00+0200,Arriva
8857,LDL,Intercity,2017-03-28T15:26:00+0200,NS
32350,MMLH,stoptrein,2017-03-28T15:26:00+0200,Arriva
6449,MZ,Sprinter,2017-03-28T15:26:00+0200,NS
32353,NMH,stoptrein,2017-03-28T15:26:00+0200,Arriva
7757,NWK,Sprinter,2017-03-28T15:26:00+0200,NS
7049,RSN,Sprinter,2017-03-28T15:26:00+0200,NS
5157,RTD,Sprinter,2017-03-28T15:26:00+0200,NS
2448,RTD,Intercity,2017-03-28T15:26:00+0200,NS
4452,RVS,Sprinter,2017-03-28T15:26:00+0200,NS
5550,SD,Sprinter,2017-03-28T15:26:00+0200,NS
36748,SDTB,stoptrein,2017-03-28T15:26:00+0200,Arriva
32552,SN,stoptrein,2017-03-28T15:26:00+0200,Arriva
37845,SPM,stoptrein,2017-03-28T15:26:00+0200,Arriva
6651,TBR,Sprinter,2017-03-28T15:26:00+0200,NS
4855,UTG,Sprinter,2017-03-28T15:26:00+0200,NS
7450,UTVR,Sprinter,2017-03-28T15:26:00+0200,NS
32143,VK,Sneltrein,2017-03-28T15:26:00+0200,Arriva
7654,VP,Sprinter,2017-03-28T15:26:00+0200,NS
6359,VST,Sprinter,2017-03-28T15:26:00+0200,NS
8855,WD,Intercity,2017-03-28T15:26:00+0200,NS
37658,WSM,stoptrein,2017-03-28T15:26:00+0200,Arriva
6458,WT,Sprinter,2017-03-28T15:26:00+0200,NS
30754,ZV,stoptrein,2017-03-28T15:26:00+0200,Breng
7651,AHP,Sprinter,2017-03-28T15:27:00+0200,NS
14653,ALMP,Sprinter,2017-03-28T15:27:00+0200,NS
3048,ASA,Intercity,2017-03-28T15:27:00+0200,NS
4057,ASA,Sprinter,2017-03-28T15:27:00+0200,NS
4746,ASD,Sprinter,2017-03-28T15:27:00+0200,NS
5653,BHV,Sprinter,2017-03-28T15:27:00+0200,NS
32452,BK,stoptrein,2017-03-28T15:27:00+0200,Arriva
4559,BKF,Intercity,2017-03-28T15:27:00+0200,NS
36753,BSD,stoptrein,2017-03-28T15:27:00+0200,Arriva
31047,DA,stoptrein,2017-03-28T15:27:00+0200,Arriva
5050,DDR,Sprinter,2017-03-28T15:27:00+0200,NS
30751,DVN,stoptrein,2017-03-28T15:27:00+0200,Breng
31340,EDC,stoptrein,2017-03-28T15:27:00+0200,Valleilijn
7748,GD,Sprinter,2017-03-28T15:27:00+0200,NS
2057,GD,Intercity,2017-03-28T15:27:00+0200,NS
6344,GVM,Sprinter,2017-03-28T15:27:00+0200,NS
31158,HMN,stoptrein,2017-03-28T15:27:00+0200,Arriva
7348,MAS,Sprinter,2017-03-28T15:27:00+0200,NS
32045,MTN,stoptrein,2017-03-28T15:27:00+0200,Arriva
856,RM,Intercity,2017-03-28T15:27:00+0200,NS
3656,RSD,Intercity,2017-03-28T15:27:00+0200,NS
9339,SHL,Thalys,2017-03-28T15:27:00+0200,NS International
1848,SHL,Intercity,2017-03-28T15:27:00+0200,NS
37643,UHZ,stoptrein,2017-03-28T15:27:00+0200,Arriva
6955,UTLN,Sprinter,2017-03-28T15:27:00+0200,NS
4246,VDO,Sprinter,2017-03-28T15:27:00+0200,NS
7056,WDN,Sprinter,2017-03-28T15:27:00+0200,NS
3357,ZD,Sprinter,2017-03-28T15:27:00+0200,NS
4450,AHZ,Sprinter,2017-03-28T15:28:00+0200,NS
36750,AKL,stoptrein,2017-03-28T15:28:00+0200,Arriva
14650,ALMB,Sprinter,2017-03-28T15:28:00+0200,NS
300650,AMF,Intercity,2017-03-28T15:28:00+0200,NS
3550,ASB,Intercity,2017-03-28T15:28:00+0200,NS
14655,ASDM,Sprinter,2017-03-28T15:28:00+0200,NS
14648,ASSP,Sprinter,2017-03-28T15:28:00+0200,NS
5249,BET,Sprinter,2017-03-28T15:28:00+0200,NS
31442,BNC,stoptrein,2017-03-28T15:28:00+0200,Valleilijn
31341,BNZ,stoptrein,2017-03-28T15:28:00+0200,Valleilijn
32251,BR,stoptrein,2017-03-28T15:28:00+0200,Arriva
5650,DLD,Sprinter,2017-03-28T15:28:00+0200,NS
5755,DMNZ,Sprinter,2017-03-28T15:28:00+0200,NS
37245,DRP,stoptrein,2017-03-28T15:28:00+0200,Arriva
37258,DRP,stoptrein,2017-03-28T15:28:00+0200,Arriva
1157,DT,Intercity,2017-03-28T15:28:00+0200,NS
4048,DVD,Sprinter,2017-03-28T15:28:00+0200,NS
36755,GND,stoptrein,2017-03-28T15:28:00+0200,Arriva
2246,GV,Intercity,2017-03-28T15:28:00+0200,NS
5148,GVMW,Sprinter,2017-03-28T15:28:00+0200,NS
9047,GW,Sprinter,2017-03-28T15:28:00+0200,NS
6342,HAD,Sprinter,2017-03-28T15:28:00+0200,NS
13549,HM,Intercity,2017-03-28T15:28:00+0200,NS
6950,HTN,Sprinter,2017-03-28T15:28:00+0200,NS
3044,HWD,Intercity,2017-03-28T15:28:00+0200,NS
2263,KBD,Intercity,2017-03-28T15:28:00+0200,NS
2240,KBD,Intercity,2017-03-28T15:28:00+0200,NS
4046,KZ,Sprinter,2017-03-28T15:28:00+0200,NS
37058,MG,stoptrein,2017-03-28T15:28:00+0200,Arriva
5651,PT,Sprinter,2017-03-28T15:28:00+0200,NS
37660,RD,stoptrein,2017-03-28T15:28:00+0200,Arriva
4053,RTN,Sprinter,2017-03-28T15:28:00+0200,NS
5150,RTZ,Sprinter,2017-03-28T15:28:00+0200,NS
32552,SBK,stoptrein,2017-03-28T15:28:00+0200,Arriva
37145,SK,stoptrein,2017-03-28T15:28:00+0200,Arriva
3352,SSH,Sprinter,2017-03-28T15:28:00+0200,NS
37745,SWD,stoptrein,2017-03-28T15:28:00+0200,Arriva
37758,SWD,stoptrein,2017-03-28T15:28:00+0200,Arriva
6155,UTLR,Sprinter,2017-03-28T15:28:00+0200,NS
6846,VB,Sprinter,2017-03-28T15:28:00+0200,NS
4257,VDG,Sprinter,2017-03-28T15:28:00+0200,NS
5649,WZ,Sprinter,2017-03-28T15:28:00+0200,NS
5952,ZVB,Sprinter,2017-03-28T15:28:00+0200,NS
7654,AHPR,Sprinter,2017-03-28T15:29:00+0200,NS
750,ALM,Intercity,2017-03-28T15:29:00+0200,NS
4953,AMPO,Sprinter,2017-03-28T15:29:00+0200,NS
4348,ASDZ,Sprinter,2017-03-28T15:29:00+0200,NS
857,ASS,Intercity,2017-03-28T15:29:00+0200,NS
32250,BMR,stoptrein,2017-03-28T15:29:00+0200,Arriva
9652,BTL,Sprinter,2017-03-28T15:29:00+0200,NS
6654,DDZD,Sprinter,2017-03-28T15:29:00+0200,NS
1148,DT,Intercity,2017-03-28T15:29:00+0200,NS
2461,DVD,Intercity,2017-03-28T15:29:00+0200,NS
8145,GERP,Sprinter,2017-03-28T15:29:00+0200,NS
5159,GV,Sprinter,2017-03-28T15:29:00+0200,NS
9058,GW,Sprinter,2017-03-28T15:29:00+0200,NS
6361,HAD,Sprinter,2017-03-28T15:29:00+0200,NS
37458,HDG,stoptrein,2017-03-28T15:29:00+0200,Arriva
7949,HNO,Sprinter,2017-03-28T15:29:00+0200,NS
1847,HR,Intercity,2017-03-28T15:29:00+0200,NS
1856,HR,Intercity,2017-03-28T15:29:00+0200,NS
4453,HTO,Sprinter,2017-03-28T15:29:00+0200,NS
20320,LG,stoptrein,2017-03-28T15:29:00+0200,DB
32453,LUT,stoptrein,2017-03-28T15:29:00+0200,Arriva
2265,MDB,Intercity,2017-03-28T15:29:00+0200,NS
37045,MG,stoptrein,2017-03-28T15:29:00+0200,Arriva
31147,OP,stoptrein,2017-03-28T15:29:00+0200,Arriva
32555,SBK,stoptrein,2017-03-28T15:29:00+0200,Arriva
7051,TWL,Sprinter,2017-03-28T15:29:00+0200,NS
32148,VK,Sneltrein,2017-03-28T15:29:00+0200,Arriva
32252,VL,stoptrein,2017-03-28T15:29:00+0200,Arriva
7451,VNDC,Sprinter,2017-03-28T15:29:00+0200,NS
4455,WC,Sprinter,2017-03-28T15:29:00+0200,NS
7552,WF,Sprinter,2017-03-28T15:29:00+0200,NS
30949,WL,stoptrein,2017-03-28T15:29:00+0200,Arriva
37443,ZH,stoptrein,2017-03-28T15:29:00+0200,Arriva
4059,ZZS,Sprinter,2017-03-28T15:29:00+0200,NS
7651,AHPR,Sprinter,2017-03-28T15:30:00+0200,NS
15851,AMF,Sprinter,2017-03-28T15:30:00+0200,NS
7947,AML,Sprinter,2017-03-28T15:30:00+0200,NS
7956,AML,Sprinter,2017-03-28T15:30:00+0200,NS
1555,ASD,Intercity,2017-03-28T15:30:00+0200,NS
5444,ASS,Sprinter,2017-03-28T15:30:00+0200,NS
848,ASS,Intercity,2017-03-28T15:30:00+0200,NS
30956,ATN,stoptrein,2017-03-28T15:30:00+0200,Arriva
30947,ATN,stoptrein,2017-03-28T15:30:00+0200,Arriva
5256,BET,Sprinter,2017-03-28T15:30:00+0200,NS
32253,BMR,stoptrein,2017-03-28T15:30:00+0200,Arriva
4855,CAS,Sprinter,2017-03-28T15:30:00+0200,NS
36748,DDRS,stoptrein,2017-03-28T15:30:00+0200,Arriva
36855,DDRS,stoptrein,2017-03-28T15:30:00+0200,Arriva
3847,DL,Sneltrein,2017-03-28T15:30:00+0200,Arriva
8058,DL,stoptrein,2017-03-28T15:30:00+0200,Arriva
1751,DV,Intercity,2017-03-28T15:30:00+0200,NS
30754,DVN,stoptrein,2017-03-28T15:30:00+0200,Breng
37760,DZ,stoptrein,2017-03-28T15:30:00+0200,Arriva
6053,GDM,Sprinter,2017-03-28T15:30:00+0200,NS
6052,GDM,Sprinter,2017-03-28T15:30:00+0200,NS
31247,GO,stoptrein,2017-03-28T15:30:00+0200,Syntus
6652,GZ,Sprinter,2017-03-28T15:30:00+0200,NS
37445,HDG,stoptrein,2017-03-28T15:30:00+0200,Arriva
7954,HNO,Sprinter,2017-03-28T15:30:00+0200,NS
8158,HRN,Sprinter,2017-03-28T15:30:00+0200,NS
6955,HTN,Sprinter,2017-03-28T15:30:00+0200,NS
5753,HVS,Sprinter,2017-03-28T15:30:00+0200,NS
32554,KRD,stoptrein,2017-03-28T15:30:00+0200,Arriva
30845,LTV,stoptrein,2017-03-28T15:30:00+0200,Arriva
30860,LTV,stoptrein,2017-03-28T15:30:00+0200,Arriva
32452,LUT,stoptrein,2017-03-28T15:30:00+0200,Arriva
2238,MDB,Intercity,2017-03-28T15:30:00+0200,NS
4853,OBD,Sprinter,2017-03-28T15:30:00+0200,NS
31158,OP,stoptrein,2017-03-28T15:30:00+0200,Arriva
5652,PT,Sprinter,2017-03-28T15:30:00+0200,NS
4052,RTN,Sprinter,2017-03-28T15:30:00+0200,NS
37860,SPM,stoptrein,2017-03-28T15:30:00+0200,Arriva
7054,TWL,Sprinter,2017-03-28T15:30:00+0200,NS
6857,VB,Sprinter,2017-03-28T15:30:00+0200,NS
4246,VDG,Sprinter,2017-03-28T15:30:00+0200,NS
31058,VHP,stoptrein,2017-03-28T15:30:00+0200,Arriva
31047,VHP,stoptrein,2017-03-28T15:30:00+0200,Arriva
7452,VNDC,Sprinter,2017-03-28T15:30:00+0200,NS
3659,WH,Intercity,2017-03-28T15:30:00+0200,NS
3646,WH,Intercity,2017-03-28T15:30:00+0200,NS
30954,WL,stoptrein,2017-03-28T15:30:00+0200,Arriva
5654,WZ,Sprinter,2017-03-28T15:30:00+0200,NS
37460,ZH,stoptrein,2017-03-28T15:30:00+0200,Arriva
5050,ZWD,Sprinter,2017-03-28T15:30:00+0200,NS
5055,ZWD,Sprinter,2017-03-28T15:30:00+0200,NS
3052,AH,Intercity,2017-03-28T15:31:00+0200,NS
30951,AH,stoptrein,2017-03-28T15:31:00+0200,Arriva
4457,AHZ,Sprinter,2017-03-28T15:31:00+0200,NS
14653,ALMB,Sprinter,2017-03-28T15:31:00+0200,NS
15852,AMF,Sprinter,2017-03-28T15:31:00+0200,NS
4950,AMPO,Sprinter,2017-03-28T15:31:00+0200,NS
859,AMR,Intercity,2017-03-28T15:31:00+0200,NS
14648,ASDM,Sprinter,2017-03-28T15:31:00+0200,NS
5463,ASS,Sprinter,2017-03-28T15:31:00+0200,NS
14655,ASSP,Sprinter,2017-03-28T15:31:00+0200,NS
5650,BHV,Sprinter,2017-03-28T15:31:00+0200,NS
4559,BKG,Intercity,2017-03-28T15:31:00+0200,NS
4546,BKG,Intercity,2017-03-28T15:31:00+0200,NS
4846,CAS,Sprinter,2017-03-28T15:31:00+0200,NS
3860,CO,Sneltrein,2017-03-28T15:31:00+0200,Arriva
6649,DDZD,Sprinter,2017-03-28T15:31:00+0200,NS
5653,DLD,Sprinter,2017-03-28T15:31:00+0200,NS
5748,DMNZ,Sprinter,2017-03-28T15:31:00+0200,NS
2444,DVD,Intercity,2017-03-28T15:31:00+0200,NS
4057,DVD,Sprinter,2017-03-28T15:31:00+0200,NS
851,EHV,Intercity,2017-03-28T15:31:00+0200,NS
32552,GLN,stoptrein,2017-03-28T15:31:00+0200,Arriva
31256,GO,stoptrein,2017-03-28T15:31:00+0200,Syntus
6359,GVM,Sprinter,2017-03-28T15:31:00+0200,NS
5159,GVMW,Sprinter,2017-03-28T15:31:00+0200,NS
6651,GZ,Sprinter,2017-03-28T15:31:00+0200,NS
4857,HLM,Sprinter,2017-03-28T15:31:00+0200,NS
5750,HVS,Sprinter,2017-03-28T15:31:00+0200,NS
3059,HWD,Intercity,2017-03-28T15:31:00+0200,NS
4059,KZ,Sprinter,2017-03-28T15:31:00+0200,NS
32143,MES,Sneltrein,2017-03-28T15:31:00+0200,Arriva
4848,OBD,Sprinter,2017-03-28T15:31:00+0200,NS
3355,SSH,Sprinter,2017-03-28T15:31:00+0200,NS
5553,ST,Sprinter,2017-03-28T15:31:00+0200,NS
6150,UTLR,Sprinter,2017-03-28T15:31:00+0200,NS
4257,VDO,Sprinter,2017-03-28T15:31:00+0200,NS
6344,VST,Sprinter,2017-03-28T15:31:00+0200,NS
20152,WS,stoptrein,2017-03-28T15:31:00+0200,Arriva
37845,ZB,stoptrein,2017-03-28T15:31:00+0200,Arriva
30751,ZV,stoptrein,2017-03-28T15:31:00+0200,Breng
4046,ZZS,Sprinter,2017-03-28T15:31:00+0200,NS
7448,AC,Sprinter,2017-03-28T15:32:00+0200,NS
7654,AHP,Sprinter,2017-03-28T15:32:00+0200,NS
2650,ALM,Intercity,2017-03-28T15:32:00+0200,NS
14650,ALMP,Sprinter,2017-03-28T15:32:00+0200,NS
4048,ASA,Sprinter,2017-03-28T15:32:00+0200,NS
3555,ASB,Intercity,2017-03-28T15:32:00+0200,NS
5848,ASD,Sprinter,2017-03-28T15:32:00+0200,NS
37745,BDM,stoptrein,2017-03-28T15:32:00+0200,Arriva
36848,BHDV,stoptrein,2017-03-28T15:32:00+0200,Arriva
36755,BHDV,stoptrein,2017-03-28T15:32:00+0200,Arriva
32453,BK,stoptrein,2017-03-28T15:32:00+0200,Arriva
8147,BL,Sprinter,2017-03-28T15:32:00+0200,NS
32252,BR,stoptrein,2017-03-28T15:32:00+0200,Arriva
32554,CVM,stoptrein,2017-03-28T15:32:00+0200,Arriva
30949,DTCH,stoptrein,2017-03-28T15:32:00+0200,Arriva
5048,DTZ,Sprinter,2017-03-28T15:32:00+0200,NS
37760,DZW,stoptrein,2017-03-28T15:32:00+0200,Arriva
854,EHV,Intercity,2017-03-28T15:32:00+0200,NS
20219,ES,stoptrein,2017-03-28T15:32:00+0200,DB
8648,GD,Sprinter,2017-03-28T15:32:00+0200,R-net
4844,HLM,Sprinter,2017-03-28T15:32:00+0200,NS
13556,HM,Intercity,2017-03-28T15:32:00+0200,NS
31147,HMN,stoptrein,2017-03-28T15:32:00+0200,Arriva
32047,HRL,stoptrein,2017-03-28T15:32:00+0200,Arriva
4454,HT,Sprinter,2017-03-28T15:32:00+0200,NS
31443,HVL,stoptrein,2017-03-28T15:32:00+0200,Valleilijn
37145,IJT,stoptrein,2017-03-28T15:32:00+0200,Arriva
8554,KPN,Sprinter,2017-03-28T15:32:00+0200,NS
8848,LDL,Intercity,2017-03-28T15:32:00+0200,NS
32353,MMLH,stoptrein,2017-03-28T15:32:00+0200,Arriva
32048,MTN,stoptrein,2017-03-28T15:32:00+0200,Arriva
6458,MZ,Sprinter,2017-03-28T15:32:00+0200,NS
31258,ODZ,stoptrein,2017-03-28T15:32:00+0200,Syntus
2263,RB,Intercity,2017-03-28T15:32:00+0200,NS
5157,RTZ,Sprinter,2017-03-28T15:32:00+0200,NS
32555,SN,stoptrein,2017-03-28T15:32:00+0200,Arriva
5550,ST,Sprinter,2017-03-28T15:32:00+0200,NS
5251,TBU,Sprinter,2017-03-28T15:32:00+0200,NS
37660,UHM,stoptrein,2017-03-28T15:32:00+0200,Arriva
6950,UTLN,Sprinter,2017-03-28T15:32:00+0200,NS
7049,WDN,Sprinter,2017-03-28T15:32:00+0200,NS
7551,WF,Sprinter,2017-03-28T15:32:00+0200,NS
20157,WS,stoptrein,2017-03-28T15:32:00+0200,Arriva
30951,AHP,stoptrein,2017-03-28T15:33:00+0200,Arriva
753,ALM,Intercity,2017-03-28T15:33:00+0200,NS
15851,AMFS,Sprinter,2017-03-28T15:33:00+0200,NS
7947,AMRI,Sprinter,2017-03-28T15:33:00+0200,NS
2265,ARN,Intercity,2017-03-28T15:33:00+0200,NS
3055,ASA,Intercity,2017-03-28T15:33:00+0200,NS
4355,ASDZ,Sprinter,2017-03-28T15:33:00+0200,NS
3357,ASS,Sprinter,2017-03-28T15:33:00+0200,NS
4746,ASS,Sprinter,2017-03-28T15:33:00+0200,NS
4546,BKF,Intercity,2017-03-28T15:33:00+0200,NS
31442,BNN,stoptrein,2017-03-28T15:33:00+0200,Valleilijn
31058,DA,stoptrein,2017-03-28T15:33:00+0200,Arriva
37258,DEI,stoptrein,2017-03-28T15:33:00+0200,Arriva
14655,DMN,Sprinter,2017-03-28T15:33:00+0200,NS
1754,DV,Intercity,2017-03-28T15:33:00+0200,NS
5748,DVD,Sprinter,2017-03-28T15:33:00+0200,NS
3153,ED,Intercity,2017-03-28T15:33:00+0200,NS
9651,EHV,Sprinter,2017-03-28T15:33:00+0200,NS
5651,EML,Sprinter,2017-03-28T15:33:00+0200,NS
37245,FN,stoptrein,2017-03-28T15:33:00+0200,Arriva
37558,GERP,stoptrein,2017-03-28T15:33:00+0200,Arriva
37758,GNN,stoptrein,2017-03-28T15:33:00+0200,Arriva
2257,GV,Intercity,2017-03-28T15:33:00+0200,NS
757,GVC,Intercity,2017-03-28T15:33:00+0200,NS
2255,HAD,Intercity,2017-03-28T15:33:00+0200,NS
37860,HGZ,stoptrein,2017-03-28T15:33:00+0200,Arriva
4146,HLD,Sprinter,2017-03-28T15:33:00+0200,NS
6653,HT,Sprinter,2017-03-28T15:33:00+0200,NS
5750,HVSM,Sprinter,2017-03-28T15:33:00+0200,NS
5753,HVSP,Sprinter,2017-03-28T15:33:00+0200,NS
37547,KW,stoptrein,2017-03-28T15:33:00+0200,Arriva
4159,MSW,Sprinter,2017-03-28T15:33:00+0200,NS
32350,NMH,stoptrein,2017-03-28T15:33:00+0200,Arriva
7748,NWK,Sprinter,2017-03-28T15:33:00+0200,NS
7056,RSN,Sprinter,2017-03-28T15:33:00+0200,NS
4759,UTG,Sprinter,2017-03-28T15:33:00+0200,NS
6150,UTT,Sprinter,2017-03-28T15:33:00+0200,NS
4246,VDW,Sprinter,2017-03-28T15:33:00+0200,NS
32251,VL,stoptrein,2017-03-28T15:33:00+0200,Arriva
7452,VNDW,Sprinter,2017-03-28T15:33:00+0200,NS
32352,VRY,stoptrein,2017-03-28T15:33:00+0200,Arriva
4452,WC,Sprinter,2017-03-28T15:33:00+0200,NS
6857,YPB,Sprinter,2017-03-28T15:33:00+0200,NS
9058,AKM,Sprinter,2017-03-28T15:34:00+0200,NS
11752,AMFS,Intercity,2017-03-28T15:34:00+0200,NS
4057,ASB,Sprinter,2017-03-28T15:34:00+0200,NS
2250,ASD,Intercity,2017-03-28T15:34:00+0200,NS
2144,ASS,Intercity,2017-03-28T15:34:00+0200,NS
7455,BKL,Sprinter,2017-03-28T15:34:00+0200,NS
4857,BLL,Sprinter,2017-03-28T15:34:00+0200,NS
3046,CAS,Intercity,2017-03-28T15:34:00+0200,NS
8045,CO,stoptrein,2017-03-28T15:34:00+0200,Arriva
13549,DN,Intercity,2017-03-28T15:34:00+0200,NS
2246,DT,Intercity,2017-03-28T15:34:00+0200,NS
6344,DVNK,Sprinter,2017-03-28T15:34:00+0200,NS
32554,EGH,stoptrein,2017-03-28T15:34:00+0200,Arriva
5249,EHS,Sprinter,2017-03-28T15:34:00+0200,NS
7958,ES,Sprinter,2017-03-28T15:34:00+0200,NS
37445,FWD,stoptrein,2017-03-28T15:34:00+0200,Arriva
2048,GD,Intercity,2017-03-28T15:34:00+0200,NS
7757,GD,Sprinter,2017-03-28T15:34:00+0200,NS
5148,GV,Sprinter,2017-03-28T15:34:00+0200,NS
3061,HDR,Intercity,2017-03-28T15:34:00+0200,NS
6955,HTNC,Sprinter,2017-03-28T15:34:00+0200,NS
4952,HVSP,Sprinter,2017-03-28T15:34:00+0200,NS
2240,KRG,Intercity,2017-03-28T15:34:00+0200,NS
31158,KTR,stoptrein,2017-03-28T15:34:00+0200,Arriva
31340,LTN,stoptrein,2017-03-28T15:34:00+0200,Valleilijn
37458,LWC,stoptrein,2017-03-28T15:34:00+0200,Arriva
7653,NML,Sprinter,2017-03-28T15:34:00+0200,NS
4257,NWL,Sprinter,2017-03-28T15:34:00+0200,NS
7949,RAT,Sprinter,2017-03-28T15:34:00+0200,NS
5159,RSW,Sprinter,2017-03-28T15:34:00+0200,NS
4455,RVS,Sprinter,2017-03-28T15:34:00+0200,NS
5553,SD,Sprinter,2017-03-28T15:34:00+0200,NS
36855,SDTB,stoptrein,2017-03-28T15:34:00+0200,Arriva
5550,STZ,Sprinter,2017-03-28T15:34:00+0200,NS
13558,VL,Intercity,2017-03-28T15:34:00+0200,NS
7651,VP,Sprinter,2017-03-28T15:34:00+0200,NS
2238,VSS,Intercity,2017-03-28T15:34:00+0200,NS
4046,WM,Sprinter,2017-03-28T15:34:00+0200,NS
30754,WTV,stoptrein,2017-03-28T15:34:00+0200,Breng
6952,ZBM,Sprinter,2017-03-28T15:34:00+0200,NS
7846,ZTMO,Sprinter,2017-03-28T15:34:00+0200,NS
3051,AH,Intercity,2017-03-28T15:35:00+0200,NS
2463,ALMB,Intercity,2017-03-28T15:35:00+0200,NS
4950,ALMM,Sprinter,2017-03-28T15:35:00+0200,NS
653,AMF,Intercity,2017-03-28T15:35:00+0200,NS
4353,AMPO,Sprinter,2017-03-28T15:35:00+0200,NS
17847,APD,stoptrein,2017-03-28T15:35:00+0200,Arriva
7054,APDO,Sprinter,2017-03-28T15:35:00+0200,NS
37760,APG,stoptrein,2017-03-28T15:35:00+0200,Arriva
7457,ASD,Sprinter,2017-03-28T15:35:00+0200,NS
4048,ASDM,Sprinter,2017-03-28T15:35:00+0200,NS
2461,ASDZ,Intercity,2017-03-28T15:35:00+0200,NS
3550,ASDZ,Intercity,2017-03-28T15:35:00+0200,NS
556,ASN,Intercity,2017-03-28T15:35:00+0200,NS
7453,BNK,Sprinter,2017-03-28T15:35:00+0200,NS
14651,DRON,Sprinter,2017-03-28T15:35:00+0200,NS
5048,DT,Sprinter,2017-03-28T15:35:00+0200,NS
9654,EHV,Sprinter,2017-03-28T15:35:00+0200,NS
4457,EST,Sprinter,2017-03-28T15:35:00+0200,NS
6848,GDG,Sprinter,2017-03-28T15:35:00+0200,NS
37460,GK,stoptrein,2017-03-28T15:35:00+0200,Arriva
36848,GND,stoptrein,2017-03-28T15:35:00+0200,Arriva
8156,HGV,Sprinter,2017-03-28T15:35:00+0200,NS
6361,HIL,Sprinter,2017-03-28T15:35:00+0200,NS
4559,HKS,Intercity,2017-03-28T15:35:00+0200,NS
4844,HLMS,Sprinter,2017-03-28T15:35:00+0200,NS
4855,HLO,Sprinter,2017-03-28T15:35:00+0200,NS
3560,HRL,Intercity,2017-03-28T15:35:00+0200,NS
32047,HRLW,stoptrein,2017-03-28T15:35:00+0200,Arriva
4454,HTO,Sprinter,2017-03-28T15:35:00+0200,NS
6359,LAA,Sprinter,2017-03-28T15:35:00+0200,NS
31341,LTN,stoptrein,2017-03-28T15:35:00+0200,Valleilijn
32048,MES,stoptrein,2017-03-28T15:35:00+0200,Arriva
37547,MTH,stoptrein,2017-03-28T15:35:00+0200,Arriva
32555,NH,stoptrein,2017-03-28T15:35:00+0200,Arriva
5652,NKK,Sprinter,2017-03-28T15:35:00+0200,NS
7652,NMGO,Sprinter,2017-03-28T15:35:00+0200,NS
3352,NVP,Sprinter,2017-03-28T15:35:00+0200,NS
3652,O,Intercity,2017-03-28T15:35:00+0200,NS
7551,OTB,Sprinter,2017-03-28T15:35:00+0200,NS
4355,RAI,Sprinter,2017-03-28T15:35:00+0200,NS
5157,RLB,Sprinter,2017-03-28T15:35:00+0200,NS
37160,SK,stoptrein,2017-03-28T15:35:00+0200,Arriva
6652,TBR,Sprinter,2017-03-28T15:35:00+0200,NS
9652,VG,Sprinter,2017-03-28T15:35:00+0200,NS
5952,ZLW,Sprinter,2017-03-28T15:35:00+0200,NS
1847,AKM,Intercity,2017-03-28T15:36:00+0200,NS
14650,ALM,Sprinter,2017-03-28T15:36:00+0200,NS
149,AMF,Intercity,2017-03-28T15:36:00+0200,NS International
1656,AML,Intercity,2017-03-28T15:36:00+0200,NS
3059,AMRN,Intercity,2017-03-28T15:36:00+0200,NS
4550,ASD,Intercity,2017-03-28T15:36:00+0200,NS
4057,ASHD,Sprinter,2017-03-28T15:36:00+0200,NS
7448,ASHD,Sprinter,2017-03-28T15:36:00+0200,NS
5050,BRD,Sprinter,2017-03-28T15:36:00+0200,NS
9653,BTL,Sprinter,2017-03-28T15:36:00+0200,NS
6052,CL,Sprinter,2017-03-28T15:36:00+0200,NS
7748,CPS,Sprinter,2017-03-28T15:36:00+0200,NS
31247,DDN,stoptrein,2017-03-28T15:36:00+0200,Syntus
2455,DDR,Intercity,2017-03-28T15:36:00+0200,NS
30954,DID,stoptrein,2017-03-28T15:36:00+0200,Arriva
7051,DV,Sprinter,2017-03-28T15:36:00+0200,NS
20219,ESE,stoptrein,2017-03-28T15:36:00+0200,DB
3656,ETN,Intercity,2017-03-28T15:36:00+0200,NS
5059,GVC,Sprinter,2017-03-28T15:36:00+0200,NS
2161,HLM,Intercity,2017-03-28T15:36:00+0200,NS
5753,HOR,Sprinter,2017-03-28T15:36:00+0200,NS
5463,HWZB,Sprinter,2017-03-28T15:36:00+0200,NS
2257,LAA,Intercity,2017-03-28T15:36:00+0200,NS
31047,MRB,stoptrein,2017-03-28T15:36:00+0200,Arriva
4159,MSS,Sprinter,2017-03-28T15:36:00+0200,NS
37860,MTH,stoptrein,2017-03-28T15:36:00+0200,Arriva
32454,MTR,stoptrein,2017-03-28T15:36:00+0200,Arriva
3659,OST,Intercity,2017-03-28T15:36:00+0200,NS
20152,SDA,stoptrein,2017-03-28T15:36:00+0200,Arriva
37660,UHZ,stoptrein,2017-03-28T15:36:00+0200,Arriva
4846,UTG,Sprinter,2017-03-28T15:36:00+0200,NS
6150,VTN,Sprinter,2017-03-28T15:36:00+0200,NS
30951,WTV,stoptrein,2017-03-28T15:36:00+0200,Arriva
31147,ZA,stoptrein,2017-03-28T15:36:00+0200,Arriva
3350,ZDK,Sprinter,2017-03-28T15:36:00+0200,NS
7846,ZTM,Sprinter,2017-03-28T15:36:00+0200,NS
5446,ZVT,Sprinter,2017-03-28T15:36:00+0200,NS
127,AH,ICE,International,2017-03-28T15:37:00+0200,NS International
8857,APN,Intercity,2017-03-28T15:37:00+0200,NS
948,ASD,Intercity,direct,2017-03-28T15:37:00+0200,NS
3357,ASDL,Sprinter,2017-03-28T15:37:00+0200,NS
11155,BD,Intercity,2017-03-28T15:37:00+0200,NS
13558,BR,Intercity,2017-03-28T15:37:00+0200,NS
5750,BSMZ,Sprinter,2017-03-28T15:37:00+0200,NS
32250,CK,stoptrein,2017-03-28T15:37:00+0200,Arriva
32353,CK,stoptrein,2017-03-28T15:37:00+0200,Arriva
30751,DID,stoptrein,2017-03-28T15:37:00+0200,Breng
8045,DLN,stoptrein,2017-03-28T15:37:00+0200,Arriva
9656,DN,Sprinter,2017-03-28T15:37:00+0200,NS
30756,DTC,stoptrein,2017-03-28T15:37:00+0200,Breng
30949,DTC,stoptrein,2017-03-28T15:37:00+0200,Arriva
548,GD,Intercity,2017-03-28T15:37:00+0200,NS
7859,GD,Sprinter,2017-03-28T15:37:00+0200,NS
4055,GDG,Sprinter,2017-03-28T15:37:00+0200,NS
37658,GNN,stoptrein,2017-03-28T15:37:00+0200,Arriva
5654,HDE,Sprinter,2017-03-28T15:37:00+0200,NS
1649,HGL,Intercity,2017-03-28T15:37:00+0200,NS
37547,HGZ,stoptrein,2017-03-28T15:37:00+0200,Arriva
3554,HT,Intercity,2017-03-28T15:37:00+0200,NS
4848,HWD,Sprinter,2017-03-28T15:37:00+0200,NS
4759,KMA,Sprinter,2017-03-28T15:37:00+0200,NS
32554,LG,stoptrein,2017-03-28T15:37:00+0200,Arriva
4246,MSS,Sprinter,2017-03-28T15:37:00+0200,NS
4452,NMD,Sprinter,2017-03-28T15:37:00+0200,NS
7652,NMD,Sprinter,2017-03-28T15:37:00+0200,NS
5748,RAI,Sprinter,2017-03-28T15:37:00+0200,NS
3044,SGN,Intercity,2017-03-28T15:37:00+0200,NS
4857,SPTZ,Sprinter,2017-03-28T15:37:00+0200,NS
32251,TG,stoptrein,2017-03-28T15:37:00+0200,Arriva
32047,VDL,stoptrein,2017-03-28T15:37:00+0200,Arriva
30956,VSV,stoptrein,2017-03-28T15:37:00+0200,Arriva
31058,VZ,stoptrein,2017-03-28T15:37:00+0200,Arriva
37645,WSM,stoptrein,2017-03-28T15:37:00+0200,Arriva
1856,WV,Intercity,2017-03-28T15:37:00+0200,NS
30845,WWW,stoptrein,2017-03-28T15:37:00+0200,Arriva
31160,AH,stoptrein,2017-03-28T15:38:00+0200,Arriva
4352,ALMO,Sprinter,2017-03-28T15:38:00+0200,NS
7049,AML,Sprinter,2017-03-28T15:38:00+0200,NS
17847,APDM,stoptrein,2017-03-28T15:38:00+0200,Arriva
8647,APN,Sprinter,2017-03-28T15:38:00+0200,R-net
2655,ASD,Intercity,2017-03-28T15:38:00+0200,NS
4657,ASDL,Sprinter,2017-03-28T15:38:00+0200,NS
5848,ASS,Sprinter,2017-03-28T15:38:00+0200,NS
2452,BD,Intercity,2017-03-28T15:38:00+0200,NS
32453,BDE,stoptrein,2017-03-28T15:38:00+0200,Arriva
15852,BRN,Sprinter,2017-03-28T15:38:00+0200,NS
5256,BTL,Sprinter,2017-03-28T15:38:00+0200,NS
4052,CPS,Sprinter,2017-03-28T15:38:00+0200,NS
4644,DVNK,Sprinter,2017-03-28T15:38:00+0200,NS
37445,DWE,stoptrein,2017-03-28T15:38:00+0200,Arriva
9654,EHS,Sprinter,2017-03-28T15:38:00+0200,NS
8062,EMN,stoptrein,2017-03-28T15:38:00+0200,Arriva
7958,ESK,Sprinter,2017-03-28T15:38:00+0200,NS
37847,GN,stoptrein,2017-03-28T15:38:00+0200,Arriva
1148,GV,Intercity,2017-03-28T15:38:00+0200,NS
2059,GVC,Intercity,2017-03-28T15:38:00+0200,NS
32555,HB,stoptrein,2017-03-28T15:38:00+0200,Arriva
5651,HD,Sprinter,2017-03-28T15:38:00+0200,NS
3061,HDRZ,Intercity,2017-03-28T15:38:00+0200,NS
31258,HGLO,stoptrein,2017-03-28T15:38:00+0200,Syntus
11655,HVS,Intercity,2017-03-28T15:38:00+0200,NS
4046,KMA,Sprinter,2017-03-28T15:38:00+0200,NS
37860,KW,stoptrein,2017-03-28T15:38:00+0200,Arriva
3847,OMN,Sneltrein,2017-03-28T15:38:00+0200,Arriva
7651,RH,Sprinter,2017-03-28T15:38:00+0200,NS
30860,RL,stoptrein,2017-03-28T15:38:00+0200,Arriva
36855,SDT,stoptrein,2017-03-28T15:38:00+0200,Arriva
32048,SGL,stoptrein,2017-03-28T15:38:00+0200,Arriva
37160,SKND,stoptrein,2017-03-28T15:38:00+0200,Arriva
37045,SKND,stoptrein,2017-03-28T15:38:00+0200,Arriva
37745,STM,stoptrein,2017-03-28T15:38:00+0200,Arriva
6053,TPSW,Sprinter,2017-03-28T15:38:00+0200,NS
6857,ZTM,Sprinter,2017-03-28T15:38:00+0200,NS
30754,AHP,stoptrein,2017-03-28T15:39:00+0200,Breng
4353,ALMM,Sprinter,2017-03-28T15:39:00+0200,NS
14650,ALMM,Sprinter,2017-03-28T15:39:00+0200,NS
14653,ALMO,Sprinter,2017-03-28T15:39:00+0200,NS
31343,AMF,stoptrein,2017-03-28T15:39:00+0200,Valleilijn
8948,APN,Sprinter,2017-03-28T15:39:00+0200,NS
7448,ASB,Sprinter,2017-03-28T15:39:00+0200,NS
3048,ASD,Intercity,2017-03-28T15:39:00+0200,NS
3157,ASDZ,Intercity,2017-03-28T15:39:00+0200,NS
2250,ASS,Intercity,2017-03-28T15:39:00+0200,NS
7947,BN,Sprinter,2017-03-28T15:39:00+0200,NS
31443,BNN,stoptrein,2017-03-28T15:39:00+0200,Valleilijn
31340,BNZ,stoptrein,2017-03-28T15:39:00+0200,Valleilijn
5157,BRD,Sprinter,2017-03-28T15:39:00+0200,NS
15853,BSMZ,Sprinter,2017-03-28T15:39:00+0200,NS
7453,DB,Sprinter,2017-03-28T15:39:00+0200,NS
9243,DDR,Intercity,2017-03-28T15:39:00+0200,NS International
2450,DDR,Intercity,2017-03-28T15:39:00+0200,NS
2244,DDR,Intercity,2017-03-28T15:39:00+0200,NS
15850,DMN,Sprinter,2017-03-28T15:39:00+0200,NS
3657,DR,Intercity,2017-03-28T15:39:00+0200,NS
5159,DT,Sprinter,2017-03-28T15:39:00+0200,NS
2448,DT,Intercity,2017-03-28T15:39:00+0200,NS
6451,EHV,Sprinter,2017-03-28T15:39:00+0200,NS
7653,EST,Sprinter,2017-03-28T15:39:00+0200,NS
20219,GBR,stoptrein,2017-03-28T15:39:00+0200,DB
6848,GD,Sprinter,2017-03-28T15:39:00+0200,NS
2857,GD,Intercity,2017-03-28T15:39:00+0200,NS
36752,GDM,stoptrein,2017-03-28T15:39:00+0200,Arriva
36750,GR,stoptrein,2017-03-28T15:39:00+0200,Arriva
36755,GR,stoptrein,2017-03-28T15:39:00+0200,Arriva
4661,GVC,Sprinter,2017-03-28T15:39:00+0200,NS
3860,HDB,Sneltrein,2017-03-28T15:39:00+0200,Arriva
4846,HK,Sprinter,2017-03-28T15:39:00+0200,NS
7056,HON,Sprinter,2017-03-28T15:39:00+0200,NS
853,HT,Intercity,2017-03-28T15:39:00+0200,NS
1552,HVS,Intercity,2017-03-28T15:39:00+0200,NS
4844,HWZB,Sprinter,2017-03-28T15:39:00+0200,NS
6458,HZE,Sprinter,2017-03-28T15:39:00+0200,NS
2459,LAA,Intercity,2017-03-28T15:39:00+0200,NS
31256,LC,stoptrein,2017-03-28T15:39:00+0200,Syntus
7455,MAS,Sprinter,2017-03-28T15:39:00+0200,NS
4646,NVP,Sprinter,2017-03-28T15:39:00+0200,NS
4148,NWL,Sprinter,2017-03-28T15:39:00+0200,NS
5050,RLB,Sprinter,2017-03-28T15:39:00+0200,NS
4454,RS,Sprinter,2017-03-28T15:39:00+0200,NS
36848,SDT,stoptrein,2017-03-28T15:39:00+0200,Arriva
6652,TBU,Sprinter,2017-03-28T15:39:00+0200,NS
32352,VLB,stoptrein,2017-03-28T15:39:00+0200,Arriva
32253,VLB,stoptrein,2017-03-28T15:39:00+0200,Arriva
8648,WAD,Sprinter,2017-03-28T15:39:00+0200,R-net
4057,AC,Sprinter,2017-03-28T15:40:00+0200,NS
4352,ALMB,Sprinter,2017-03-28T15:40:00+0200,NS
11752,AMF,Intercity,2017-03-28T15:40:00+0200,NS
1652,AMF,Intercity,2017-03-28T15:40:00+0200,NS
857,ASD,Intercity,2017-03-28T15:40:00+0200,NS
7457,ASDM,Sprinter,2017-03-28T15:40:00+0200,NS
5652,AVAT,Sprinter,2017-03-28T15:40:00+0200,NS
2240,BZL,Intercity,2017-03-28T15:40:00+0200,NS
859,CAS,Intercity,2017-03-28T15:40:00+0200,NS
6955,CL,Sprinter,2017-03-28T15:40:00+0200,NS
5550,DLD,Sprinter,2017-03-28T15:40:00+0200,NS
30756,DTCH,stoptrein,2017-03-28T15:40:00+0200,Breng
11650,DVD,Intercity,2017-03-28T15:40:00+0200,NS
30951,DVN,stoptrein,2017-03-28T15:40:00+0200,Arriva
9248,GV,Intercity,2017-03-28T15:40:00+0200,NS International
2161,HAD,Intercity,2017-03-28T15:40:00+0200,NS
31247,HGLG,stoptrein,2017-03-28T15:40:00+0200,Syntus
2255,HLM,Intercity,2017-03-28T15:40:00+0200,NS
5463,HLMS,Sprinter,2017-03-28T15:40:00+0200,NS
3046,HLO,Intercity,2017-03-28T15:40:00+0200,NS
9651,HMBV,Sprinter,2017-03-28T15:40:00+0200,NS
32554,HRLK,stoptrein,2017-03-28T15:40:00+0200,Arriva
4452,NMGO,Sprinter,2017-03-28T15:40:00+0200,NS
4457,NML,Sprinter,2017-03-28T15:40:00+0200,NS
5048,RSW,Sprinter,2017-03-28T15:40:00+0200,NS
32254,SM,stoptrein,2017-03-28T15:40:00+0200,Arriva
37547,SPM,stoptrein,2017-03-28T15:40:00+0200,Arriva
4857,SPTN,Sprinter,2017-03-28T15:40:00+0200,NS
32452,SRN,stoptrein,2017-03-28T15:40:00+0200,Arriva
4159,VDW,Sprinter,2017-03-28T15:40:00+0200,NS
17860,VEM,stoptrein,2017-03-28T15:40:00+0200,Arriva
7857,VTN,Sprinter,2017-03-28T15:40:00+0200,NS
4759,WM,Sprinter,2017-03-28T15:40:00+0200,NS
7846,YPB,Sprinter,2017-03-28T15:40:00+0200,NS
6857,ZTMO,Sprinter,2017-03-28T15:40:00+0200,NS
7654,AH,Sprinter,2017-03-28T15:41:00+0200,NS
3650,AH,Intercity,2017-03-28T15:41:00+0200,NS
5653,AMF,Sprinter,2017-03-28T15:41:00+0200,NS
7049,AMRI,Sprinter,2017-03-28T15:41:00+0200,NS
4848,AMRN,Sprinter,2017-03-28T15:41:00+0200,NS
15855,ASD,Sprinter,2017-03-28T15:41:00+0200,NS
4859,ASD,Sprinter,2017-03-28T15:41:00+0200,NS
5848,ASDL,Sprinter,2017-03-28T15:41:00+0200,NS
4657,ASS,Sprinter,2017-03-28T15:41:00+0200,NS
4059,ASS,Sprinter,2017-03-28T15:41:00+0200,NS
15850,ASSP,Sprinter,2017-03-28T15:41:00+0200,NS
6651,BD,Sprinter,2017-03-28T15:41:00+0200,NS
4050,BKL,Sprinter,2017-03-28T15:41:00+0200,NS
36757,DDR,stoptrein,2017-03-28T15:41:00+0200,Arriva
5159,DTZ,Sprinter,2017-03-28T15:41:00+0200,NS
7051,DVC,Sprinter,2017-03-28T15:41:00+0200,NS
4355,DVD,Sprinter,2017-03-28T15:41:00+0200,NS
3052,ED,Intercity,2017-03-28T15:41:00+0200,NS
8062,EMNZ,stoptrein,2017-03-28T15:41:00+0200,Arriva
37847,GERP,stoptrein,2017-03-28T15:41:00+0200,Arriva
37360,GN,Sneltrein,2017-03-28T15:41:00+0200,Arriva
7861,GVC,Sprinter,2017-03-28T15:41:00+0200,NS
1847,GW,Intercity,2017-03-28T15:41:00+0200,NS
37245,HLG,stoptrein,2017-03-28T15:41:00+0200,Arriva
9058,HR,Sprinter,2017-03-28T15:41:00+0200,NS
31442,HVL,stoptrein,2017-03-28T15:41:00+0200,Valleilijn
32047,KMR,stoptrein,2017-03-28T15:41:00+0200,Arriva
32250,MMLH,stoptrein,2017-03-28T15:41:00+0200,Arriva
8149,MP,Sprinter,2017-03-28T15:41:00+0200,NS
32255,NMH,stoptrein,2017-03-28T15:41:00+0200,Arriva
4052,NWK,Sprinter,2017-03-28T15:41:00+0200,NS
4644,VST,Sprinter,2017-03-28T15:41:00+0200,NS
8648,WADN,Sprinter,2017-03-28T15:41:00+0200,R-net
5955,ZVB,Sprinter,2017-03-28T15:41:00+0200,NS
14650,AMPO,Sprinter,2017-03-28T15:42:00+0200,NS
850,ASA,Intercity,2017-03-28T15:42:00+0200,NS
4648,ASD,Sprinter,2017-03-28T15:42:00+0200,NS
5748,ASDZ,Sprinter,2017-03-28T15:42:00+0200,NS
1855,ASDZ,Intercity,2017-03-28T15:42:00+0200,NS
8147,ASN,Sprinter,2017-03-28T15:42:00+0200,NS
37645,BF,stoptrein,2017-03-28T15:42:00+0200,Arriva
2263,BGN,Intercity,2017-03-28T15:42:00+0200,NS
3152,DB,Intercity,2017-03-28T15:42:00+0200,NS
4857,DRH,Sprinter,2017-03-28T15:42:00+0200,NS
7448,DVD,Sprinter,2017-03-28T15:42:00+0200,NS
31341,EDC,stoptrein,2017-03-28T15:42:00+0200,Valleilijn
11757,GD,Intercity,2017-03-28T15:42:00+0200,NS
4055,GD,Sprinter,2017-03-28T15:42:00+0200,NS
30949,GDR,stoptrein,2017-03-28T15:42:00+0200,Arriva
36855,GND,stoptrein,2017-03-28T15:42:00+0200,Arriva
9656,HMBH,Sprinter,2017-03-28T15:42:00+0200,NS
4559,HNK,Intercity,2017-03-28T15:42:00+0200,NS
3653,HT,Intercity,2017-03-28T15:42:00+0200,NS
4952,HVS,Sprinter,2017-03-28T15:42:00+0200,NS
15853,HVSM,Sprinter,2017-03-28T15:42:00+0200,NS
3053,KLP,Intercity,2017-03-28T15:42:00+0200,NS
4661,LAA,Sprinter,2017-03-28T15:42:00+0200,NS
37745,LP,stoptrein,2017-03-28T15:42:00+0200,Arriva
7452,MRN,Sprinter,2017-03-28T15:42:00+0200,NS
5446,OVN,Sprinter,2017-03-28T15:42:00+0200,NS
3359,PMO,Sprinter,2017-03-28T15:42:00+0200,NS
36848,SDTB,stoptrein,2017-03-28T15:42:00+0200,Arriva
649,SWK,Intercity,2017-03-28T15:42:00+0200,NS
37643,UHM,stoptrein,2017-03-28T15:42:00+0200,Arriva
37660,UST,stoptrein,2017-03-28T15:42:00+0200,Arriva
6361,VH,Sprinter,2017-03-28T15:42:00+0200,NS
32048,VK,stoptrein,2017-03-28T15:42:00+0200,Arriva
20152,ZB,stoptrein,2017-03-28T15:42:00+0200,Arriva
7653,AHZ,Sprinter,2017-03-28T15:43:00+0200,NS
2463,ALM,Intercity,2017-03-28T15:43:00+0200,NS
5652,AMFS,Sprinter,2017-03-28T15:43:00+0200,NS
7457,ASA,Sprinter,2017-03-28T15:43:00+0200,NS
4048,ASD,Sprinter,2017-03-28T15:43:00+0200,NS
9653,BET,Sprinter,2017-03-28T15:43:00+0200,NS
5550,BHV,Sprinter,2017-03-28T15:43:00+0200,NS
31340,BNC,stoptrein,2017-03-28T15:43:00+0200,Valleilijn
31443,BNC,stoptrein,2017-03-28T15:43:00+0200,Valleilijn
4846,BV,Sprinter,2017-03-28T15:43:00+0200,NS
5152,DDR,Sprinter,2017-03-28T15:43:00+0200,NS
5952,DDZD,Sprinter,2017-03-28T15:43:00+0200,NS
4355,DMNZ,Sprinter,2017-03-28T15:43:00+0200,NS
7651,DR,Sprinter,2017-03-28T15:43:00+0200,NS
32452,EC,stoptrein,2017-03-28T15:43:00+0200,Arriva
6952,GDM,Sprinter,2017-03-28T15:43:00+0200,NS
6458,GP,Sprinter,2017-03-28T15:43:00+0200,NS
2265,GS,Intercity,2017-03-28T15:43:00+0200,NS
2459,GV,Intercity,2017-03-28T15:43:00+0200,NS
5059,GV,Sprinter,2017-03-28T15:43:00+0200,NS
5048,GVMW,Sprinter,2017-03-28T15:43:00+0200,NS
9651,HMH,Sprinter,2017-03-28T15:43:00+0200,NS
14651,KPNZ,Sprinter,2017-03-28T15:43:00+0200,NS
8955,LDL,Sprinter,2017-03-28T15:43:00+0200,NS
37760,LP,stoptrein,2017-03-28T15:43:00+0200,Arriva
5654,NS,Sprinter,2017-03-28T15:43:00+0200,NS
20157,NSCH,stoptrein,2017-03-28T15:43:00+0200,Arriva
5251,OT,Sprinter,2017-03-28T15:43:00+0200,NS
3350,PMW,Sprinter,2017-03-28T15:43:00+0200,NS
7857,UTT,Sprinter,2017-03-28T15:43:00+0200,NS
37145,WK,stoptrein,2017-03-28T15:43:00+0200,Arriva
36755,AKL,stoptrein,2017-03-28T15:44:00+0200,Arriva
4353,ALM,Sprinter,2017-03-28T15:44:00+0200,NS
4352,ALMP,Sprinter,2017-03-28T15:44:00+0200,NS
3059,AMR,Intercity,2017-03-28T15:44:00+0200,NS
1754,APD,Intercity,2017-03-28T15:44:00+0200,NS
15850,ASDM,Sprinter,2017-03-28T15:44:00+0200,NS
4550,ASS,Intercity,2017-03-28T15:44:00+0200,NS
3057,ASS,Intercity,2017-03-28T15:44:00+0200,NS
7656,BMN,Sprinter,2017-03-28T15:44:00+0200,NS
37460,BP,stoptrein,2017-03-28T15:44:00+0200,Arriva
3659,DV,Intercity,2017-03-28T15:44:00+0200,NS
11154,EHV,Intercity,2017-03-28T15:44:00+0200,NS
1159,GVC,Intercity,2017-03-28T15:44:00+0200,NS
32555,HRL,stoptrein,2017-03-28T15:44:00+0200,Arriva
13558,HRT,Intercity,2017-03-28T15:44:00+0200,NS
32150,MTR,Sneltrein,2017-03-28T15:44:00+0200,Arriva
7956,NVD,Sprinter,2017-03-28T15:44:00+0200,NS
7748,RTN,Sprinter,2017-03-28T15:44:00+0200,NS
32047,SOG,stoptrein,2017-03-28T15:44:00+0200,Arriva
30956,TBG,stoptrein,2017-03-28T15:44:00+0200,Arriva
30949,TBG,stoptrein,2017-03-28T15:44:00+0200,Arriva
7455,UTZL,Sprinter,2017-03-28T15:44:00+0200,NS
5653,AMFS,Sprinter,2017-03-28T15:45:00+0200,NS
4855,AMR,Sprinter,2017-03-28T15:45:00+0200,NS
3044,ANA,Intercity,2017-03-28T15:45:00+0200,NS
3061,ANA,Intercity,2017-03-28T15:45:00+0200,NS
1657,ASDZ,Intercity,2017-03-28T15:45:00+0200,NS
8158,ASN,Sprinter,2017-03-28T15:45:00+0200,NS
4844,ASS,Sprinter,2017-03-28T15:45:00+0200,NS
3048,ASS,Intercity,2017-03-28T15:45:00+0200,NS
941,BD,Intercity,direct,2017-03-28T15:45:00+0200,NS
3651,BD,Intercity,2017-03-28T15:45:00+0200,NS
8850,BDG,Intercity,2017-03-28T15:45:00+0200,NS
8857,BDG,Intercity,2017-03-28T15:45:00+0200,NS
9654,BET,Sprinter,2017-03-28T15:45:00+0200,NS
2242,BGN,Intercity,2017-03-28T15:45:00+0200,NS
36750,BHDV,stoptrein,2017-03-28T15:45:00+0200,Arriva
5555,BHV,Sprinter,2017-03-28T15:45:00+0200,NS
32352,BMR,stoptrein,2017-03-28T15:45:00+0200,Arriva
32353,BMR,stoptrein,2017-03-28T15:45:00+0200,Arriva
37445,BP,stoptrein,2017-03-28T15:45:00+0200,Arriva
36752,BSD,stoptrein,2017-03-28T15:45:00+0200,Arriva
8648,BSK,Sprinter,2017-03-28T15:45:00+0200,R-net
8647,BSK,Sprinter,2017-03-28T15:45:00+0200,R-net
36757,DDRS,stoptrein,2017-03-28T15:45:00+0200,Arriva
13847,DL,Sneltrein,2017-03-28T15:45:00+0200,Arriva
30954,DVN,stoptrein,2017-03-28T15:45:00+0200,Arriva
32455,EC,stoptrein,2017-03-28T15:45:00+0200,Arriva
31147,EST,stoptrein,2017-03-28T15:45:00+0200,Arriva
31160,EST,stoptrein,2017-03-28T15:45:00+0200,Arriva
6451,GP,Sprinter,2017-03-28T15:45:00+0200,NS
4661,GVM,Sprinter,2017-03-28T15:45:00+0200,NS
7958,HGL,Sprinter,2017-03-28T15:45:00+0200,NS
5463,HLM,Sprinter,2017-03-28T15:45:00+0200,NS
37145,HNP,stoptrein,2017-03-28T15:45:00+0200,Arriva
13549,HRT,Intercity,2017-03-28T15:45:00+0200,NS
15852,HVS,Sprinter,2017-03-28T15:45:00+0200,NS
17860,KBK,stoptrein,2017-03-28T15:45:00+0200,Arriva
17847,KBK,stoptrein,2017-03-28T15:45:00+0200,Arriva
7453,MRN,Sprinter,2017-03-28T15:45:00+0200,NS
8045,NA,stoptrein,2017-03-28T15:45:00+0200,Arriva
4455,O,Sprinter,2017-03-28T15:45:00+0200,NS
3350,PMR,Sprinter,2017-03-28T15:45:00+0200,NS
3359,PMR,Sprinter,2017-03-28T15:45:00+0200,NS
32251,RV,stoptrein,2017-03-28T15:45:00+0200,Arriva
32048,SOG,stoptrein,2017-03-28T15:45:00+0200,Arriva
7450,UTZL,Sprinter,2017-03-28T15:45:00+0200,NS
30847,VD,stoptrein,2017-03-28T15:45:00+0200,Arriva
30860,VD,stoptrein,2017-03-28T15:45:00+0200,Arriva
6344,VH,Sprinter,2017-03-28T15:45:00+0200,NS
32253,VRY,stoptrein,2017-03-28T15:45:00+0200,Arriva
3154,AH,Intercity,2017-03-28T15:46:00+0200,NS
7654,AHZ,Sprinter,2017-03-28T15:46:00+0200,NS
4353,ALMP,Sprinter,2017-03-28T15:46:00+0200,NS
7448,ASA,Sprinter,2017-03-28T15:46:00+0200,NS
3150,ASB,Intercity,2017-03-28T15:46:00+0200,NS
15855,ASDM,Sprinter,2017-03-28T15:46:00+0200,NS
4859,ASS,Sprinter,2017-03-28T15:46:00+0200,NS
6651,BDPB,Sprinter,2017-03-28T15:46:00+0200,NS
6654,BDPB,Sprinter,2017-03-28T15:46:00+0200,NS
36855,BHDV,stoptrein,2017-03-28T15:46:00+0200,Arriva
3155,DB,Intercity,2017-03-28T15:46:00+0200,NS
36848,DDRS,stoptrein,2017-03-28T15:46:00+0200,Arriva
4350,DMNZ,Sprinter,2017-03-28T15:46:00+0200,NS
1758,ES,Intercity,2017-03-28T15:46:00+0200,NS
30956,GDR,stoptrein,2017-03-28T15:46:00+0200,Arriva
37860,GERP,stoptrein,2017-03-28T15:46:00+0200,Arriva
2240,GS,Intercity,2017-03-28T15:46:00+0200,NS
4644,GVM,Sprinter,2017-03-28T15:46:00+0200,NS
5059,GVMW,Sprinter,2017-03-28T15:46:00+0200,NS
31060,HDB,stoptrein,2017-03-28T15:46:00+0200,Arriva
31258,HGL,stoptrein,2017-03-28T15:46:00+0200,Syntus
9651,HM,Sprinter,2017-03-28T15:46:00+0200,NS
9656,HM,Sprinter,2017-03-28T15:46:00+0200,NS
32145,HRL,Sneltrein,2017-03-28T15:46:00+0200,Arriva
32554,HRL,stoptrein,2017-03-28T15:46:00+0200,Arriva
32555,HRLK,stoptrein,2017-03-28T15:46:00+0200,Arriva
15853,HVS,Sprinter,2017-03-28T15:46:00+0200,NS
8062,NA,stoptrein,2017-03-28T15:46:00+0200,Arriva
5651,NS,Sprinter,2017-03-28T15:46:00+0200,NS
7949,NVD,Sprinter,2017-03-28T15:46:00+0200,NS
5256,OT,Sprinter,2017-03-28T15:46:00+0200,NS
4454,OW,Sprinter,2017-03-28T15:46:00+0200,NS
7759,RTN,Sprinter,2017-03-28T15:46:00+0200,NS
32254,RV,stoptrein,2017-03-28T15:46:00+0200,Arriva
1856,SWK,Intercity,2017-03-28T15:46:00+0200,NS
32252,VRY,stoptrein,2017-03-28T15:46:00+0200,Arriva
30753,AH,stoptrein,2017-03-28T15:47:00+0200,Breng
14655,AMPO,Sprinter,2017-03-28T15:47:00+0200,NS
1653,APD,Intercity,2017-03-28T15:47:00+0200,NS
3157,ASB,Intercity,2017-03-28T15:47:00+0200,NS
11650,ASDZ,Intercity,2017-03-28T15:47:00+0200,NS
4557,ASS,Intercity,2017-03-28T15:47:00+0200,NS
7049,BN,Sprinter,2017-03-28T15:47:00+0200,NS
31340,BNN,stoptrein,2017-03-28T15:47:00+0200,Valleilijn
4857,BV,Sprinter,2017-03-28T15:47:00+0200,NS
4846,DRH,Sprinter,2017-03-28T15:47:00+0200,NS
30751,DTCH,stoptrein,2017-03-28T15:47:00+0200,Breng
5150,DTZ,Sprinter,2017-03-28T15:47:00+0200,NS
3648,DV,Intercity,2017-03-28T15:47:00+0200,NS
7457,DVD,Sprinter,2017-03-28T15:47:00+0200,NS
3556,EHV,Intercity,2017-03-28T15:47:00+0200,NS
7947,HGL,Sprinter,2017-03-28T15:47:00+0200,NS
5446,HLM,Sprinter,2017-03-28T15:47:00+0200,NS
15852,HVSM,Sprinter,2017-03-28T15:47:00+0200,NS
3052,KLP,Intercity,2017-03-28T15:47:00+0200,NS
32048,KMR,stoptrein,2017-03-28T15:47:00+0200,Arriva
14654,KPNZ,Sprinter,2017-03-28T15:47:00+0200,NS
5954,ODB,Sprinter,2017-03-28T15:47:00+0200,NS
5955,ODB,Sprinter,2017-03-28T15:47:00+0200,NS
3350,PMO,Sprinter,2017-03-28T15:47:00+0200,NS
3359,PMW,Sprinter,2017-03-28T15:47:00+0200,NS
37760,STM,stoptrein,2017-03-28T15:47:00+0200,Arriva
31149,TL,stoptrein,2017-03-28T15:47:00+0200,Arriva
6054,TL,Sprinter,2017-03-28T15:47:00+0200,NS
37660,WFM,stoptrein,2017-03-28T15:47:00+0200,Arriva
4050,AC,Sprinter,2017-03-28T15:48:00+0200,NS
4352,ALM,Sprinter,2017-03-28T15:48:00+0200,NS
31049,AML,stoptrein,2017-03-28T15:48:00+0200,Arriva
4855,AMRN,Sprinter,2017-03-28T15:48:00+0200,NS
857,ASA,Intercity,2017-03-28T15:48:00+0200,NS
5857,ASDL,Sprinter,2017-03-28T15:48:00+0200,NS
4648,ASS,Sprinter,2017-03-28T15:48:00+0200,NS
4048,ASS,Sprinter,2017-03-28T15:48:00+0200,NS
5653,AVAT,Sprinter,2017-03-28T15:48:00+0200,NS
7651,BMN,Sprinter,2017-03-28T15:48:00+0200,NS
2265,BZL,Intercity,2017-03-28T15:48:00+0200,NS
7452,DB,Sprinter,2017-03-28T15:48:00+0200,NS
37247,DEI,stoptrein,2017-03-28T15:48:00+0200,Arriva
146,DV,Intercity,2017-03-28T15:48:00+0200,NS International
7056,DVC,Sprinter,2017-03-28T15:48:00+0200,NS
3053,ED,Intercity,2017-03-28T15:48:00+0200,NS
8045,EMNZ,stoptrein,2017-03-28T15:48:00+0200,Arriva
7859,GDG,Sprinter,2017-03-28T15:48:00+0200,NS
6955,GDM,Sprinter,2017-03-28T15:48:00+0200,NS
37747,GN,stoptrein,2017-03-28T15:48:00+0200,Arriva
758,GN,Intercity,2017-03-28T15:48:00+0200,NS
36750,GND,stoptrein,2017-03-28T15:48:00+0200,Arriva
2448,GV,Intercity,2017-03-28T15:48:00+0200,NS
2148,GVC,Intercity,2017-03-28T15:48:00+0200,NS
2146,HAD,Intercity,2017-03-28T15:48:00+0200,NS
31247,HGL,stoptrein,2017-03-28T15:48:00+0200,Syntus
37260,HLGH,stoptrein,2017-03-28T15:48:00+0200,Arriva
4548,HNK,Intercity,2017-03-28T15:48:00+0200,NS
37160,MG,stoptrein,2017-03-28T15:48:00+0200,Arriva
4259,MSW,Sprinter,2017-03-28T15:48:00+0200,NS
4055,NWK,Sprinter,2017-03-28T15:48:00+0200,NS
5463,OVN,Sprinter,2017-03-28T15:48:00+0200,NS
4455,OW,Sprinter,2017-03-28T15:48:00+0200,NS
32455,SRN,stoptrein,2017-03-28T15:48:00+0200,Arriva
300650,UT,Intercity,2017-03-28T15:48:00+0200,NS
37862,VDM,stoptrein,2017-03-28T15:48:00+0200,Arriva
7352,VNDC,Sprinter,2017-03-28T15:48:00+0200,NS
8647,WADN,Sprinter,2017-03-28T15:48:00+0200,R-net
7655,WC,Sprinter,2017-03-28T15:48:00+0200,NS
37645,WFM,stoptrein,2017-03-28T15:48:00+0200,Arriva
7861,YPB,Sprinter,2017-03-28T15:48:00+0200,NS
30753,AHP,stoptrein,2017-03-28T15:49:00+0200,Breng
2444,ALM,Intercity,2017-03-28T15:49:00+0200,NS
37745,APG,stoptrein,2017-03-28T15:49:00+0200,Arriva
2163,ASD,Intercity,2017-03-28T15:49:00+0200,NS
1050,ASD,Intercity,direct,2017-03-28T15:49:00+0200,NS
4059,ASD,Sprinter,2017-03-28T15:49:00+0200,NS
7448,ASDM,Sprinter,2017-03-28T15:49:00+0200,NS
750,ASDZ,Intercity,2017-03-28T15:49:00+0200,NS
5757,ASDZ,Sprinter,2017-03-28T15:49:00+0200,NS
2255,ASS,Intercity,2017-03-28T15:49:00+0200,NS
15855,ASSP,Sprinter,2017-03-28T15:49:00+0200,NS
4057,BKL,Sprinter,2017-03-28T15:49:00+0200,NS
7355,BNK,Sprinter,2017-03-28T15:49:00+0200,NS
848,CAS,Intercity,2017-03-28T15:49:00+0200,NS
6952,CL,Sprinter,2017-03-28T15:49:00+0200,NS
5555,DLD,Sprinter,2017-03-28T15:49:00+0200,NS
2459,DT,Intercity,2017-03-28T15:49:00+0200,NS
9653,EHS,Sprinter,2017-03-28T15:49:00+0200,NS
13551,EHV,Intercity,2017-03-28T15:49:00+0200,NS
20270,GBR,stoptrein,2017-03-28T15:49:00+0200,DB
1750,GD,Intercity,2017-03-28T15:49:00+0200,NS
4052,GD,Sprinter,2017-03-28T15:49:00+0200,NS
7848,GDG,Sprinter,2017-03-28T15:49:00+0200,NS
5048,GV,Sprinter,2017-03-28T15:49:00+0200,NS
31258,HGLG,stoptrein,2017-03-28T15:49:00+0200,Syntus
3059,HLO,Intercity,2017-03-28T15:49:00+0200,NS
9656,HMH,Sprinter,2017-03-28T15:49:00+0200,NS
9655,HT,Sprinter,2017-03-28T15:49:00+0200,NS
4953,HVS,Sprinter,2017-03-28T15:49:00+0200,NS
6451,HZE,Sprinter,2017-03-28T15:49:00+0200,NS
8948,LDL,Sprinter,2017-03-28T15:49:00+0200,NS
32555,LG,stoptrein,2017-03-28T15:49:00+0200,Arriva
7450,MAS,Sprinter,2017-03-28T15:49:00+0200,NS
37047,MG,stoptrein,2017-03-28T15:49:00+0200,Arriva
17847,VEM,stoptrein,2017-03-28T15:49:00+0200,Arriva
9058,WV,Sprinter,2017-03-28T15:49:00+0200,NS
3153,AH,Intercity,2017-03-28T15:50:00+0200,NS
4353,ALMB,Sprinter,2017-03-28T15:50:00+0200,NS
5652,AMF,Sprinter,2017-03-28T15:50:00+0200,NS
3046,AMR,Intercity,2017-03-28T15:50:00+0200,NS
4848,AMR,Sprinter,2017-03-28T15:50:00+0200,NS
7053,APD,Sprinter,2017-03-28T15:50:00+0200,NS
7457,ASB,Sprinter,2017-03-28T15:50:00+0200,NS
3656,BD,Intercity,2017-03-28T15:50:00+0200,NS
7958,BN,Sprinter,2017-03-28T15:50:00+0200,NS
7656,DR,Sprinter,2017-03-28T15:50:00+0200,NS
5150,DT,Sprinter,2017-03-28T15:50:00+0200,NS
1657,DVD,Intercity,2017-03-28T15:50:00+0200,NS
4350,DVD,Sprinter,2017-03-28T15:50:00+0200,NS
37460,DWE,stoptrein,2017-03-28T15:50:00+0200,Arriva
7654,EST,Sprinter,2017-03-28T15:50:00+0200,NS
37462,GN,stoptrein,2017-03-28T15:50:00+0200,Arriva
1159,GV,Intercity,2017-03-28T15:50:00+0200,NS
32554,HB,stoptrein,2017-03-28T15:50:00+0200,Arriva
36750,HBZM,stoptrein,2017-03-28T15:50:00+0200,Arriva
3847,HDB,Sneltrein,2017-03-28T15:50:00+0200,Arriva
4857,HK,Sprinter,2017-03-28T15:50:00+0200,NS
2250,HLM,Intercity,2017-03-28T15:50:00+0200,NS
5446,HLMS,Sprinter,2017-03-28T15:50:00+0200,NS
9651,HMBH,Sprinter,2017-03-28T15:50:00+0200,NS
37145,KMW,stoptrein,2017-03-28T15:50:00+0200,Arriva
4644,LAA,Sprinter,2017-03-28T15:50:00+0200,NS
32251,SM,stoptrein,2017-03-28T15:50:00+0200,Arriva
4846,SPTN,Sprinter,2017-03-28T15:50:00+0200,NS
6054,TPSW,Sprinter,2017-03-28T15:50:00+0200,NS
30958,WW,stoptrein,2017-03-28T15:50:00+0200,Arriva
30862,WW,stoptrein,2017-03-28T15:50:00+0200,Arriva
37447,ADH,Stoptrein,2017-03-28T15:51:00+0200,
7554,AH,Sprinter,2017-03-28T15:51:00+0200,NS
4352,ALMM,Sprinter,2017-03-28T15:51:00+0200,NS
14655,ALMM,Sprinter,2017-03-28T15:51:00+0200,NS
17860,APDM,stoptrein,2017-03-28T15:51:00+0200,Arriva
4050,ASHD,Sprinter,2017-03-28T15:51:00+0200,NS
32454,BDE,stoptrein,2017-03-28T15:51:00+0200,Arriva
5152,BRD,Sprinter,2017-03-28T15:51:00+0200,NS
15852,BSMZ,Sprinter,2017-03-28T15:51:00+0200,NS
5251,BTL,Sprinter,2017-03-28T15:51:00+0200,NS
4055,CPS,Sprinter,2017-03-28T15:51:00+0200,NS
30756,DID,stoptrein,2017-03-28T15:51:00+0200,Breng
8062,DLN,stoptrein,2017-03-28T15:51:00+0200,Arriva
15855,DMN,Sprinter,2017-03-28T15:51:00+0200,NS
7553,ED,Sprinter,2017-03-28T15:51:00+0200,NS
32555,EGH,stoptrein,2017-03-28T15:51:00+0200,Arriva
3551,EHV,Intercity,2017-03-28T15:51:00+0200,NS
5258,EHV,Sprinter,2017-03-28T15:51:00+0200,NS
6346,GVC,Sprinter,2017-03-28T15:51:00+0200,NS
5654,HD,Sprinter,2017-03-28T15:51:00+0200,NS
31247,HGLO,stoptrein,2017-03-28T15:51:00+0200,Syntus
37260,HLG,stoptrein,2017-03-28T15:51:00+0200,Arriva
7051,HON,Sprinter,2017-03-28T15:51:00+0200,NS
5752,HOR,Sprinter,2017-03-28T15:51:00+0200,NS
4859,HWZB,Sprinter,2017-03-28T15:51:00+0200,NS
2448,LAA,Intercity,2017-03-28T15:51:00+0200,NS
31249,LC,stoptrein,2017-03-28T15:51:00+0200,Syntus
36755,LDM,stoptrein,2017-03-28T15:51:00+0200,Arriva
5757,RAI,Sprinter,2017-03-28T15:51:00+0200,NS
37547,SDA,stoptrein,2017-03-28T15:51:00+0200,Arriva
32047,SGL,stoptrein,2017-03-28T15:51:00+0200,Arriva
3061,SGN,Intercity,2017-03-28T15:51:00+0200,NS
32048,VDL,stoptrein,2017-03-28T15:51:00+0200,Arriva
7352,VNDW,Sprinter,2017-03-28T15:51:00+0200,NS
30949,VSV,stoptrein,2017-03-28T15:51:00+0200,Arriva
8647,WAD,Sprinter,2017-03-28T15:51:00+0200,R-net
30954,AHP,stoptrein,2017-03-28T15:52:00+0200,Arriva
4955,ALM,Sprinter,2017-03-28T15:52:00+0200,NS
1755,AMF,Intercity,2017-03-28T15:52:00+0200,NS
9252,ASD,Intercity,2017-03-28T15:52:00+0200,NS International
4648,ASDL,Sprinter,2017-03-28T15:52:00+0200,NS
3352,ASDL,Sprinter,2017-03-28T15:52:00+0200,NS
5857,ASS,Sprinter,2017-03-28T15:52:00+0200,NS
15854,AVAT,Sprinter,2017-03-28T15:52:00+0200,NS
37660,BF,stoptrein,2017-03-28T15:52:00+0200,Arriva
7452,BNK,Sprinter,2017-03-28T15:52:00+0200,NS
31343,BNN,stoptrein,2017-03-28T15:52:00+0200,Valleilijn
31444,BNZ,stoptrein,2017-03-28T15:52:00+0200,Valleilijn
15853,BRN,Sprinter,2017-03-28T15:52:00+0200,NS
5552,BRN,Sprinter,2017-03-28T15:52:00+0200,NS
32352,CK,stoptrein,2017-03-28T15:52:00+0200,Arriva
32255,CK,stoptrein,2017-03-28T15:52:00+0200,Arriva
5957,DDR,Sprinter,2017-03-28T15:52:00+0200,NS
30951,DID,stoptrein,2017-03-28T15:52:00+0200,Arriva
30956,DTC,stoptrein,2017-03-28T15:52:00+0200,Arriva
37745,DZW,stoptrein,2017-03-28T15:52:00+0200,Arriva
4561,EKZ,Intercity,2017-03-28T15:52:00+0200,NS
20270,ESE,stoptrein,2017-03-28T15:52:00+0200,DB
7947,ESK,Sprinter,2017-03-28T15:52:00+0200,NS
3651,ETN,Intercity,2017-03-28T15:52:00+0200,NS
6857,GD,Sprinter,2017-03-28T15:52:00+0200,NS
2850,GD,Intercity,2017-03-28T15:52:00+0200,NS
4052,GDG,Sprinter,2017-03-28T15:52:00+0200,NS
37647,GN,stoptrein,2017-03-28T15:52:00+0200,Arriva
20161,GN,stoptrein,2017-03-28T15:52:00+0200,Arriva
37747,GNN,stoptrein,2017-03-28T15:52:00+0200,Arriva
5651,HDE,Sprinter,2017-03-28T15:52:00+0200,NS
3044,HDRZ,Intercity,2017-03-28T15:52:00+0200,NS
6344,HIL,Sprinter,2017-03-28T15:52:00+0200,NS
9656,HMBV,Sprinter,2017-03-28T15:52:00+0200,NS
1555,HVS,Intercity,2017-03-28T15:52:00+0200,NS
4953,HVSP,Sprinter,2017-03-28T15:52:00+0200,NS
36752,LDM,stoptrein,2017-03-28T15:52:00+0200,Arriva
7454,RHN,Sprinter,2017-03-28T15:52:00+0200,NS
30847,RL,stoptrein,2017-03-28T15:52:00+0200,Arriva
6653,TBU,Sprinter,2017-03-28T15:52:00+0200,NS
32254,TG,stoptrein,2017-03-28T15:52:00+0200,Arriva
37645,UST,stoptrein,2017-03-28T15:52:00+0200,Arriva
2267,VS,Intercity,2017-03-28T15:52:00+0200,NS
30862,WWW,stoptrein,2017-03-28T15:52:00+0200,Arriva
3657,AH,Intercity,2017-03-28T15:53:00+0200,NS
2444,ALMB,Intercity,2017-03-28T15:53:00+0200,NS
7058,AML,Sprinter,2017-03-28T15:53:00+0200,NS
3046,AMRN,Intercity,2017-03-28T15:53:00+0200,NS
7053,APDO,Sprinter,2017-03-28T15:53:00+0200,NS
8850,APN,Intercity,2017-03-28T15:53:00+0200,NS
14657,ASD,Sprinter,2017-03-28T15:53:00+0200,NS
3150,ASDZ,Intercity,2017-03-28T15:53:00+0200,NS
7457,ASHD,Sprinter,2017-03-28T15:53:00+0200,NS
1152,BD,Intercity,2017-03-28T15:53:00+0200,NS
6654,BD,Sprinter,2017-03-28T15:53:00+0200,NS
37760,BDM,stoptrein,2017-03-28T15:53:00+0200,Arriva
5755,BSMZ,Sprinter,2017-03-28T15:53:00+0200,NS
6055,CL,Sprinter,2017-03-28T15:53:00+0200,NS
7759,CPS,Sprinter,2017-03-28T15:53:00+0200,NS
7355,DB,Sprinter,2017-03-28T15:53:00+0200,NS
31258,DDN,stoptrein,2017-03-28T15:53:00+0200,Syntus
3650,DR,Intercity,2017-03-28T15:53:00+0200,NS
37247,DRP,stoptrein,2017-03-28T15:53:00+0200,Arriva
4661,DVNK,Sprinter,2017-03-28T15:53:00+0200,NS
6361,DVNK,Sprinter,2017-03-28T15:53:00+0200,NS
31342,ED,stoptrein,2017-03-28T15:53:00+0200,Valleilijn
7750,GDG,Sprinter,2017-03-28T15:53:00+0200,NS
37445,GK,stoptrein,2017-03-28T15:53:00+0200,Arriva
8160,GN,Sprinter,2017-03-28T15:53:00+0200,NS
5161,GVC,Sprinter,2017-03-28T15:53:00+0200,NS
1759,GVC,Intercity,2017-03-28T15:53:00+0200,NS
7049,HGL,Sprinter,2017-03-28T15:53:00+0200,NS
8149,HGV,Sprinter,2017-03-28T15:53:00+0200,NS
4161,HLDS,Sprinter,2017-03-28T15:53:00+0200,NS
854,HT,Intercity,2017-03-28T15:53:00+0200,NS
3654,HT,Intercity,2017-03-28T15:53:00+0200,NS
1652,HVS,Intercity,2017-03-28T15:53:00+0200,NS
4855,HWD,Sprinter,2017-03-28T15:53:00+0200,NS
2265,KRG,Intercity,2017-03-28T15:53:00+0200,NS
32554,NH,stoptrein,2017-03-28T15:53:00+0200,Arriva
5653,NKK,Sprinter,2017-03-28T15:53:00+0200,NS
13847,OMN,Sneltrein,2017-03-28T15:53:00+0200,Arriva
3860,OMN,Sneltrein,2017-03-28T15:53:00+0200,Arriva
7956,RAT,Sprinter,2017-03-28T15:53:00+0200,NS
4846,SPTZ,Sprinter,2017-03-28T15:53:00+0200,NS
7350,UTZL,Sprinter,2017-03-28T15:53:00+0200,NS
9655,VG,Sprinter,2017-03-28T15:53:00+0200,NS
31049,VZ,stoptrein,2017-03-28T15:53:00+0200,Arriva
3359,ZDK,Sprinter,2017-03-28T15:53:00+0200,NS
5954,ZVB,Sprinter,2017-03-28T15:53:00+0200,NS
11655,AMF,Intercity,2017-03-28T15:54:00+0200,NS
4352,AMPO,Sprinter,2017-03-28T15:54:00+0200,NS
850,ASD,Intercity,2017-03-28T15:54:00+0200,NS
4059,ASDM,Sprinter,2017-03-28T15:54:00+0200,NS
2163,ASS,Intercity,2017-03-28T15:54:00+0200,NS
7450,BKL,Sprinter,2017-03-28T15:54:00+0200,NS
8158,BL,Sprinter,2017-03-28T15:54:00+0200,NS
13549,BR,Intercity,2017-03-28T15:54:00+0200,NS
5057,BRD,Sprinter,2017-03-28T15:54:00+0200,NS
32555,CVM,stoptrein,2017-03-28T15:54:00+0200,Arriva
2261,DDR,Intercity,2017-03-28T15:54:00+0200,NS
5059,DT,Sprinter,2017-03-28T15:54:00+0200,NS
2259,DT,Intercity,2017-03-28T15:54:00+0200,NS
5258,EHS,Sprinter,2017-03-28T15:54:00+0200,NS
4452,EST,Sprinter,2017-03-28T15:54:00+0200,NS
37460,FWD,stoptrein,2017-03-28T15:54:00+0200,Arriva
7848,GD,Sprinter,2017-03-28T15:54:00+0200,NS
657,GD,Intercity,2017-03-28T15:54:00+0200,NS
2250,HAD,Intercity,2017-03-28T15:54:00+0200,NS
1758,HGL,Intercity,2017-03-28T15:54:00+0200,NS
32048,HRLW,stoptrein,2017-03-28T15:54:00+0200,Arriva
8147,HRN,Sprinter,2017-03-28T15:54:00+0200,NS
5446,HWZB,Sprinter,2017-03-28T15:54:00+0200,NS
6346,LAA,Sprinter,2017-03-28T15:54:00+0200,NS
2248,LAA,Intercity,2017-03-28T15:54:00+0200,NS
37447,LWC,stoptrein,2017-03-28T15:54:00+0200,Arriva
3648,OST,Intercity,2017-03-28T15:54:00+0200,NS
4350,RAI,Sprinter,2017-03-28T15:54:00+0200,NS
2242,RB,Intercity,2017-03-28T15:54:00+0200,NS
5555,STZ,Sprinter,2017-03-28T15:54:00+0200,NS
31160,ZA,stoptrein,2017-03-28T15:54:00+0200,Arriva
6955,ZBM,Sprinter,2017-03-28T15:54:00+0200,NS
7653,AH,Sprinter,2017-03-28T15:55:00+0200,NS
14655,ALM,Sprinter,2017-03-28T15:55:00+0200,NS
4955,ALMM,Sprinter,2017-03-28T15:55:00+0200,NS
14652,ALMO,Sprinter,2017-03-28T15:55:00+0200,NS
15854,AMFS,Sprinter,2017-03-28T15:55:00+0200,NS
1751,AML,Intercity,2017-03-28T15:55:00+0200,NS
2240,ARN,Intercity,2017-03-28T15:55:00+0200,NS
3057,ASD,Intercity,2017-03-28T15:55:00+0200,NS
3059,CAS,Intercity,2017-03-28T15:55:00+0200,NS
5957,DDZD,Sprinter,2017-03-28T15:55:00+0200,NS
13558,DN,Intercity,2017-03-28T15:55:00+0200,NS
14654,DRON,Sprinter,2017-03-28T15:55:00+0200,NS
30956,DTCH,stoptrein,2017-03-28T15:55:00+0200,Arriva
7056,DV,Sprinter,2017-03-28T15:55:00+0200,NS
5654,EML,Sprinter,2017-03-28T15:55:00+0200,NS
20161,GERP,stoptrein,2017-03-28T15:55:00+0200,Arriva
32557,GLN,stoptrein,2017-03-28T15:55:00+0200,Arriva
4548,HKS,Intercity,2017-03-28T15:55:00+0200,NS
2146,HLM,Intercity,2017-03-28T15:55:00+0200,NS
6363,HLM,Sprinter,2017-03-28T15:55:00+0200,NS
4859,HLMS,Sprinter,2017-03-28T15:55:00+0200,NS
4848,HLO,Sprinter,2017-03-28T15:55:00+0200,NS
3361,HNK,Sprinter,2017-03-28T15:55:00+0200,NS
4148,MSW,Sprinter,2017-03-28T15:55:00+0200,NS
7554,OTB,Sprinter,2017-03-28T15:55:00+0200,NS
7656,RH,Sprinter,2017-03-28T15:55:00+0200,NS
4455,RS,Sprinter,2017-03-28T15:55:00+0200,NS
37060,SK,stoptrein,2017-03-28T15:55:00+0200,Arriva
7453,VNDW,Sprinter,2017-03-28T15:55:00+0200,NS
2267,VSS,Intercity,2017-03-28T15:55:00+0200,NS
6848,YPB,Sprinter,2017-03-28T15:55:00+0200,NS
7457,AC,Sprinter,2017-03-28T15:56:00+0200,NS
4459,AH,Sprinter,2017-03-28T15:56:00+0200,NS
1554,AMF,Intercity,2017-03-28T15:56:00+0200,NS
31445,AMF,stoptrein,2017-03-28T15:56:00+0200,Valleilijn
7958,AMRI,Sprinter,2017-03-28T15:56:00+0200,NS
4050,ASB,Sprinter,2017-03-28T15:56:00+0200,NS
5465,ASD,Sprinter,2017-03-28T15:56:00+0200,NS
3557,ASDZ,Intercity,2017-03-28T15:56:00+0200,NS
2446,ASDZ,Intercity,2017-03-28T15:56:00+0200,NS
749,ASN,Intercity,2017-03-28T15:56:00+0200,NS
3352,ASS,Sprinter,2017-03-28T15:56:00+0200,NS
4759,ASS,Sprinter,2017-03-28T15:56:00+0200,NS
4846,BLL,Sprinter,2017-03-28T15:56:00+0200,NS
31343,BNC,stoptrein,2017-03-28T15:56:00+0200,Valleilijn
36857,DDR,stoptrein,2017-03-28T15:56:00+0200,Arriva
14650,DMN,Sprinter,2017-03-28T15:56:00+0200,NS
5757,DVD,Sprinter,2017-03-28T15:56:00+0200,NS
3154,ED,Intercity,2017-03-28T15:56:00+0200,NS
8160,GERP,Sprinter,2017-03-28T15:56:00+0200,NS
37647,GNN,stoptrein,2017-03-28T15:56:00+0200,Arriva
36850,GR,stoptrein,2017-03-28T15:56:00+0200,Arriva
6859,GVC,Sprinter,2017-03-28T15:56:00+0200,NS
36757,HBZM,stoptrein,2017-03-28T15:56:00+0200,Arriva
4161,HLD,Sprinter,2017-03-28T15:56:00+0200,NS
20323,HRL,stoptrein,2017-03-28T15:56:00+0200,DB
6954,HT,Sprinter,2017-03-28T15:56:00+0200,NS
3553,HT,Intercity,2017-03-28T15:56:00+0200,NS
5755,HVSM,Sprinter,2017-03-28T15:56:00+0200,NS
5752,HVSP,Sprinter,2017-03-28T15:56:00+0200,NS
31149,KTR,stoptrein,2017-03-28T15:56:00+0200,Arriva
8859,LDL,Intercity,2017-03-28T15:56:00+0200,NS
1856,MP,Intercity,2017-03-28T15:56:00+0200,NS
6451,MZ,Sprinter,2017-03-28T15:56:00+0200,NS
7759,NWK,Sprinter,2017-03-28T15:56:00+0200,NS
7051,RSN,Sprinter,2017-03-28T15:56:00+0200,NS
4454,RVS,Sprinter,2017-03-28T15:56:00+0200,NS
5552,SD,Sprinter,2017-03-28T15:56:00+0200,NS
32554,SN,stoptrein,2017-03-28T15:56:00+0200,Arriva
6653,TBR,Sprinter,2017-03-28T15:56:00+0200,NS
37660,WSM,stoptrein,2017-03-28T15:56:00+0200,Arriva
7653,AHP,Sprinter,2017-03-28T15:57:00+0200,NS
14655,ALMP,Sprinter,2017-03-28T15:57:00+0200,NS
3050,ASA,Intercity,2017-03-28T15:57:00+0200,NS
4059,ASA,Sprinter,2017-03-28T15:57:00+0200,NS
4748,ASD,Sprinter,2017-03-28T15:57:00+0200,NS
5655,BHV,Sprinter,2017-03-28T15:57:00+0200,NS
32454,BK,stoptrein,2017-03-28T15:57:00+0200,Arriva
4561,BKF,Intercity,2017-03-28T15:57:00+0200,NS
7357,BKL,Sprinter,2017-03-28T15:57:00+0200,NS
36755,BSD,stoptrein,2017-03-28T15:57:00+0200,Arriva
31049,DA,stoptrein,2017-03-28T15:57:00+0200,Arriva
5052,DDR,Sprinter,2017-03-28T15:57:00+0200,NS
6656,DDR,Sprinter,2017-03-28T15:57:00+0200,NS
30753,DVN,stoptrein,2017-03-28T15:57:00+0200,Breng
31342,EDC,stoptrein,2017-03-28T15:57:00+0200,Valleilijn
7750,GD,Sprinter,2017-03-28T15:57:00+0200,NS
2059,GD,Intercity,2017-03-28T15:57:00+0200,NS
6346,GVM,Sprinter,2017-03-28T15:57:00+0200,NS
31160,HMN,stoptrein,2017-03-28T15:57:00+0200,Arriva
649,HR,Intercity,2017-03-28T15:57:00+0200,NS
300649,HR,Intercity,2017-03-28T15:57:00+0200,NS
7350,MAS,Sprinter,2017-03-28T15:57:00+0200,NS
32047,MTN,stoptrein,2017-03-28T15:57:00+0200,Arriva
9058,SWK,Sprinter,2017-03-28T15:57:00+0200,NS
37645,UHZ,stoptrein,2017-03-28T15:57:00+0200,Arriva
6152,UT,Sprinter,2017-03-28T15:57:00+0200,NS
28326,UTM,Sprinter,2017-03-28T15:57:00+0200,NS
4452,AHZ,Sprinter,2017-03-28T15:58:00+0200,NS
36752,AKL,stoptrein,2017-03-28T15:58:00+0200,Arriva
14652,ALMB,Sprinter,2017-03-28T15:58:00+0200,NS
300552,AMF,Intercity,2017-03-28T15:58:00+0200,NS
552,AMF,Intercity,2017-03-28T15:58:00+0200,NS
3552,ASB,Intercity,2017-03-28T15:58:00+0200,NS
14657,ASDM,Sprinter,2017-03-28T15:58:00+0200,NS
14650,ASSP,Sprinter,2017-03-28T15:58:00+0200,NS
5251,BET,Sprinter,2017-03-28T15:58:00+0200,NS
31444,BNC,stoptrein,2017-03-28T15:58:00+0200,Valleilijn
31343,BNZ,stoptrein,2017-03-28T15:58:00+0200,Valleilijn
32253,BR,stoptrein,2017-03-28T15:58:00+0200,Arriva
5652,DLD,Sprinter,2017-03-28T15:58:00+0200,NS
5757,DMNZ,Sprinter,2017-03-28T15:58:00+0200,NS
1159,DT,Intercity,2017-03-28T15:58:00+0200,NS
4050,DVD,Sprinter,2017-03-28T15:58:00+0200,NS
7060,ES,Sprinter,2017-03-28T15:58:00+0200,NS
7049,ESK,Sprinter,2017-03-28T15:58:00+0200,NS
37247,FN,stoptrein,2017-03-28T15:58:00+0200,Arriva
37260,FN,stoptrein,2017-03-28T15:58:00+0200,Arriva
36757,GND,stoptrein,2017-03-28T15:58:00+0200,Arriva
2248,GV,Intercity,2017-03-28T15:58:00+0200,NS
5150,GVMW,Sprinter,2017-03-28T15:58:00+0200,NS
6344,HAD,Sprinter,2017-03-28T15:58:00+0200,NS
13551,HM,Intercity,2017-03-28T15:58:00+0200,NS
3046,HWD,Intercity,2017-03-28T15:58:00+0200,NS
2265,KBD,Intercity,2017-03-28T15:58:00+0200,NS
2242,KBD,Intercity,2017-03-28T15:58:00+0200,NS
5653,PT,Sprinter,2017-03-28T15:58:00+0200,NS
37662,RD,stoptrein,2017-03-28T15:58:00+0200,Arriva
4055,RTN,Sprinter,2017-03-28T15:58:00+0200,NS
32554,SBK,stoptrein,2017-03-28T15:58:00+0200,Arriva
37060,SKND,stoptrein,2017-03-28T15:58:00+0200,Arriva
37047,SKND,stoptrein,2017-03-28T15:58:00+0200,Arriva
7553,WF,Sprinter,2017-03-28T15:58:00+0200,NS
5651,WZ,Sprinter,2017-03-28T15:58:00+0200,NS
1852,ALM,Intercity,2017-03-28T15:59:00+0200,NS
4955,AMPO,Sprinter,2017-03-28T15:59:00+0200,NS
4350,ASDZ,Sprinter,2017-03-28T15:59:00+0200,NS
859,ASS,Intercity,2017-03-28T15:59:00+0200,NS
32252,BMR,stoptrein,2017-03-28T15:59:00+0200,Arriva
37360,BP,Sneltrein,2017-03-28T15:59:00+0200,Arriva
37345,BP,Sneltrein,2017-03-28T15:59:00+0200,Arriva
9654,BTL,Sprinter,2017-03-28T15:59:00+0200,NS
8062,CO,stoptrein,2017-03-28T15:59:00+0200,Arriva
1150,DT,Intercity,2017-03-28T15:59:00+0200,NS
2463,DVD,Intercity,2017-03-28T15:59:00+0200,NS
5387,EDN,stoptrein,2017-03-28T15:59:00+0200,NMBS
8147,GERP,Sprinter,2017-03-28T15:59:00+0200,NS
5161,GV,Sprinter,2017-03-28T15:59:00+0200,NS
6363,HAD,Sprinter,2017-03-28T15:59:00+0200,NS
37460,HDG,stoptrein,2017-03-28T15:59:00+0200,Arriva
7951,HNO,Sprinter,2017-03-28T15:59:00+0200,NS
4455,HTO,Sprinter,2017-03-28T15:59:00+0200,NS
32455,LUT,stoptrein,2017-03-28T15:59:00+0200,Arriva
2267,MDB,Intercity,2017-03-28T15:59:00+0200,NS
7355,MRN,Sprinter,2017-03-28T15:59:00+0200,NS
31149,OP,stoptrein,2017-03-28T15:59:00+0200,Arriva
32557,SBK,stoptrein,2017-03-28T15:59:00+0200,Arriva
7053,TWL,Sprinter,2017-03-28T15:59:00+0200,NS
7656,VP,Sprinter,2017-03-28T15:59:00+0200,NS
4457,WC,Sprinter,2017-03-28T15:59:00+0200,NS
7554,WF,Sprinter,2017-03-28T15:59:00+0200,NS
37445,ZH,stoptrein,2017-03-28T15:59:00+0200,Arriva
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment