ns-api 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +40 -0
  4. data/README.md +82 -0
  5. data/Rakefile +1 -0
  6. data/lib/ns.rb +29 -0
  7. data/lib/ns/api/request/base.rb +58 -0
  8. data/lib/ns/api/request/disruption_collection.rb +30 -0
  9. data/lib/ns/api/request/travel_advice.rb +34 -0
  10. data/lib/ns/api/response/disruption_collection.rb +58 -0
  11. data/lib/ns/api/response/parser.rb +22 -0
  12. data/lib/ns/api/response/travel_advice.rb +46 -0
  13. data/lib/ns/configuration.rb +14 -0
  14. data/lib/ns/disruption.rb +26 -0
  15. data/lib/ns/disruption_collection.rb +45 -0
  16. data/lib/ns/model.rb +13 -0
  17. data/lib/ns/station.rb +8 -0
  18. data/lib/ns/travel_option.rb +28 -0
  19. data/lib/ns/trip.rb +80 -0
  20. data/lib/version.rb +3 -0
  21. data/ns.gemspec +24 -0
  22. data/spec/fixtures/ns_disruptions_no_results.xml +10 -0
  23. data/spec/fixtures/ns_disruptions_with_results.xml +23 -0
  24. data/spec/fixtures/ns_travel_advice_response.xml +2444 -0
  25. data/spec/ns/api/request/base_spec.rb +67 -0
  26. data/spec/ns/api/request/disruption_collection_spec.rb +34 -0
  27. data/spec/ns/api/request/travel_advice_spec.rb +53 -0
  28. data/spec/ns/api/response/disruption_collection_spec.rb +43 -0
  29. data/spec/ns/api/response/parser_spec.rb +17 -0
  30. data/spec/ns/api/response/travel_advice_spec.rb +61 -0
  31. data/spec/ns/disruption_collection_spec.rb +32 -0
  32. data/spec/ns/disruption_spec.rb +33 -0
  33. data/spec/ns/station_spec.rb +11 -0
  34. data/spec/ns/travel_option_spec.rb +41 -0
  35. data/spec/ns/trip_spec.rb +85 -0
  36. data/spec/ns_spec.rb +17 -0
  37. data/spec/spec_helper.rb +19 -0
  38. metadata +147 -0
