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
|
@@ -1,241 +1,223 @@
|
|
|
1
1
|
---
|
|
2
2
|
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
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
|
|
226
|
-
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
227
|
-
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
228
|
-
\ <Servertime>2014-04-19T19:10:55.46</Servertime>\r\n <Traincode>E229
|
|
229
|
-
</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
|
|
238
|
-
\ </objStationData>\r\n</ArrayOfObjStationData>"
|
|
239
|
-
http_version:
|
|
240
|
-
recorded_at: Sat, 19 Apr 2014 18:10:57 GMT
|
|
241
|
-
recorded_with: VCR 2.9.0
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://api.irishrail.ie/realtime/realtime.asmx/getStationDataByNameXML?StationDesc=Dublin%20Connolly
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ""
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*; q=0.5, application/xml"
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip, deflate
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Cache-Control:
|
|
22
|
+
- private, max-age=0
|
|
23
|
+
Content-Type:
|
|
24
|
+
- text/xml; charset=utf-8
|
|
25
|
+
Server:
|
|
26
|
+
- ""
|
|
27
|
+
Date:
|
|
28
|
+
- Mon, 05 Oct 2015 20:06:36 GMT
|
|
29
|
+
Content-Length:
|
|
30
|
+
- "14895"
|
|
31
|
+
body:
|
|
32
|
+
encoding: UTF-8
|
|
33
|
+
string:
|
|
34
|
+
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<ArrayOfObjStationData
|
|
35
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
|
36
|
+
xmlns=\"http://api.irishrail.ie/realtime/\">\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
37
|
+
\ <Traincode>E934 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
38
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
39
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
40
|
+
\ <Origintime>20:25</Origintime>\r\n <Destinationtime>21:33</Destinationtime>\r\n
|
|
41
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Dublin Pearse</Lastlocation>\r\n
|
|
42
|
+
\ <Duein>5</Duein>\r\n <Late>2</Late>\r\n <Exparrival>21:10</Exparrival>\r\n
|
|
43
|
+
\ <Expdepart>21:11</Expdepart>\r\n <Scharrival>21:08</Scharrival>\r\n
|
|
44
|
+
\ <Schdepart>21:09</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
45
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
46
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
47
|
+
\ <Traincode>D931 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
48
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
49
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
50
|
+
\ <Destination>Maynooth</Destination>\r\n <Origintime>21:10</Origintime>\r\n
|
|
51
|
+
\ <Destinationtime>21:56</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
52
|
+
\ <Lastlocation />\r\n <Duein>11</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:16</Exparrival>\r\n
|
|
53
|
+
\ <Expdepart>21:17</Expdepart>\r\n <Scharrival>21:16</Scharrival>\r\n
|
|
54
|
+
\ <Schdepart>21:17</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
55
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
56
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
57
|
+
\ <Traincode>E830 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
58
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
59
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
60
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>20:30</Origintime>\r\n
|
|
61
|
+
\ <Destinationtime>21:50</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
62
|
+
\ <Lastlocation>Arrived Blackrock</Lastlocation>\r\n <Duein>19</Duein>\r\n
|
|
63
|
+
\ <Late>1</Late>\r\n <Exparrival>21:24</Exparrival>\r\n <Expdepart>21:25</Expdepart>\r\n
|
|
64
|
+
\ <Scharrival>21:23</Scharrival>\r\n <Schdepart>21:24</Schdepart>\r\n
|
|
65
|
+
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
66
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
67
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>D821
|
|
68
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
69
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
70
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
71
|
+
\ <Destination>Drogheda</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
72
|
+
\ <Destinationtime>22:32</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
73
|
+
\ <Lastlocation />\r\n <Duein>31</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:36</Exparrival>\r\n
|
|
74
|
+
\ <Expdepart>21:37</Expdepart>\r\n <Scharrival>21:36</Scharrival>\r\n
|
|
75
|
+
\ <Schdepart>21:37</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
76
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
77
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
78
|
+
\ <Traincode>E935 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
79
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
80
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
81
|
+
\ <Origintime>20:55</Origintime>\r\n <Destinationtime>22:04</Destinationtime>\r\n
|
|
82
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Killiney</Lastlocation>\r\n
|
|
83
|
+
\ <Duein>35</Duein>\r\n <Late>1</Late>\r\n <Exparrival>21:39</Exparrival>\r\n
|
|
84
|
+
\ <Expdepart>21:41</Expdepart>\r\n <Scharrival>21:38</Scharrival>\r\n
|
|
85
|
+
\ <Schdepart>21:40</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
86
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
87
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
88
|
+
\ <Traincode>E831 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
89
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
90
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
91
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>21:00</Origintime>\r\n
|
|
92
|
+
\ <Destinationtime>22:20</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
93
|
+
\ <Lastlocation>Departed Greystones</Lastlocation>\r\n <Duein>49</Duein>\r\n
|
|
94
|
+
\ <Late>1</Late>\r\n <Exparrival>21:54</Exparrival>\r\n <Expdepart>21:55</Expdepart>\r\n
|
|
95
|
+
\ <Scharrival>21:53</Scharrival>\r\n <Schdepart>21:54</Schdepart>\r\n
|
|
96
|
+
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
97
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
98
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>E936
|
|
99
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
100
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
101
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Bray</Origin>\r\n <Destination>Howth</Destination>\r\n
|
|
102
|
+
\ <Origintime>21:25</Origintime>\r\n <Destinationtime>22:35</Destinationtime>\r\n
|
|
103
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>64</Duein>\r\n
|
|
104
|
+
\ <Late>0</Late>\r\n <Exparrival>22:09</Exparrival>\r\n <Expdepart>22:10</Expdepart>\r\n
|
|
105
|
+
\ <Scharrival>22:09</Scharrival>\r\n <Schdepart>22:10</Schdepart>\r\n
|
|
106
|
+
\ <Direction>Northbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
107
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
108
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>D932
|
|
109
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
110
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
111
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Dublin Pearse</Origin>\r\n
|
|
112
|
+
\ <Destination>Maynooth</Destination>\r\n <Origintime>22:12</Origintime>\r\n
|
|
113
|
+
\ <Destinationtime>22:58</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
114
|
+
\ <Lastlocation />\r\n <Duein>73</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:18</Exparrival>\r\n
|
|
115
|
+
\ <Expdepart>22:19</Expdepart>\r\n <Scharrival>22:18</Scharrival>\r\n
|
|
116
|
+
\ <Schdepart>22:19</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
117
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
118
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
119
|
+
\ <Traincode>E832 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
120
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
121
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Greystones</Origin>\r\n
|
|
122
|
+
\ <Destination>Malahide</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
123
|
+
\ <Destinationtime>22:50</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
124
|
+
\ <Lastlocation />\r\n <Duein>78</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:23</Exparrival>\r\n
|
|
125
|
+
\ <Expdepart>22:24</Expdepart>\r\n <Scharrival>22:23</Scharrival>\r\n
|
|
126
|
+
\ <Schdepart>22:24</Schdepart>\r\n <Direction>Northbound</Direction>\r\n
|
|
127
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
128
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
129
|
+
\ <Traincode>A913 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
130
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
131
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Sligo</Origin>\r\n <Destination>Dublin
|
|
132
|
+
Connolly</Destination>\r\n <Origintime>18:00</Origintime>\r\n <Destinationtime>21:08</Destinationtime>\r\n
|
|
133
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Arrived Drumcondra</Lastlocation>\r\n
|
|
134
|
+
\ <Duein>6</Duein>\r\n <Late>4</Late>\r\n <Exparrival>21:12</Exparrival>\r\n
|
|
135
|
+
\ <Expdepart>00:00</Expdepart>\r\n <Scharrival>21:08</Scharrival>\r\n
|
|
136
|
+
\ <Schdepart>00:00</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
137
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>D</Locationtype>\r\n
|
|
138
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
139
|
+
\ <Traincode>E230 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
140
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
141
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
142
|
+
\ <Origintime>20:45</Origintime>\r\n <Destinationtime>21:57</Destinationtime>\r\n
|
|
143
|
+
\ <Status>En Route</Status>\r\n <Lastlocation>Departed Killester</Lastlocation>\r\n
|
|
144
|
+
\ <Duein>9</Duein>\r\n <Late>2</Late>\r\n <Exparrival>21:14</Exparrival>\r\n
|
|
145
|
+
\ <Expdepart>21:15</Expdepart>\r\n <Scharrival>21:12</Scharrival>\r\n
|
|
146
|
+
\ <Schdepart>21:13</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
147
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
148
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
149
|
+
\ <Traincode>E130 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
150
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
151
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
152
|
+
\ <Destination>Greystones</Destination>\r\n <Origintime>21:00</Origintime>\r\n
|
|
153
|
+
\ <Destinationtime>22:20</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
154
|
+
\ <Lastlocation>Departed Portmarnock</Lastlocation>\r\n <Duein>20</Duein>\r\n
|
|
155
|
+
\ <Late>1</Late>\r\n <Exparrival>21:25</Exparrival>\r\n <Expdepart>21:26</Expdepart>\r\n
|
|
156
|
+
\ <Scharrival>21:24</Scharrival>\r\n <Schdepart>21:25</Schdepart>\r\n
|
|
157
|
+
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
158
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
159
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>P670
|
|
160
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
161
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
162
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
|
|
163
|
+
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>20:47</Origintime>\r\n
|
|
164
|
+
\ <Destinationtime>21:34</Destinationtime>\r\n <Status>En Route</Status>\r\n
|
|
165
|
+
\ <Lastlocation>Arrived Clonsilla</Lastlocation>\r\n <Duein>28</Duein>\r\n
|
|
166
|
+
\ <Late>5</Late>\r\n <Exparrival>21:33</Exparrival>\r\n <Expdepart>21:34</Expdepart>\r\n
|
|
167
|
+
\ <Scharrival>21:28</Scharrival>\r\n <Schdepart>21:29</Schdepart>\r\n
|
|
168
|
+
\ <Direction>Southbound</Direction>\r\n <Traintype>Train</Traintype>\r\n
|
|
169
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
170
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>E231
|
|
171
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
172
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
173
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
174
|
+
\ <Origintime>21:15</Origintime>\r\n <Destinationtime>22:24</Destinationtime>\r\n
|
|
175
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>34</Duein>\r\n
|
|
176
|
+
\ <Late>0</Late>\r\n <Exparrival>21:39</Exparrival>\r\n <Expdepart>21:40</Expdepart>\r\n
|
|
177
|
+
\ <Scharrival>21:39</Scharrival>\r\n <Schdepart>21:40</Schdepart>\r\n
|
|
178
|
+
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
179
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
180
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>P671
|
|
181
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
182
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
183
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Maynooth</Origin>\r\n
|
|
184
|
+
\ <Destination>Dublin Pearse</Destination>\r\n <Origintime>21:05</Origintime>\r\n
|
|
185
|
+
\ <Destinationtime>21:49</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
186
|
+
\ <Lastlocation />\r\n <Duein>38</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:43</Exparrival>\r\n
|
|
187
|
+
\ <Expdepart>21:44</Expdepart>\r\n <Scharrival>21:43</Scharrival>\r\n
|
|
188
|
+
\ <Schdepart>21:44</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
189
|
+
\ <Traintype>Train</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
190
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
191
|
+
\ <Traincode>E131 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
192
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
193
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
194
|
+
\ <Destination>Greystones</Destination>\r\n <Origintime>21:30</Origintime>\r\n
|
|
195
|
+
\ <Destinationtime>22:50</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
196
|
+
\ <Lastlocation />\r\n <Duein>49</Duein>\r\n <Late>0</Late>\r\n <Exparrival>21:54</Exparrival>\r\n
|
|
197
|
+
\ <Expdepart>21:55</Expdepart>\r\n <Scharrival>21:54</Scharrival>\r\n
|
|
198
|
+
\ <Schdepart>21:55</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
199
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>S</Locationtype>\r\n
|
|
200
|
+
\ </objStationData>\r\n <objStationData>\r\n <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n
|
|
201
|
+
\ <Traincode>E232 </Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
202
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
203
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Howth</Origin>\r\n <Destination>Bray</Destination>\r\n
|
|
204
|
+
\ <Origintime>21:45</Origintime>\r\n <Destinationtime>22:54</Destinationtime>\r\n
|
|
205
|
+
\ <Status>No Information</Status>\r\n <Lastlocation />\r\n <Duein>64</Duein>\r\n
|
|
206
|
+
\ <Late>0</Late>\r\n <Exparrival>22:09</Exparrival>\r\n <Expdepart>22:10</Expdepart>\r\n
|
|
207
|
+
\ <Scharrival>22:09</Scharrival>\r\n <Schdepart>22:10</Schdepart>\r\n
|
|
208
|
+
\ <Direction>Southbound</Direction>\r\n <Traintype>DART</Traintype>\r\n
|
|
209
|
+
\ <Locationtype>S</Locationtype>\r\n </objStationData>\r\n <objStationData>\r\n
|
|
210
|
+
\ <Servertime>2015-10-05T21:06:38.21</Servertime>\r\n <Traincode>E710
|
|
211
|
+
</Traincode>\r\n <Stationfullname>Dublin Connolly</Stationfullname>\r\n
|
|
212
|
+
\ <Stationcode>CNLLY</Stationcode>\r\n <Querytime>21:06:38</Querytime>\r\n
|
|
213
|
+
\ <Traindate>05 Oct 2015</Traindate>\r\n <Origin>Malahide</Origin>\r\n
|
|
214
|
+
\ <Destination>Dublin Connolly</Destination>\r\n <Origintime>22:10</Origintime>\r\n
|
|
215
|
+
\ <Destinationtime>22:35</Destinationtime>\r\n <Status>No Information</Status>\r\n
|
|
216
|
+
\ <Lastlocation />\r\n <Duein>89</Duein>\r\n <Late>0</Late>\r\n <Exparrival>22:35</Exparrival>\r\n
|
|
217
|
+
\ <Expdepart>00:00</Expdepart>\r\n <Scharrival>22:35</Scharrival>\r\n
|
|
218
|
+
\ <Schdepart>00:00</Schdepart>\r\n <Direction>Southbound</Direction>\r\n
|
|
219
|
+
\ <Traintype>DART</Traintype>\r\n <Locationtype>D</Locationtype>\r\n
|
|
220
|
+
\ </objStationData>\r\n</ArrayOfObjStationData>"
|
|
221
|
+
http_version:
|
|
222
|
+
recorded_at: Mon, 05 Oct 2015 20:06:37 GMT
|
|
223
|
+
recorded_with: VCR 2.9.3
|