translink 0.0.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +12 -0
- data/README.md +44 -8
- data/doc/schema.graffle +396 -82
- data/doc/schema.png +0 -0
- data/lib/translink/cli.rb +10 -16
- data/lib/translink/crawler.rb +5 -6
- data/lib/translink/db.rb +6 -14
- data/lib/translink/model/route.rb +29 -18
- data/lib/translink/model/stop.rb +17 -19
- data/lib/translink/model/stop_time.rb +26 -0
- data/lib/translink/model/trip.rb +48 -0
- data/lib/translink/page/route.rb +42 -18
- data/lib/translink/page/timetable.rb +15 -18
- data/lib/translink/page/trip.rb +90 -17
- data/lib/translink/page.rb +1 -1
- data/lib/translink/version.rb +1 -1
- data/lib/translink.rb +2 -3
- data/test/fixtures/sample/route.html +401 -1049
- data/test/fixtures/sample/timetable.html +170 -216
- data/test/fixtures/verbatim/route.html +1976 -7178
- data/test/fixtures/verbatim/timetable.html +1501 -6165
- data/test/fixtures/verbatim/trip.html +311 -508
- data/test/unit/cli_test.rb +4 -20
- data/test/unit/crawler_test.rb +16 -36
- data/test/unit/model/route_test.rb +14 -25
- data/test/unit/model/stop_test.rb +6 -31
- data/test/unit/model/stop_time_test.rb +11 -0
- data/test/unit/model/trip_test.rb +28 -0
- data/test/unit/page/route_test.rb +38 -28
- data/test/unit/page/timetable_test.rb +12 -10
- data/test/unit/page/trip_test.rb +38 -22
- data/test/unit/page_test.rb +1 -1
- data/translink.gemspec +2 -2
- metadata +24 -27
- data/lib/translink/code.rb +0 -9
- data/lib/translink/model/service.rb +0 -20
- data/lib/translink/model/stop/extractor.rb +0 -67
- data/test/unit/code_test.rb +0 -12
- data/test/unit/model/service_test.rb +0 -23
- data/test/unit/model/stop/extractor_test.rb +0 -112
@@ -1,57 +1,20 @@
|
|
1
|
-
|
2
1
|
<!DOCTYPE html>
|
3
2
|
<html lang="en-au">
|
4
|
-
<head
|
5
|
-
<
|
6
|
-
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
3
|
+
<head>
|
4
|
+
<meta name="google-site-verification" content="nNhS0Na_38DlBjVO22yfHnekgn6xyusSgs0wqs4yDQ8" />
|
5
|
+
<link rel="stylesheet" href="/utilities/css/common-v2.1.2.29" type="text/css" media="screen, print" />
|
6
|
+
<link rel="stylesheet" href="/utilities/css/print-v2.1.2.29" type="text/css" media="print" />
|
7
|
+
<script src="/utilities/common-javascript-v2.1.2.29" type="text/javascript" charset="utf-8"></script>
|
8
|
+
|
9
|
+
<title>Route 130 | TransLink</title>
|
10
|
+
<meta name="description" content="TransLink is your one stop for public transport information, and coordinates and integrates public transport services in South East Queensland." />
|
11
|
+
<meta name="keywords" content="TransLink,public,transport,information,bus,train,ferry,timetables,maps,events,service updates,announcements,go card,fares,tickets" />
|
12
|
+
<meta name="author" content="TransLink Transit Authority" />
|
13
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
14
|
+
<!--[if lte IE 8]><style type="text/css">#suggestion-box { background-color: #DCDCDC; }</style><![endif]-->
|
15
|
+
<!--[if lte IE 7]>
|
16
|
+
<link rel="stylesheet" type="text/css" href="/utilities/css/nonstandard-ie-v2.1.2.29" />
|
18
17
|
<![endif]-->
|
19
|
-
<!--[if lte IE 7]> <link href="/utilities/css/styles-ie-lte7.css_v1.7.7.139" media="screen" rel="stylesheet" type="text/css" ><![endif]-->
|
20
|
-
<!--[if lte IE 6]> <link href="/utilities/css/styles-ie-lte6.css_v1.7.7.139" media="screen" rel="stylesheet" type="text/css" ><![endif]-->
|
21
|
-
<!--[if gte IE 9]> <style type="text/css">.blueButton, .greyButton, .searchform .searchbutton { filter: none; }</style><![endif]-->
|
22
|
-
<link rel="stylesheet" href="/utilities/css/print.css_v1.7.7.139" type="text/css" media="print" />
|
23
|
-
|
24
|
-
<script src="/utilities/common-javascript_v1.7.7.139" type="text/javascript" charset="utf-8"></script>
|
25
|
-
|
26
|
-
<script type="text/javascript">
|
27
|
-
var _gaq = _gaq || [];
|
28
|
-
_gaq.push(['_setAccount', 'UA-18464408-1']);
|
29
|
-
_gaq.push(['_setDomainName', '.translink.com.au']);
|
30
|
-
_gaq.push(['_trackPageview', '/travel-information/services-and-timetables/buses/view-bus-timetable/1925']);
|
31
|
-
(function () {
|
32
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
33
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
34
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
35
|
-
})();
|
36
|
-
</script>
|
37
|
-
|
38
|
-
<script type="text/javascript" src="/Scripts/jquery.scrollTo-1.4.2-min.js"></script>
|
39
|
-
<script type="text/javascript">
|
40
|
-
$().ready(function () {
|
41
|
-
$(".TimeBookmark").each(function () {
|
42
|
-
$(this).closest("table").before("<a id=\"" + $(this).attr("rel") + "\"></a>");
|
43
|
-
$("#TimetableDate").val("14/11/2011");
|
44
|
-
});
|
45
|
-
$(".bookmarkLink").click(function () {
|
46
|
-
$.scrollTo($("a[id='" + ($(this).text().replace(" ", "") + "']")).parent().position().top - 10, { duration: 1000 });
|
47
|
-
return false;
|
48
|
-
});
|
49
|
-
});
|
50
|
-
</script>
|
51
|
-
<title>
|
52
|
-
City Buz 130 Via Sunnybank | TransLink
|
53
|
-
</title><meta name="description" content="TransLink is your one stop for public transport information, and coordinates and integrates public transport services in South East Queensland." /><meta name="keywords" content="TransLink,public,transport,information,bus,train,ferry,timetables,maps,events,service updates,announcements,go card,fares,tickets" /><meta name="author" content="TransLink Transit Authority" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
54
|
-
<!-- Data: 8 November, 2011 -->
|
55
18
|
</head>
|
56
19
|
<body>
|
57
20
|
<ul class="access">
|
@@ -66,33 +29,33 @@ return false;
|
|
66
29
|
<div id="courtesy-nav">
|
67
30
|
<ul id="courtesy-links">
|
68
31
|
<li><a href="http://translink.com.au/utils/goto/context/mobile" title="View the website on your mobile">Mobile site</a></li>
|
69
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/online" title="go card"><i>go</i> card login</a></li>
|
32
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/online" title="go card login (opens in a new window)"><i>go</i> card login</a></li>
|
70
33
|
<li><a href="http://translink.com.au/site-information/site-map" title="An overview of the entire TransLink website">Site map</a></li>
|
71
|
-
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help" title="Call us on 13 12 30,
|
34
|
+
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help" title="Call us on 13 12 30, email us, see us in person, follow us on Twitter, or send us a letter.">Contact us & help</a></li>
|
72
35
|
</ul>
|
73
36
|
</div>
|
74
37
|
<div id="header-content">
|
75
38
|
<h1 class="access">TransLink - Integrated public transport for South East Queensland</h1>
|
76
|
-
<a href="http://translink.com.au/" title="TransLink"><img src="/Content/Images/
|
39
|
+
<a href="http://translink.com.au/" title="TransLink"><img src="/Content/Images/translink-logo.png" alt="TransLink" style="width: 237px; height: 46px;" class="logo" /></a>
|
77
40
|
<img src="/Content/Images/tagline.png" alt="Making travel easy" class="tagline" style="height: 46px; width: 206px;" />
|
78
41
|
</div>
|
79
42
|
<a id="navigation-shortcut" tabindex="0"></a>
|
80
43
|
<div id="main-nav" class="clearfix">
|
81
44
|
<div id="header-search" class="rightalign">
|
82
|
-
<form action="http://translink.com.au/site-information/search/results" method="get" id="search" class="searchform
|
45
|
+
<form action="http://translink.com.au/site-information/search/results" method="get" id="search" class="searchform" name="search">
|
83
46
|
<fieldset>
|
84
47
|
<legend class="access">Search the TransLink website</legend>
|
85
48
|
<p>
|
86
49
|
<label for="searchbox" id="searchlabel1">Search site…</label>
|
87
|
-
<input type="text" name="query" id="searchbox" value="" class="searchfield" />
|
50
|
+
<input type="text" name="query" id="searchbox" value="" class="searchfield" placeholder="Search site…" />
|
88
51
|
<input type="submit" value="Search" class="searchbutton" />
|
89
52
|
</p>
|
90
53
|
</fieldset>
|
91
54
|
</form>
|
92
55
|
</div>
|
93
|
-
<ul class="
|
56
|
+
<ul class="text-shadow-light">
|
94
57
|
<li><a href="http://translink.com.au/" title="TransLink - Home">Home</a></li>
|
95
|
-
<li><a href="http://translink.com.au/travel-information" id="travelMenuLink">Travel information</a>
|
58
|
+
<li class="this-page"><a href="http://translink.com.au/travel-information" id="travelMenuLink">Travel information</a>
|
96
59
|
<div id="travelMenu" class="megamenu">
|
97
60
|
<div class="column">
|
98
61
|
<ul>
|
@@ -100,30 +63,18 @@ return false;
|
|
100
63
|
<a href="/travel-information/journey-planner">Journey planner</a>
|
101
64
|
<ul>
|
102
65
|
<li><a href="/travel-information/journey-planner">Journey planner</a></li>
|
103
|
-
<li><a href="/travel-information/journey-planner/train-planner">Train journey planner</a></li>
|
104
|
-
<li><a href="/travel-information/journey-planner/ferry-planner">Ferry journey planner</a></li>
|
105
|
-
</ul>
|
106
|
-
</li>
|
107
|
-
<li>
|
108
|
-
<a href="http://translink.com.au/travel-information/services-and-timetables">Services and timetables</a>
|
109
|
-
<ul>
|
110
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/search">Find services and timetables</a></li>
|
111
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/buses">Buses</a></li>
|
112
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/trains">Trains</a></li>
|
113
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/ferries">Ferries</a></li>
|
114
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/event-transport">Event transport</a></li>
|
115
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/school-transport">School transport</a></li>
|
116
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables/late-night-services">Late night services</a></li>
|
117
|
-
<li><a href="/travel-information/services-and-timetables/stop-to-stop">Stop-to-stop timetables</a></li>
|
118
|
-
<li><a href="http://translink.com.au/travel-information/services-and-timetables">More...</a></li>
|
119
66
|
</ul>
|
120
67
|
</li>
|
121
|
-
</ul>
|
122
|
-
<ul>
|
123
68
|
<li>
|
124
|
-
<a href="http://translink.com.au/travel-information/
|
69
|
+
<a href="http://translink.com.au/travel-information/network-information">Network information</a>
|
125
70
|
<ul>
|
126
|
-
<li><a href="
|
71
|
+
<li><a href="/travel-information/network-information/timetables">Timetables</a></li>
|
72
|
+
<li><a href="/travel-information/network-information/stops-and-stations">Stops and stations</a></li>
|
73
|
+
<li><a href="http://translink.com.au/travel-information/network-information/maps">Maps</a></li>
|
74
|
+
<li><a href="http://translink.com.au/travel-information/network-information/event-transport">Event transport</a></li>
|
75
|
+
<li><a href="http://translink.com.au/travel-information/network-information/late-night-services">Late night services</a></li>
|
76
|
+
<li><a href="http://translink.com.au/travel-information/network-information/school-transport">School transport</a></li>
|
77
|
+
<li><a href="http://translink.com.au/travel-information/network-information/track-closures">Planned track works</a></li>
|
127
78
|
</ul>
|
128
79
|
</li>
|
129
80
|
</ul>
|
@@ -131,46 +82,22 @@ return false;
|
|
131
82
|
<div class="column">
|
132
83
|
<ul>
|
133
84
|
<li>
|
134
|
-
<a href="
|
85
|
+
<a href="/travel-information/service-updates">Service updates</a>
|
135
86
|
<ul>
|
136
|
-
<li><a href="
|
87
|
+
<li><a href="/travel-information/service-updates">Current status and upcoming changes</a></li>
|
137
88
|
<li><a href="http://translink.com.au/travel-information/service-updates/about-service-updates">About service updates</a></li>
|
138
|
-
<li><a href="http://translink.com.au/travel-information/service-updates/queensland-rail-timetable-changes">Queensland Rail timetable changes</a></li>
|
139
|
-
<li><a href="http://translink.com.au/travel-information/service-updates/richlands-station">Richlands station</a></li>
|
140
|
-
</ul>
|
141
|
-
</li>
|
142
|
-
</ul>
|
143
|
-
<ul>
|
144
|
-
<li>
|
145
|
-
<a href="http://translink.com.au/travel-information/stops-and-stations">Stops and stations</a>
|
146
|
-
<ul>
|
147
|
-
<li><a href="http://translink.com.au/travel-information/stops-and-stations/train-stations">Train stations</a></li>
|
148
|
-
<li><a href="http://translink.com.au/travel-information/stops-and-stations/busway-stations">Busway stations</a></li>
|
149
|
-
<li><a href="http://translink.com.au/travel-information/stops-and-stations/ferry-terminals">Ferry terminals</a></li>
|
150
|
-
<li><a href="/travel-information/stops-and-stations/stop-timetables">Stop timetables</a></li>
|
151
|
-
<li><a href="/travel-information/stops-and-stations/stops-near-you">Stops near you</a></li>
|
152
|
-
<li><a href="http://translink.com.au/travel-information/stops-and-stations/bicycle-facilities">Bicycle facilities</a></li>
|
153
|
-
</ul>
|
154
|
-
</li>
|
155
|
-
</ul>
|
156
|
-
<ul>
|
157
|
-
<li>
|
158
|
-
<a href="http://translink.com.au/travel-information/accessibility">Accessibility</a>
|
159
|
-
<ul>
|
160
|
-
<li><a href="http://translink.com.au/travel-information/accessibility">Accessible services</a></li>
|
161
89
|
</ul>
|
162
90
|
</li>
|
163
91
|
</ul>
|
164
92
|
<ul>
|
165
93
|
<li>
|
166
|
-
<a href="http://translink.com.au/travel-information/
|
94
|
+
<a href="http://translink.com.au/travel-information/accessibility-and-safety">Accessibility and safety</a>
|
167
95
|
<ul>
|
168
|
-
<li><a href="http://translink.com.au/travel-information/
|
96
|
+
<li><a href="http://translink.com.au/travel-information/accessibility-and-safety/accessible-services">Accessible services</a></li>
|
97
|
+
<li><a href="http://translink.com.au/travel-information/accessibility-and-safety/safety-and-security">Safety and security</a></li>
|
169
98
|
</ul>
|
170
99
|
</li>
|
171
100
|
</ul>
|
172
|
-
</div>
|
173
|
-
<div class="column">
|
174
101
|
<ul>
|
175
102
|
<li>
|
176
103
|
<a href="http://translink.com.au/travel-information/visiting-south-east-queensland">Visiting South East Queensland</a>
|
@@ -180,18 +107,18 @@ return false;
|
|
180
107
|
</ul>
|
181
108
|
</li>
|
182
109
|
</ul>
|
110
|
+
</div>
|
111
|
+
<div class="column">
|
183
112
|
<ul>
|
184
113
|
<li>
|
185
|
-
<a href="http://translink.com.au/travel-information/how-to">How to</a>
|
114
|
+
<a href="http://translink.com.au/travel-information/how-to" title="Travel information how to guides">How to</a>
|
186
115
|
<ul>
|
187
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-bus">
|
188
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-train">
|
189
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-ferry">
|
190
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-
|
191
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-
|
192
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-
|
193
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-travel-with-children-and-prams">How to travel with children and prams</a></li>
|
194
|
-
<li><a href="http://translink.com.au/travel-information/how-to/how-to-travel-with-large-items">How to travel with large items</a></li>
|
116
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-bus">use the bus</a></li>
|
117
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-train">use the train</a></li>
|
118
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-use-the-ferry">use the ferry</a></li>
|
119
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-plan-your-journey">plan your journey</a></li>
|
120
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-transfer-between-services">transfer between services</a></li>
|
121
|
+
<li><a href="http://translink.com.au/travel-information/how-to/how-to-travel-with-children-prams-or-large-items">travel with children or large items</a></li>
|
195
122
|
<li><a href="http://translink.com.au/travel-information/how-to/tips-for-courteous-behaviour">Tips for courteous behaviour</a></li>
|
196
123
|
</ul>
|
197
124
|
</li>
|
@@ -199,43 +126,40 @@ return false;
|
|
199
126
|
</div>
|
200
127
|
</div>
|
201
128
|
</li>
|
202
|
-
<li><a href="http://translink.com.au/tickets-and-fares"
|
203
|
-
<div
|
129
|
+
<li><a href="http://translink.com.au/tickets-and-fares">Tickets and fares</a>
|
130
|
+
<div class="megamenu">
|
204
131
|
<div class="column">
|
205
132
|
<ul>
|
206
133
|
<li>
|
207
134
|
<a href="http://translink.com.au/tickets-and-fares/go-card"><i>go</i> card</a>
|
208
135
|
<ul>
|
209
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/
|
210
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/
|
211
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/
|
212
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/
|
213
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/costs-and-discounts">Costs and discounts</a></li>
|
214
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/more">More...</a></li>
|
136
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/online"><i>go</i> card account sign in</a></li>
|
137
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/new-to-go-card">New to <i>go</i> card?</a></li>
|
138
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/i-have-a-go-card">I have a <i>go</i> card</a></li>
|
139
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/buy-a-go-card">Where to buy and top up</a></li>
|
215
140
|
</ul>
|
216
141
|
</li>
|
217
142
|
</ul>
|
218
|
-
</div>
|
219
|
-
<div class="column">
|
220
143
|
<ul>
|
221
144
|
<li>
|
222
145
|
<a href="http://translink.com.au/tickets-and-fares/other-tickets">Other tickets</a>
|
223
146
|
<ul>
|
224
147
|
<li><a href="http://translink.com.au/tickets-and-fares/other-tickets/paper-tickets">Paper tickets</a></li>
|
225
|
-
<li><a href="http://translink.com.au/tickets-and-fares/other-tickets/school-
|
148
|
+
<li><a href="http://translink.com.au/tickets-and-fares/other-tickets/school-tickets-and-fares">School tickets and fares</a></li>
|
226
149
|
<li><a href="http://translink.com.au/tickets-and-fares/other-tickets/special-access-passes">Special access passes</a></li>
|
227
150
|
</ul>
|
228
151
|
</li>
|
229
152
|
</ul>
|
153
|
+
</div>
|
154
|
+
<div class="column">
|
230
155
|
<ul>
|
231
156
|
<li>
|
232
157
|
<a href="http://translink.com.au/tickets-and-fares/fares">Fares</a>
|
233
158
|
<ul>
|
234
159
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/current-fares">Current fares</a></li>
|
235
|
-
<li><a href="http://translink.com.au/tickets-and-fares/fares/changes-to-fares-and-ticketing-in-2011">Changes to fares and ticketing in 2011</a></li>
|
236
160
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/changes-to-fares-and-ticketing-in-2012">Changes to fares and ticketing in 2012</a></li>
|
237
161
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/concessions">Concessions</a></li>
|
238
|
-
<li><a href="http://translink.com.au/tickets-and-fares/fares/
|
162
|
+
<li><a href="http://translink.com.au/tickets-and-fares/fares/off-peak-times">Off-peak times</a></li>
|
239
163
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/fare-zones">Zones</a></li>
|
240
164
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/conditions-of-travel">Conditions of travel</a></li>
|
241
165
|
<li><a href="http://translink.com.au/tickets-and-fares/fares/discounts-and-ways-to-save">Discounts and ways to save</a></li>
|
@@ -246,12 +170,11 @@ return false;
|
|
246
170
|
<div class="column">
|
247
171
|
<ul>
|
248
172
|
<li>
|
249
|
-
<a href="http://translink.com.au/tickets-and-fares/how-to">How to</a>
|
173
|
+
<a href="http://translink.com.au/tickets-and-fares/how-to" title="Tickets and fares how to guides">How to</a>
|
250
174
|
<ul>
|
251
|
-
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-use-a-fare-machine">
|
252
|
-
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-buy-a-ticket">
|
253
|
-
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-claim-a-refund-for-incorrect-change">
|
254
|
-
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-upgrade-your-ticket">How to upgrade your ticket</a></li>
|
175
|
+
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-use-a-fare-machine">use a fare machine</a></li>
|
176
|
+
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-buy-a-ticket">buy a ticket</a></li>
|
177
|
+
<li><a href="http://translink.com.au/tickets-and-fares/how-to/how-to-claim-a-refund-for-incorrect-change">claim a refund for incorrect change</a></li>
|
255
178
|
<li><a href="http://translink.com.au/tickets-and-fares/how-to/tickets-and-fares-after-midnight">Tickets and fares after midnight</a></li>
|
256
179
|
</ul>
|
257
180
|
</li>
|
@@ -259,9 +182,9 @@ return false;
|
|
259
182
|
</div>
|
260
183
|
</div>
|
261
184
|
</li>
|
262
|
-
<li><a href="http://translink.com.au/news-and-updates"
|
263
|
-
<li><a href="http://translink.com.au/about-translink"
|
264
|
-
<div
|
185
|
+
<li><a href="http://translink.com.au/news-and-updates">News and updates</a></li>
|
186
|
+
<li><a href="http://translink.com.au/about-translink">About TransLink</a>
|
187
|
+
<div class="megamenu">
|
265
188
|
<div class="column">
|
266
189
|
<ul>
|
267
190
|
<li>
|
@@ -280,10 +203,13 @@ return false;
|
|
280
203
|
<a href="http://translink.com.au/about-translink/what-we-do">What we do</a>
|
281
204
|
<ul>
|
282
205
|
<li><a href="http://translink.com.au/about-translink/what-we-do/strategic-plan">Strategic plan</a></li>
|
206
|
+
<li><a href="http://translink.com.au/about-translink/what-we-do/ticket-and-fare-integration">Ticket and fare integration</a></li>
|
283
207
|
<li><a href="http://translink.com.au/about-translink/what-we-do/customer-research">Customer research</a></li>
|
284
208
|
<li><a href="http://translink.com.au/about-translink/what-we-do/customer-service">Customer service</a></li>
|
285
209
|
<li><a href="http://translink.com.au/about-translink/what-we-do/public-transport-planning">Public transport planning</a></li>
|
286
210
|
<li><a href="http://translink.com.au/about-translink/what-we-do/infrastructure-projects">Infrastructure projects</a></li>
|
211
|
+
<li><a href="http://translink.com.au/about-translink/what-we-do/benefits-of-public-transport">Benefit of public transport</a></li>
|
212
|
+
<li><a href="http://translink.com.au/about-translink/what-we-do/awards">Awards</a></li>
|
287
213
|
</ul>
|
288
214
|
</li>
|
289
215
|
</ul>
|
@@ -304,8 +230,9 @@ return false;
|
|
304
230
|
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/media-releases">Media releases</a></li>
|
305
231
|
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/annual-and-quarterly-reports">Annual and quarterly reports</a></li>
|
306
232
|
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/key-facts-and-figures">Key facts and figures</a></li>
|
307
|
-
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/right-to-information">Right to information</a></li>
|
308
233
|
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/translink-network-plan">TransLink Network Plan</a></li>
|
234
|
+
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/right-to-information">Right to information</a></li>
|
235
|
+
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/special-event-declaration">Special event declaration</a></li>
|
309
236
|
</ul>
|
310
237
|
</li>
|
311
238
|
</ul>
|
@@ -343,946 +270,371 @@ return false;
|
|
343
270
|
<span class="access">You are here:</span>
|
344
271
|
<p>
|
345
272
|
<a href="http://translink.com.au/">Home</a>
|
346
|
-
<a href="http://translink.com.au/travel-information">Travel information</a>
|
347
|
-
|
348
|
-
<a href="http://translink.com.au/travel-information/
|
349
|
-
|
350
|
-
|
351
|
-
<a href="/travel-information/services-and-timetables/buses/bus-timetables">Bus timetables</a>
|
352
|
-
City Buz 130 Via Sunnybank
|
273
|
+
<a href="http://translink.com.au/travel-information">Travel information</a>
|
274
|
+
|
275
|
+
<a href="http://translink.com.au/travel-information/network-information">Network information</a>
|
276
|
+
<a href="/travel-information/network-information/timetables">Timetables</a>
|
277
|
+
Route 130
|
353
278
|
|
354
279
|
</p>
|
355
280
|
</div>
|
356
|
-
<div id="
|
281
|
+
<div id="content-left-column">
|
357
282
|
<div id="headingBar" class="clearfix">
|
358
|
-
<h1>
|
359
|
-
<span id="print"><a href="javascript:window.print()" class="
|
283
|
+
<h1>Route 130</h1>
|
284
|
+
<span id="print"><a href="javascript:window.print()" class="no-border">Print</a></span>
|
360
285
|
<span id="resize_up"><a href="#">increase text size</a></span>
|
361
286
|
<span id="resize_mid"><a href="#">reset text size</a></span>
|
362
287
|
<span id="resize_down"><a href="#">decrease text size</a></span>
|
363
288
|
</div>
|
364
289
|
<div class="underline indented"> </div>
|
365
290
|
|
291
|
+
|
292
|
+
|
366
293
|
<div class="content">
|
367
|
-
<
|
368
|
-
|
369
|
-
<
|
370
|
-
<form action="/travel-information/
|
371
|
-
<
|
372
|
-
<
|
373
|
-
<
|
374
|
-
<option
|
375
|
-
<option value="
|
376
|
-
<option value="
|
377
|
-
<option value="
|
378
|
-
<option value="
|
379
|
-
<option value="
|
380
|
-
<option value="
|
381
|
-
<option value="
|
382
|
-
<option value="
|
383
|
-
<option value="
|
384
|
-
<option value="
|
385
|
-
<option value="
|
386
|
-
<option value="
|
387
|
-
<option value="
|
388
|
-
<option value="
|
389
|
-
<option value="
|
390
|
-
<option value="
|
391
|
-
<option value="
|
392
|
-
<option value="
|
393
|
-
<option value="
|
394
|
-
<option value="
|
395
|
-
<option value="
|
396
|
-
<option value="
|
397
|
-
<option value="
|
398
|
-
<option value="
|
399
|
-
<option value="
|
294
|
+
<div class="column-2">
|
295
|
+
<p>This is an express service.</p>
|
296
|
+
<p class="print-only">Date: Thursday 21 June 2012</p>
|
297
|
+
<form method="post" action="/travel-information/network-information/buses/130">
|
298
|
+
<div class="useful">
|
299
|
+
<div class="column-2">
|
300
|
+
<label for="TimetableDate">Date</label> <select id="TimetableDate" name="TimetableDate"><option selected="selected" value="21/06/2012 12:00:00 AM">Today (Thursday)</option>
|
301
|
+
<option value="22/06/2012 12:00:00 AM">Fri 22 Jun 2012</option>
|
302
|
+
<option value="23/06/2012 12:00:00 AM">Sat 23 Jun 2012</option>
|
303
|
+
<option value="24/06/2012 12:00:00 AM">Sun 24 Jun 2012</option>
|
304
|
+
<option value="25/06/2012 12:00:00 AM">Mon 25 Jun 2012</option>
|
305
|
+
<option value="26/06/2012 12:00:00 AM">Tue 26 Jun 2012</option>
|
306
|
+
<option value="27/06/2012 12:00:00 AM">Wed 27 Jun 2012</option>
|
307
|
+
<option value="28/06/2012 12:00:00 AM">Thu 28 Jun 2012</option>
|
308
|
+
<option value="29/06/2012 12:00:00 AM">Fri 29 Jun 2012</option>
|
309
|
+
<option value="30/06/2012 12:00:00 AM">Sat 30 Jun 2012</option>
|
310
|
+
<option value="1/07/2012 12:00:00 AM">Sun 1 Jul 2012</option>
|
311
|
+
<option value="2/07/2012 12:00:00 AM">Mon 2 Jul 2012</option>
|
312
|
+
<option value="3/07/2012 12:00:00 AM">Tue 3 Jul 2012</option>
|
313
|
+
<option value="4/07/2012 12:00:00 AM">Wed 4 Jul 2012</option>
|
314
|
+
<option value="5/07/2012 12:00:00 AM">Thu 5 Jul 2012</option>
|
315
|
+
<option value="6/07/2012 12:00:00 AM">Fri 6 Jul 2012</option>
|
316
|
+
<option value="7/07/2012 12:00:00 AM">Sat 7 Jul 2012</option>
|
317
|
+
<option value="8/07/2012 12:00:00 AM">Sun 8 Jul 2012</option>
|
318
|
+
<option value="9/07/2012 12:00:00 AM">Mon 9 Jul 2012</option>
|
319
|
+
<option value="10/07/2012 12:00:00 AM">Tue 10 Jul 2012</option>
|
320
|
+
<option value="11/07/2012 12:00:00 AM">Wed 11 Jul 2012</option>
|
321
|
+
<option value="12/07/2012 12:00:00 AM">Thu 12 Jul 2012</option>
|
322
|
+
<option value="13/07/2012 12:00:00 AM">Fri 13 Jul 2012</option>
|
323
|
+
<option value="14/07/2012 12:00:00 AM">Sat 14 Jul 2012</option>
|
324
|
+
<option value="15/07/2012 12:00:00 AM">Sun 15 Jul 2012</option>
|
325
|
+
<option value="16/07/2012 12:00:00 AM">Mon 16 Jul 2012</option>
|
326
|
+
<option value="17/07/2012 12:00:00 AM">Tue 17 Jul 2012</option>
|
327
|
+
<option value="18/07/2012 12:00:00 AM">Wed 18 Jul 2012</option>
|
328
|
+
<option value="19/07/2012 12:00:00 AM">Thu 19 Jul 2012</option>
|
329
|
+
<option value="20/07/2012 12:00:00 AM">Fri 20 Jul 2012</option>
|
400
330
|
</select>
|
401
|
-
</span>
|
402
|
-
<span class="inputGroup">
|
403
|
-
<label for="Direction">Direction</label><br />
|
404
|
-
<select id="Direction" name="direction">
|
405
|
-
<option value="Inbound" selected="selected">Inbound</option>
|
406
|
-
<option value="Outbound">Outbound</option>
|
407
|
-
</select>
|
408
|
-
</span>
|
409
|
-
<span class="inputGroupButtons">
|
410
|
-
<input type="submit" value="Update results" class="blueButton" />
|
411
|
-
</span>
|
412
|
-
<input id="routeCode" name="routeCode" type="hidden" value="130" />
|
413
|
-
</form>
|
414
331
|
</div>
|
415
|
-
<div class="
|
416
|
-
|
417
|
-
|
418
|
-
|
332
|
+
<div class="column-2 smaller right-align">
|
333
|
+
<input type="submit" class="action-button" value="Update" />
|
334
|
+
</div>
|
335
|
+
</div>
|
336
|
+
</form>
|
337
|
+
<h2>Current status for Thursday 21 June 2012</h2>
|
338
|
+
<ul class="service-update-alert">
|
339
|
+
<li class="informative">
|
340
|
+
<a href="/travel-information/service-updates/details/1336713370">Bigger and more comfortable buses for Brisbane</a><br />
|
341
|
+
From Monday 18 June 2012<br />
|
342
|
+
</li>
|
343
|
+
</ul>
|
344
|
+
<h2>Upcoming changes</h2>
|
345
|
+
<p>There are no upcoming changes.</p>
|
346
|
+
</div>
|
347
|
+
<div class="column-2">
|
348
|
+
|
349
|
+
<div class="advertisement">
|
350
|
+
<p>Advertisement</p>
|
351
|
+
<a href="http://www.visitbrisbane.com.au/Travel/Events.aspx??utm_source=translink-website&utm_medium=online-ad&utm_content=mrec&utm_campaign=visit-brisbane" title="Discover Brisbane from the inside out" target="_blank">
|
352
|
+
<img src="/travel-information/utilities/ad-content/6" style="width: 300px; height: 250px" alt="Discover Brisbane from the inside out" />
|
353
|
+
</a>
|
354
|
+
</div>
|
355
|
+
</div>
|
419
356
|
|
420
|
-
<
|
421
|
-
<a href="#9.00am" class="bookmarkLink">9.00am</a> | <a href="#12.00pm" class="bookmarkLink">12.00pm</a> | <a href="#3.00pm" class="bookmarkLink">3.00pm</a> | <a href="#6.00pm" class="bookmarkLink">6.00pm</a> | <a href="#9.00pm" class="bookmarkLink">9.00pm</a></p>
|
357
|
+
<h2>Timetable</h2>
|
422
358
|
|
423
|
-
<
|
424
|
-
<
|
359
|
+
<div class="route-timetable">
|
360
|
+
<h3>Outbound</h3>
|
361
|
+
<table class="content-table vertical-spacing">
|
362
|
+
<caption class="access">A timetable showing departure time, departure stop, arrival time and arrival stop for each Route 130 trip on Thursday 21 June 2012</caption>
|
425
363
|
<thead>
|
426
364
|
<tr>
|
427
|
-
<th>
|
428
|
-
|
429
|
-
<th>
|
430
|
-
|
431
|
-
<th>130</th>
|
432
|
-
|
433
|
-
<th>130</th>
|
434
|
-
|
435
|
-
<th>130</th>
|
436
|
-
|
437
|
-
<th>130</th>
|
438
|
-
|
439
|
-
<th>130</th>
|
440
|
-
|
365
|
+
<th>Start</th>
|
366
|
+
<th>End</th>
|
367
|
+
<th class="no-print">Service information & map</th>
|
441
368
|
</tr>
|
442
369
|
</thead>
|
443
370
|
<tbody>
|
444
|
-
|
445
|
-
<tr>
|
446
|
-
<td>
|
447
|
-
Illaweena St (Waterstone)<br />
|
448
|
-
Waterstone, Illaweena St far side of Waterbrooke Crt
|
449
|
-
</td>
|
450
|
-
|
451
|
-
<td>
|
452
|
-
5.00am
|
453
|
-
|
454
|
-
</td>
|
455
|
-
|
456
|
-
<td>
|
457
|
-
5.10am
|
458
|
-
|
459
|
-
</td>
|
460
|
-
|
461
|
-
<td>
|
462
|
-
5.20am
|
463
|
-
|
464
|
-
</td>
|
465
|
-
|
371
|
+
<tr>
|
466
372
|
<td>
|
467
|
-
|
468
|
-
|
373
|
+
<b>11.25pm Wednesday </b><br />
|
374
|
+
Queen Street station, platform A6
|
469
375
|
</td>
|
470
|
-
|
471
376
|
<td>
|
472
|
-
|
473
|
-
|
377
|
+
<b>12.14am</b><br />
|
378
|
+
Illaweena St at Waterstone
|
474
379
|
</td>
|
475
|
-
|
476
|
-
<
|
477
|
-
5.50am
|
478
|
-
|
380
|
+
<td class="no-print centered">
|
381
|
+
<a class="map-link-top" href="/travel-information/network-information/service-information/outbound/8904/1891449/2012-06-20" title="View map and all stops for the 11.25pm 130 service">Service information & map</a>
|
479
382
|
</td>
|
480
|
-
|
481
383
|
</tr>
|
384
|
+
</tbody>
|
385
|
+
</table>
|
386
|
+
<p>Suburbs: Algester, City, Drewvale, Macgregor, Nathan, Parkinson, South Brisbane, Sunnybank, Sunnybank Hills, Upper Mount Gravatt</p>
|
387
|
+
</div>
|
388
|
+
</div>
|
482
389
|
|
483
|
-
<tr>
|
484
|
-
<td>
|
485
|
-
Parkinson East<br />
|
486
|
-
Parkinson East, Algester Rd approaching opposite Lake Eyre Cr
|
487
|
-
</td>
|
488
|
-
|
489
|
-
<td>
|
490
|
-
5.03am
|
491
|
-
|
492
|
-
</td>
|
493
|
-
|
494
|
-
<td>
|
495
|
-
5.13am
|
496
|
-
|
497
|
-
</td>
|
498
|
-
|
499
|
-
<td>
|
500
|
-
5.23am
|
501
|
-
|
502
|
-
</td>
|
503
|
-
|
504
|
-
<td>
|
505
|
-
5.33am
|
506
|
-
|
507
|
-
</td>
|
508
|
-
|
509
|
-
<td>
|
510
|
-
5.43am
|
511
|
-
|
512
|
-
</td>
|
513
|
-
|
514
|
-
<td>
|
515
|
-
5.53am
|
516
|
-
|
517
|
-
</td>
|
518
390
|
|
519
|
-
</
|
391
|
+
</div>
|
392
|
+
<div id="content-right-column" class="clearfix">
|
520
393
|
|
521
|
-
<
|
522
|
-
<
|
523
|
-
|
524
|
-
|
525
|
-
</
|
394
|
+
<div class="panel first">
|
395
|
+
<h2>Printable timetables</h2>
|
396
|
+
<div class="printable-timetable">
|
397
|
+
<p>
|
398
|
+
<a href="http://translink.com.au/resources/travel-information/network-information/timetables/120220-P129,130,131,132,P133,136,P137,138.pdf" target="_blank">route 130 (PDF, 1372 KB)</a><br />
|
399
|
+
Effective from Monday 20 February 2012
|
400
|
+
</p>
|
401
|
+
</div>
|
402
|
+
</div>
|
403
|
+
|
404
|
+
<div class="panel">
|
405
|
+
<h2>Stops along this route</h2>
|
406
|
+
<p><strong>Please note:</strong> not all services use all stops. View individual service details for specific stops.</p>
|
407
|
+
<div class="route-timetable-stops">
|
408
|
+
<h3>Outbound</h3>
|
409
|
+
<ul>
|
410
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/001002">Queen Street station, platform A6</a></li>
|
411
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/011168">Cultural Centre station Platform 2</a></li>
|
412
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010807">South Bank busway station platform 2</a></li>
|
413
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010809">Mater Hill Station Platform 2</a></li>
|
414
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/001195">Stephens Rd at St Laurences College, stop 7</a></li>
|
415
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010819">Griffith University Station Platform 2</a></li>
|
416
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/006546">Mains Road Park 'n' Ride</a></li>
|
417
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005603">Mains Rd at Robertson near Cervantes St, stop 4</a></li>
|
418
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005635">Mains Rd at Sunnybank near McCullough St</a></li>
|
419
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005643">Mains Rd at Turton Street, stop 80</a></li>
|
420
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005753">Mains Rd at Altandi, stop 68</a></li>
|
421
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005760">Pinelands Rd at Pinelands near Grandchester St</a></li>
|
422
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005803">Pinelands Rd at Hellawell</a></li>
|
423
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005805">Pinelands Rd at Sunnybank Hills South</a></li>
|
424
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005804">Calam Rd near Honeywood St</a></li>
|
425
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005811">Algester Rd at Beaudesert Road, stop 76</a></li>
|
426
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005836">Algester Rd at Algester East, stop 79</a></li>
|
427
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005848">Ridgewood Rd at Algester, stop 83</a></li>
|
428
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005858">Ridgewood Rd at Ridgewood Park near Yorrell St</a></li>
|
429
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010537">Ridgewood Rd at Ridgewood Heights</a></li>
|
430
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010690">Algester Rd at Nottingham</a></li>
|
431
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010840">Algester Rd at Glenfield</a></li>
|
432
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010742">Algester Rd at Parkinson, stop 90</a></li>
|
433
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010747">Algester Rd at Lake Eyre Crescent, stop 91</a></li>
|
434
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010745">Algester Rd at Parkinson East, stop 92</a></li>
|
435
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010760">Algester Rd at Lichfield Place, stop 93</a></li>
|
436
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010762">Illaweena St at Tamarisk Way</a></li>
|
437
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010764">Illaweena St at Waterstone</a></li>
|
438
|
+
</ul>
|
439
|
+
</div>
|
440
|
+
<div class="route-timetable-stops">
|
441
|
+
<h3>Inbound</h3>
|
442
|
+
<ul>
|
443
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010765">Illaweena St at Waterstone</a></li>
|
444
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010763">Illaweena St at Tamarisk Way</a></li>
|
445
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010761">Algester Rd at Lichfield Place, stop 93</a></li>
|
446
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010746">Algester Rd at Parkinson East, stop 92</a></li>
|
447
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010748">Algester Rd at Lake Eyre Crescent, stop 91</a></li>
|
448
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010692">Algester Rd at Parkinson, stop 90</a></li>
|
449
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010839">Algester Rd at Glenfield</a></li>
|
450
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010691">Algester Rd at Nottingham</a></li>
|
451
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005863">Ridgewood Rd at Ridgewood Heights</a></li>
|
452
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005860">Ridgewood Rd at Ridgewood Park near Yorrell St</a></li>
|
453
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005849">Ridgewood Rd at Algester</a></li>
|
454
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005841">Algester Rd at Algester East, stop 79</a></li>
|
455
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005812">Algester Rd at Beaudesert Road, stop 76</a></li>
|
456
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005840">Calam Rd near Lear St</a></li>
|
457
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005815">Pinelands Rd at Sunnybank Hills South</a></li>
|
458
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005817">Pinelands Rd at Hellawell</a></li>
|
459
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005761">Pinelands Rd at near Beenleigh Rd</a></li>
|
460
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005764">Mains Rd at Altandi, stop 68</a></li>
|
461
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005644">Mains Rd at Turton Street, stop 80</a></li>
|
462
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005638">Mains Rd at Sunnybank near McCullough St</a></li>
|
463
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/005602">Mains Rd at Robertson near Cervantes St</a></li>
|
464
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/006547">Mains Road Park 'n' Ride</a></li>
|
465
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010820">Griffith University Station Platform 1</a></li>
|
466
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010808">Mater Hill Station Platform 1</a></li>
|
467
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010806">South Bank Busway Station Platform 1</a></li>
|
468
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/010802">Cultural Centre station platform 1</a></li>
|
469
|
+
<li><a href="/travel-information/network-information/stops-and-stations/stop/001002">Queen Street station, platform A6</a></li>
|
470
|
+
</ul>
|
471
|
+
</div>
|
472
|
+
</div>
|
473
|
+
|
474
|
+
</div>
|
475
|
+
</div>
|
476
|
+
<a id="footer-shortcut" tabindex="0"></a>
|
477
|
+
<div id="footer">
|
478
|
+
<div id="footer-nav">
|
479
|
+
<div id="footer-travelinfo" class="footer-links leftalign">
|
480
|
+
<h2>Travel Information</h2>
|
481
|
+
<div class="underline"> </div>
|
482
|
+
<ul>
|
483
|
+
<li>
|
484
|
+
<a href="/travel-information/journey-planner" title="Plan your journey">Journey planner</a>
|
485
|
+
</li>
|
486
|
+
<li>
|
487
|
+
<a href="http://translink.com.au/travel-information/network-information" title="View information about our network">Network information</a>
|
488
|
+
</li>
|
489
|
+
<li>
|
490
|
+
<a href="http://translink.com.au/travel-information/network-information/maps" title="See our maps">
|
491
|
+
Maps
|
492
|
+
</a>
|
493
|
+
</li>
|
494
|
+
<li>
|
495
|
+
<a href="/travel-information/service-updates" title="View current status and upcoming changes">Service updates</a>
|
496
|
+
</li>
|
497
|
+
<li>
|
498
|
+
<a href="http://translink.com.au/travel-information/how-to" title="Travel information how to guides">
|
499
|
+
How to…
|
500
|
+
</a>
|
501
|
+
</li>
|
502
|
+
</ul>
|
503
|
+
<ul>
|
504
|
+
<li><a href="http://translink.com.au/travel-information" title="More travel information">
|
505
|
+
More travel information</a></li>
|
506
|
+
</ul>
|
507
|
+
</div>
|
508
|
+
<div id="footer-tickets" class="footer-links leftalign">
|
509
|
+
<h2>Tickets and fares</h2>
|
510
|
+
<div class="underline"> </div>
|
511
|
+
<ul>
|
512
|
+
<li>
|
513
|
+
<a href="http://translink.com.au/tickets-and-fares/go-card" title="View information about go card"><i>go</i> card</a>
|
514
|
+
</li>
|
515
|
+
<li>
|
516
|
+
<a href="http://translink.com.au/tickets-and-fares/other-tickets" title="View information about our other tickets and passes">Other tickets</a>
|
517
|
+
</li>
|
518
|
+
<li>
|
519
|
+
<a href="http://translink.com.au/tickets-and-fares/fares" title="View information about fares">Fares</a>
|
520
|
+
</li>
|
521
|
+
<li><a href="http://translink.com.au/tickets-and-fares/how-to" title="Ticket and fares how to guides">
|
522
|
+
How to…</a></li>
|
523
|
+
</ul>
|
524
|
+
<ul>
|
525
|
+
<li><a href="http://translink.com.au/tickets-and-fares" title="More on tickets and fares">More on tickets and fares</a></li>
|
526
|
+
</ul>
|
527
|
+
</div>
|
528
|
+
<div id="footer-about" class="leftalign">
|
529
|
+
<h2>About TransLink</h2>
|
530
|
+
<div class="underline"> </div>
|
531
|
+
<ul>
|
532
|
+
<li>
|
533
|
+
<a href="http://translink.com.au/about-translink/who-we-are" title="Find out more about who we are">Who we are</a>
|
534
|
+
</li>
|
535
|
+
<li>
|
536
|
+
<a href="http://translink.com.au/about-translink/what-we-do" title="See what we do">What we do</a>
|
537
|
+
</li>
|
538
|
+
<li>
|
539
|
+
<a href="http://translink.com.au/about-translink/what-we-do/public-transport-planning" title="See what we've got planned for the future">Our future plans</a>
|
540
|
+
</li>
|
541
|
+
<li>
|
542
|
+
<a href="http://translink.com.au/about-translink/our-service-area" title="View information about where we operate">Our service area</a>
|
543
|
+
</li>
|
544
|
+
<li>
|
545
|
+
<a href="http://translink.com.au/about-translink/reporting-and-publications" title="View our reports and publications">Reporting and publications</a>
|
546
|
+
</li>
|
547
|
+
</ul>
|
548
|
+
<ul>
|
549
|
+
<li>
|
550
|
+
<a href="http://translink.com.au/about-translink" title="More about TransLink">More about TransLink</a>
|
551
|
+
</li>
|
552
|
+
</ul>
|
553
|
+
</div>
|
554
|
+
<div id="footer-searchbox" class="rightalign">
|
555
|
+
<h2 id="cantfindheading">
|
556
|
+
Can't find what you're looking for? Try…</h2>
|
557
|
+
<form action="http://pan.search.qld.gov.au/search/search.cgi" class="searchform" id="footer-search" name="footer-search">
|
558
|
+
<fieldset>
|
559
|
+
<legend class="access">Search the TransLink website</legend>
|
560
|
+
<input type="hidden" name="num_ranks" value="10" />
|
561
|
+
<input type="hidden" name="tiers" value="off" />
|
562
|
+
<input type="hidden" name="collection" value="qld-gov" />
|
563
|
+
<input type="hidden" name="profile" value="translink" />
|
564
|
+
<p>
|
565
|
+
<label for="searchbox2" id="searchlabel2">Search site…</label>
|
566
|
+
<input type="text" name="query" id="searchbox2" value="" class="searchfield" autocomplete="off" placeholder="Search site…" /><input type="submit" value="Search" class="searchbutton" id="footersearch-button" />
|
567
|
+
</p>
|
568
|
+
</fieldset>
|
569
|
+
</form>
|
570
|
+
<ul id="footer-courtesy">
|
571
|
+
<li><a href="http://translink.com.au/utils/goto/context/mobile" title="View the website on your mobile">Mobile site</a></li>
|
572
|
+
<li><a href="http://translink.com.au/tickets-and-fares/go-card/online" title="go card"><i>go</i> card login</a></li>
|
573
|
+
<li><a href="http://translink.com.au/site-information/site-map" title="An overview of the entire TransLink website">Site map</a></li>
|
574
|
+
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help" title="Call us on 13 12 30, e-mail us, see us in person, follow us on Twitter, or send us a letter.">Contact us & help</a></li>
|
575
|
+
</ul>
|
576
|
+
</div>
|
577
|
+
</div>
|
578
|
+
<div id="footer-languages" class="text-shadow-dark">
|
579
|
+
<h2>Information in your language</h2>
|
580
|
+
<ul id="section-other-languages" class="clearfix">
|
581
|
+
<li class="first"><a href="http://translink.com.au/site-information/languages/arabic" title="Arabic"><span dir="rtl">العربية</span></a></li>
|
582
|
+
<li><a href="http://translink.com.au/site-information/languages/chinese" title="Chinese">简体中文</a></li>
|
583
|
+
<li><a href="http://translink.com.au/site-information/languages/french" title="French">Français</a></li>
|
584
|
+
<li><a href="http://translink.com.au/site-information/languages/german" title="German">Deutsch</a></li>
|
585
|
+
<li><a href="http://translink.com.au/site-information/languages/greek" title="Greek">ελληνικά</a></li>
|
586
|
+
<li><a href="http://translink.com.au/site-information/languages/italian" title="Italian">Italiano</a></li>
|
587
|
+
<li><a href="http://translink.com.au/site-information/languages/japanese" title="Japanese">日本語</a></li>
|
588
|
+
<li><a href="http://translink.com.au/site-information/languages/korean" title="Korean">한국어</a></li>
|
589
|
+
<li><a href="http://translink.com.au/site-information/languages/serbian" title="Serbian">Српски</a></li>
|
590
|
+
<li><a href="http://translink.com.au/site-information/languages/spanish" title="Spanish">Español</a></li>
|
591
|
+
<li><a href="http://translink.com.au/site-information/languages/vietnamese" title="Vietnamese">Việt Ngữ</a></li>
|
592
|
+
</ul>
|
593
|
+
</div>
|
594
|
+
<div id="footer-end">
|
595
|
+
<ul id="section-footer-links">
|
596
|
+
<li><a href="http://translink.com.au/site-information/legal/copyright" title="Copyright">Copyright</a></li>
|
597
|
+
<li><a href="http://translink.com.au/site-information/legal/disclaimer" title="Disclaimer">Disclaimer</a></li>
|
598
|
+
<li><a href="http://translink.com.au/site-information/legal/privacy" title="Privacy">Privacy</a></li>
|
599
|
+
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/right-to-information" title="Right to information">Right to information</a></li>
|
600
|
+
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help/website-help" title="Website help">Website help</a></li>
|
601
|
+
</ul>
|
602
|
+
<p>© TransLink Transit Authority 2012 <span style="color: #999;">v2.1.2.29</span></p>
|
603
|
+
</div>
|
604
|
+
</div>
|
605
|
+
</div>
|
606
|
+
</div>
|
607
|
+
</div>
|
526
608
|
|
527
|
-
<
|
528
|
-
|
609
|
+
<script type="text/javascript">
|
610
|
+
$(document).ready(function () {
|
611
|
+
$(".route-timetable:first").before($("<div/>").addClass("tabbed-div").attr("id", "timetable-selection"));
|
612
|
+
$(".route-timetable h3").each(function () {
|
613
|
+
$("#timetable-selection").append($("<a/>").attr("href", "#").text($(this).text()));
|
614
|
+
$(this).parent().hide();
|
615
|
+
$(this).remove();
|
616
|
+
});
|
617
|
+
$("#timetable-selection a").click(function (ev) {
|
618
|
+
ev.preventDefault();
|
619
|
+
$("#timetable-selection a").not(this).removeClass("selected");
|
620
|
+
$(this).addClass("selected");
|
621
|
+
$(".route-timetable, .route-timetable-stops").hide();
|
622
|
+
$(".route-timetable:eq(" + $("#timetable-selection a").index(this) + "), .route-timetable-stops:eq(" + $("#timetable-selection a").index(this) + ")").show();
|
623
|
+
});
|
624
|
+
$("#timetable-selection a:first").click();
|
625
|
+
});
|
626
|
+
</script>
|
529
627
|
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
</
|
541
|
-
|
542
|
-
<td>
|
543
|
-
5.41am
|
544
|
-
|
545
|
-
</td>
|
546
|
-
|
547
|
-
<td>
|
548
|
-
5.51am
|
549
|
-
|
550
|
-
</td>
|
551
|
-
|
552
|
-
<td>
|
553
|
-
6.01am
|
554
|
-
|
555
|
-
</td>
|
556
|
-
|
557
|
-
</tr>
|
558
|
-
|
559
|
-
<tr>
|
560
|
-
<td>
|
561
|
-
Calam Rd<br />
|
562
|
-
Calam Road, Calam Rd (far side of Compton Rd)
|
563
|
-
</td>
|
564
|
-
|
565
|
-
<td>
|
566
|
-
5.16am
|
567
|
-
|
568
|
-
</td>
|
569
|
-
|
570
|
-
<td>
|
571
|
-
5.26am
|
572
|
-
|
573
|
-
</td>
|
574
|
-
|
575
|
-
<td>
|
576
|
-
5.36am
|
577
|
-
|
578
|
-
</td>
|
579
|
-
|
580
|
-
<td>
|
581
|
-
5.46am
|
582
|
-
|
583
|
-
</td>
|
584
|
-
|
585
|
-
<td>
|
586
|
-
5.56am
|
587
|
-
|
588
|
-
</td>
|
589
|
-
|
590
|
-
<td>
|
591
|
-
6.06am
|
592
|
-
|
593
|
-
</td>
|
594
|
-
|
595
|
-
</tr>
|
596
|
-
|
597
|
-
<tr>
|
598
|
-
<td>
|
599
|
-
Altandi<br />
|
600
|
-
Altandi, Mains Rd (far side of Shearwin St)
|
601
|
-
</td>
|
602
|
-
|
603
|
-
<td>
|
604
|
-
5.25am
|
605
|
-
|
606
|
-
</td>
|
607
|
-
|
608
|
-
<td>
|
609
|
-
5.35am
|
610
|
-
|
611
|
-
</td>
|
612
|
-
|
613
|
-
<td>
|
614
|
-
5.45am
|
615
|
-
|
616
|
-
</td>
|
617
|
-
|
618
|
-
<td>
|
619
|
-
5.55am
|
620
|
-
|
621
|
-
</td>
|
622
|
-
|
623
|
-
<td>
|
624
|
-
6.05am
|
625
|
-
|
626
|
-
</td>
|
627
|
-
|
628
|
-
<td>
|
629
|
-
6.15am
|
630
|
-
|
631
|
-
</td>
|
632
|
-
|
633
|
-
</tr>
|
634
|
-
|
635
|
-
<tr>
|
636
|
-
<td>
|
637
|
-
Sunnybank<br />
|
638
|
-
Sunnybank, Mains Rd (far side of Mccullough St)
|
639
|
-
</td>
|
640
|
-
|
641
|
-
<td>
|
642
|
-
5.27am
|
643
|
-
|
644
|
-
</td>
|
645
|
-
|
646
|
-
<td>
|
647
|
-
5.37am
|
648
|
-
|
649
|
-
</td>
|
650
|
-
|
651
|
-
<td>
|
652
|
-
5.47am
|
653
|
-
|
654
|
-
</td>
|
655
|
-
|
656
|
-
<td>
|
657
|
-
5.59am
|
658
|
-
|
659
|
-
</td>
|
660
|
-
|
661
|
-
<td>
|
662
|
-
6.09am
|
663
|
-
|
664
|
-
</td>
|
665
|
-
|
666
|
-
<td>
|
667
|
-
6.19am
|
668
|
-
|
669
|
-
</td>
|
670
|
-
|
671
|
-
</tr>
|
672
|
-
|
673
|
-
<tr>
|
674
|
-
<td>
|
675
|
-
Mains Rd Park & Ride<br />
|
676
|
-
Mains Rd Park & Ride, Mains Rd opposite approaching Omeo St
|
677
|
-
</td>
|
678
|
-
|
679
|
-
<td>
|
680
|
-
5.30am
|
681
|
-
|
682
|
-
</td>
|
683
|
-
|
684
|
-
<td>
|
685
|
-
5.40am
|
686
|
-
|
687
|
-
</td>
|
688
|
-
|
689
|
-
<td>
|
690
|
-
5.50am
|
691
|
-
|
692
|
-
</td>
|
693
|
-
|
694
|
-
<td>
|
695
|
-
6.02am
|
696
|
-
|
697
|
-
</td>
|
698
|
-
|
699
|
-
<td>
|
700
|
-
6.12am
|
701
|
-
|
702
|
-
</td>
|
703
|
-
|
704
|
-
<td>
|
705
|
-
6.22am
|
706
|
-
|
707
|
-
</td>
|
708
|
-
|
709
|
-
</tr>
|
710
|
-
|
711
|
-
<tr>
|
712
|
-
<td>
|
713
|
-
Griffith University Busway<br />
|
714
|
-
Griffith University Platform 1, South East Busway At Sports Rd
|
715
|
-
</td>
|
716
|
-
|
717
|
-
<td>
|
718
|
-
5.34am
|
719
|
-
|
720
|
-
</td>
|
721
|
-
|
722
|
-
<td>
|
723
|
-
5.44am
|
724
|
-
|
725
|
-
</td>
|
726
|
-
|
727
|
-
<td>
|
728
|
-
5.54am
|
729
|
-
|
730
|
-
</td>
|
731
|
-
|
732
|
-
<td>
|
733
|
-
6.06am
|
734
|
-
|
735
|
-
</td>
|
736
|
-
|
737
|
-
<td>
|
738
|
-
6.16am
|
739
|
-
|
740
|
-
</td>
|
741
|
-
|
742
|
-
<td>
|
743
|
-
6.26am
|
744
|
-
|
745
|
-
</td>
|
746
|
-
|
747
|
-
</tr>
|
748
|
-
|
749
|
-
<tr>
|
750
|
-
<td>
|
751
|
-
Mater Hill Busway<br />
|
752
|
-
Mater Hill Platform 1, South East Busway opposite Raymond Tce
|
753
|
-
</td>
|
754
|
-
|
755
|
-
<td>
|
756
|
-
5.42am
|
757
|
-
|
758
|
-
</td>
|
759
|
-
|
760
|
-
<td>
|
761
|
-
5.52am
|
762
|
-
|
763
|
-
</td>
|
764
|
-
|
765
|
-
<td>
|
766
|
-
6.02am
|
767
|
-
|
768
|
-
</td>
|
769
|
-
|
770
|
-
<td>
|
771
|
-
6.14am
|
772
|
-
|
773
|
-
</td>
|
774
|
-
|
775
|
-
<td>
|
776
|
-
6.24am
|
777
|
-
|
778
|
-
</td>
|
779
|
-
|
780
|
-
<td>
|
781
|
-
6.34am
|
782
|
-
|
783
|
-
</td>
|
784
|
-
|
785
|
-
</tr>
|
786
|
-
|
787
|
-
<tr>
|
788
|
-
<td>
|
789
|
-
South Bank Busway<br />
|
790
|
-
South Bank Platform 1, South East Busway At Tribune St
|
791
|
-
</td>
|
792
|
-
|
793
|
-
<td>
|
794
|
-
5.44am
|
795
|
-
|
796
|
-
</td>
|
797
|
-
|
798
|
-
<td>
|
799
|
-
5.54am
|
800
|
-
|
801
|
-
</td>
|
802
|
-
|
803
|
-
<td>
|
804
|
-
6.04am
|
805
|
-
|
806
|
-
</td>
|
807
|
-
|
808
|
-
<td>
|
809
|
-
6.16am
|
810
|
-
|
811
|
-
</td>
|
812
|
-
|
813
|
-
<td>
|
814
|
-
6.26am
|
815
|
-
|
816
|
-
</td>
|
817
|
-
|
818
|
-
<td>
|
819
|
-
6.36am
|
820
|
-
|
821
|
-
</td>
|
822
|
-
|
823
|
-
</tr>
|
824
|
-
|
825
|
-
<tr>
|
826
|
-
<td>
|
827
|
-
Cultural Centre Busway<br />
|
828
|
-
Cultural Centre Platform 1, South East Busway At Grey St
|
829
|
-
</td>
|
830
|
-
|
831
|
-
<td>
|
832
|
-
5.46am
|
833
|
-
|
834
|
-
</td>
|
835
|
-
|
836
|
-
<td>
|
837
|
-
5.56am
|
838
|
-
|
839
|
-
</td>
|
840
|
-
|
841
|
-
<td>
|
842
|
-
6.06am
|
843
|
-
|
844
|
-
</td>
|
845
|
-
|
846
|
-
<td>
|
847
|
-
6.18am
|
848
|
-
|
849
|
-
</td>
|
850
|
-
|
851
|
-
<td>
|
852
|
-
6.28am
|
853
|
-
|
854
|
-
</td>
|
855
|
-
|
856
|
-
<td>
|
857
|
-
6.38am
|
858
|
-
|
859
|
-
</td>
|
860
|
-
|
861
|
-
</tr>
|
862
|
-
|
863
|
-
<tr>
|
864
|
-
<td>
|
865
|
-
Queen St Bus Station A6<br />
|
866
|
-
Qsbs Stop A6
|
867
|
-
</td>
|
868
|
-
|
869
|
-
<td>
|
870
|
-
5.50am
|
871
|
-
|
872
|
-
</td>
|
873
|
-
|
874
|
-
<td>
|
875
|
-
6.00am
|
876
|
-
|
877
|
-
</td>
|
878
|
-
|
879
|
-
<td>
|
880
|
-
6.10am
|
881
|
-
|
882
|
-
</td>
|
883
|
-
|
884
|
-
<td>
|
885
|
-
6.22am
|
886
|
-
|
887
|
-
</td>
|
888
|
-
|
889
|
-
<td>
|
890
|
-
6.32am
|
891
|
-
|
892
|
-
</td>
|
893
|
-
|
894
|
-
<td>
|
895
|
-
6.42am
|
896
|
-
|
897
|
-
</td>
|
898
|
-
|
899
|
-
</tr>
|
900
|
-
|
901
|
-
</tbody>
|
902
|
-
|
903
|
-
<tfoot>
|
904
|
-
<tr>
|
905
|
-
<td><strong>Click for times for all stops</strong></td>
|
906
|
-
|
907
|
-
<td style="white-space: nowrap">
|
908
|
-
<a href="/travel-information/services-and-timetables/trip-details/281889?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
909
|
-
</td>
|
910
|
-
|
911
|
-
<td style="white-space: nowrap">
|
912
|
-
<a href="/travel-information/services-and-timetables/trip-details/281890?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
913
|
-
</td>
|
914
|
-
|
915
|
-
<td style="white-space: nowrap">
|
916
|
-
<a href="/travel-information/services-and-timetables/trip-details/281891?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
917
|
-
</td>
|
918
|
-
|
919
|
-
<td style="white-space: nowrap">
|
920
|
-
<a href="/travel-information/services-and-timetables/trip-details/281892?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
921
|
-
</td>
|
922
|
-
|
923
|
-
<td style="white-space: nowrap">
|
924
|
-
<a href="/travel-information/services-and-timetables/trip-details/281893?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
925
|
-
</td>
|
926
|
-
|
927
|
-
<td style="white-space: nowrap">
|
928
|
-
<a href="/travel-information/services-and-timetables/trip-details/251997?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
929
|
-
</td>
|
930
|
-
|
931
|
-
</tr>
|
932
|
-
</tfoot>
|
933
|
-
|
934
|
-
</table>
|
935
|
-
<br />
|
936
|
-
<br />
|
937
|
-
|
938
|
-
<table class="contentTable">
|
939
|
-
<caption class="access">Timetable summary for services</caption>
|
940
|
-
<thead>
|
941
|
-
<tr>
|
942
|
-
<th>Selected stops</th>
|
943
|
-
|
944
|
-
<th>130</th>
|
945
|
-
|
946
|
-
</tr>
|
947
|
-
</thead>
|
948
|
-
<tbody>
|
949
|
-
|
950
|
-
<tr>
|
951
|
-
<td>
|
952
|
-
Illaweena St (Waterstone)<br />
|
953
|
-
Waterstone, Illaweena St far side of Waterbrooke Crt
|
954
|
-
</td>
|
955
|
-
|
956
|
-
<td>
|
957
|
-
10.51pm
|
958
|
-
|
959
|
-
</td>
|
960
|
-
|
961
|
-
</tr>
|
962
|
-
|
963
|
-
<tr>
|
964
|
-
<td>
|
965
|
-
Parkinson East<br />
|
966
|
-
Parkinson East, Algester Rd approaching opposite Lake Eyre Cr
|
967
|
-
</td>
|
968
|
-
|
969
|
-
<td>
|
970
|
-
10.53pm
|
971
|
-
|
972
|
-
</td>
|
973
|
-
|
974
|
-
</tr>
|
975
|
-
|
976
|
-
<tr>
|
977
|
-
<td>
|
978
|
-
Algester<br />
|
979
|
-
Stop 83, 63 Ridgewood Rd (approaching Silkwood St)
|
980
|
-
</td>
|
981
|
-
|
982
|
-
<td>
|
983
|
-
11.02pm
|
984
|
-
|
985
|
-
</td>
|
986
|
-
|
987
|
-
</tr>
|
988
|
-
|
989
|
-
<tr>
|
990
|
-
<td>
|
991
|
-
Calam Rd<br />
|
992
|
-
Calam Road, Calam Rd (far side of Compton Rd)
|
993
|
-
</td>
|
994
|
-
|
995
|
-
<td>
|
996
|
-
11.06pm
|
997
|
-
|
998
|
-
</td>
|
999
|
-
|
1000
|
-
</tr>
|
1001
|
-
|
1002
|
-
<tr>
|
1003
|
-
<td>
|
1004
|
-
Altandi<br />
|
1005
|
-
Altandi, Mains Rd (far side of Shearwin St)
|
1006
|
-
</td>
|
1007
|
-
|
1008
|
-
<td>
|
1009
|
-
11.12pm
|
1010
|
-
|
1011
|
-
</td>
|
1012
|
-
|
1013
|
-
</tr>
|
1014
|
-
|
1015
|
-
<tr>
|
1016
|
-
<td>
|
1017
|
-
Sunnybank<br />
|
1018
|
-
Sunnybank, Mains Rd (far side of Mccullough St)
|
1019
|
-
</td>
|
1020
|
-
|
1021
|
-
<td>
|
1022
|
-
11.14pm
|
1023
|
-
|
1024
|
-
</td>
|
1025
|
-
|
1026
|
-
</tr>
|
1027
|
-
|
1028
|
-
<tr>
|
1029
|
-
<td>
|
1030
|
-
Mains Rd Park & Ride<br />
|
1031
|
-
Mains Rd Park & Ride, Mains Rd opposite approaching Omeo St
|
1032
|
-
</td>
|
1033
|
-
|
1034
|
-
<td>
|
1035
|
-
11.17pm
|
1036
|
-
|
1037
|
-
</td>
|
1038
|
-
|
1039
|
-
</tr>
|
1040
|
-
|
1041
|
-
<tr>
|
1042
|
-
<td>
|
1043
|
-
Griffith University Busway<br />
|
1044
|
-
Griffith University Platform 1, South East Busway At Sports Rd
|
1045
|
-
</td>
|
1046
|
-
|
1047
|
-
<td>
|
1048
|
-
11.21pm
|
1049
|
-
|
1050
|
-
</td>
|
1051
|
-
|
1052
|
-
</tr>
|
1053
|
-
|
1054
|
-
<tr>
|
1055
|
-
<td>
|
1056
|
-
Mater Hill Busway<br />
|
1057
|
-
Mater Hill Platform 1, South East Busway opposite Raymond Tce
|
1058
|
-
</td>
|
1059
|
-
|
1060
|
-
<td>
|
1061
|
-
11.29pm
|
1062
|
-
|
1063
|
-
</td>
|
1064
|
-
|
1065
|
-
</tr>
|
1066
|
-
|
1067
|
-
<tr>
|
1068
|
-
<td>
|
1069
|
-
South Bank Busway<br />
|
1070
|
-
South Bank Platform 1, South East Busway At Tribune St
|
1071
|
-
</td>
|
1072
|
-
|
1073
|
-
<td>
|
1074
|
-
11.31pm
|
1075
|
-
|
1076
|
-
</td>
|
1077
|
-
|
1078
|
-
</tr>
|
1079
|
-
|
1080
|
-
<tr>
|
1081
|
-
<td>
|
1082
|
-
Cultural Centre Busway<br />
|
1083
|
-
Cultural Centre Platform 1, South East Busway At Grey St
|
1084
|
-
</td>
|
1085
|
-
|
1086
|
-
<td>
|
1087
|
-
11.33pm
|
1088
|
-
|
1089
|
-
</td>
|
1090
|
-
|
1091
|
-
</tr>
|
1092
|
-
|
1093
|
-
<tr>
|
1094
|
-
<td>
|
1095
|
-
Queen St Bus Station A6<br />
|
1096
|
-
Qsbs Stop A6
|
1097
|
-
</td>
|
1098
|
-
|
1099
|
-
<td>
|
1100
|
-
11.36pm
|
1101
|
-
|
1102
|
-
</td>
|
1103
|
-
|
1104
|
-
</tr>
|
1105
|
-
|
1106
|
-
</tbody>
|
1107
|
-
|
1108
|
-
<tfoot>
|
1109
|
-
<tr>
|
1110
|
-
<td><strong>Click for times for all stops</strong></td>
|
1111
|
-
|
1112
|
-
<td style="white-space: nowrap">
|
1113
|
-
<a href="/travel-information/services-and-timetables/trip-details/252075?timetableDate=2011-11-14" title="Trip times for all stops">Trip details</a>
|
1114
|
-
</td>
|
1115
|
-
|
1116
|
-
</tr>
|
1117
|
-
</tfoot>
|
1118
|
-
|
1119
|
-
</table>
|
1120
|
-
<br />
|
1121
|
-
<br />
|
1122
|
-
|
1123
|
-
<div class="icon_info">
|
1124
|
-
<p class="icon_info">Check <a href="http://translink.com.au/travel-information/service-updates">service updates</a> for current service status and upcoming changes before you travel</p>
|
1125
|
-
|
1126
|
-
</div>
|
1127
|
-
</div>
|
1128
|
-
|
1129
|
-
</div>
|
1130
|
-
<div id="contentrightCol" class="clearfix">
|
1131
|
-
|
1132
|
-
|
1133
|
-
<div class="panel first">
|
1134
|
-
<h3>Related Links</h3>
|
1135
|
-
<ul>
|
1136
|
-
<li>
|
1137
|
-
<a href="http://translink.com.au/travel-information/services-and-timetables/search/results?term=130&mode%5B%5D=2&processSearch=submit">Service updates and printable timetable for this route</a>
|
1138
|
-
</li>
|
1139
|
-
</ul>
|
1140
|
-
</div>
|
1141
|
-
|
1142
|
-
|
1143
|
-
</div>
|
1144
|
-
</div>
|
1145
|
-
<a id="footer-shortcut" tabindex="0"></a>
|
1146
|
-
<div id="footer">
|
1147
|
-
<div id="footer-nav">
|
1148
|
-
<div id="footer-travelinfo" class="footer-links leftalign">
|
1149
|
-
<h2>Travel Information</h2>
|
1150
|
-
<div class="underline"> </div>
|
1151
|
-
<ul>
|
1152
|
-
<li>
|
1153
|
-
<a href="/travel-information/journey-planner" title="Plan your journey">Journey planner</a>
|
1154
|
-
</li>
|
1155
|
-
<li>
|
1156
|
-
<a href="http://translink.com.au/travel-information/services-and-timetables" title="View information about our services and timetables">Services and timetables</a>
|
1157
|
-
</li>
|
1158
|
-
<li>
|
1159
|
-
<a href="http://translink.com.au/travel-information/maps" title="See our maps">
|
1160
|
-
Maps
|
1161
|
-
</a>
|
1162
|
-
</li>
|
1163
|
-
<li>
|
1164
|
-
<a href="http://translink.com.au/travel-information/service-updates" title="View current status and upcoming changes">
|
1165
|
-
Service updates
|
1166
|
-
</a>
|
1167
|
-
</li>
|
1168
|
-
<li>
|
1169
|
-
<a href="http://translink.com.au/travel-information/how-to" title="How to guides">
|
1170
|
-
How to…
|
1171
|
-
</a>
|
1172
|
-
</li>
|
1173
|
-
</ul>
|
1174
|
-
<ul>
|
1175
|
-
<li><a href="http://translink.com.au/travel-information" title="More travel information">
|
1176
|
-
More travel information</a></li>
|
1177
|
-
</ul>
|
1178
|
-
</div>
|
1179
|
-
<div id="footer-tickets" class="footer-links leftalign">
|
1180
|
-
<h2>Tickets and fares</h2>
|
1181
|
-
<div class="underline"> </div>
|
1182
|
-
<ul>
|
1183
|
-
<li>
|
1184
|
-
<a href="http://translink.com.au/tickets-and-fares/go-card" title="View information about go card"><i>go</i> card</a>
|
1185
|
-
</li>
|
1186
|
-
<li>
|
1187
|
-
<a href="http://translink.com.au/tickets-and-fares/other-tickets" title="View information about our other tickets and passes">Other tickets</a>
|
1188
|
-
</li>
|
1189
|
-
<li>
|
1190
|
-
<a href="http://translink.com.au/tickets-and-fares/fares" title="View information about fares">Fares</a>
|
1191
|
-
</li>
|
1192
|
-
<li><a href="http://translink.com.au/tickets-and-fares/how-to" title="How to guides">
|
1193
|
-
How to…</a></li>
|
1194
|
-
</ul>
|
1195
|
-
<ul>
|
1196
|
-
<li><a href="http://translink.com.au/tickets-and-fares" title="More on tickets and fares">More
|
1197
|
-
on tickets and fares</a></li>
|
1198
|
-
</ul>
|
1199
|
-
</div>
|
1200
|
-
<div id="footer-about" class="leftalign">
|
1201
|
-
<h2>About TransLink</h2>
|
1202
|
-
<div class="underline"> </div>
|
1203
|
-
<ul>
|
1204
|
-
<li>
|
1205
|
-
<a href="http://translink.com.au/about-translink/who-we-are" title="Find out more about who we are">Who we are</a>
|
1206
|
-
</li>
|
1207
|
-
<li>
|
1208
|
-
<a href="http://translink.com.au/about-translink/what-we-do" title="See what we do">What we do</a>
|
1209
|
-
</li>
|
1210
|
-
<li>
|
1211
|
-
<a href="http://translink.com.au/about-translink/what-we-do/public-transport-planning" title="See what we've got planned for the future">Our future plans</a>
|
1212
|
-
</li>
|
1213
|
-
<li>
|
1214
|
-
<a href="http://translink.com.au/about-translink/our-service-area" title="View information about where we operate">Our service area</a>
|
1215
|
-
</li>
|
1216
|
-
<li>
|
1217
|
-
<a href="http://translink.com.au/about-translink/reporting-and-publications" title="View our reports and publications">Reporting and publications</a>
|
1218
|
-
</li>
|
1219
|
-
</ul>
|
1220
|
-
<ul>
|
1221
|
-
<li>
|
1222
|
-
<a href="http://translink.com.au/about-translink" title="More about TransLink">More about TransLink</a>
|
1223
|
-
</li>
|
1224
|
-
</ul>
|
1225
|
-
</div>
|
1226
|
-
<div id="footer-searchbox" class="rightalign">
|
1227
|
-
<h3 id="cantfindheading">
|
1228
|
-
Can't find what you're looking for? Try…</h3>
|
1229
|
-
<form action="http://pan.search.qld.gov.au/search/search.cgi" class="searchform jLabel" id="footer-search" name="footer-search">
|
1230
|
-
<fieldset>
|
1231
|
-
<legend class="access">Search the TransLink website</legend>
|
1232
|
-
<input type="hidden" name="num_ranks" value="10" />
|
1233
|
-
<input type="hidden" name="tiers" value="off" />
|
1234
|
-
<input type="hidden" name="collection" value="qld-gov" />
|
1235
|
-
<input type="hidden" name="profile" value="translink" />
|
1236
|
-
<p>
|
1237
|
-
<label for="searchbox2" id="searchlabel2">
|
1238
|
-
Search site…</label>
|
1239
|
-
<input type="text" name="query" id="searchbox2" value="" class="searchfield" autocomplete="off" /><input
|
1240
|
-
type="submit" value="Search" class="searchbutton" id="footersearch-button" />
|
1241
|
-
</p>
|
1242
|
-
</fieldset>
|
1243
|
-
</form>
|
1244
|
-
<ul id="footer-courtesy">
|
1245
|
-
<li><a href="http://translink.com.au/utils/goto/context/mobile" title="View the website on your mobile">Mobile site</a></li>
|
1246
|
-
<li><a href="http://translink.com.au/tickets-and-fares/go-card/online" title="go card"><i>go</i> card login</a></li>
|
1247
|
-
<li><a href="http://translink.com.au/site-information/site-map" title="An overview of the entire TransLink website">Site map</a></li>
|
1248
|
-
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help" title="Call us on 13 12 30, e-mail us, see us in person, follow us on Twitter, or send us a letter.">Contact us & help</a></li>
|
1249
|
-
</ul>
|
1250
|
-
<div id="footer-icons">
|
1251
|
-
<a class="hotspot1" href="http://translink.com.au/travel-information/services-and-timetables/buses" title="View the bus services page."> </a>
|
1252
|
-
<a class="hotspot2" href="http://translink.com.au/travel-information/services-and-timetables/trains" title="View the train services page."> </a>
|
1253
|
-
<a class="hotspot3" href="http://translink.com.au/travel-information/services-and-timetables/ferries" title="View the ferry services page."> </a>
|
1254
|
-
</div>
|
1255
|
-
</div>
|
1256
|
-
</div>
|
1257
|
-
<div id="footer-languages" class="textShadowDark">
|
1258
|
-
<h3>Information in your language</h3>
|
1259
|
-
<ul id="section-other-languages" class="clearfix">
|
1260
|
-
<li class="first"><a href="http://translink.com.au/site-information/languages/arabic" title="Arabic"><span dir="rtl">العربية</span></a></li>
|
1261
|
-
<li><a href="http://translink.com.au/site-information/languages/chinese" title="Chinese">简体中文</a></li>
|
1262
|
-
<li><a href="http://translink.com.au/site-information/languages/french" title="French">Français</a></li>
|
1263
|
-
<li><a href="http://translink.com.au/site-information/languages/german" title="German">Deutsch</a></li>
|
1264
|
-
<li><a href="http://translink.com.au/site-information/languages/greek" title="Greek">ελληνικά</a></li>
|
1265
|
-
<li><a href="http://translink.com.au/site-information/languages/italian" title="Italian">Italiano</a></li>
|
1266
|
-
<li><a href="http://translink.com.au/site-information/languages/japanese" title="Japanese">日本語</a></li>
|
1267
|
-
<li><a href="http://translink.com.au/site-information/languages/korean" title="Korean">한국어</a></li>
|
1268
|
-
<li><a href="http://translink.com.au/site-information/languages/serbian" title="Serbian">Српски</a></li>
|
1269
|
-
<li><a href="http://translink.com.au/site-information/languages/spanish" title="Spanish">Español</a></li>
|
1270
|
-
<li><a href="http://translink.com.au/site-information/languages/vietnamese" title="Vietnamese">Việt Ngữ</a></li>
|
1271
|
-
</ul>
|
1272
|
-
</div>
|
1273
|
-
<div id="footer-end">
|
1274
|
-
<ul id="section-footer-links">
|
1275
|
-
<li><a href="http://translink.com.au/site-information/legal/copyright" title="Copyright">Copyright</a></li>
|
1276
|
-
<li><a href="http://translink.com.au/site-information/legal/disclaimer" title="Disclaimer">Disclaimer</a></li>
|
1277
|
-
<li><a href="http://translink.com.au/site-information/legal/privacy" title="Privacy">Privacy</a></li>
|
1278
|
-
<li><a href="http://translink.com.au/about-translink/reporting-and-publications/right-to-information" title="Right to information">Right to information</a></li>
|
1279
|
-
<li class="last"><a href="http://translink.com.au/site-information/contact-us-and-help/website-help" title="Website help">Website help</a></li>
|
1280
|
-
</ul>
|
1281
|
-
<p>© TransLink Transit Authority 2010 <span style="color: #999;">v1.7.7.139</span></p>
|
1282
|
-
</div>
|
1283
|
-
</div>
|
1284
|
-
</div>
|
1285
|
-
</div>
|
1286
|
-
</div>
|
628
|
+
<script type="text/javascript">
|
629
|
+
var _gaq = _gaq || [];
|
630
|
+
_gaq.push(['_setAccount', 'UA-18464408-1']);
|
631
|
+
_gaq.push(['_setDomainName', '.translink.com.au']);
|
632
|
+
_gaq.push(['_trackPageview', '/travel-information/network-information/buses/130/2012-06-21']);
|
633
|
+
(function () {
|
634
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
635
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
636
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
637
|
+
})();
|
638
|
+
</script>
|
1287
639
|
</body>
|
1288
|
-
</html>
|
640
|
+
</html>
|