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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: dcec3d20ba10592e6c62c3f550348bf3cc824447
4
- data.tar.gz: 599ded72790ac9e28913b631fdf5402f4cc97125
2
+ SHA256:
3
+ metadata.gz: 2375f7109a0421ae2e8225da848476434ab4152f3b747186feb00609b36fdb04
4
+ data.tar.gz: 4974d100fc1b33d93de733ee16df0786ae1e43d4d2a8c510b6ae30fb8962975d
5
5
  SHA512:
6
- metadata.gz: 44b06afc0d1b59e498f868018182a1deb8ef1a760868d2516a0389d498f1754f45fcfbe8e84405f2faef3a84575c576b067846d82481eb03b2f41a9d6382344a
7
- data.tar.gz: a7152722377491ba6d849d5d3a25ee603043642386645c08b65c23ea6f2362e98509c9d31d068cdfe63a97a3e9aefd92472bcf229cb355415cd45e59d0d116a8
6
+ metadata.gz: e7d78fe55a7de764aa1cf675aeabb05c27b872406f34aeda37d020da35bf33c365c8fa5298900474f53aebf52c60605734ab76a9528101993d85688acf33b0f0
7
+ data.tar.gz: d21ca5632ce3cd4c1b15df9e166e6475975f0e14d4ec7caec04a7fb60aae6d629a42e49411c1219cbe78bdaa294f72737010334ebfeb76be141300c665bdfe65
data/.coveralls.yml CHANGED
@@ -1 +1 @@
1
- service: travis_ci
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
@@ -2,5 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'coveralls', require: false
6
- gem 'rake'
5
+ gem 'simplecov', require: false, group: :test
6
+ gem 'rake'
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
- 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.
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
- [![Build Status](https://travis-ci.org/oisin/ierail.png?branch=master)](https://travis-ci.org/oisin/ierail)
2
- [![Coverage Status](https://coveralls.io/repos/oisin/ierail/badge.png?branch=master)](https://coveralls.io/r/oisin/ierail)
3
- [![Gem Version](https://badge.fury.io/rb/ierail.png)](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 tiddly simple set up with [RestClient](https://github.com/archiloque/rest-client) and [Nokogiri](http://nokogiri.org/) (two of my favourite things ever) to pull and process the XML data into Hashes for great value.
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, because there's damn all in it at the moment. Please accompany the pull request with an appropriate test, and if you can, an example here in the README.
115
-
116
-
117
- [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/oisin/ierail/trend.png)](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
- - Sat, 19 Apr 2014 18:10:55 GMT
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: Sat, 19 Apr 2014 18:10:57 GMT
40
- recorded_with: VCR 2.9.0
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
- - Sat, 19 Apr 2014 18:10:55 GMT
28
+ - Mon, 05 Oct 2015 20:06:37 GMT
29
29
  Content-Length:
30
- - '16433'
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>2014-04-19T19:10:55.34</Servertime>\r\n
36
- \ <Traincode>D819 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
37
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
38
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
39
- \ <Destination>Drogheda</Destination>\r\n <Origintime>19:13</Origintime>\r\n
40
- \ <Destinationtime>20:16</Destinationtime>\r\n <Status>No Information</Status>\r\n
41
- \ <Lastlocation />\r\n <Duein>10</Duein>\r\n <Late>0</Late>\r\n <Exparrival>19:19</Exparrival>\r\n
42
- \ <Expdepart>19:20</Expdepart>\r\n <Scharrival>19:19</Scharrival>\r\n
43
- \ <Schdepart>19:20</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n
46
- \ <Traincode>E930 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
47
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
48
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Greystones</Origin>\r\n
49
- \ <Destination>Howth</Destination>\r\n <Origintime>18:30</Origintime>\r\n
50
- \ <Destinationtime>19:52</Destinationtime>\r\n <Status>En Route</Status>\r\n
51
- \ <Lastlocation>Arrived Booterstown</Lastlocation>\r\n <Duein>17</Duein>\r\n
52
- \ <Late>-1</Late>\r\n <Exparrival>19:26</Exparrival>\r\n <Expdepart>19:27</Expdepart>\r\n
53
- \ <Scharrival>19:27</Scharrival>\r\n <Schdepart>19:28</Schdepart>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E827
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>19:10:55</Querytime>\r\n
59
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Malahide</Destination>\r\n
60
- \ <Origintime>18:55</Origintime>\r\n <Destinationtime>20:05</Destinationtime>\r\n
61
- \ <Status>En Route</Status>\r\n <Lastlocation>Arrived Glenageary</Lastlocation>\r\n
62
- \ <Duein>30</Duein>\r\n <Late>1</Late>\r\n <Exparrival>19:39</Exparrival>\r\n
63
- \ <Expdepart>19:40</Expdepart>\r\n <Scharrival>19:38</Scharrival>\r\n
64
- \ <Schdepart>19:39</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n
77
- \ <Traincode>E931 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
78
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
79
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
80
- \ <Origintime>19:10</Origintime>\r\n <Destinationtime>20:18</Destinationtime>\r\n
81
- \ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>44</Duein>\r\n
82
- \ <Late>0</Late>\r\n <Exparrival>19:53</Exparrival>\r\n <Expdepart>19:54</Expdepart>\r\n
83
- \ <Scharrival>19:53</Scharrival>\r\n <Schdepart>19:54</Schdepart>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E932
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>19:10:55</Querytime>\r\n
89
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
90
- \ <Origintime>19:25</Origintime>\r\n <Destinationtime>20:33</Destinationtime>\r\n
91
- \ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>58</Duein>\r\n
92
- \ <Late>0</Late>\r\n <Exparrival>20:07</Exparrival>\r\n <Expdepart>20:08</Expdepart>\r\n
93
- \ <Scharrival>20:07</Scharrival>\r\n <Schdepart>20:08</Schdepart>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>D930
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>19:10:55</Querytime>\r\n
99
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
100
- \ <Destination>Maynooth</Destination>\r\n <Origintime>20:08</Origintime>\r\n
101
- \ <Destinationtime>20:54</Destinationtime>\r\n <Status>No Information</Status>\r\n
102
- \ <Lastlocation />\r\n <Duein>64</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:13</Exparrival>\r\n
103
- \ <Expdepart>20:14</Expdepart>\r\n <Scharrival>20:13</Scharrival>\r\n
104
- \ <Schdepart>20:14</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n
107
- \ <Traincode>D820 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
108
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
109
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
110
- \ <Destination>Drogheda</Destination>\r\n <Origintime>20:13</Origintime>\r\n
111
- \ <Destinationtime>21:15</Destinationtime>\r\n <Status>No Information</Status>\r\n
112
- \ <Lastlocation />\r\n <Duein>70</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:19</Exparrival>\r\n
113
- \ <Expdepart>20:20</Expdepart>\r\n <Scharrival>20:19</Scharrival>\r\n
114
- \ <Schdepart>20:20</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n
127
- \ <Traincode>E933 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
128
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
129
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
130
- \ <Origintime>19:55</Origintime>\r\n <Destinationtime>21:02</Destinationtime>\r\n
131
- \ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>88</Duein>\r\n
132
- \ <Late>0</Late>\r\n <Exparrival>20:37</Exparrival>\r\n <Expdepart>20:38</Expdepart>\r\n
133
- \ <Scharrival>20:37</Scharrival>\r\n <Schdepart>20:38</Schdepart>\r\n
134
- \ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
135
- \ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
136
- \ <Servertime>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>P667
137
- </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
138
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
139
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
140
- \ <Destination>Dublin Pearse</Destination>\r\n <Origintime>18:40</Origintime>\r\n
141
- \ <Destinationtime>19:23</Destinationtime>\r\n <Status>En Route</Status>\r\n
142
- \ <Lastlocation>Departed Ashtown</Lastlocation>\r\n <Duein>12</Duein>\r\n
143
- \ <Late>3</Late>\r\n <Exparrival>19:22</Exparrival>\r\n <Expdepart>19:22</Expdepart>\r\n
144
- \ <Scharrival>19:18</Scharrival>\r\n <Schdepart>19:19</Schdepart>\r\n
145
- \ <Direction>Southbound</Direction>\r\n <Traintype>Train</Traintype>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E126
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>19:10:55</Querytime>\r\n
150
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Greystones</Destination>\r\n
151
- \ <Origintime>19:00</Origintime>\r\n <Destinationtime>20:20</Destinationtime>\r\n
152
- \ <Status>En Route</Status>\r\n <Lastlocation>Departed Howth Junction</Lastlocation>\r\n
153
- \ <Duein>15</Duein>\r\n <Late>0</Late>\r\n <Exparrival>19:24</Exparrival>\r\n
154
- \ <Expdepart>19:25</Expdepart>\r\n <Scharrival>19:24</Scharrival>\r\n
155
- \ <Schdepart>19:25</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E252
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>19:10:55</Querytime>\r\n
181
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
182
- \ <Origintime>19:30</Origintime>\r\n <Destinationtime>20:39</Destinationtime>\r\n
183
- \ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>45</Duein>\r\n
184
- \ <Late>0</Late>\r\n <Exparrival>19:54</Exparrival>\r\n <Expdepart>19:55</Expdepart>\r\n
185
- \ <Scharrival>19:54</Scharrival>\r\n <Schdepart>19:55</Schdepart>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E228
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>19:10:55</Querytime>\r\n
191
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Malahide</Origin>\r\n
192
- \ <Destination>Bray</Destination>\r\n <Origintime>19:45</Origintime>\r\n
193
- \ <Destinationtime>20:54</Destinationtime>\r\n <Status>No Information</Status>\r\n
194
- \ <Lastlocation />\r\n <Duein>60</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:09</Exparrival>\r\n
195
- \ <Expdepart>20:10</Expdepart>\r\n <Scharrival>20:09</Scharrival>\r\n
196
- \ <Schdepart>20:10</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n
219
- \ <Traincode>E128 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
220
- \ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>19:10:55</Querytime>\r\n
221
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Greystones</Destination>\r\n
222
- \ <Origintime>20:00</Origintime>\r\n <Destinationtime>21:20</Destinationtime>\r\n
223
- \ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>75</Duein>\r\n
224
- \ <Late>0</Late>\r\n <Exparrival>20:24</Exparrival>\r\n <Expdepart>20:25</Expdepart>\r\n
225
- \ <Scharrival>20:24</Scharrival>\r\n <Schdepart>20:25</Schdepart>\r\n
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>2014-04-19T19:10:55.34</Servertime>\r\n <Traincode>E229
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>19:10:55</Querytime>\r\n
231
- \ <Traindate>19 Apr 2014</Traindate>\r\n <Origin>Malahide</Origin>\r\n
232
- \ <Destination>Bray</Destination>\r\n <Origintime>20:15</Origintime>\r\n
233
- \ <Destinationtime>21:24</Destinationtime>\r\n <Status>No Information</Status>\r\n
234
- \ <Lastlocation />\r\n <Duein>90</Duein>\r\n <Late>0</Late>\r\n <Exparrival>20:39</Exparrival>\r\n
235
- \ <Expdepart>20:40</Expdepart>\r\n <Scharrival>20:39</Scharrival>\r\n
236
- \ <Schdepart>20:40</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
237
- \ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
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: Sat, 19 Apr 2014 18:10:57 GMT
241
- recorded_with: VCR 2.9.0
221
+ recorded_at: Mon, 05 Oct 2015 20:06:37 GMT
222
+ recorded_with: VCR 2.9.3