@@ -0,0 +1,14 @@
1
+ module Ns
2
+ class Configuration
3
+ attr_accessor :username, :password
4
+
5
+ def username
6
+ @username || ''
7
+ end
8
+
9
+ def password
10
+ @password || ''
11
+ end
12
+
13
+ end
14
+ end
@@ -0,0 +1,26 @@
1
+ module Ns
2
+ class Disruption
3
+ include Ns::Model
4
+
5
+ attr_accessor :route, :reason, :message, :advice, :period
6
+
7
+ def advice
8
+ stripped(@advice)
9
+ end
10
+
11
+ def message
12
+ stripped(@message)
13
+ end
14
+
15
+ def reason
16
+ stripped(@reason)
17
+ end
18
+
19
+ private
20
+
21
+ def stripped(string)
22
+ string.strip.gsub(/\s+/, ' ')
23
+ end
24
+
25
+ end
26
+ end
@@ -0,0 +1,45 @@
1
+ module Ns
2
+ class DisruptionCollection
3
+ include Ns::Model
4
+
5
+ attr_accessor :station, :actual, :include_planned
6
+
7
+ def planned_disruptions
8
+ @planned_disruptions ||= response.planned_disruptions
9
+ end
10
+
11
+ def unplanned_disruptions
12
+ @planned_disruptions ||= response.unplanned_disruptions
13
+ end
14
+
15
+ #
16
+ # If actual=true, the unplanned disruptions are returned, as well
17
+ # as the planned disruptions (due to maintenance) that will occur
18
+ # within two hours of the request.
19
+ #
20
+ def actual
21
+ self.instance_variable_get("@actual") || true
22
+ end
23
+
24
+ #
25
+ # For some reason NS has decided that passing "unplanned=true"
26
+ # will return the *planned* disruptions. We pass a default value
27
+ # of unplanned=false so planned disruptions don't show up by
28
+ # default.
29
+ #
30
+ def include_planned
31
+ self.instance_variable_get("@include_planned") || false
32
+ end
33
+
34
+ private
35
+
36
+ def response
37
+ @response ||= disruption_collection.response
38
+ end
39
+
40
+ def disruption_collection
41
+ @disruption_collection ||= Ns::Api::Request::DisruptionCollection.new(disruption_collection: self)
42
+ end
43
+
44
+ end
45
+ end
data/lib/ns/model.rb ADDED
@@ -0,0 +1,13 @@
1
+ module Ns
2
+ module Model
3
+
4
+ def initialize(attributes = {})
5
+ attributes.each do |k,v|
6
+ send("#{k}=", v)
7
+ end
8
+
9
+ super if self.class.ancestors.include?(Ns::Api::Request::Base)
10
+ end
11
+
12
+ end
13
+ end
data/lib/ns/station.rb ADDED
@@ -0,0 +1,8 @@
1
+ module Ns
2
+ class Station
3
+ include Ns::Model
4
+
5
+ attr_accessor :name
6
+
7
+ end
8
+ end
@@ -0,0 +1,28 @@
1
+ module Ns
2
+ class TravelOption
3
+ include Ns::Model
4
+
5
+ attr_accessor :planned_departure, :actual_departure,
6
+ :planned_arrival, :actual_arrival,
7
+ :changes, :platform, :optimal
8
+
9
+ def planned_duration
10
+ duration(planned_arrival, planned_departure)
11
+ end
12
+
13
+ def actual_duration
14
+ duration(actual_arrival, actual_departure)
15
+ end
16
+
17
+ def delay
18
+ duration(actual_departure, planned_departure)
19
+ end
20
+
21
+ private
22
+
23
+ def duration(latest, first)
24
+ ((latest - first) * 24 * 60 * 60).to_i
25
+ end
26
+
27
+ end
28
+ end
data/lib/ns/trip.rb ADDED
@@ -0,0 +1,80 @@
1
+ module Ns
2
+ class Trip
3
+ include Ns::Model
4
+
5
+ attr_accessor :from, :to, :via, :departure, :arrival, :allow_hsl, :year_card
6
+
7
+ def from
8
+ @from_station ||= Ns::Station.new(name: self.instance_variable_get("@from"))
9
+ end
10
+
11
+ def to
12
+ @to_station ||= Ns::Station.new(name: self.instance_variable_get("@to"))
13
+ end
14
+
15
+ def via
16
+ @via_station ||= Ns::Station.new(name: self.instance_variable_get("@via"))
17
+ end
18
+
19
+ def allow_hsl
20
+ self.instance_variable_get("@allow_hsl") || false
21
+ end
22
+
23
+ def year_card
24
+ self.instance_variable_get("@year_card") || false
25
+ end
26
+
27
+ def formatted_time
28
+ time.iso8601
29
+ end
30
+
31
+ def time
32
+ [ departure, arrival ].compact.first || Time.now
33
+ end
34
+
35
+ def departure?
36
+ !departure.nil? && !departure.to_s.strip.empty?
37
+ end
38
+
39
+ def valid?
40
+ validate!
41
+ rescue
42
+ false
43
+ end
44
+
45
+ def validate!
46
+ if !arrival_present? && !departure_present?
47
+ raise "You should specify a departure or arrival time."
48
+ end
49
+
50
+ if (arrival_present? && arrival.class != Time) || (departure_present? && departure.class != Time)
51
+ raise "Departure or arrival time should be an instance of Time"
52
+ end
53
+
54
+ true
55
+ end
56
+
57
+ def travel_options
58
+ @travel_options ||= response.travel_options
59
+ end
60
+
61
+ private
62
+
63
+ def arrival_present?
64
+ !arrival.to_s.strip.empty?
65
+ end
66
+
67
+ def departure_present?
68
+ !departure.to_s.strip.empty?
69
+ end
70
+
71
+ def travel_advice
72
+ @travel_advice ||= Ns::Api::Request::TravelAdvice.new(trip: self)
73
+ end
74
+
75
+ def response
76
+ @response ||= travel_advice.response
77
+ end
78
+
79
+ end
80
+ end
data/lib/version.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Ns
2
+ VERSION = '0.2'
3
+ end
data/ns.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'ns/version'
6
+
7
+ Gem::Specification.new do |gem|
8
+ gem.name = "ns-api"
9
+ gem.version = Ns::VERSION
10
+ gem.authors = ["Marcel de Graaf"]
11
+ gem.email = ["mail@marceldegraaf.net"]
12
+ gem.description = %q{A Ruby implementation of the NS (Dutch Railways) API}
13
+ gem.summary = %q{A Ruby implementation of the NS (Dutch Railways) API}
14
+ gem.homepage = "https://github.com/marceldegraaf/ns"
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_dependency 'httpi'
22
+ gem.add_dependency 'nori'
23
+ gem.add_dependency 'nokogiri'
24
+ end
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <Storingen>
4
+ <Ongepland>
5
+
6
+ </Ongepland>
7
+ <Gepland>
8
+
9
+ </Gepland>
10
+ </Storingen>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <Storingen>
4
+ <Ongepland>
5
+ <Storing>
6
+ <id>prio-13345</id>
7
+ <Traject>'s-Hertogenbosch-Nijmegen</Traject>
8
+ <Reden>beperkingen op last van de politie</Reden>
9
+ <Bericht></Bericht>
10
+ <Datum>2010-12-16T11:16:00+0100</Datum>
11
+ </Storing>
12
+ </Ongepland>
13
+ <Gepland>
14
+ <Storing>
15
+ <id>2010_almo_wp_18_19dec</id>
16
+ <Traject>Almere Oostvaarders-Weesp/Naarden-Bussum</Traject>
17
+ <Periode>zaterdag 18 en zondag 19 december</Periode>
18
+ <Reden>Beperkt treinverkeer, businzet en/of omreizen, extra reistijd 15-30 min.</Reden>
19
+ <Advies>Maak gebruik van de overige treinen of de bussen: reis tussen Weesp en Almere Centrum met de NS-bus in plaats van de trein tussen Almere Centrum en Lelystad Centrum rijden vier Sprinters per uur reis tussen Almere Muziekwijk en Naarden-Bussum via Weesp</Advies>
20
+ <Bericht></Bericht>
21
+ </Storing>
22
+ </Gepland>
23
+ </Storingen>
@@ -0,0 +1,2444 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ReisMogelijkheden>
3
+
4
+ <ReisMogelijkheid>
5
+
6
+ <AantalOverstappen>2</AantalOverstappen>
7
+ <GeplandeReisTijd>1:08</GeplandeReisTijd>
8
+
9
+ <ActueleReisTijd>1:08</ActueleReisTijd>
10
+
11
+
12
+
13
+ <Optimaal>false</Optimaal>
14
+ <GeplandeVertrekTijd>2013-02-15T20:44:00+0100</GeplandeVertrekTijd>
15
+ <ActueleVertrekTijd>2013-02-15T20:44:00+0100</ActueleVertrekTijd>
16
+ <GeplandeAankomstTijd>2013-02-15T21:52:00+0100</GeplandeAankomstTijd>
17
+ <ActueleAankomstTijd>2013-02-15T21:52:00+0100</ActueleAankomstTijd>
18
+
19
+
20
+ <Status>VOLGENS-PLAN</Status>
21
+
22
+
23
+ <ReisDeel reisSoort="TRAIN">
24
+
25
+
26
+ <Vervoerder>Connexxion</Vervoerder>
27
+ <VervoerType>Stoptrein</VervoerType>
28
+ <RitNummer>31361</RitNummer>
29
+
30
+
31
+ <Status>VOLGENS-PLAN</Status>
32
+
33
+
34
+ <Reisdetails>
35
+
36
+ <Reisdetail>Geen AVR-NS</Reisdetail>
37
+
38
+ </Reisdetails>
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+ <ReisStop>
47
+
48
+
49
+ <Naam>Ede Centrum</Naam>
50
+ <Tijd>2013-02-15T20:44:00+0100</Tijd>
51
+
52
+
53
+
54
+
55
+ <Spoor wijziging="false">1</Spoor>
56
+
57
+
58
+
59
+
60
+
61
+ </ReisStop>
62
+
63
+
64
+
65
+ <ReisStop>
66
+ <Naam>Ede-Wageningen</Naam>
67
+ <Tijd>2013-02-15T20:48:00+0100</Tijd>
68
+
69
+
70
+
71
+
72
+ <Spoor wijziging="false">1a</Spoor>
73
+
74
+
75
+ </ReisStop>
76
+
77
+
78
+
79
+ </ReisDeel>
80
+
81
+ <ReisDeel reisSoort="TRAIN">
82
+
83
+
84
+ <Vervoerder>NS</Vervoerder>
85
+ <VervoerType>Intercity</VervoerType>
86
+ <RitNummer>3174</RitNummer>
87
+
88
+
89
+ <Status>VOLGENS-PLAN</Status>
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+ <ReisStop>
99
+
100
+
101
+ <Naam>Ede-Wageningen</Naam>
102
+ <Tijd>2013-02-15T20:56:00+0100</Tijd>
103
+
104
+
105
+
106
+
107
+ <Spoor wijziging="false">3</Spoor>
108
+
109
+
110
+
111
+
112
+
113
+ </ReisStop>
114
+
115
+
116
+
117
+ <ReisStop>
118
+ <Naam>Driebergen-Zeist</Naam>
119
+ <Tijd>2013-02-15T21:12:00+0100</Tijd>
120
+
121
+ </ReisStop>
122
+
123
+ <ReisStop>
124
+ <Naam>Utrecht Centraal</Naam>
125
+ <Tijd>2013-02-15T21:22:00+0100</Tijd>
126
+
127
+
128
+
129
+
130
+ <Spoor wijziging="false">5a</Spoor>
131
+
132
+
133
+ </ReisStop>
134
+
135
+
136
+
137
+ </ReisDeel>
138
+
139
+ <ReisDeel reisSoort="TRAIN">
140
+
141
+
142
+ <Vervoerder>NS</Vervoerder>
143
+ <VervoerType>Intercity</VervoerType>
144
+ <RitNummer>874</RitNummer>
145
+
146
+
147
+ <Status>VOLGENS-PLAN</Status>
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+ <ReisStop>
157
+
158
+
159
+ <Naam>Utrecht Centraal</Naam>
160
+ <Tijd>2013-02-15T21:25:00+0100</Tijd>
161
+
162
+
163
+
164
+
165
+ <Spoor wijziging="false">7a</Spoor>
166
+
167
+
168
+
169
+
170
+
171
+ </ReisStop>
172
+
173
+
174
+
175
+ <ReisStop>
176
+ <Naam>Amsterdam Amstel</Naam>
177
+ <Tijd>2013-02-15T21:43:00+0100</Tijd>
178
+
179
+ </ReisStop>
180
+
181
+ <ReisStop>
182
+ <Naam>Amsterdam Centraal</Naam>
183
+ <Tijd>2013-02-15T21:52:00+0100</Tijd>
184
+
185
+
186
+
187
+
188
+ <Spoor wijziging="false">4b</Spoor>
189
+
190
+
191
+ </ReisStop>
192
+
193
+
194
+
195
+ </ReisDeel>
196
+
197
+ </ReisMogelijkheid>
198
+
199
+ <ReisMogelijkheid>
200
+
201
+ <AantalOverstappen>1</AantalOverstappen>
202
+ <GeplandeReisTijd>1:23</GeplandeReisTijd>
203
+
204
+ <ActueleReisTijd>1:23</ActueleReisTijd>
205
+
206
+
207
+
208
+ <Optimaal>false</Optimaal>
209
+ <GeplandeVertrekTijd>2013-02-15T20:44:00+0100</GeplandeVertrekTijd>
210
+ <ActueleVertrekTijd>2013-02-15T20:44:00+0100</ActueleVertrekTijd>
211
+ <GeplandeAankomstTijd>2013-02-15T22:07:00+0100</GeplandeAankomstTijd>
212
+ <ActueleAankomstTijd>2013-02-15T22:07:00+0100</ActueleAankomstTijd>
213
+
214
+
215
+ <Status>VOLGENS-PLAN</Status>
216
+
217
+
218
+ <ReisDeel reisSoort="TRAIN">
219
+
220
+
221
+ <Vervoerder>Connexxion</Vervoerder>
222
+ <VervoerType>Stoptrein</VervoerType>
223
+ <RitNummer>31361</RitNummer>
224
+
225
+
226
+ <Status>VOLGENS-PLAN</Status>
227
+
228
+
229
+ <Reisdetails>
230
+
231
+ <Reisdetail>Geen AVR-NS</Reisdetail>
232
+
233
+ </Reisdetails>
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+ <ReisStop>
242
+
243
+
244
+ <Naam>Ede Centrum</Naam>
245
+ <Tijd>2013-02-15T20:44:00+0100</Tijd>
246
+
247
+
248
+
249
+
250
+ <Spoor wijziging="false">1</Spoor>
251
+
252
+
253
+
254
+
255
+
256
+ </ReisStop>
257
+
258
+
259
+
260
+ <ReisStop>
261
+ <Naam>Ede-Wageningen</Naam>
262
+ <Tijd>2013-02-15T20:48:00+0100</Tijd>
263
+
264
+
265
+
266
+
267
+ <Spoor wijziging="false">1a</Spoor>
268
+
269
+
270
+ </ReisStop>
271
+
272
+
273
+
274
+ </ReisDeel>
275
+
276
+ <ReisDeel reisSoort="TRAIN">
277
+
278
+
279
+ <Vervoerder>NS</Vervoerder>
280
+ <VervoerType>Intercity</VervoerType>
281
+ <RitNummer>3074</RitNummer>
282
+
283
+
284
+ <Status>VOLGENS-PLAN</Status>
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+ <ReisStop>
294
+
295
+
296
+ <Naam>Ede-Wageningen</Naam>
297
+ <Tijd>2013-02-15T21:11:00+0100</Tijd>
298
+
299
+
300
+
301
+
302
+ <Spoor wijziging="false">3</Spoor>
303
+
304
+
305
+
306
+
307
+
308
+ </ReisStop>
309
+
310
+
311
+
312
+ <ReisStop>
313
+ <Naam>Veenendaal-De Klomp</Naam>
314
+ <Tijd>2013-02-15T21:16:00+0100</Tijd>
315
+
316
+ </ReisStop>
317
+
318
+ <ReisStop>
319
+ <Naam>Driebergen-Zeist</Naam>
320
+ <Tijd>2013-02-15T21:29:00+0100</Tijd>
321
+
322
+ </ReisStop>
323
+
324
+ <ReisStop>
325
+ <Naam>Utrecht Centraal</Naam>
326
+ <Tijd>2013-02-15T21:40:00+0100</Tijd>
327
+
328
+ </ReisStop>
329
+
330
+ <ReisStop>
331
+ <Naam>Amsterdam Amstel</Naam>
332
+ <Tijd>2013-02-15T21:58:00+0100</Tijd>
333
+
334
+ </ReisStop>
335
+
336
+ <ReisStop>
337
+ <Naam>Amsterdam Centraal</Naam>
338
+ <Tijd>2013-02-15T22:07:00+0100</Tijd>
339
+
340
+
341
+
342
+
343
+ <Spoor wijziging="false">7a</Spoor>
344
+
345
+
346
+ </ReisStop>
347
+
348
+
349
+
350
+ </ReisDeel>
351
+
352
+ </ReisMogelijkheid>
353
+
354
+ <ReisMogelijkheid>
355
+
356
+ <AantalOverstappen>1</AantalOverstappen>
357
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
358
+
359
+ <ActueleReisTijd>1:30</ActueleReisTijd>
360
+
361
+
362
+
363
+ <Optimaal>false</Optimaal>
364
+ <GeplandeVertrekTijd>2013-02-15T20:59:00+0100</GeplandeVertrekTijd>
365
+ <ActueleVertrekTijd>2013-02-15T20:59:00+0100</ActueleVertrekTijd>
366
+ <GeplandeAankomstTijd>2013-02-15T22:29:00+0100</GeplandeAankomstTijd>
367
+ <ActueleAankomstTijd>2013-02-15T22:29:00+0100</ActueleAankomstTijd>
368
+
369
+
370
+ <Status>VOLGENS-PLAN</Status>
371
+
372
+
373
+ <ReisDeel reisSoort="TRAIN">
374
+
375
+
376
+ <Vervoerder>Connexxion</Vervoerder>
377
+ <VervoerType>Stoptrein</VervoerType>
378
+ <RitNummer>31362</RitNummer>
379
+
380
+
381
+ <Status>VOLGENS-PLAN</Status>
382
+
383
+
384
+ <Reisdetails>
385
+
386
+ <Reisdetail>Geen AVR-NS</Reisdetail>
387
+
388
+ </Reisdetails>
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+ <ReisStop>
397
+
398
+
399
+ <Naam>Ede Centrum</Naam>
400
+ <Tijd>2013-02-15T20:59:00+0100</Tijd>
401
+
402
+
403
+
404
+
405
+ <Spoor wijziging="false">1</Spoor>
406
+
407
+
408
+
409
+
410
+
411
+ </ReisStop>
412
+
413
+
414
+
415
+ <ReisStop>
416
+ <Naam>Lunteren</Naam>
417
+ <Tijd>2013-02-15T21:07:00+0100</Tijd>
418
+
419
+ </ReisStop>
420
+
421
+ <ReisStop>
422
+ <Naam>Barneveld Centrum</Naam>
423
+ <Tijd>2013-02-15T21:16:00+0100</Tijd>
424
+
425
+ </ReisStop>
426
+
427
+ <ReisStop>
428
+ <Naam>Barneveld Noord</Naam>
429
+ <Tijd>2013-02-15T21:20:00+0100</Tijd>
430
+
431
+ </ReisStop>
432
+
433
+ <ReisStop>
434
+ <Naam>Hoevelaken</Naam>
435
+ <Tijd>2013-02-15T21:27:00+0100</Tijd>
436
+
437
+ </ReisStop>
438
+
439
+ <ReisStop>
440
+ <Naam>Amersfoort</Naam>
441
+ <Tijd>2013-02-15T21:33:00+0100</Tijd>
442
+
443
+
444
+
445
+
446
+ <Spoor wijziging="false">4b</Spoor>
447
+
448
+
449
+ </ReisStop>
450
+
451
+
452
+
453
+ </ReisDeel>
454
+
455
+ <ReisDeel reisSoort="TRAIN">
456
+
457
+
458
+ <Vervoerder>NS</Vervoerder>
459
+ <VervoerType>Intercity</VervoerType>
460
+ <RitNummer>1578</RitNummer>
461
+
462
+
463
+ <Status>VOLGENS-PLAN</Status>
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+ <ReisStop>
473
+
474
+
475
+ <Naam>Amersfoort</Naam>
476
+ <Tijd>2013-02-15T21:56:00+0100</Tijd>
477
+
478
+
479
+
480
+
481
+ <Spoor wijziging="false">7</Spoor>
482
+
483
+
484
+
485
+
486
+
487
+ </ReisStop>
488
+
489
+
490
+
491
+ <ReisStop>
492
+ <Naam>Hilversum</Naam>
493
+ <Tijd>2013-02-15T22:08:00+0100</Tijd>
494
+
495
+ </ReisStop>
496
+
497
+ <ReisStop>
498
+ <Naam>Amsterdam Centraal</Naam>
499
+ <Tijd>2013-02-15T22:29:00+0100</Tijd>
500
+
501
+
502
+
503
+
504
+ <Spoor wijziging="false">11a</Spoor>
505
+
506
+
507
+ </ReisStop>
508
+
509
+
510
+
511
+ </ReisDeel>
512
+
513
+ </ReisMogelijkheid>
514
+
515
+ <ReisMogelijkheid>
516
+
517
+ <AantalOverstappen>1</AantalOverstappen>
518
+ <GeplandeReisTijd>1:23</GeplandeReisTijd>
519
+
520
+ <ActueleReisTijd>1:23</ActueleReisTijd>
521
+
522
+
523
+
524
+ <Optimaal>false</Optimaal>
525
+ <GeplandeVertrekTijd>2013-02-15T21:14:00+0100</GeplandeVertrekTijd>
526
+ <ActueleVertrekTijd>2013-02-15T21:14:00+0100</ActueleVertrekTijd>
527
+ <GeplandeAankomstTijd>2013-02-15T22:37:00+0100</GeplandeAankomstTijd>
528
+ <ActueleAankomstTijd>2013-02-15T22:37:00+0100</ActueleAankomstTijd>
529
+
530
+
531
+ <Status>VOLGENS-PLAN</Status>
532
+
533
+
534
+ <ReisDeel reisSoort="TRAIN">
535
+
536
+
537
+ <Vervoerder>Connexxion</Vervoerder>
538
+ <VervoerType>Stoptrein</VervoerType>
539
+ <RitNummer>31363</RitNummer>
540
+
541
+
542
+ <Status>VOLGENS-PLAN</Status>
543
+
544
+
545
+ <Reisdetails>
546
+
547
+ <Reisdetail>Geen AVR-NS</Reisdetail>
548
+
549
+ </Reisdetails>
550
+
551
+
552
+
553
+
554
+
555
+
556
+
557
+ <ReisStop>
558
+
559
+
560
+ <Naam>Ede Centrum</Naam>
561
+ <Tijd>2013-02-15T21:14:00+0100</Tijd>
562
+
563
+
564
+
565
+
566
+ <Spoor wijziging="false">1</Spoor>
567
+
568
+
569
+
570
+
571
+
572
+ </ReisStop>
573
+
574
+
575
+
576
+ <ReisStop>
577
+ <Naam>Ede-Wageningen</Naam>
578
+ <Tijd>2013-02-15T21:18:00+0100</Tijd>
579
+
580
+
581
+
582
+
583
+ <Spoor wijziging="false">1a</Spoor>
584
+
585
+
586
+ </ReisStop>
587
+
588
+
589
+
590
+ </ReisDeel>
591
+
592
+ <ReisDeel reisSoort="TRAIN">
593
+
594
+
595
+ <Vervoerder>NS</Vervoerder>
596
+ <VervoerType>Intercity</VervoerType>
597
+ <RitNummer>3076</RitNummer>
598
+
599
+
600
+ <Status>VOLGENS-PLAN</Status>
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+ <ReisStop>
610
+
611
+
612
+ <Naam>Ede-Wageningen</Naam>
613
+ <Tijd>2013-02-15T21:41:00+0100</Tijd>
614
+
615
+
616
+
617
+
618
+ <Spoor wijziging="false">3</Spoor>
619
+
620
+
621
+
622
+
623
+
624
+ </ReisStop>
625
+
626
+
627
+
628
+ <ReisStop>
629
+ <Naam>Veenendaal-De Klomp</Naam>
630
+ <Tijd>2013-02-15T21:46:00+0100</Tijd>
631
+
632
+ </ReisStop>
633
+
634
+ <ReisStop>
635
+ <Naam>Driebergen-Zeist</Naam>
636
+ <Tijd>2013-02-15T21:59:00+0100</Tijd>
637
+
638
+ </ReisStop>
639
+
640
+ <ReisStop>
641
+ <Naam>Utrecht Centraal</Naam>
642
+ <Tijd>2013-02-15T22:10:00+0100</Tijd>
643
+
644
+ </ReisStop>
645
+
646
+ <ReisStop>
647
+ <Naam>Amsterdam Amstel</Naam>
648
+ <Tijd>2013-02-15T22:28:00+0100</Tijd>
649
+
650
+ </ReisStop>
651
+
652
+ <ReisStop>
653
+ <Naam>Amsterdam Centraal</Naam>
654
+ <Tijd>2013-02-15T22:37:00+0100</Tijd>
655
+
656
+
657
+
658
+
659
+ <Spoor wijziging="false">8a</Spoor>
660
+
661
+
662
+ </ReisStop>
663
+
664
+
665
+
666
+ </ReisDeel>
667
+
668
+ </ReisMogelijkheid>
669
+
670
+ <ReisMogelijkheid>
671
+
672
+ <AantalOverstappen>1</AantalOverstappen>
673
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
674
+
675
+ <ActueleReisTijd>1:30</ActueleReisTijd>
676
+
677
+
678
+
679
+ <Optimaal>false</Optimaal>
680
+ <GeplandeVertrekTijd>2013-02-15T21:29:00+0100</GeplandeVertrekTijd>
681
+ <ActueleVertrekTijd>2013-02-15T21:29:00+0100</ActueleVertrekTijd>
682
+ <GeplandeAankomstTijd>2013-02-15T22:59:00+0100</GeplandeAankomstTijd>
683
+ <ActueleAankomstTijd>2013-02-15T22:59:00+0100</ActueleAankomstTijd>
684
+
685
+
686
+ <Status>VOLGENS-PLAN</Status>
687
+
688
+
689
+ <ReisDeel reisSoort="TRAIN">
690
+
691
+
692
+ <Vervoerder>Connexxion</Vervoerder>
693
+ <VervoerType>Stoptrein</VervoerType>
694
+ <RitNummer>31364</RitNummer>
695
+
696
+
697
+ <Status>VOLGENS-PLAN</Status>
698
+
699
+
700
+ <Reisdetails>
701
+
702
+ <Reisdetail>Geen AVR-NS</Reisdetail>
703
+
704
+ </Reisdetails>
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+ <ReisStop>
713
+
714
+
715
+ <Naam>Ede Centrum</Naam>
716
+ <Tijd>2013-02-15T21:29:00+0100</Tijd>
717
+
718
+
719
+
720
+
721
+ <Spoor wijziging="false">1</Spoor>
722
+
723
+
724
+
725
+
726
+
727
+ </ReisStop>
728
+
729
+
730
+
731
+ <ReisStop>
732
+ <Naam>Lunteren</Naam>
733
+ <Tijd>2013-02-15T21:37:00+0100</Tijd>
734
+
735
+ </ReisStop>
736
+
737
+ <ReisStop>
738
+ <Naam>Barneveld Centrum</Naam>
739
+ <Tijd>2013-02-15T21:46:00+0100</Tijd>
740
+
741
+ </ReisStop>
742
+
743
+ <ReisStop>
744
+ <Naam>Barneveld Noord</Naam>
745
+ <Tijd>2013-02-15T21:50:00+0100</Tijd>
746
+
747
+ </ReisStop>
748
+
749
+ <ReisStop>
750
+ <Naam>Hoevelaken</Naam>
751
+ <Tijd>2013-02-15T21:57:00+0100</Tijd>
752
+
753
+ </ReisStop>
754
+
755
+ <ReisStop>
756
+ <Naam>Amersfoort</Naam>
757
+ <Tijd>2013-02-15T22:03:00+0100</Tijd>
758
+
759
+
760
+
761
+
762
+ <Spoor wijziging="false">4b</Spoor>
763
+
764
+
765
+ </ReisStop>
766
+
767
+
768
+
769
+ </ReisDeel>
770
+
771
+ <ReisDeel reisSoort="TRAIN">
772
+
773
+
774
+ <Vervoerder>NS Hispeed</Vervoerder>
775
+ <VervoerType>Intercity</VervoerType>
776
+ <RitNummer>140</RitNummer>
777
+
778
+
779
+ <Status>VOLGENS-PLAN</Status>
780
+
781
+
782
+ <Reisdetails>
783
+
784
+ <Reisdetail>Reserveren buitenl. aanbevolen</Reisdetail>
785
+
786
+ <Reisdetail>Bar/Buffet</Reisdetail>
787
+
788
+ <Reisdetail>Rolstoelplaatsen</Reisdetail>
789
+
790
+ <Reisdetail>Geen fietsen tot 15 maart 2013</Reisdetail>
791
+
792
+ </Reisdetails>
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+ <ReisStop>
801
+
802
+
803
+ <Naam>Amersfoort</Naam>
804
+ <Tijd>2013-02-15T22:26:00+0100</Tijd>
805
+
806
+
807
+
808
+
809
+ <Spoor wijziging="false">7</Spoor>
810
+
811
+
812
+
813
+
814
+
815
+ </ReisStop>
816
+
817
+
818
+
819
+ <ReisStop>
820
+ <Naam>Hilversum</Naam>
821
+ <Tijd>2013-02-15T22:38:00+0100</Tijd>
822
+
823
+ </ReisStop>
824
+
825
+ <ReisStop>
826
+ <Naam>Amsterdam Centraal</Naam>
827
+ <Tijd>2013-02-15T22:59:00+0100</Tijd>
828
+
829
+
830
+
831
+
832
+ <Spoor wijziging="false">14b</Spoor>
833
+
834
+
835
+ </ReisStop>
836
+
837
+
838
+
839
+ </ReisDeel>
840
+
841
+ </ReisMogelijkheid>
842
+
843
+ <ReisMogelijkheid>
844
+
845
+ <AantalOverstappen>1</AantalOverstappen>
846
+ <GeplandeReisTijd>1:23</GeplandeReisTijd>
847
+
848
+ <ActueleReisTijd>1:23</ActueleReisTijd>
849
+
850
+
851
+
852
+ <Optimaal>false</Optimaal>
853
+ <GeplandeVertrekTijd>2013-02-15T21:44:00+0100</GeplandeVertrekTijd>
854
+ <ActueleVertrekTijd>2013-02-15T21:44:00+0100</ActueleVertrekTijd>
855
+ <GeplandeAankomstTijd>2013-02-15T23:07:00+0100</GeplandeAankomstTijd>
856
+ <ActueleAankomstTijd>2013-02-15T23:07:00+0100</ActueleAankomstTijd>
857
+
858
+
859
+ <Status>VOLGENS-PLAN</Status>
860
+
861
+
862
+ <ReisDeel reisSoort="TRAIN">
863
+
864
+
865
+ <Vervoerder>Connexxion</Vervoerder>
866
+ <VervoerType>Stoptrein</VervoerType>
867
+ <RitNummer>31365</RitNummer>
868
+
869
+
870
+ <Status>VOLGENS-PLAN</Status>
871
+
872
+
873
+ <Reisdetails>
874
+
875
+ <Reisdetail>Geen AVR-NS</Reisdetail>
876
+
877
+ </Reisdetails>
878
+
879
+
880
+
881
+
882
+
883
+
884
+
885
+ <ReisStop>
886
+
887
+
888
+ <Naam>Ede Centrum</Naam>
889
+ <Tijd>2013-02-15T21:44:00+0100</Tijd>
890
+
891
+
892
+
893
+
894
+ <Spoor wijziging="false">1</Spoor>
895
+
896
+
897
+
898
+
899
+
900
+ </ReisStop>
901
+
902
+
903
+
904
+ <ReisStop>
905
+ <Naam>Ede-Wageningen</Naam>
906
+ <Tijd>2013-02-15T21:48:00+0100</Tijd>
907
+
908
+
909
+
910
+
911
+ <Spoor wijziging="false">1a</Spoor>
912
+
913
+
914
+ </ReisStop>
915
+
916
+
917
+
918
+ </ReisDeel>
919
+
920
+ <ReisDeel reisSoort="TRAIN">
921
+
922
+
923
+ <Vervoerder>NS</Vervoerder>
924
+ <VervoerType>Intercity</VervoerType>
925
+ <RitNummer>3078</RitNummer>
926
+
927
+
928
+ <Status>VOLGENS-PLAN</Status>
929
+
930
+
931
+
932
+
933
+
934
+
935
+
936
+
937
+ <ReisStop>
938
+
939
+
940
+ <Naam>Ede-Wageningen</Naam>
941
+ <Tijd>2013-02-15T22:11:00+0100</Tijd>
942
+
943
+
944
+
945
+
946
+ <Spoor wijziging="false">3</Spoor>
947
+
948
+
949
+
950
+
951
+
952
+ </ReisStop>
953
+
954
+
955
+
956
+ <ReisStop>
957
+ <Naam>Veenendaal-De Klomp</Naam>
958
+ <Tijd>2013-02-15T22:16:00+0100</Tijd>
959
+
960
+ </ReisStop>
961
+
962
+ <ReisStop>
963
+ <Naam>Driebergen-Zeist</Naam>
964
+ <Tijd>2013-02-15T22:29:00+0100</Tijd>
965
+
966
+ </ReisStop>
967
+
968
+ <ReisStop>
969
+ <Naam>Utrecht Centraal</Naam>
970
+ <Tijd>2013-02-15T22:40:00+0100</Tijd>
971
+
972
+ </ReisStop>
973
+
974
+ <ReisStop>
975
+ <Naam>Amsterdam Amstel</Naam>
976
+ <Tijd>2013-02-15T22:58:00+0100</Tijd>
977
+
978
+ </ReisStop>
979
+
980
+ <ReisStop>
981
+ <Naam>Amsterdam Centraal</Naam>
982
+ <Tijd>2013-02-15T23:07:00+0100</Tijd>
983
+
984
+
985
+
986
+
987
+ <Spoor wijziging="false">8a</Spoor>
988
+
989
+
990
+ </ReisStop>
991
+
992
+
993
+
994
+ </ReisDeel>
995
+
996
+ </ReisMogelijkheid>
997
+
998
+ <ReisMogelijkheid>
999
+
1000
+ <AantalOverstappen>1</AantalOverstappen>
1001
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
1002
+
1003
+ <ActueleReisTijd>1:30</ActueleReisTijd>
1004
+
1005
+
1006
+
1007
+ <Optimaal>true</Optimaal>
1008
+ <GeplandeVertrekTijd>2013-02-15T21:59:00+0100</GeplandeVertrekTijd>
1009
+ <ActueleVertrekTijd>2013-02-15T21:59:00+0100</ActueleVertrekTijd>
1010
+ <GeplandeAankomstTijd>2013-02-15T23:29:00+0100</GeplandeAankomstTijd>
1011
+ <ActueleAankomstTijd>2013-02-15T23:29:00+0100</ActueleAankomstTijd>
1012
+
1013
+
1014
+ <Status>VOLGENS-PLAN</Status>
1015
+
1016
+
1017
+ <ReisDeel reisSoort="TRAIN">
1018
+
1019
+
1020
+ <Vervoerder>Connexxion</Vervoerder>
1021
+ <VervoerType>Stoptrein</VervoerType>
1022
+ <RitNummer>31366</RitNummer>
1023
+
1024
+
1025
+ <Status>VOLGENS-PLAN</Status>
1026
+
1027
+
1028
+ <Reisdetails>
1029
+
1030
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1031
+
1032
+ </Reisdetails>
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+ <ReisStop>
1041
+
1042
+
1043
+ <Naam>Ede Centrum</Naam>
1044
+ <Tijd>2013-02-15T21:59:00+0100</Tijd>
1045
+
1046
+
1047
+
1048
+
1049
+ <Spoor wijziging="false">1</Spoor>
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ </ReisStop>
1056
+
1057
+
1058
+
1059
+ <ReisStop>
1060
+ <Naam>Lunteren</Naam>
1061
+ <Tijd>2013-02-15T22:07:00+0100</Tijd>
1062
+
1063
+ </ReisStop>
1064
+
1065
+ <ReisStop>
1066
+ <Naam>Barneveld Centrum</Naam>
1067
+ <Tijd>2013-02-15T22:16:00+0100</Tijd>
1068
+
1069
+ </ReisStop>
1070
+
1071
+ <ReisStop>
1072
+ <Naam>Barneveld Noord</Naam>
1073
+ <Tijd>2013-02-15T22:20:00+0100</Tijd>
1074
+
1075
+ </ReisStop>
1076
+
1077
+ <ReisStop>
1078
+ <Naam>Hoevelaken</Naam>
1079
+ <Tijd>2013-02-15T22:27:00+0100</Tijd>
1080
+
1081
+ </ReisStop>
1082
+
1083
+ <ReisStop>
1084
+ <Naam>Amersfoort</Naam>
1085
+ <Tijd>2013-02-15T22:33:00+0100</Tijd>
1086
+
1087
+
1088
+
1089
+
1090
+ <Spoor wijziging="false">4b</Spoor>
1091
+
1092
+
1093
+ </ReisStop>
1094
+
1095
+
1096
+
1097
+ </ReisDeel>
1098
+
1099
+ <ReisDeel reisSoort="TRAIN">
1100
+
1101
+
1102
+ <Vervoerder>NS</Vervoerder>
1103
+ <VervoerType>Intercity</VervoerType>
1104
+ <RitNummer>1582</RitNummer>
1105
+
1106
+
1107
+ <Status>VOLGENS-PLAN</Status>
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+ <ReisStop>
1117
+
1118
+
1119
+ <Naam>Amersfoort</Naam>
1120
+ <Tijd>2013-02-15T22:56:00+0100</Tijd>
1121
+
1122
+
1123
+
1124
+
1125
+ <Spoor wijziging="false">7</Spoor>
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+ </ReisStop>
1132
+
1133
+
1134
+
1135
+ <ReisStop>
1136
+ <Naam>Hilversum</Naam>
1137
+ <Tijd>2013-02-15T23:08:00+0100</Tijd>
1138
+
1139
+ </ReisStop>
1140
+
1141
+ <ReisStop>
1142
+ <Naam>Amsterdam Centraal</Naam>
1143
+ <Tijd>2013-02-15T23:29:00+0100</Tijd>
1144
+
1145
+
1146
+
1147
+
1148
+ <Spoor wijziging="false">11a</Spoor>
1149
+
1150
+
1151
+ </ReisStop>
1152
+
1153
+
1154
+
1155
+ </ReisDeel>
1156
+
1157
+ </ReisMogelijkheid>
1158
+
1159
+ <ReisMogelijkheid>
1160
+
1161
+ <AantalOverstappen>2</AantalOverstappen>
1162
+ <GeplandeReisTijd>1:27</GeplandeReisTijd>
1163
+
1164
+ <ActueleReisTijd>1:31</ActueleReisTijd>
1165
+
1166
+
1167
+
1168
+ <AankomstVertraging>+4 min</AankomstVertraging>
1169
+
1170
+ <Optimaal>false</Optimaal>
1171
+ <GeplandeVertrekTijd>2013-02-15T21:59:00+0100</GeplandeVertrekTijd>
1172
+ <ActueleVertrekTijd>2013-02-15T21:59:00+0100</ActueleVertrekTijd>
1173
+ <GeplandeAankomstTijd>2013-02-15T23:26:00+0100</GeplandeAankomstTijd>
1174
+ <ActueleAankomstTijd>2013-02-15T23:30:00+0100</ActueleAankomstTijd>
1175
+
1176
+
1177
+ <Status>NIET-OPTIMAAL</Status>
1178
+
1179
+
1180
+ <ReisDeel reisSoort="TRAIN">
1181
+
1182
+
1183
+ <Vervoerder>Connexxion</Vervoerder>
1184
+ <VervoerType>Stoptrein</VervoerType>
1185
+ <RitNummer>31366</RitNummer>
1186
+
1187
+
1188
+ <Status>VOLGENS-PLAN</Status>
1189
+
1190
+
1191
+ <Reisdetails>
1192
+
1193
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1194
+
1195
+ </Reisdetails>
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+
1203
+ <ReisStop>
1204
+
1205
+
1206
+ <Naam>Ede Centrum</Naam>
1207
+ <Tijd>2013-02-15T21:59:00+0100</Tijd>
1208
+
1209
+
1210
+
1211
+
1212
+ <Spoor wijziging="false">1</Spoor>
1213
+
1214
+
1215
+
1216
+
1217
+
1218
+ </ReisStop>
1219
+
1220
+
1221
+
1222
+ <ReisStop>
1223
+ <Naam>Lunteren</Naam>
1224
+ <Tijd>2013-02-15T22:07:00+0100</Tijd>
1225
+
1226
+ </ReisStop>
1227
+
1228
+ <ReisStop>
1229
+ <Naam>Barneveld Centrum</Naam>
1230
+ <Tijd>2013-02-15T22:16:00+0100</Tijd>
1231
+
1232
+ </ReisStop>
1233
+
1234
+ <ReisStop>
1235
+ <Naam>Barneveld Noord</Naam>
1236
+ <Tijd>2013-02-15T22:20:00+0100</Tijd>
1237
+
1238
+ </ReisStop>
1239
+
1240
+ <ReisStop>
1241
+ <Naam>Hoevelaken</Naam>
1242
+ <Tijd>2013-02-15T22:27:00+0100</Tijd>
1243
+
1244
+ </ReisStop>
1245
+
1246
+ <ReisStop>
1247
+ <Naam>Amersfoort</Naam>
1248
+ <Tijd>2013-02-15T22:33:00+0100</Tijd>
1249
+
1250
+
1251
+
1252
+
1253
+ <Spoor wijziging="false">4b</Spoor>
1254
+
1255
+
1256
+ </ReisStop>
1257
+
1258
+
1259
+
1260
+ </ReisDeel>
1261
+
1262
+ <ReisDeel reisSoort="TRAIN">
1263
+
1264
+
1265
+ <Vervoerder>NS</Vervoerder>
1266
+ <VervoerType>Intercity</VervoerType>
1267
+ <RitNummer>11780</RitNummer>
1268
+
1269
+
1270
+ <Status>VOLGENS-PLAN</Status>
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+ <ReisStop>
1280
+
1281
+
1282
+ <Naam>Amersfoort</Naam>
1283
+ <Tijd>2013-02-15T22:40:00+0100</Tijd>
1284
+
1285
+
1286
+
1287
+ <Spoor wijziging="true">6</Spoor>
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ </ReisStop>
1295
+
1296
+
1297
+
1298
+ <ReisStop>
1299
+ <Naam>Utrecht Centraal</Naam>
1300
+ <Tijd>2013-02-15T22:55:00+0100</Tijd>
1301
+
1302
+
1303
+
1304
+ <Spoor wijziging="true">8</Spoor>
1305
+
1306
+
1307
+
1308
+ </ReisStop>
1309
+
1310
+
1311
+
1312
+ </ReisDeel>
1313
+
1314
+ <ReisDeel reisSoort="TRAIN">
1315
+
1316
+
1317
+ <Vervoerder>NS Hispeed</Vervoerder>
1318
+ <VervoerType>ICE International</VervoerType>
1319
+ <RitNummer>120</RitNummer>
1320
+
1321
+
1322
+ <Status>VERTRAAGD</Status>
1323
+
1324
+
1325
+ <Reisdetails>
1326
+
1327
+ <Reisdetail>Toeslag</Reisdetail>
1328
+
1329
+ <Reisdetail>Reserveren buitenl. aanbevolen</Reisdetail>
1330
+
1331
+ <Reisdetail>Bar/Buffet</Reisdetail>
1332
+
1333
+ <Reisdetail>Rolstoelplaatsen</Reisdetail>
1334
+
1335
+ </Reisdetails>
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+ <ReisStop>
1344
+
1345
+
1346
+ <Naam>Utrecht Centraal</Naam>
1347
+ <Tijd>2013-02-15T23:01:00+0100</Tijd>
1348
+
1349
+ <VertrekVertraging>+6 min</VertrekVertraging>
1350
+
1351
+
1352
+
1353
+
1354
+ <Spoor wijziging="false">4a</Spoor>
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+ </ReisStop>
1361
+
1362
+
1363
+
1364
+ <ReisStop>
1365
+ <Naam>Amsterdam Centraal</Naam>
1366
+ <Tijd>2013-02-15T23:26:00+0100</Tijd>
1367
+
1368
+ <VertrekVertraging>+4 min</VertrekVertraging>
1369
+
1370
+
1371
+
1372
+
1373
+ <Spoor wijziging="false">7b</Spoor>
1374
+
1375
+
1376
+ </ReisStop>
1377
+
1378
+
1379
+
1380
+ </ReisDeel>
1381
+
1382
+ </ReisMogelijkheid>
1383
+
1384
+ <ReisMogelijkheid>
1385
+
1386
+ <AantalOverstappen>1</AantalOverstappen>
1387
+ <GeplandeReisTijd>1:23</GeplandeReisTijd>
1388
+
1389
+ <ActueleReisTijd>1:23</ActueleReisTijd>
1390
+
1391
+
1392
+
1393
+ <Optimaal>false</Optimaal>
1394
+ <GeplandeVertrekTijd>2013-02-15T22:14:00+0100</GeplandeVertrekTijd>
1395
+ <ActueleVertrekTijd>2013-02-15T22:14:00+0100</ActueleVertrekTijd>
1396
+ <GeplandeAankomstTijd>2013-02-15T23:37:00+0100</GeplandeAankomstTijd>
1397
+ <ActueleAankomstTijd>2013-02-15T23:37:00+0100</ActueleAankomstTijd>
1398
+
1399
+
1400
+ <Status>VOLGENS-PLAN</Status>
1401
+
1402
+
1403
+ <ReisDeel reisSoort="TRAIN">
1404
+
1405
+
1406
+ <Vervoerder>Connexxion</Vervoerder>
1407
+ <VervoerType>Stoptrein</VervoerType>
1408
+ <RitNummer>31367</RitNummer>
1409
+
1410
+
1411
+ <Status>VOLGENS-PLAN</Status>
1412
+
1413
+
1414
+ <Reisdetails>
1415
+
1416
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1417
+
1418
+ </Reisdetails>
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+ <ReisStop>
1427
+
1428
+
1429
+ <Naam>Ede Centrum</Naam>
1430
+ <Tijd>2013-02-15T22:14:00+0100</Tijd>
1431
+
1432
+
1433
+
1434
+
1435
+ <Spoor wijziging="false">1</Spoor>
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+ </ReisStop>
1442
+
1443
+
1444
+
1445
+ <ReisStop>
1446
+ <Naam>Ede-Wageningen</Naam>
1447
+ <Tijd>2013-02-15T22:18:00+0100</Tijd>
1448
+
1449
+
1450
+
1451
+
1452
+ <Spoor wijziging="false">1a</Spoor>
1453
+
1454
+
1455
+ </ReisStop>
1456
+
1457
+
1458
+
1459
+ </ReisDeel>
1460
+
1461
+ <ReisDeel reisSoort="TRAIN">
1462
+
1463
+
1464
+ <Vervoerder>NS</Vervoerder>
1465
+ <VervoerType>Intercity</VervoerType>
1466
+ <RitNummer>3080</RitNummer>
1467
+
1468
+
1469
+ <Status>VOLGENS-PLAN</Status>
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+ <ReisStop>
1479
+
1480
+
1481
+ <Naam>Ede-Wageningen</Naam>
1482
+ <Tijd>2013-02-15T22:41:00+0100</Tijd>
1483
+
1484
+
1485
+
1486
+
1487
+ <Spoor wijziging="false">3</Spoor>
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+ </ReisStop>
1494
+
1495
+
1496
+
1497
+ <ReisStop>
1498
+ <Naam>Veenendaal-De Klomp</Naam>
1499
+ <Tijd>2013-02-15T22:46:00+0100</Tijd>
1500
+
1501
+ </ReisStop>
1502
+
1503
+ <ReisStop>
1504
+ <Naam>Driebergen-Zeist</Naam>
1505
+ <Tijd>2013-02-15T22:59:00+0100</Tijd>
1506
+
1507
+ </ReisStop>
1508
+
1509
+ <ReisStop>
1510
+ <Naam>Utrecht Centraal</Naam>
1511
+ <Tijd>2013-02-15T23:10:00+0100</Tijd>
1512
+
1513
+ </ReisStop>
1514
+
1515
+ <ReisStop>
1516
+ <Naam>Amsterdam Amstel</Naam>
1517
+ <Tijd>2013-02-15T23:28:00+0100</Tijd>
1518
+
1519
+ </ReisStop>
1520
+
1521
+ <ReisStop>
1522
+ <Naam>Amsterdam Centraal</Naam>
1523
+ <Tijd>2013-02-15T23:37:00+0100</Tijd>
1524
+
1525
+
1526
+
1527
+
1528
+ <Spoor wijziging="false">8a</Spoor>
1529
+
1530
+
1531
+ </ReisStop>
1532
+
1533
+
1534
+
1535
+ </ReisDeel>
1536
+
1537
+ </ReisMogelijkheid>
1538
+
1539
+ <ReisMogelijkheid>
1540
+
1541
+ <AantalOverstappen>1</AantalOverstappen>
1542
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
1543
+
1544
+ <ActueleReisTijd>1:30</ActueleReisTijd>
1545
+
1546
+
1547
+
1548
+ <Optimaal>false</Optimaal>
1549
+ <GeplandeVertrekTijd>2013-02-15T22:29:00+0100</GeplandeVertrekTijd>
1550
+ <ActueleVertrekTijd>2013-02-15T22:29:00+0100</ActueleVertrekTijd>
1551
+ <GeplandeAankomstTijd>2013-02-15T23:59:00+0100</GeplandeAankomstTijd>
1552
+ <ActueleAankomstTijd>2013-02-15T23:59:00+0100</ActueleAankomstTijd>
1553
+
1554
+
1555
+ <Status>VOLGENS-PLAN</Status>
1556
+
1557
+
1558
+ <ReisDeel reisSoort="TRAIN">
1559
+
1560
+
1561
+ <Vervoerder>Connexxion</Vervoerder>
1562
+ <VervoerType>Stoptrein</VervoerType>
1563
+ <RitNummer>31368</RitNummer>
1564
+
1565
+
1566
+ <Status>VOLGENS-PLAN</Status>
1567
+
1568
+
1569
+ <Reisdetails>
1570
+
1571
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1572
+
1573
+ </Reisdetails>
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+ <ReisStop>
1582
+
1583
+
1584
+ <Naam>Ede Centrum</Naam>
1585
+ <Tijd>2013-02-15T22:29:00+0100</Tijd>
1586
+
1587
+
1588
+
1589
+
1590
+ <Spoor wijziging="false">1</Spoor>
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+ </ReisStop>
1597
+
1598
+
1599
+
1600
+ <ReisStop>
1601
+ <Naam>Lunteren</Naam>
1602
+ <Tijd>2013-02-15T22:37:00+0100</Tijd>
1603
+
1604
+ </ReisStop>
1605
+
1606
+ <ReisStop>
1607
+ <Naam>Barneveld Centrum</Naam>
1608
+ <Tijd>2013-02-15T22:46:00+0100</Tijd>
1609
+
1610
+ </ReisStop>
1611
+
1612
+ <ReisStop>
1613
+ <Naam>Barneveld Noord</Naam>
1614
+ <Tijd>2013-02-15T22:50:00+0100</Tijd>
1615
+
1616
+ </ReisStop>
1617
+
1618
+ <ReisStop>
1619
+ <Naam>Hoevelaken</Naam>
1620
+ <Tijd>2013-02-15T22:57:00+0100</Tijd>
1621
+
1622
+ </ReisStop>
1623
+
1624
+ <ReisStop>
1625
+ <Naam>Amersfoort</Naam>
1626
+ <Tijd>2013-02-15T23:03:00+0100</Tijd>
1627
+
1628
+
1629
+
1630
+
1631
+ <Spoor wijziging="false">4b</Spoor>
1632
+
1633
+
1634
+ </ReisStop>
1635
+
1636
+
1637
+
1638
+ </ReisDeel>
1639
+
1640
+ <ReisDeel reisSoort="TRAIN">
1641
+
1642
+
1643
+ <Vervoerder>NS</Vervoerder>
1644
+ <VervoerType>Intercity</VervoerType>
1645
+ <RitNummer>1584</RitNummer>
1646
+
1647
+
1648
+ <Status>VOLGENS-PLAN</Status>
1649
+
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+ <ReisStop>
1658
+
1659
+
1660
+ <Naam>Amersfoort</Naam>
1661
+ <Tijd>2013-02-15T23:26:00+0100</Tijd>
1662
+
1663
+
1664
+
1665
+
1666
+ <Spoor wijziging="false">7</Spoor>
1667
+
1668
+
1669
+
1670
+
1671
+
1672
+ </ReisStop>
1673
+
1674
+
1675
+
1676
+ <ReisStop>
1677
+ <Naam>Hilversum</Naam>
1678
+ <Tijd>2013-02-15T23:38:00+0100</Tijd>
1679
+
1680
+ </ReisStop>
1681
+
1682
+ <ReisStop>
1683
+ <Naam>Amsterdam Centraal</Naam>
1684
+ <Tijd>2013-02-15T23:59:00+0100</Tijd>
1685
+
1686
+
1687
+
1688
+
1689
+ <Spoor wijziging="false">11a</Spoor>
1690
+
1691
+
1692
+ </ReisStop>
1693
+
1694
+
1695
+
1696
+ </ReisDeel>
1697
+
1698
+ </ReisMogelijkheid>
1699
+
1700
+ <ReisMogelijkheid>
1701
+
1702
+ <AantalOverstappen>1</AantalOverstappen>
1703
+ <GeplandeReisTijd>1:22</GeplandeReisTijd>
1704
+
1705
+ <ActueleReisTijd>1:22</ActueleReisTijd>
1706
+
1707
+
1708
+
1709
+ <Optimaal>false</Optimaal>
1710
+ <GeplandeVertrekTijd>2013-02-15T22:44:00+0100</GeplandeVertrekTijd>
1711
+ <ActueleVertrekTijd>2013-02-15T22:44:00+0100</ActueleVertrekTijd>
1712
+ <GeplandeAankomstTijd>2013-02-16T00:06:00+0100</GeplandeAankomstTijd>
1713
+ <ActueleAankomstTijd>2013-02-16T00:06:00+0100</ActueleAankomstTijd>
1714
+
1715
+
1716
+ <Status>VOLGENS-PLAN</Status>
1717
+
1718
+
1719
+ <ReisDeel reisSoort="TRAIN">
1720
+
1721
+
1722
+ <Vervoerder>Connexxion</Vervoerder>
1723
+ <VervoerType>Stoptrein</VervoerType>
1724
+ <RitNummer>31369</RitNummer>
1725
+
1726
+
1727
+ <Status>VOLGENS-PLAN</Status>
1728
+
1729
+
1730
+ <Reisdetails>
1731
+
1732
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1733
+
1734
+ </Reisdetails>
1735
+
1736
+
1737
+
1738
+
1739
+
1740
+
1741
+
1742
+ <ReisStop>
1743
+
1744
+
1745
+ <Naam>Ede Centrum</Naam>
1746
+ <Tijd>2013-02-15T22:44:00+0100</Tijd>
1747
+
1748
+
1749
+
1750
+
1751
+ <Spoor wijziging="false">1</Spoor>
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+ </ReisStop>
1758
+
1759
+
1760
+
1761
+ <ReisStop>
1762
+ <Naam>Ede-Wageningen</Naam>
1763
+ <Tijd>2013-02-15T22:48:00+0100</Tijd>
1764
+
1765
+
1766
+
1767
+
1768
+ <Spoor wijziging="false">1a</Spoor>
1769
+
1770
+
1771
+ </ReisStop>
1772
+
1773
+
1774
+
1775
+ </ReisDeel>
1776
+
1777
+ <ReisDeel reisSoort="TRAIN">
1778
+
1779
+
1780
+ <Vervoerder>NS</Vervoerder>
1781
+ <VervoerType>Intercity</VervoerType>
1782
+ <RitNummer>3082</RitNummer>
1783
+
1784
+
1785
+ <Status>VOLGENS-PLAN</Status>
1786
+
1787
+
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+ <ReisStop>
1795
+
1796
+
1797
+ <Naam>Ede-Wageningen</Naam>
1798
+ <Tijd>2013-02-15T23:11:00+0100</Tijd>
1799
+
1800
+
1801
+
1802
+
1803
+ <Spoor wijziging="false">3</Spoor>
1804
+
1805
+
1806
+
1807
+
1808
+
1809
+ </ReisStop>
1810
+
1811
+
1812
+
1813
+ <ReisStop>
1814
+ <Naam>Veenendaal-De Klomp</Naam>
1815
+ <Tijd>2013-02-15T23:16:00+0100</Tijd>
1816
+
1817
+ </ReisStop>
1818
+
1819
+ <ReisStop>
1820
+ <Naam>Driebergen-Zeist</Naam>
1821
+ <Tijd>2013-02-15T23:29:00+0100</Tijd>
1822
+
1823
+ </ReisStop>
1824
+
1825
+ <ReisStop>
1826
+ <Naam>Utrecht Centraal</Naam>
1827
+ <Tijd>2013-02-15T23:40:00+0100</Tijd>
1828
+
1829
+ </ReisStop>
1830
+
1831
+ <ReisStop>
1832
+ <Naam>Amsterdam Amstel</Naam>
1833
+ <Tijd>2013-02-15T23:58:00+0100</Tijd>
1834
+
1835
+ </ReisStop>
1836
+
1837
+ <ReisStop>
1838
+ <Naam>Amsterdam Centraal</Naam>
1839
+ <Tijd>2013-02-16T00:06:00+0100</Tijd>
1840
+
1841
+
1842
+
1843
+
1844
+ <Spoor wijziging="false">14b</Spoor>
1845
+
1846
+
1847
+ </ReisStop>
1848
+
1849
+
1850
+
1851
+ </ReisDeel>
1852
+
1853
+ </ReisMogelijkheid>
1854
+
1855
+ <ReisMogelijkheid>
1856
+
1857
+ <AantalOverstappen>1</AantalOverstappen>
1858
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
1859
+
1860
+ <ActueleReisTijd>1:30</ActueleReisTijd>
1861
+
1862
+
1863
+
1864
+ <Optimaal>false</Optimaal>
1865
+ <GeplandeVertrekTijd>2013-02-15T22:59:00+0100</GeplandeVertrekTijd>
1866
+ <ActueleVertrekTijd>2013-02-15T22:59:00+0100</ActueleVertrekTijd>
1867
+ <GeplandeAankomstTijd>2013-02-16T00:29:00+0100</GeplandeAankomstTijd>
1868
+ <ActueleAankomstTijd>2013-02-16T00:29:00+0100</ActueleAankomstTijd>
1869
+
1870
+
1871
+ <Status>VOLGENS-PLAN</Status>
1872
+
1873
+
1874
+ <ReisDeel reisSoort="TRAIN">
1875
+
1876
+
1877
+ <Vervoerder>Connexxion</Vervoerder>
1878
+ <VervoerType>Stoptrein</VervoerType>
1879
+ <RitNummer>31370</RitNummer>
1880
+
1881
+
1882
+ <Status>VOLGENS-PLAN</Status>
1883
+
1884
+
1885
+ <Reisdetails>
1886
+
1887
+ <Reisdetail>Geen AVR-NS</Reisdetail>
1888
+
1889
+ </Reisdetails>
1890
+
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+ <ReisStop>
1898
+
1899
+
1900
+ <Naam>Ede Centrum</Naam>
1901
+ <Tijd>2013-02-15T22:59:00+0100</Tijd>
1902
+
1903
+
1904
+
1905
+
1906
+ <Spoor wijziging="false">1</Spoor>
1907
+
1908
+
1909
+
1910
+
1911
+
1912
+ </ReisStop>
1913
+
1914
+
1915
+
1916
+ <ReisStop>
1917
+ <Naam>Lunteren</Naam>
1918
+ <Tijd>2013-02-15T23:07:00+0100</Tijd>
1919
+
1920
+ </ReisStop>
1921
+
1922
+ <ReisStop>
1923
+ <Naam>Barneveld Centrum</Naam>
1924
+ <Tijd>2013-02-15T23:16:00+0100</Tijd>
1925
+
1926
+ </ReisStop>
1927
+
1928
+ <ReisStop>
1929
+ <Naam>Barneveld Noord</Naam>
1930
+ <Tijd>2013-02-15T23:20:00+0100</Tijd>
1931
+
1932
+ </ReisStop>
1933
+
1934
+ <ReisStop>
1935
+ <Naam>Hoevelaken</Naam>
1936
+ <Tijd>2013-02-15T23:27:00+0100</Tijd>
1937
+
1938
+ </ReisStop>
1939
+
1940
+ <ReisStop>
1941
+ <Naam>Amersfoort</Naam>
1942
+ <Tijd>2013-02-15T23:33:00+0100</Tijd>
1943
+
1944
+
1945
+
1946
+
1947
+ <Spoor wijziging="false">4b</Spoor>
1948
+
1949
+
1950
+ </ReisStop>
1951
+
1952
+
1953
+
1954
+ </ReisDeel>
1955
+
1956
+ <ReisDeel reisSoort="TRAIN">
1957
+
1958
+
1959
+ <Vervoerder>NS</Vervoerder>
1960
+ <VervoerType>Intercity</VervoerType>
1961
+ <RitNummer>1586</RitNummer>
1962
+
1963
+
1964
+ <Status>VOLGENS-PLAN</Status>
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+ <ReisStop>
1974
+
1975
+
1976
+ <Naam>Amersfoort</Naam>
1977
+ <Tijd>2013-02-15T23:56:00+0100</Tijd>
1978
+
1979
+
1980
+
1981
+
1982
+ <Spoor wijziging="false">7</Spoor>
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+ </ReisStop>
1989
+
1990
+
1991
+
1992
+ <ReisStop>
1993
+ <Naam>Hilversum</Naam>
1994
+ <Tijd>2013-02-16T00:08:00+0100</Tijd>
1995
+
1996
+ </ReisStop>
1997
+
1998
+ <ReisStop>
1999
+ <Naam>Amsterdam Centraal</Naam>
2000
+ <Tijd>2013-02-16T00:29:00+0100</Tijd>
2001
+
2002
+
2003
+
2004
+
2005
+ <Spoor wijziging="false">11a</Spoor>
2006
+
2007
+
2008
+ </ReisStop>
2009
+
2010
+
2011
+
2012
+ </ReisDeel>
2013
+
2014
+ </ReisMogelijkheid>
2015
+
2016
+ <ReisMogelijkheid>
2017
+
2018
+ <AantalOverstappen>2</AantalOverstappen>
2019
+ <GeplandeReisTijd>1:30</GeplandeReisTijd>
2020
+
2021
+ <ActueleReisTijd>1:30</ActueleReisTijd>
2022
+
2023
+
2024
+
2025
+ <Optimaal>false</Optimaal>
2026
+ <GeplandeVertrekTijd>2013-02-15T23:29:00+0100</GeplandeVertrekTijd>
2027
+ <ActueleVertrekTijd>2013-02-15T23:29:00+0100</ActueleVertrekTijd>
2028
+ <GeplandeAankomstTijd>2013-02-16T00:59:00+0100</GeplandeAankomstTijd>
2029
+ <ActueleAankomstTijd>2013-02-16T00:59:00+0100</ActueleAankomstTijd>
2030
+
2031
+
2032
+ <Status>VOLGENS-PLAN</Status>
2033
+
2034
+
2035
+ <ReisDeel reisSoort="TRAIN">
2036
+
2037
+
2038
+ <Vervoerder>Connexxion</Vervoerder>
2039
+ <VervoerType>Stoptrein</VervoerType>
2040
+ <RitNummer>31372</RitNummer>
2041
+
2042
+
2043
+ <Status>VOLGENS-PLAN</Status>
2044
+
2045
+
2046
+ <Reisdetails>
2047
+
2048
+ <Reisdetail>Geen AVR-NS</Reisdetail>
2049
+
2050
+ </Reisdetails>
2051
+
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+
2058
+ <ReisStop>
2059
+
2060
+
2061
+ <Naam>Ede Centrum</Naam>
2062
+ <Tijd>2013-02-15T23:29:00+0100</Tijd>
2063
+
2064
+
2065
+
2066
+
2067
+ <Spoor wijziging="false">1</Spoor>
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+ </ReisStop>
2074
+
2075
+
2076
+
2077
+ <ReisStop>
2078
+ <Naam>Lunteren</Naam>
2079
+ <Tijd>2013-02-15T23:37:00+0100</Tijd>
2080
+
2081
+ </ReisStop>
2082
+
2083
+ <ReisStop>
2084
+ <Naam>Barneveld Centrum</Naam>
2085
+ <Tijd>2013-02-15T23:46:00+0100</Tijd>
2086
+
2087
+ </ReisStop>
2088
+
2089
+ <ReisStop>
2090
+ <Naam>Barneveld Noord</Naam>
2091
+ <Tijd>2013-02-15T23:50:00+0100</Tijd>
2092
+
2093
+ </ReisStop>
2094
+
2095
+ <ReisStop>
2096
+ <Naam>Hoevelaken</Naam>
2097
+ <Tijd>2013-02-15T23:57:00+0100</Tijd>
2098
+
2099
+ </ReisStop>
2100
+
2101
+ <ReisStop>
2102
+ <Naam>Amersfoort</Naam>
2103
+ <Tijd>2013-02-16T00:03:00+0100</Tijd>
2104
+
2105
+
2106
+
2107
+
2108
+ <Spoor wijziging="false">4b</Spoor>
2109
+
2110
+
2111
+ </ReisStop>
2112
+
2113
+
2114
+
2115
+ </ReisDeel>
2116
+
2117
+ <ReisDeel reisSoort="TRAIN">
2118
+
2119
+
2120
+ <Vervoerder>NS</Vervoerder>
2121
+ <VervoerType>Intercity</VervoerType>
2122
+ <RitNummer>1786</RitNummer>
2123
+
2124
+
2125
+ <Status>VOLGENS-PLAN</Status>
2126
+
2127
+
2128
+
2129
+
2130
+
2131
+
2132
+
2133
+
2134
+ <ReisStop>
2135
+
2136
+
2137
+ <Naam>Amersfoort</Naam>
2138
+ <Tijd>2013-02-16T00:10:00+0100</Tijd>
2139
+
2140
+
2141
+
2142
+
2143
+ <Spoor wijziging="false">6a</Spoor>
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+ </ReisStop>
2150
+
2151
+
2152
+
2153
+ <ReisStop>
2154
+ <Naam>Utrecht Centraal</Naam>
2155
+ <Tijd>2013-02-16T00:25:00+0100</Tijd>
2156
+
2157
+
2158
+
2159
+
2160
+ <Spoor wijziging="false">8b</Spoor>
2161
+
2162
+
2163
+ </ReisStop>
2164
+
2165
+
2166
+
2167
+ </ReisDeel>
2168
+
2169
+ <ReisDeel reisSoort="TRAIN">
2170
+
2171
+
2172
+ <Vervoerder>NS</Vervoerder>
2173
+ <VervoerType>Intercity</VervoerType>
2174
+ <RitNummer>886</RitNummer>
2175
+
2176
+
2177
+ <Status>VOLGENS-PLAN</Status>
2178
+
2179
+
2180
+
2181
+
2182
+
2183
+
2184
+
2185
+
2186
+ <ReisStop>
2187
+
2188
+
2189
+ <Naam>Utrecht Centraal</Naam>
2190
+ <Tijd>2013-02-16T00:32:00+0100</Tijd>
2191
+
2192
+
2193
+
2194
+
2195
+ <Spoor wijziging="false">5a</Spoor>
2196
+
2197
+
2198
+
2199
+
2200
+
2201
+ </ReisStop>
2202
+
2203
+
2204
+
2205
+ <ReisStop>
2206
+ <Naam>Amsterdam Bijlmer ArenA</Naam>
2207
+ <Tijd>2013-02-17T00:45:00+0100</Tijd>
2208
+
2209
+ </ReisStop>
2210
+
2211
+ <ReisStop>
2212
+ <Naam>Amsterdam Amstel</Naam>
2213
+ <Tijd>2013-02-17T00:50:00+0100</Tijd>
2214
+
2215
+ </ReisStop>
2216
+
2217
+ <ReisStop>
2218
+ <Naam>Amsterdam Centraal</Naam>
2219
+ <Tijd>2013-02-16T00:59:00+0100</Tijd>
2220
+
2221
+
2222
+
2223
+
2224
+ <Spoor wijziging="false">8b</Spoor>
2225
+
2226
+
2227
+ </ReisStop>
2228
+
2229
+
2230
+
2231
+ </ReisDeel>
2232
+
2233
+ </ReisMogelijkheid>
2234
+
2235
+ <ReisMogelijkheid>
2236
+
2237
+ <AantalOverstappen>1</AantalOverstappen>
2238
+ <GeplandeReisTijd>1:39</GeplandeReisTijd>
2239
+
2240
+ <ActueleReisTijd>1:39</ActueleReisTijd>
2241
+
2242
+
2243
+
2244
+ <Optimaal>false</Optimaal>
2245
+ <GeplandeVertrekTijd>2013-02-15T23:29:00+0100</GeplandeVertrekTijd>
2246
+ <ActueleVertrekTijd>2013-02-15T23:29:00+0100</ActueleVertrekTijd>
2247
+ <GeplandeAankomstTijd>2013-02-16T01:08:00+0100</GeplandeAankomstTijd>
2248
+ <ActueleAankomstTijd>2013-02-16T01:08:00+0100</ActueleAankomstTijd>
2249
+
2250
+
2251
+ <Status>VOLGENS-PLAN</Status>
2252
+
2253
+
2254
+ <ReisDeel reisSoort="TRAIN">
2255
+
2256
+
2257
+ <Vervoerder>Connexxion</Vervoerder>
2258
+ <VervoerType>Stoptrein</VervoerType>
2259
+ <RitNummer>31372</RitNummer>
2260
+
2261
+
2262
+ <Status>VOLGENS-PLAN</Status>
2263
+
2264
+
2265
+ <Reisdetails>
2266
+
2267
+ <Reisdetail>Geen AVR-NS</Reisdetail>
2268
+
2269
+ </Reisdetails>
2270
+
2271
+
2272
+
2273
+
2274
+
2275
+
2276
+
2277
+ <ReisStop>
2278
+
2279
+
2280
+ <Naam>Ede Centrum</Naam>
2281
+ <Tijd>2013-02-15T23:29:00+0100</Tijd>
2282
+
2283
+
2284
+
2285
+
2286
+ <Spoor wijziging="false">1</Spoor>
2287
+
2288
+
2289
+
2290
+
2291
+
2292
+ </ReisStop>
2293
+
2294
+
2295
+
2296
+ <ReisStop>
2297
+ <Naam>Lunteren</Naam>
2298
+ <Tijd>2013-02-15T23:37:00+0100</Tijd>
2299
+
2300
+ </ReisStop>
2301
+
2302
+ <ReisStop>
2303
+ <Naam>Barneveld Centrum</Naam>
2304
+ <Tijd>2013-02-15T23:46:00+0100</Tijd>
2305
+
2306
+ </ReisStop>
2307
+
2308
+ <ReisStop>
2309
+ <Naam>Barneveld Noord</Naam>
2310
+ <Tijd>2013-02-15T23:50:00+0100</Tijd>
2311
+
2312
+ </ReisStop>
2313
+
2314
+ <ReisStop>
2315
+ <Naam>Hoevelaken</Naam>
2316
+ <Tijd>2013-02-15T23:57:00+0100</Tijd>
2317
+
2318
+ </ReisStop>
2319
+
2320
+ <ReisStop>
2321
+ <Naam>Amersfoort</Naam>
2322
+ <Tijd>2013-02-16T00:03:00+0100</Tijd>
2323
+
2324
+
2325
+
2326
+
2327
+ <Spoor wijziging="false">4b</Spoor>
2328
+
2329
+
2330
+ </ReisStop>
2331
+
2332
+
2333
+
2334
+ </ReisDeel>
2335
+
2336
+ <ReisDeel reisSoort="TRAIN">
2337
+
2338
+
2339
+ <Vervoerder>NS</Vervoerder>
2340
+ <VervoerType>Sprinter</VervoerType>
2341
+ <RitNummer>5886</RitNummer>
2342
+
2343
+
2344
+ <Status>VOLGENS-PLAN</Status>
2345
+
2346
+
2347
+
2348
+
2349
+
2350
+
2351
+
2352
+
2353
+ <ReisStop>
2354
+
2355
+
2356
+ <Naam>Amersfoort</Naam>
2357
+ <Tijd>2013-02-16T00:15:00+0100</Tijd>
2358
+
2359
+
2360
+
2361
+
2362
+ <Spoor wijziging="false">4a</Spoor>
2363
+
2364
+
2365
+
2366
+
2367
+
2368
+ </ReisStop>
2369
+
2370
+
2371
+
2372
+ <ReisStop>
2373
+ <Naam>Baarn</Naam>
2374
+ <Tijd>2013-02-16T00:22:00+0100</Tijd>
2375
+
2376
+ </ReisStop>
2377
+
2378
+ <ReisStop>
2379
+ <Naam>Hilversum</Naam>
2380
+ <Tijd>2013-02-16T00:30:00+0100</Tijd>
2381
+
2382
+ </ReisStop>
2383
+
2384
+ <ReisStop>
2385
+ <Naam>Hilversum Noord</Naam>
2386
+ <Tijd>2013-02-16T00:32:00+0100</Tijd>
2387
+
2388
+ </ReisStop>
2389
+
2390
+ <ReisStop>
2391
+ <Naam>Bussum Zuid</Naam>
2392
+ <Tijd>2013-02-16T00:35:00+0100</Tijd>
2393
+
2394
+ </ReisStop>
2395
+
2396
+ <ReisStop>
2397
+ <Naam>Naarden-Bussum</Naam>
2398
+ <Tijd>2013-02-16T00:38:00+0100</Tijd>
2399
+
2400
+ </ReisStop>
2401
+
2402
+ <ReisStop>
2403
+ <Naam>Weesp</Naam>
2404
+ <Tijd>2013-02-16T00:51:00+0100</Tijd>
2405
+
2406
+ </ReisStop>
2407
+
2408
+ <ReisStop>
2409
+ <Naam>Diemen</Naam>
2410
+ <Tijd>2013-02-16T00:57:00+0100</Tijd>
2411
+
2412
+ </ReisStop>
2413
+
2414
+ <ReisStop>
2415
+ <Naam>Amsterdam Science Park</Naam>
2416
+ <Tijd>2013-02-16T00:59:00+0100</Tijd>
2417
+
2418
+ </ReisStop>
2419
+
2420
+ <ReisStop>
2421
+ <Naam>Amsterdam Muiderpoort</Naam>
2422
+ <Tijd>2013-02-16T01:02:00+0100</Tijd>
2423
+
2424
+ </ReisStop>
2425
+
2426
+ <ReisStop>
2427
+ <Naam>Amsterdam Centraal</Naam>
2428
+ <Tijd>2013-02-16T01:08:00+0100</Tijd>
2429
+
2430
+
2431
+
2432
+
2433
+ <Spoor wijziging="false">7b</Spoor>
2434
+
2435
+
2436
+ </ReisStop>
2437
+
2438
+
2439
+
2440
+ </ReisDeel>
2441
+
2442
+ </ReisMogelijkheid>
2443
+
2444
+ </ReisMogelijkheden>