ierail 0.4.0 → 0.5.0
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.
- checksums.yaml +5 -5
- data/.coveralls.yml +1 -1
- data/.github/workflows/ruby.yml +34 -0
- data/Gemfile +2 -2
- data/LICENSE.txt +3 -9
- data/README.md +4 -11
- data/fixtures/vcr_cassettes/find_station.yml +3 -3
- data/fixtures/vcr_cassettes/northbound.yml +163 -182
- data/fixtures/vcr_cassettes/southbound.yml +221 -239
- data/fixtures/vcr_cassettes/southbound_from.yml +221 -239
- data/fixtures/vcr_cassettes/station.yml +163 -182
- data/fixtures/vcr_cassettes/station_times.yml +70 -60
- data/fixtures/vcr_cassettes/stations.yml +3 -3
- data/fixtures/vcr_cassettes/train_movements.yml +47 -31
- data/fixtures/vcr_cassettes/trains.yml +202 -247
- data/fixtures/vcr_cassettes/westbound.yml +62 -50
- data/ierail.gemspec +12 -9
- data/lib/core_ext.rb +4 -2
- data/lib/ierail.rb +37 -30
- data/lib/station.rb +2 -0
- data/lib/station_data.rb +10 -0
- data/lib/train.rb +2 -0
- data/lib/train_movement.rb +7 -5
- data/test/unit/helper.rb +13 -8
- data/test/unit/ierail.rb +18 -26
- data/test/unit/station.rb +1 -1
- data/test/unit/station_data.rb +1 -5
- data/test/unit/train.rb +1 -1
- data/test/unit/train_movement.rb +1 -1
- metadata +56 -41
- data/.travis.yml +0 -6
- data/Gemfile.lock +0 -60
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2375f7109a0421ae2e8225da848476434ab4152f3b747186feb00609b36fdb04
|
|
4
|
+
data.tar.gz: 4974d100fc1b33d93de733ee16df0786ae1e43d4d2a8c510b6ae30fb8962975d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7d78fe55a7de764aa1cf675aeabb05c27b872406f34aeda37d020da35bf33c365c8fa5298900474f53aebf52c60605734ab76a9528101993d85688acf33b0f0
|
|
7
|
+
data.tar.gz: d21ca5632ce3cd4c1b15df9e166e6475975f0e14d4ec7caec04a7fb60aae6d629a42e49411c1219cbe78bdaa294f72737010334ebfeb76be141300c665bdfe65
|
data/.coveralls.yml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
service_name: travis_ci
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
+
|
|
8
|
+
name: Ruby
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: ["main"]
|
|
13
|
+
pull_request:
|
|
14
|
+
branches: ["main"]
|
|
15
|
+
|
|
16
|
+
permissions:
|
|
17
|
+
contents: read
|
|
18
|
+
|
|
19
|
+
jobs:
|
|
20
|
+
test:
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
strategy:
|
|
23
|
+
matrix:
|
|
24
|
+
ruby-version: ["3.4.1", "4.0.2"]
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v6
|
|
28
|
+
- name: Set up Ruby
|
|
29
|
+
uses: ruby/setup-ruby@v1
|
|
30
|
+
with:
|
|
31
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
32
|
+
bundler-cache: true
|
|
33
|
+
- name: Run tests
|
|
34
|
+
run: bundle exec rake
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
|
-
Oisin Hurley
|
|
2
|
-
2012
|
|
3
|
-
|
|
4
|
-
In the original BSD license, both occurrences of the phrase "COPYRIGHT HOLDERS AND CONTRIBUTORS" in the disclaimer read "REGENTS AND CONTRIBUTORS".
|
|
5
|
-
|
|
6
|
-
Here is the license template:
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2012, Oisin Hurley
|
|
1
|
+
Copyright (c) 2012-2026, Oisin Hurley
|
|
9
2
|
All rights reserved.
|
|
10
3
|
|
|
11
4
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
12
5
|
|
|
13
6
|
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
14
7
|
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
15
|
-
|
|
8
|
+
|
|
9
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
[](https://travis-ci.org/oisin/ierail)
|
|
2
|
-
[](https://coveralls.io/r/oisin/ierail)
|
|
3
|
-
[](http://badge.fury.io/rb/ierail)
|
|
4
1
|
|
|
5
2
|
## Irish Rail API Ruby Wrapper
|
|
6
3
|
|
|
7
|
-
I wrote most of this on the train, as is appropriate.
|
|
4
|
+
I wrote most of this on the train, as is appropriate.
|
|
8
5
|
|
|
9
|
-
It's a trivial wrapper for the Irish Rail real time (whut?) train times system, in Ruby. It uses the HTTP GET API that was thankfully supplied along with the more *interesting* SOAP API, so a
|
|
6
|
+
It's a trivial wrapper for the Irish Rail real time (whut?) train times system, in Ruby. It uses the HTTP GET API that was thankfully supplied along with the more *interesting* SOAP API, so a straightforward set up with [RestClient](https://github.com/archiloque/rest-client) and [Nokogiri](http://nokogiri.org/) to pull and process the XML data into Hashes.
|
|
10
7
|
|
|
11
8
|
## Usage
|
|
12
9
|
|
|
@@ -101,7 +98,7 @@ Check the [main.rb](main.rb) for additional usage.
|
|
|
101
98
|
|
|
102
99
|
### Testing
|
|
103
100
|
|
|
104
|
-
Rather than having the test suite hit the API, this project is using [VCR](https://github.com/vcr/vcr) alongside [Timecop](https://github.com/travisjeffery/timecop) to use stubbed responses.
|
|
101
|
+
Rather than having the test suite hit the API, this project is using [VCR](https://github.com/vcr/vcr) alongside [Timecop](https://github.com/travisjeffery/timecop) to use stubbed responses.
|
|
105
102
|
These responses are stored in the `fixtures/vcr_cassettes` directory and can be updated by running
|
|
106
103
|
|
|
107
104
|
1. `rm -r fixtures`
|
|
@@ -111,8 +108,4 @@ As the API functionality is highly time dependent, Timecop is used to set/freeze
|
|
|
111
108
|
|
|
112
109
|
---
|
|
113
110
|
|
|
114
|
-
Pull requests welcome
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
[](https://bitdeli.com/free "Bitdeli Badge")
|
|
118
|
-
|
|
111
|
+
Pull requests welcome. Please accompany the pull request with an appropriate test, and if you can, an example here in the README.
|
|
@@ -25,7 +25,7 @@ http_interactions:
|
|
|
25
25
|
Server:
|
|
26
26
|
- ''
|
|
27
27
|
Date:
|
|
28
|
-
-
|
|
28
|
+
- Mon, 05 Oct 2015 20:06:38 GMT
|
|
29
29
|
Content-Length:
|
|
30
30
|
- '428'
|
|
31
31
|
body:
|
|
@@ -36,5 +36,5 @@ http_interactions:
|
|
|
36
36
|
\ <StationDesc>Dublin Connolly</StationDesc>\r\n <StationCode>CNLLY</StationCode>\r\n
|
|
37
37
|
\ </objStationFilter>\r\n</ArrayOfObjStationFilter>"
|
|
38
38
|
http_version:
|
|
39
|
-
recorded_at:
|
|
40
|
-
recorded_with: VCR 2.9.
|
|
39
|
+
recorded_at: Mon, 05 Oct 2015 20:06:38 GMT
|
|
40
|
+
recorded_with: VCR 2.9.3
|
|
@@ -25,217 +25,198 @@ http_interactions:
|
|
|
25
25
|
Server:
|
|
26
26
|
- ''
|
|
27
27
|
Date:
|
|
28
|
-
-
|
|
28
|
+
- Mon, 05 Oct 2015 20:06:37 GMT
|
|
29
29
|
Content-Length:
|
|
30
|
-
- '
|
|
30
|
+
- '14913'
|
|
31
31
|
body:
|
|
32
32
|
encoding: UTF-8
|
|
33
33
|
string: "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<ArrayOfObjStationData
|
|
34
34
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
|
35
|
-
xmlns=\"http://api.irishrail.ie/realtime/\">\r\n <objStationData>\r\n <Servertime>
|
|
36
|
-
\ <Traincode>
|
|
37
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
38
|
-
\ <Traindate>
|
|
39
|
-
\ <
|
|
40
|
-
\ <
|
|
41
|
-
\ <
|
|
42
|
-
\ <Expdepart>
|
|
43
|
-
\ <Schdepart>
|
|
35
|
+
xmlns=\"http://api.irishrail.ie/realtime/\">\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
36
|
+
\ <Traincode>E934 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
37
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
38
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
39
|
+
\ <Origintime>20:25</Origintime>\r\n <Destinationtime>21:33</Destinationtime>\r\n
|
|
40
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Dublin Pearse</Lastlocation>\r\n
|
|
41
|
+
\ <Duein>5</Duein>\r\n <Late>2</Late>\r\n <Exparrival>21:10</Exparrival>\r\n
|
|
42
|
+
\ <Expdepart>21:11</Expdepart>\r\n <Scharrival>21:08</Scharrival>\r\n
|
|
43
|
+
\ <Schdepart>21:09</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
44
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
45
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
46
|
+
\ <Traincode>D931 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
47
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
48
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
49
|
+
\ <Destination>Maynooth</Destination>\r\n <Origintime>21:10</Origintime>\r\n
|
|
50
|
+
\ <Destinationtime>21:56</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
51
|
+
\ <Lastlocation />\r\n <Duein>11</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:16</Exparrival>\r\n
|
|
52
|
+
\ <Expdepart>21:17</Expdepart>\r\n <Scharrival>21:16</Scharrival>\r\n
|
|
53
|
+
\ <Schdepart>21:17</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
44
54
|
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
45
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>
|
|
46
|
-
\ <Traincode>
|
|
47
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
48
|
-
\ <Traindate>
|
|
49
|
-
\ <Destination>
|
|
50
|
-
\ <Destinationtime>
|
|
51
|
-
\ <Lastlocation>Arrived
|
|
52
|
-
\ <Late
|
|
53
|
-
\ <Scharrival>
|
|
55
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
56
|
+
\ <Traincode>E830 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
57
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
58
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
59
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>20:30</Origintime>\r\n
|
|
60
|
+
\ <Destinationtime>21:50</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
61
|
+
\ <Lastlocation>Arrived Blackrock</Lastlocation>\r\n <Duein>19</Duein>\r\n
|
|
62
|
+
\ <Late>1</Late>\r\n <Exparrival>21:24</Exparrival>\r\n <Expdepart>21:25</Expdepart>\r\n
|
|
63
|
+
\ <Scharrival>21:23</Scharrival>\r\n <Schdepart>21:24</Schdepart>\r\n
|
|
54
64
|
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
55
65
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
56
|
-
\ <Servertime>
|
|
66
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>D821
|
|
57
67
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
58
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
59
|
-
\ <Traindate>
|
|
60
|
-
\ <
|
|
61
|
-
\ <
|
|
62
|
-
\ <Duein>
|
|
63
|
-
\ <Expdepart>
|
|
64
|
-
\ <Schdepart>
|
|
65
|
-
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
66
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
67
|
-
\ <Traincode>D929 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
68
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
69
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
70
|
-
\ <Destination>Maynooth</Destination>\r\n <Origintime>19:40</Origintime>\r\n
|
|
71
|
-
\ <Destinationtime>20:26</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
72
|
-
\ <Lastlocation />\r\n <Duein>37</Duein>\r\n <Late>0</Late>\r\n <Exparrival>19:46</Exparrival>\r\n
|
|
73
|
-
\ <Expdepart>19:47</Expdepart>\r\n <Scharrival>19:46</Scharrival>\r\n
|
|
74
|
-
\ <Schdepart>19:47</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
68
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
69
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
70
|
+
\ <Destination>Drogheda</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
71
|
+
\ <Destinationtime>22:32</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
72
|
+
\ <Lastlocation />\r\n <Duein>31</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:36</Exparrival>\r\n
|
|
73
|
+
\ <Expdepart>21:37</Expdepart>\r\n <Scharrival>21:36</Scharrival>\r\n
|
|
74
|
+
\ <Schdepart>21:37</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
75
75
|
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
76
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>
|
|
77
|
-
\ <Traincode>
|
|
78
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
79
|
-
\ <Traindate>
|
|
80
|
-
\ <Origintime>
|
|
81
|
-
\ <Status>
|
|
82
|
-
\ <
|
|
83
|
-
\ <
|
|
76
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
77
|
+
\ <Traincode>E935 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
78
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
79
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
80
|
+
\ <Origintime>20:55</Origintime>\r\n <Destinationtime>22:04</Destinationtime>\r\n
|
|
81
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Killiney</Lastlocation>\r\n
|
|
82
|
+
\ <Duein>35</Duein>\r\n <Late>1</Late>\r\n <Exparrival>21:39</Exparrival>\r\n
|
|
83
|
+
\ <Expdepart>21:41</Expdepart>\r\n <Scharrival>21:38</Scharrival>\r\n
|
|
84
|
+
\ <Schdepart>21:40</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
85
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
86
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
87
|
+
\ <Traincode>E831 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
88
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
89
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
90
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>21:00</Origintime>\r\n
|
|
91
|
+
\ <Destinationtime>22:20</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
92
|
+
\ <Lastlocation>Departed Greystones</Lastlocation>\r\n <Duein>49</Duein>\r\n
|
|
93
|
+
\ <Late>1</Late>\r\n <Exparrival>21:54</Exparrival>\r\n <Expdepart>21:55</Expdepart>\r\n
|
|
94
|
+
\ <Scharrival>21:53</Scharrival>\r\n <Schdepart>21:54</Schdepart>\r\n
|
|
84
95
|
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
85
96
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
86
|
-
\ <Servertime>
|
|
97
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>E936
|
|
87
98
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
88
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
89
|
-
\ <Traindate>
|
|
90
|
-
\ <Origintime>
|
|
91
|
-
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>
|
|
92
|
-
\ <Late>0</Late>\r\n <Exparrival>
|
|
93
|
-
\ <Scharrival>
|
|
99
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
100
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
101
|
+
\ <Origintime>21:25</Origintime>\r\n <Destinationtime>22:35</Destinationtime>\r\n
|
|
102
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>64</Duein>\r\n
|
|
103
|
+
\ <Late>0</Late>\r\n <Exparrival>22:09</Exparrival>\r\n <Expdepart>22:10</Expdepart>\r\n
|
|
104
|
+
\ <Scharrival>22:09</Scharrival>\r\n <Schdepart>22:10</Schdepart>\r\n
|
|
94
105
|
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
95
106
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
96
|
-
\ <Servertime>
|
|
107
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>D932
|
|
97
108
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
98
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
99
|
-
\ <Traindate>
|
|
100
|
-
\ <Destination>Maynooth</Destination>\r\n <Origintime>
|
|
101
|
-
\ <Destinationtime>
|
|
102
|
-
\ <Lastlocation />\r\n <Duein>
|
|
103
|
-
\ <Expdepart>
|
|
104
|
-
\ <Schdepart>
|
|
109
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
110
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
111
|
+
\ <Destination>Maynooth</Destination>\r\n <Origintime>22:12</Origintime>\r\n
|
|
112
|
+
\ <Destinationtime>22:58</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
113
|
+
\ <Lastlocation />\r\n <Duein>73</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:18</Exparrival>\r\n
|
|
114
|
+
\ <Expdepart>22:19</Expdepart>\r\n <Scharrival>22:18</Scharrival>\r\n
|
|
115
|
+
\ <Schdepart>22:19</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
105
116
|
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
106
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>
|
|
107
|
-
\ <Traincode>
|
|
108
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
109
|
-
\ <Traindate>
|
|
110
|
-
\ <Destination>
|
|
111
|
-
\ <Destinationtime>
|
|
112
|
-
\ <Lastlocation />\r\n <Duein>
|
|
113
|
-
\ <Expdepart>
|
|
114
|
-
\ <Schdepart>
|
|
115
|
-
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
116
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
117
|
-
\ <Traincode>E828 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
118
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
119
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
120
|
-
\ <Destination>Malahide</Destination>\r\n <Origintime>19:30</Origintime>\r\n
|
|
121
|
-
\ <Destinationtime>20:50</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
122
|
-
\ <Lastlocation />\r\n <Duein>74</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:23</Exparrival>\r\n
|
|
123
|
-
\ <Expdepart>20:24</Expdepart>\r\n <Scharrival>20:23</Scharrival>\r\n
|
|
124
|
-
\ <Schdepart>20:24</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
117
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
118
|
+
\ <Traincode>E832 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
119
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
120
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
121
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
122
|
+
\ <Destinationtime>22:50</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
123
|
+
\ <Lastlocation />\r\n <Duein>78</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:23</Exparrival>\r\n
|
|
124
|
+
\ <Expdepart>22:24</Expdepart>\r\n <Scharrival>22:23</Scharrival>\r\n
|
|
125
|
+
\ <Schdepart>22:24</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
125
126
|
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
126
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>
|
|
127
|
-
\ <Traincode>
|
|
128
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
129
|
-
\ <Traindate>
|
|
130
|
-
\
|
|
131
|
-
\ <Status>
|
|
132
|
-
\ <
|
|
133
|
-
\ <
|
|
134
|
-
\ <
|
|
135
|
-
\ <
|
|
136
|
-
\
|
|
137
|
-
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
138
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
139
|
-
\ <Traindate>
|
|
140
|
-
\ <
|
|
141
|
-
\ <
|
|
142
|
-
\ <
|
|
143
|
-
\ <
|
|
144
|
-
\ <
|
|
145
|
-
\ <
|
|
127
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
128
|
+
\ <Traincode>A913 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
129
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
130
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Sligo</Origin>\r\n <Destination>Dublin
|
|
131
|
+
Connolly</Destination>\r\n <Origintime>18:00</Origintime>\r\n <Destinationtime>21:08</Destinationtime>\r\n
|
|
132
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Arrived Drumcondra</Lastlocation>\r\n
|
|
133
|
+
\ <Duein>6</Duein>\r\n <Late>4</Late>\r\n <Exparrival>21:12</Exparrival>\r\n
|
|
134
|
+
\ <Expdepart>00:00</Expdepart>\r\n <Scharrival>21:08</Scharrival>\r\n
|
|
135
|
+
\ <Schdepart>00:00</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
136
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>D</Locationtype>\r\n
|
|
137
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
138
|
+
\ <Traincode>E230 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
139
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
140
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
141
|
+
\ <Origintime>20:45</Origintime>\r\n <Destinationtime>21:57</Destinationtime>\r\n
|
|
142
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Killester</Lastlocation>\r\n
|
|
143
|
+
\ <Duein>9</Duein>\r\n <Late>2</Late>\r\n <Exparrival>21:14</Exparrival>\r\n
|
|
144
|
+
\ <Expdepart>21:15</Expdepart>\r\n <Scharrival>21:12</Scharrival>\r\n
|
|
145
|
+
\ <Schdepart>21:13</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
146
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
147
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
148
|
+
\ <Traincode>E130 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
149
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
150
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
151
|
+
\ <Destination>Greystones</Destination>\r\n <Origintime>21:00</Origintime>\r\n
|
|
152
|
+
\ <Destinationtime>22:20</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
153
|
+
\ <Lastlocation>Departed Portmarnock</Lastlocation>\r\n <Duein>20</Duein>\r\n
|
|
154
|
+
\ <Late>1</Late>\r\n <Exparrival>21:25</Exparrival>\r\n <Expdepart>21:26</Expdepart>\r\n
|
|
155
|
+
\ <Scharrival>21:24</Scharrival>\r\n <Schdepart>21:25</Schdepart>\r\n
|
|
156
|
+
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
146
157
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
147
|
-
\ <Servertime>
|
|
158
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>P670
|
|
148
159
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
149
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
150
|
-
\ <Traindate>
|
|
151
|
-
\ <
|
|
152
|
-
\ <
|
|
153
|
-
\ <
|
|
154
|
-
\ <
|
|
155
|
-
\ <
|
|
156
|
-
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
157
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
158
|
-
\ <Traincode>E227 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
159
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
160
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
161
|
-
\ <Destination>Bray</Destination>\r\n <Origintime>19:15</Origintime>\r\n
|
|
162
|
-
\ <Destinationtime>20:24</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
163
|
-
\ <Lastlocation />\r\n <Duein>30</Duein>\r\n <Late>0</Late>\r\n <Exparrival>19:39</Exparrival>\r\n
|
|
164
|
-
\ <Expdepart>19:40</Expdepart>\r\n <Scharrival>19:39</Scharrival>\r\n
|
|
165
|
-
\ <Schdepart>19:40</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
166
|
-
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
167
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
168
|
-
\ <Traincode>P622 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
169
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
170
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Drogheda</Origin>\r\n
|
|
171
|
-
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>18:50</Origintime>\r\n
|
|
172
|
-
\ <Destinationtime>19:51</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
173
|
-
\ <Lastlocation>Departed Balbriggan</Lastlocation>\r\n <Duein>37</Duein>\r\n
|
|
174
|
-
\ <Late>1</Late>\r\n <Exparrival>19:46</Exparrival>\r\n <Expdepart>19:47</Expdepart>\r\n
|
|
175
|
-
\ <Scharrival>19:45</Scharrival>\r\n <Schdepart>19:46</Schdepart>\r\n
|
|
160
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
161
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
|
|
162
|
+
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>20:47</Origintime>\r\n
|
|
163
|
+
\ <Destinationtime>21:34</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
164
|
+
\ <Lastlocation>Arrived Clonsilla</Lastlocation>\r\n <Duein>28</Duein>\r\n
|
|
165
|
+
\ <Late>5</Late>\r\n <Exparrival>21:33</Exparrival>\r\n <Expdepart>21:34</Expdepart>\r\n
|
|
166
|
+
\ <Scharrival>21:28</Scharrival>\r\n <Schdepart>21:29</Schdepart>\r\n
|
|
176
167
|
\ <Direction>Southbound</Direction>\r\n <Traintype>Train</Traintype>\r\n
|
|
177
168
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
178
|
-
\ <Servertime>
|
|
169
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>E231
|
|
179
170
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
180
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
181
|
-
\ <Traindate>
|
|
182
|
-
\ <Origintime>
|
|
183
|
-
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>
|
|
184
|
-
\ <Late>0</Late>\r\n <Exparrival>
|
|
185
|
-
\ <Scharrival>
|
|
171
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
172
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
173
|
+
\ <Origintime>21:15</Origintime>\r\n <Destinationtime>22:24</Destinationtime>\r\n
|
|
174
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>34</Duein>\r\n
|
|
175
|
+
\ <Late>0</Late>\r\n <Exparrival>21:39</Exparrival>\r\n <Expdepart>21:40</Expdepart>\r\n
|
|
176
|
+
\ <Scharrival>21:39</Scharrival>\r\n <Schdepart>21:40</Schdepart>\r\n
|
|
186
177
|
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
187
178
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
188
|
-
\ <Servertime>
|
|
179
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>P671
|
|
189
180
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
190
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
191
|
-
\ <Traindate>
|
|
192
|
-
\ <Destination>
|
|
193
|
-
\ <Destinationtime>
|
|
194
|
-
\ <Lastlocation />\r\n <Duein>
|
|
195
|
-
\ <Expdepart>
|
|
196
|
-
\ <Schdepart>
|
|
197
|
-
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
198
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
199
|
-
\ <Traincode>A133 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
200
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
201
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Belfast Central</Origin>\r\n
|
|
202
|
-
\ <Destination>Dublin Connolly</Destination>\r\n <Origintime>18:05</Origintime>\r\n
|
|
203
|
-
\ <Destinationtime>20:15</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
204
|
-
\ <Lastlocation />\r\n <Duein>65</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:15</Exparrival>\r\n
|
|
205
|
-
\ <Expdepart>00:00</Expdepart>\r\n <Scharrival>20:15</Scharrival>\r\n
|
|
206
|
-
\ <Schdepart>00:00</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
207
|
-
\ <Traintype>Train</Traintype>\r\n <Locationtype>D</Locationtype>\r\n
|
|
208
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n
|
|
209
|
-
\ <Traincode>P668 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
210
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
|
|
211
|
-
\ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
|
|
212
|
-
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>19:41</Origintime>\r\n
|
|
213
|
-
\ <Destinationtime>20:26</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
214
|
-
\ <Lastlocation />\r\n <Duein>71</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:20</Exparrival>\r\n
|
|
215
|
-
\ <Expdepart>20:21</Expdepart>\r\n <Scharrival>20:20</Scharrival>\r\n
|
|
216
|
-
\ <Schdepart>20:21</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
181
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
182
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
|
|
183
|
+
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>21:05</Origintime>\r\n
|
|
184
|
+
\ <Destinationtime>21:49</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
185
|
+
\ <Lastlocation />\r\n <Duein>38</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:43</Exparrival>\r\n
|
|
186
|
+
\ <Expdepart>21:44</Expdepart>\r\n <Scharrival>21:43</Scharrival>\r\n
|
|
187
|
+
\ <Schdepart>21:44</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
217
188
|
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
218
|
-
\ </objStationData>\r\n <objStationData>\r\n <Servertime>
|
|
219
|
-
\ <Traincode>
|
|
220
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
221
|
-
\ <Traindate>
|
|
222
|
-
\ <
|
|
223
|
-
\ <
|
|
224
|
-
\ <
|
|
225
|
-
\ <
|
|
189
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
190
|
+
\ <Traincode>E131 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
191
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
192
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
193
|
+
\ <Destination>Greystones</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
194
|
+
\ <Destinationtime>22:50</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
195
|
+
\ <Lastlocation />\r\n <Duein>49</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:54</Exparrival>\r\n
|
|
196
|
+
\ <Expdepart>21:55</Expdepart>\r\n <Scharrival>21:54</Scharrival>\r\n
|
|
197
|
+
\ <Schdepart>21:55</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
198
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
199
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n
|
|
200
|
+
\ <Traincode>E232 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
201
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
202
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
203
|
+
\ <Origintime>21:45</Origintime>\r\n <Destinationtime>22:54</Destinationtime>\r\n
|
|
204
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>64</Duein>\r\n
|
|
205
|
+
\ <Late>0</Late>\r\n <Exparrival>22:09</Exparrival>\r\n <Expdepart>22:10</Expdepart>\r\n
|
|
206
|
+
\ <Scharrival>22:09</Scharrival>\r\n <Schdepart>22:10</Schdepart>\r\n
|
|
226
207
|
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
227
208
|
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
228
|
-
\ <Servertime>
|
|
209
|
+
\ <Servertime>2015-10-05T21:06:38.563</Servertime>\r\n <Traincode>E710
|
|
229
210
|
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
230
|
-
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>
|
|
231
|
-
\ <Traindate>
|
|
232
|
-
\ <Destination>
|
|
233
|
-
\ <Destinationtime>
|
|
234
|
-
\ <Lastlocation />\r\n <Duein>
|
|
235
|
-
\ <Expdepart>
|
|
236
|
-
\ <Schdepart>
|
|
237
|
-
\ <Traintype>DART</Traintype>\r\n <Locationtype>
|
|
211
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
212
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
213
|
+
\ <Destination>Dublin Connolly</Destination>\r\n <Origintime>22:10</Origintime>\r\n
|
|
214
|
+
\ <Destinationtime>22:35</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
215
|
+
\ <Lastlocation />\r\n <Duein>89</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:35</Exparrival>\r\n
|
|
216
|
+
\ <Expdepart>00:00</Expdepart>\r\n <Scharrival>22:35</Scharrival>\r\n
|
|
217
|
+
\ <Schdepart>00:00</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
218
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>D</Locationtype>\r\n
|
|
238
219
|
\ </objStationData>\r\n</ArrayOfObjStationData>"
|
|
239
220
|
http_version:
|
|
240
|
-
recorded_at:
|
|
241
|
-
recorded_with: VCR 2.9.
|
|
221
|
+
recorded_at: Mon, 05 Oct 2015 20:06:37 GMT
|
|
222
|
+
recorded_with: VCR 2.9.3
|