From: maxious Date: Sun, 13 Feb 2011 03:52:24 +0000 Subject: Interpolate stop times for non timing point stops X-Git-Url: http://maxious.lambdacomplex.org/git/?p=bus.git&a=commitdiff&h=7f372a90c7c34706df4e6d370179cdd4318c57b8 --- Interpolate stop times for non timing point stops --- --- a/busui/common.inc.php +++ b/busui/common.inc.php @@ -2,8 +2,12 @@ date_default_timezone_set('Australia/ACT'); $APIurl = "http://localhost:8765"; error_reporting(E_ALL ^ E_NOTICE); + +// SELECT array_to_string(array(SELECT REPLACE(name_2006, ',', '\,') as name FROM suburbs order by name), ',') +$suburbs = explode(",","Acton,Ainslie,Amaroo,Aranda,Banks,Barton,Belconnen,Bonner,Bonython,Braddon,Bruce,Calwell,Campbell,Chapman,Charnwood,Chifley,Chisholm,City,Conder,Cook,Curtin,Deakin,Dickson,Downer,Duffy,Dunlop,Evatt,Fadden,Farrer,Fisher,Florey,Flynn,Forrest,Franklin,Fraser,Fyshwick,Garran,Gilmore,Giralang,Gordon,Gowrie,Greenway,Griffith,Gungahlin,Hackett,Hall,Harrison,Hawker,Higgins,Holder,Holt,Hughes,Hume,Isaacs,Isabella Plains,Kaleen,Kambah,Kingston,Latham,Lawson,Lyneham,Lyons,Macarthur,Macgregor,Macquarie,Mawson,McKellar,Melba,Mitchell,Monash,Narrabundah,Ngunnawal,Nicholls,Oaks Estate,O'Connor,O'Malley,Oxley,Page,Palmerston,Parkes,Pearce,Phillip,Pialligo,Red Hill,Reid,Richardson,Rivett,Russell,Scullin,Spence,Stirling,Symonston,Tharwa,Theodore,Torrens,Turner,Unclassified ACT,Wanniassa,Waramanga,Watson,Weetangera,Weston,Yarralumla"); + // you have to open the session to be able to modify or remove it - session_start(); +session_start(); function isDebug() --- a/busui/schedule_viewer.py +++ b/busui/schedule_viewer.py @@ -88,7 +88,10 @@ def StopToTuple(stop): """Return tuple as expected by javascript function addStopMarkerFromList""" return (stop.stop_id, stop.stop_name, float(stop.stop_lat), - float(stop.stop_lon), stop.location_type) + float(stop.stop_lon), stop.location_type, stop.stop_code) +def StopCodeToTuple(stop, code): + return (stop.stop_id, stop.stop_name, float(stop.stop_lat), + float(stop.stop_lon), stop.location_type, code) class ScheduleRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): @@ -301,11 +304,11 @@ except KeyError: # if a non-existent trip is searched for, the return nothing return - time_stops = trip.GetTimeStops() + time_stops = trip.GetTimeInterpolatedStops() stops = [] times = [] - for arr,dep,stop in time_stops: - stops.append(StopToTuple(stop)) + for arr,ts,is_timingpoint in time_stops: + stops.append(StopToTuple(ts.stop)) times.append(arr) return [stops, times] @@ -357,8 +360,10 @@ schedule = self.server.schedule matches = [] for s in schedule.GetStopList(): + #wtf, stop_code changes into stop_name after .find() + virginstopCode = s.stop_code if s.stop_code.find("Wj") == -1: - matches.append(StopToTuple(s)) + matches.append(StopCodeToTuple(s,virginstopCode)) return matches def handle_json_GET_stopsearch(self, params): @@ -366,8 +371,28 @@ query = params.get('q', None).lower() matches = [] for s in schedule.GetStopList(): - if s.stop_id.lower().find(query) != -1 or s.stop_name.lower().find(query) != -1: + if s.stop_name.lower().find(query) != -1 or s.stop_code.lower().find(query) != -1: matches.append(StopToTuple(s)) + return matches + + def handle_json_GET_stopnamesearch(self, params): + schedule = self.server.schedule + query = params.get('q', None).lower() + matches = [] + for s in schedule.GetStopList(): + if s.stop_name.lower().find(query) != -1: + matches.append(StopToTuple(s)) + return matches + + def handle_json_GET_stopcodesearch(self, params): + schedule = self.server.schedule + query = params.get('q', None).lower() + matches = [] + for s in schedule.GetStopList(): + #wtf, stop_code changes into stop_name after .find() + virginstopCode = s.stop_code + if s.stop_code.lower().find(query) != -1: + matches.append(StopCodeToTuple(s,virginstopCode)) return matches def handle_json_GET_stop(self, params): --- a/busui/stopList.php +++ b/busui/stopList.php @@ -4,12 +4,22 @@ echo'
'; - +// By suburb +if (isset($_REQUEST['suburbs'])) { + echo ' '; +} else { +// Timing Points / All stops echo '
Go to letter: '; foreach(range('A','Z') as $letter) { @@ -22,7 +32,8 @@ echo ' '; - +} include_footer(); ?> --- a/busui/view.sh +++ b/busui/view.sh @@ -1,8 +1,2 @@ -# input location (via GPS or favourites or search) and destination (via searchable list, optional) -# http://10.0.1.153:8765/json/boundboxstops?n=-35.27568499917103&e=149.1346514225006&s=-35.279495003493516&w=149.12622928619385&limit=50 -# http://10.0.1.153:8765/json/stoptrips?stop=43&time=64440 # recursively call to show all services nearby, sort by distance, need to filter by service period -# Hey, can pick destination again from a list filtered to places these stops go if you're curious! -# http://10.0.1.153:8765/json/tripstoptimes?trip=2139 # Can recursively call and parse based on intended destination to show ETA -# http://10.0.1.153:8765/json/triprows?trip=2139 # For pretty maps python schedule_viewer.py --feed=../maxious-canberra-transit-feed/cbrfeed.zip --key=ABQIAAAA95XYXN0cki3Yj_Sb71CFvBTPaLd08ONybQDjcH_VdYtHHLgZvRTw2INzI_m17_IoOUqH3RNNmlTk1Q --- a/maxious-canberra-transit-feed/04-generateymlinclude.rb +++ b/maxious-canberra-transit-feed/04-generateymlinclude.rb @@ -27,7 +27,6 @@ time_points.each do |time_point| #pp time_point # 0 = name - # 1 = lat*100000 # 2 = lng*100000 #pp time_point[0] @@ -45,8 +44,9 @@ # 1 = lat*100000 # 2 = lng*100000 # 3 = name + # 4 = suburb(s) #pp time_point[0] - f2.puts " - { name: #{stop[3]},stop_code: #{stop[0]}, lat: #{Float(stop[1])/10000000}, lng: #{Float(stop[2])/10000000}}" + f2.puts " - { name: #{stop[3]},stop_code: #{stop[0]}!#{stop[4]}, lat: #{Float(stop[1])/10000000}, lng: #{Float(stop[2])/10000000}}" end f2.puts "routes:\n"; end --- a/maxious-canberra-transit-feed/cbrtable.yml.in +++ b/maxious-canberra-transit-feed/cbrtable.yml.in @@ -228,1664 +228,1664 @@ - { name: Woden Bus Station (Platform 9),stop_code: Woden Bus Station (Platform 9), lat: -35.3442083, lng: 149.0877771} - { name: Woodcock / Clare Dennis,stop_code: Woodcock / Clare Dennis, lat: -35.4422566, lng: 149.0854375} - { name: Yarralumla,stop_code: Yarralumla, lat: -35.30725, lng: 149.0972} - - { name: Cowper Street,stop_code: Wjz5SWN, lat: -35.2535974, lng: 149.1390827} - - { name: Learmonth Drive,stop_code: Wjz230G, lat: -35.4032475, lng: 149.0634951} - - { name: Hurtle Avenue,stop_code: Wjz1dX2, lat: -35.4341379, lng: 149.0831762} - - { name: Copland Drive,stop_code: Wjz67xQ, lat: -35.2046532, lng: 149.0691406} - - { name: Baddeley Crescent,stop_code: Wjz67nz, lat: -35.2006201, lng: 149.0659965} - - { name: King Edward Terrace,stop_code: Wjz4S1U, lat: -35.2983385, lng: 149.1296979} - - { name: Theodore Street,stop_code: Wjz3fCx, lat: -35.333256, lng: 149.0798309} - - { name: Hopetoun Circuit,stop_code: Wjz4A7o, lat: -35.3052441, lng: 149.107042} - - { name: Schlich Street,stop_code: Wjz4tpE, lat: -35.3038329, lng: 149.1005569} - - { name: Hopetoun Circuit,stop_code: Wjz4A2c, lat: -35.3082791, lng: 149.1066534} - - { name: Lawrence Wackett Crescent,stop_code: Wjz1HEb, lat: -35.4471149, lng: 149.1245306} - - { name: Chippindall Circuit,stop_code: Wjz1xWZ, lat: -35.4565002, lng: 149.1174205} - - { name: Goyder Street,stop_code: Wjzb705, lat: -35.3370433, lng: 149.1505109} - - { name: Clift Crescent,stop_code: Wjz1CdY, lat: -35.4270927, lng: 149.1090734} - - { name: Kingsford Smith Drive,stop_code: Wjr_UPA, lat: -35.1977713, lng: 149.0605874} - - { name: Clarey Crescent,stop_code: Wjz707Z, lat: -35.1948745, lng: 149.0637273} - - { name: Owen Dixon Drive,stop_code: Wjz70IY, lat: -35.1970964, lng: 149.0706179} - - { name: Copland Drive,stop_code: Wjz67BD, lat: -35.2015929, lng: 149.0686908} - - { name: Bimbimbie Street,stop_code: Wjz68Y0, lat: -35.2413091, lng: 149.0832098} - - { name: Bimbimbie Street,stop_code: Wjz68Ip, lat: -35.2412881, lng: 149.0809439} - - { name: Bandjalong Crescent,stop_code: Wjz5dQt, lat: -35.2573605, lng: 149.0822652} - - { name: Cooyong Street,stop_code: Wjz5NAQ, lat: -35.2794375, lng: 149.1349942} - - { name: Kambah pool Road,stop_code: WjrXMN9, lat: -35.3751239, lng: 149.0489789} - - { name: Hodgson Crescent,stop_code: Wjz3i6e, lat: -35.3603188, lng: 149.084779} - - { name: Melrose Drive,stop_code: Wjz3k1J, lat: -35.3528521, lng: 149.0854118} - - { name: Amy Ackman Street,stop_code: Wjz7ZaP, lat: -35.1710474, lng: 149.141884} - - { name: Cowper Street,stop_code: Wjz5Za5, lat: -35.2588175, lng: 149.1409439} - - { name: Gundaroo Drive,stop_code: Wjz7xp9, lat: -35.193896, lng: 149.1108506} - - { name: Constitution Avenue,stop_code: Wjz5MsT, lat: -35.2846782, lng: 149.133671} - - { name: Hindmarsh Drive,stop_code: WjrXBSS, lat: -35.3438051, lng: 149.0278253} - - { name: Northbourne Avenue,stop_code: Wjz5SrO, lat: -35.2528485, lng: 149.1336705} - - { name: Northbourne Avenue,stop_code: Wjz5Pl0, lat: -35.2681201, lng: 149.1312} - - { name: Northbourne Avenue,stop_code: Wjz5N5h, lat: -35.2790396, lng: 149.1288222} - - { name: Northbourne Avenue,stop_code: Wjz5RkN, lat: -35.2577065, lng: 149.1322899} - - { name: Kitchener Street,stop_code: Wjz3uK7, lat: -35.3382669, lng: 149.1024969} - - { name: Baldwin Drive,stop_code: Wjz6keB, lat: -35.2175697, lng: 149.0866478} - - { name: O'Loghlen Street,stop_code: Wjr-IGJ, lat: -35.2203467, lng: 149.0373003} - - { name: White Crescent,stop_code: Wjzd0oD, lat: -35.2874406, lng: 149.1552177} - - { name: Parliament Drive,stop_code: Wjz4INj, lat: -35.3091118, lng: 149.1261312} - - { name: Holman Street,stop_code: Wjz3fO2, lat: -35.3359729, lng: 149.0817737} - - { name: Scantlebury Crescent,stop_code: Wjz1HOf, lat: -35.4453654, lng: 149.1258946} - - { name: Lawrence Wackett Crescent,stop_code: Wjz1GsO, lat: -35.4499519, lng: 149.1226442} - - { name: Louis Loder Street,stop_code: Wjz1G32, lat: -35.4506139, lng: 149.1174495} - - { name: Heagney Crescent,stop_code: Wjz1TgM, lat: -35.4253782, lng: 149.1323625} - - { name: Baskerville Street,stop_code: Wjz1LBV, lat: -35.4218605, lng: 149.1241279} - - { name: O'Halloran Circuit,stop_code: WjrWYDO, lat: -35.3929049, lng: 149.058196} - - { name: Canopus Crescent,stop_code: Wjz6t9w, lat: -35.21597, lng: 149.09763} - - { name: Haydon Drive,stop_code: Wjz6hxB, lat: -35.2374959, lng: 149.0907853} - - { name: Baldwin Drive,stop_code: Wjz6rrI, lat: -35.2252509, lng: 149.1005016} - - { name: College Street,stop_code: Wjz681S, lat: -35.2428905, lng: 149.0745728} - - { name: Maribyrnong Avenue,stop_code: Wjz6y90, lat: -35.2324006, lng: 149.1079069} - - { name: Ellenborough Street,stop_code: Wjz6yzQ, lat: -35.2307289, lng: 149.1130906} - - { name: Aikman Drive,stop_code: Wjz69ht, lat: -35.2375061, lng: 149.0768646} - - { name: Boddington Crescent,stop_code: WjrWZA3, lat: -35.3893963, lng: 149.0571767} - - { name: Anketell Street,stop_code: Wjz213w, lat: -35.4123171, lng: 149.0633299} - - { name: Athllon Drive,stop_code: Wjz3gQn, lat: -35.3725942, lng: 149.0931105} - - { name: Athllon Drive,stop_code: Wjz3gMq, lat: -35.3757982, lng: 149.0932419} - - { name: Baldwin Drive,stop_code: Wjz6rhW, lat: -35.2267553, lng: 149.0994502} - - { name: Liversidge Street,stop_code: Wjz5E4O, lat: -35.2851023, lng: 149.1186022} - - { name: Bradley Street,stop_code: Wjz3ldj, lat: -35.3447574, lng: 149.0862912} - - { name: Pitman,stop_code: Wjz20nk, lat: -35.4147569, lng: 149.0657435} - - { name: Bradley Street,stop_code: Wjz3lm0, lat: -35.34438, lng: 149.0872661} - - { name: Callam Street,stop_code: Wjz3lmi, lat: -35.3442093, lng: 149.0876443} - - { name: Pitman,stop_code: Wjz21g2, lat: -35.414217, lng: 149.0653492} - - { name: Cohen Street,stop_code: Wjr-USa, lat: -35.2398454, lng: 149.0600442} - - { name: Darwinia Terrace,stop_code: WjrXBWn, lat: -35.3465295, lng: 149.0286032} - - { name: Perry Drive,stop_code: WjrXPbD, lat: -35.356823, lng: 149.0426424} - - { name: Darwinia Terrace,stop_code: WjrXIbK, lat: -35.3514081, lng: 149.0319332} - - { name: Darwinia Terrace,stop_code: WjrXI5u, lat: -35.3499839, lng: 149.0301495} - - { name: Namatjira Drive,stop_code: WjrXPFn, lat: -35.358206, lng: 149.0478792} - - { name: Fremantle Drive,stop_code: WjrXQO9, lat: -35.352521, lng: 149.0490119} - - { name: Parkinson Street,stop_code: WjrX-90, lat: -35.3423165, lng: 149.0529937} - - { name: Parkinson Street,stop_code: WjrXZv3, lat: -35.3434037, lng: 149.0557375} - - { name: Hopetoun Circuit,stop_code: Wjz4z9H, lat: -35.3145885, lng: 149.1087065} - - { name: Langton Crescent,stop_code: Wjz4KVc, lat: -35.2979705, lng: 149.1272674} - - { name: Sainsbury Street,stop_code: Wjz2t4u, lat: -35.389126, lng: 149.096025} - - { name: Castleton Crescent,stop_code: Wjz2wnQ, lat: -35.4147625, lng: 149.1103909} - - { name: Longmore Crescent,stop_code: Wjz2lAS, lat: -35.389126, lng: 149.0910254} - - { name: Yiman Street,stop_code: WjrXYVm, lat: -35.3528022, lng: 149.0616284} - - { name: Gladstone Street,stop_code: Wjzch4h, lat: -35.3236753, lng: 149.1727255} - - { name: Moonlight Avenue,stop_code: Wjzf1mZ, lat: -35.1901394, lng: 149.154362} - - { name: Ratcliffe Crescent,stop_code: Wjr-Ws2, lat: -35.230167, lng: 149.0557628} - - { name: Anthony Rolfe Avenue,stop_code: Wjzf24l, lat: -35.1860007, lng: 149.1507571} - - { name: Erldunda Circuit,stop_code: WjrZKZn, lat: -35.2510294, lng: 149.0396391} - - { name: Badimara Street,stop_code: WjrXXNb, lat: -35.3584898, lng: 149.060019} - - { name: Denison Street,stop_code: Wjz4hPC, lat: -35.323921, lng: 149.0935136} - - { name: Groom Street,stop_code: Wjz4gou, lat: -35.3314972, lng: 149.0892541} - - { name: Shiels Place,stop_code: Wjz4arc, lat: -35.3185933, lng: 149.0779149} - - { name: Mair Place,stop_code: Wjz48dZ, lat: -35.3281016, lng: 149.0761465} - - { name: Carruthers Street,stop_code: Wjz48qI, lat: -35.3302472, lng: 149.0785498} - - { name: Burnie Street,stop_code: Wjz3d3K, lat: -35.3459087, lng: 149.0743512} - - { name: Namatjira Drive,stop_code: WjrX-sE, lat: -35.3402511, lng: 149.0565615} - - { name: Newman Morris Circuit,stop_code: Wjz29Ya, lat: -35.4114741, lng: 149.0833189} - - { name: Cusack Place,stop_code: Wjr_Ow3, lat: -35.1889085, lng: 149.0461463} - - { name: Southern Cross Drive,stop_code: Wjr-s5D, lat: -35.2180783, lng: 149.0083939} - - { name: Wiluna Street,stop_code: Wjzc8l0, lat: -35.3285713, lng: 149.1642018} - - { name: Daley Crescent,stop_code: Wjr_Nwy, lat: -35.1944531, lng: 149.0468698} - - { name: Goyder Street,stop_code: Wjz3-aW, lat: -35.3414521, lng: 149.1420263} - - { name: Bingley Crescent,stop_code: Wjr_Vbj, lat: -35.1923583, lng: 149.0533723} - - { name: Jarrahdale Street,stop_code: WjrXWQ8, lat: -35.3621767, lng: 149.0600261} - - { name: Adinda Street,stop_code: WjrXYL4, lat: -35.3488355, lng: 149.0584095} - - { name: Bangalay Crescent,stop_code: WjrXQ65, lat: -35.349419, lng: 149.040696} - - { name: Tantangara Street,stop_code: WjrXKBE, lat: -35.3395611, lng: 149.0360582} - - { name: Dixon Drive,stop_code: WjrYMHm, lat: -35.3294538, lng: 149.0477466} - - { name: Blackwood Terrace,stop_code: WjrXTIp, lat: -35.3346742, lng: 149.0480789} - - { name: Bingley Crescent,stop_code: Wjr_V2c, lat: -35.192985, lng: 149.0517177} - - { name: Glenmaggie Street,stop_code: WjrXLgs, lat: -35.3371612, lng: 149.0328459} - - { name: McCay Place,stop_code: Wjz39PE, lat: -35.3683683, lng: 149.0827167} - - { name: Dakota Drive,stop_code: Wjzcuw1, lat: -35.2989793, lng: 149.188937} - - { name: Kerrigan Street,stop_code: Wjr_xLL, lat: -35.1892698, lng: 149.0264062} - - { name: Shakespeare Crescent,stop_code: Wjr_FXR, lat: -35.1922038, lng: 149.0402464} - - { name: Bingley Crescent,stop_code: Wjr_Vt9, lat: -35.191134, lng: 149.055871} - - { name: Tillyard Drive,stop_code: Wjr-Tf_, lat: -35.2002734, lng: 149.0432168} - - { name: Osburn Drive,stop_code: Wjr-tbm, lat: -35.2140927, lng: 149.0093105} - - { name: Kerrigan Street,stop_code: Wjr_o_j, lat: -35.1950629, lng: 149.0175978} - - { name: Kerrigan Street,stop_code: Wjr_oJA, lat: -35.1964177, lng: 149.0152805} - - { name: Archdall Street,stop_code: Wjr-vJY, lat: -35.2019113, lng: 149.0157184} - - { name: Brownless Street,stop_code: Wjr-s_F, lat: -35.2172009, lng: 149.0180976} - - { name: Krefft Street,stop_code: Wjr-Q8c, lat: -35.2217975, lng: 149.042121} - - { name: Starke Street,stop_code: Wjr-sV3, lat: -35.2212162, lng: 149.0172455} - - { name: Spofforth Street,stop_code: Wjr-jRn, lat: -35.2235756, lng: 149.0053113} - - { name: Beaurepaire Crescent,stop_code: Wjr-rjD, lat: -35.2249706, lng: 149.0111289} - - { name: Fullagar Crescent,stop_code: Wjr-ywh, lat: -35.2330631, lng: 149.0245222} - - { name: Starke Street,stop_code: Wjr-zWb, lat: -35.2259772, lng: 149.0283569} - - { name: Fullagar Crescent,stop_code: Wjr-xLK, lat: -35.2332476, lng: 149.0263679} - - { name: Tanumbirini Street,stop_code: Wjr-Ekp, lat: -35.2412759, lng: 149.032879} - - { name: Hennessy Street,stop_code: Wjz57T_, lat: -35.2441569, lng: 149.0719751} - - { name: Crisp Circuit,stop_code: Wjz68g-, lat: -35.2436119, lng: 149.0775571} - - { name: Federal Highway,stop_code: Wjze2va, lat: -35.2281576, lng: 149.1547483} - - { name: Krantzcke Circuit,stop_code: Wjz7pfP, lat: -35.189616, lng: 149.0978803} - - { name: Temperley Street,stop_code: Wjz7iG_, lat: -35.1872252, lng: 149.0926713} - - { name: McClelland Avenue,stop_code: Wjz7i7r, lat: -35.1841251, lng: 149.0850218} - - { name: Oldershaw Court,stop_code: Wjz7qvq, lat: -35.1841768, lng: 149.1001944} - - { name: Biddell Place,stop_code: Wjz7rMm, lat: -35.1831434, lng: 149.104114} - - { name: Gilmore Crescent,stop_code: Wjz3Bea, lat: -35.3442178, lng: 149.1080098} - - { name: Anthony Rolfe Avenue,stop_code: Wjz7WRq, lat: -35.1855476, lng: 149.1482315} - - { name: Longmore Crescent,stop_code: Wjz2sPc, lat: -35.3954933, lng: 149.1039} - - { name: Norriss Street,stop_code: Wjz2E43, lat: -35.4169003, lng: 149.1175471} - - { name: Heagney Crescent,stop_code: Wjz1Lxi, lat: -35.4244718, lng: 149.1234372} - - { name: Deamer Crescent,stop_code: Wjz1Kwp, lat: -35.4308013, lng: 149.1235016} - - { name: Clift Crescent,stop_code: Wjz1K3c, lat: -35.4284584, lng: 149.1176436} - - { name: Tharwa Drive,stop_code: Wjz1rQ2, lat: -35.4444028, lng: 149.1038463} - - { name: Heagney Crescent,stop_code: Wjz1KTJ, lat: -35.4256696, lng: 149.1266129} - - { name: Bugden Avenue,stop_code: Wjz2wcE, lat: -35.4171364, lng: 149.1088245} - - { name: Fincham Crescent,stop_code: Wjz2bJV, lat: -35.399901, lng: 149.0816269} - - { name: Southern Cross Drive,stop_code: Wjr-HhG, lat: -35.2267451, lng: 149.033272} - - { name: Longmore Crescent,stop_code: Wjz2lSC, lat: -35.387814, lng: 149.093493} - - { name: Downard Street,stop_code: Wjz1sjb, lat: -35.4395254, lng: 149.0985034} - - { name: Davenport Street,stop_code: Wjz3eeL, lat: -35.3382488, lng: 149.0758602} - - { name: Stuart Street,stop_code: Wjz4NQF, lat: -35.3236228, lng: 149.1376314} - - { name: Flemington Road,stop_code: Wjz7WVd, lat: -35.1880905, lng: 149.149283} - - { name: Companion Crescent,stop_code: Wjr-Sbz, lat: -35.2087898, lng: 149.0426061} - - { name: Fremantle Drive,stop_code: WjrXQRP, lat: -35.3502995, lng: 149.0498588} - - { name: Namatjira Drive,stop_code: WjrXZw7, lat: -35.3478405, lng: 149.0570686} - - { name: Namatjira Drive,stop_code: WjrX-l4, lat: -35.3392378, lng: 149.0544079} - - { name: Nemarang Crescent,stop_code: WjrXXSj, lat: -35.3550948, lng: 149.0601049} - - { name: Bangalay Crescent,stop_code: WjrXJxI, lat: -35.3474117, lng: 149.0359435} - - { name: Marr Street,stop_code: Wjz3ilp, lat: -35.3614122, lng: 149.0878174} - - { name: Carruthers Street,stop_code: Wjz4h1M, lat: -35.3258199, lng: 149.0856502} - - { name: Starke Street,stop_code: Wjr-H48, lat: -35.2249002, lng: 149.0298281} - - { name: Fullagar Crescent,stop_code: Wjr-yt4, lat: -35.2293611, lng: 149.0227471} - - { name: Hurtle Avenue,stop_code: Wjz1lat, lat: -35.43454, lng: 149.0864163} - - { name: Furneaux Street,stop_code: Wjz4O0J, lat: -35.3205589, lng: 149.1293434} - - { name: Boddington Crescent,stop_code: WjrWSUa, lat: -35.3867455, lng: 149.0504459} - - { name: Brigalow Street,stop_code: Wjz5Krx, lat: -35.2529666, lng: 149.1223781} - - { name: Jabanungga Avenue,stop_code: Wjz7tOr, lat: -35.1710517, lng: 149.1042404} - - { name: Horse Park Drive,stop_code: Wjz7tvK, lat: -35.1673308, lng: 149.1005105} - - { name: Wanganeen Avenue,stop_code: Wjz7Bg7, lat: -35.1720853, lng: 149.109298} - - { name: Wanganeen Avenue,stop_code: Wjz7BJK, lat: -35.1687262, lng: 149.1142923} - - { name: Amagula Avenue,stop_code: Wjz7AEw, lat: -35.1781829, lng: 149.1141659} - - { name: Milari Street,stop_code: Wjz7HfF, lat: -35.178803, lng: 149.1197924} - - { name: Tyenna Close,stop_code: Wjz7JP1, lat: -35.1705349, lng: 149.1257982} - - { name: Katherine Avenue,stop_code: Wjz7R5z, lat: -35.1690363, lng: 149.1291488} - - { name: Tesselaar Street,stop_code: Wjz7X3O, lat: -35.1814007, lng: 149.1404901} - - { name: The Valley Avenue,stop_code: Wjz7Gxm, lat: -35.188002, lng: 149.1234035} - - { name: Kosciuszko Avenue,stop_code: Wjz7F5C, lat: -35.1906966, lng: 149.118141} - - { name: Kosciuszko Avenue,stop_code: Wjz7Ezf, lat: -35.1975304, lng: 149.1231277} - - { name: Brookes Street,stop_code: Wjz6Z8D, lat: -35.216009, lng: 149.1414929} - - { name: Brookes Street,stop_code: Wjz6Yc1, lat: -35.2193016, lng: 149.1407817} - - { name: Flemington Road,stop_code: Wjz6XiO, lat: -35.226071, lng: 149.143256} - - { name: Federal Highway,stop_code: Wjze3Vq, lat: -35.2267416, lng: 149.1606727} - - { name: Fison Street,stop_code: Wjze8bf, lat: -35.2414165, lng: 149.1630705} - - { name: Dickinson Street,stop_code: Wjze1c2, lat: -35.2356747, lng: 149.1518427} - - { name: Melba Street,stop_code: Wjz6Ugw, lat: -35.2441014, lng: 149.142992} - - { name: Madigan Street,stop_code: Wjzdfaz, lat: -35.2479426, lng: 149.1635256} - - { name: Phillip Avenue,stop_code: Wjzd6Pn, lat: -35.2524079, lng: 149.1590701} - - { name: Nyrang Street,stop_code: Wjzc1qE, lat: -35.3251161, lng: 149.1555115} - - { name: Yamba Drive,stop_code: Wjz3mQ4, lat: -35.3398419, lng: 149.0928819} - - { name: Gilmore Crescent,stop_code: Wjz3C9Q, lat: -35.3419855, lng: 149.108934} - - { name: Kent Street,stop_code: Wjz4gXk, lat: -35.3296011, lng: 149.0945736} - - { name: McCaughey Street,stop_code: Wjz5Iw8, lat: -35.2660466, lng: 149.1231132} - - { name: Scrivener Street,stop_code: Wjz5JuJ, lat: -35.2560391, lng: 149.1225279} - - { name: Ainslie Avenue,stop_code: Wjz5V64, lat: -35.2780918, lng: 149.1394963} - - { name: Gooreen Street,stop_code: Wjz5Vls, lat: -35.2787911, lng: 149.1427895} - - { name: Fairbairn Avenue,stop_code: Wjzd8br, lat: -35.2857037, lng: 149.16333} - - { name: Blamey Crescent,stop_code: Wjz5UHK, lat: -35.2854924, lng: 149.1472635} - - { name: Chauvel Street,stop_code: Wjzc7si, lat: -35.2905765, lng: 149.1549056} - - { name: Canberra Avenue,stop_code: Wjz4VRQ, lat: -35.3226878, lng: 149.148704} - - { name: Bremer Street,stop_code: Wjz4MAz, lat: -35.3290192, lng: 149.1346333} - - { name: McIntyre Street,stop_code: Wjz4UwD, lat: -35.3313913, lng: 149.1456952} - - { name: Kootara Crescent,stop_code: Wjzb7nW, lat: -35.3324815, lng: 149.1544899} - - { name: Goyder Street,stop_code: Wjzb7wf, lat: -35.3368722, lng: 149.1561338} - - { name: Narrabundah Lane,stop_code: Wjzb4vx, lat: -35.3490259, lng: 149.1553622} - - { name: Newcastle Street,stop_code: Wjzc9WV, lat: -35.3250576, lng: 149.1722805} - - { name: Gladstone Street,stop_code: WjzchQP, lat: -35.3235189, lng: 149.1817987} - - { name: Antill Street,stop_code: Wjzd72S, lat: -35.2476842, lng: 149.1515789} - - { name: Lambrigg Street,stop_code: Wjz3oih, lat: -35.3744422, lng: 149.0986886} - - { name: Beasley Street,stop_code: Wjz3gcu, lat: -35.3726637, lng: 149.0864364} - - { name: Beasley Street,stop_code: Wjz3gB5, lat: -35.3720623, lng: 149.0900243} - - { name: Gundaroo Drive,stop_code: Wjz7PQK, lat: -35.1804441, lng: 149.1376744} - - { name: Mirrabei Drive,stop_code: Wjz7CKo, lat: -35.1631057, lng: 149.1139536} - - { name: Coyne Street,stop_code: Wjz2F_q, lat: -35.4093651, lng: 149.1276548} - - { name: Learmonth Drive,stop_code: WjrWQRL, lat: -35.3938608, lng: 149.049706} - - { name: Boddington Crescent,stop_code: WjrWSX9, lat: -35.3847561, lng: 149.0504459} - - { name: Wheeler Crescent,stop_code: Wjz2khI, lat: -35.3968751, lng: 149.08815} - - { name: Were Street,stop_code: Wjz1IhB, lat: -35.4407491, lng: 149.1209803} - - { name: Longmore Crescent,stop_code: Wjz2sN9, lat: -35.3971025, lng: 149.1039429} - - { name: Partridge Street,stop_code: Wjz2zNZ, lat: -35.4023147, lng: 149.1160557} - - { name: Giles Street,stop_code: Wjz4OOr, lat: -35.3193771, lng: 149.1373203} - - { name: Castleton Crescent,stop_code: Wjz2pW_, lat: -35.4123885, lng: 149.1062979} - - { name: Clive Steele Avenue,stop_code: Wjz2pC1, lat: -35.4101412, lng: 149.1011212} - - { name: Clive Steele Avenue,stop_code: Wjz2o7y, lat: -35.414898, lng: 149.0962718} - - { name: Clare Dennis Avenue,stop_code: Wjz1jim, lat: -35.4454866, lng: 149.0877316} - - { name: Longmore Crescent,stop_code: Wjz2t7A, lat: -35.3872717, lng: 149.0961967} - - { name: Tom Roberts Avenue,stop_code: Wjz1oP8, lat: -35.4617393, lng: 149.1040287} - - { name: Templestowe Avenue,stop_code: Wjz1woz, lat: -35.4635395, lng: 149.1113243} - - { name: Tom Roberts Avenue,stop_code: Wjz0vfE, lat: -35.4644832, lng: 149.0977524} - - { name: Pocket Avenue,stop_code: Wjz0v2g, lat: -35.4679435, lng: 149.0958641} - - { name: Knoke Avenue,stop_code: Wjz0mvg, lat: -35.4699707, lng: 149.0890405} - - { name: Longmore Crescent,stop_code: Wjz2tl5, lat: -35.3885837, lng: 149.0982781} - - { name: Murdoch Street,stop_code: Wjz5SjK, lat: -35.2525469, lng: 149.1321597} - - { name: Mouat Street,stop_code: Wjz5L_c, lat: -35.2444379, lng: 149.1272298} - - { name: Jerrabomberra Avenue,stop_code: Wjz3_Ow, lat: -35.336122, lng: 149.1483495} - - { name: Archibald Street,stop_code: Wjz5LSr, lat: -35.2452046, lng: 149.1262374} - - { name: Tyagarah Street,stop_code: Wjz3s-P, lat: -35.3495819, lng: 149.106153} - - { name: Ngunawal Drive,stop_code: Wjz3yfH, lat: -35.3598722, lng: 149.1087065} - - { name: Julia Flynn Avenue,stop_code: Wjz3wJD, lat: -35.3718847, lng: 149.1141353} - - { name: Lambrigg Street,stop_code: Wjz2D3z, lat: -35.3791456, lng: 149.1071508} - - { name: Stuart Street,stop_code: Wjz4NJT, lat: -35.3225023, lng: 149.1363654} - - { name: Northbourne Avenue,stop_code: Wjz5N5k, lat: -35.2787905, lng: 149.1288627} - - { name: Tillyard Drive,stop_code: Wjr-LNq, lat: -35.2048275, lng: 149.0383141} - - { name: Mackennal Street,stop_code: Wjz5Lpi, lat: -35.2487591, lng: 149.1218966} - - { name: Haydon Drive,stop_code: Wjz5maK, lat: -35.2532079, lng: 149.0867657} - - { name: Flinders Way,stop_code: Wjz4Ox0, lat: -35.3203301, lng: 149.1339648} - - { name: Kingscote Crescent,stop_code: Wjz1egm, lat: -35.4303788, lng: 149.076696} - - { name: Flinders Way,stop_code: Wjz4OpP, lat: -35.320064, lng: 149.1335699} - - { name: Ashkanasy Crescent,stop_code: Wjz66kP, lat: -35.2081588, lng: 149.066382} - - { name: Copland Drive,stop_code: Wjz664q, lat: -35.2082119, lng: 149.0631086} - - { name: Bateson Road,stop_code: Wjz3toH, lat: -35.3482518, lng: 149.1004882} - - { name: Miller Street,stop_code: Wjz5CW3, lat: -35.2534813, lng: 149.1160707} - - { name: Fairfax Street,stop_code: Wjz5BaH, lat: -35.2589798, lng: 149.1087583} - - { name: Dumas Street,stop_code: Wjz6c8c, lat: -35.2217598, lng: 149.0751026} - - { name: Bennetts Close,stop_code: Wjz6c7A, lat: -35.2169478, lng: 149.074177} - - { name: Kerrigan Street,stop_code: Wjr_F9a, lat: -35.1938253, lng: 149.031231} - - { name: Handcock Crescent,stop_code: Wjr-CnE, lat: -35.206318, lng: 149.0223041} - - { name: Spofforth Street,stop_code: Wjr-kZV, lat: -35.2186221, lng: 149.0075381} - - { name: Robert Campbell Road,stop_code: Wjzceyq, lat: -35.2975234, lng: 149.1674683} - - { name: Collie Street,stop_code: WjzcgLt, lat: -35.3267279, lng: 149.1797667} - - { name: Wormald Street,stop_code: Wjzbfr6, lat: -35.3349204, lng: 149.1655287} - - { name: Ipswich Street,stop_code: Wjzc8c1, lat: -35.3291272, lng: 149.1628031} - - { name: Angliss Place,stop_code: Wjz2rtc, lat: -35.3996562, lng: 149.0999088} - - { name: Barraclough Crescent,stop_code: Wjz2odG, lat: -35.416297, lng: 149.0977738} - - { name: Longmore Crescent,stop_code: Wjz2rKm, lat: -35.3987816, lng: 149.1026983} - - { name: Casey Crescent,stop_code: Wjz1I92, lat: -35.4409939, lng: 149.118856} - - { name: Goyder Street,stop_code: Wjz3-Jk, lat: -35.3392028, lng: 149.1466758} - - { name: Canberra Avenue,stop_code: WjzbfPL, lat: -35.3348529, lng: 149.1706441} - - { name: Lewis Luxton Avenue,stop_code: Wjz1imh, lat: -35.4486564, lng: 149.0876136} - - { name: National Circuit,stop_code: Wjz4Pk_, lat: -35.3121631, lng: 149.1324213} - - { name: Yamba Drive,stop_code: Wjz3mPO, lat: -35.3407241, lng: 149.0937831} - - { name: Kitchener Street,stop_code: Wjz3vqN, lat: -35.3360119, lng: 149.1006409} - - { name: Gilmore Crescent,stop_code: Wjz3uQf, lat: -35.339661, lng: 149.1040329} - - { name: Ainsworth Street,stop_code: Wjz3lVM, lat: -35.3477625, lng: 149.0952366} - - { name: Launceston Street,stop_code: Wjz3mAg, lat: -35.3402021, lng: 149.0903851} - - { name: Kent Street,stop_code: Wjz4p2R, lat: -35.3247128, lng: 149.0966244} - - { name: McCaughey Street,stop_code: Wjz5HDd, lat: -35.2662951, lng: 149.1231711} - - { name: Macpherson Street,stop_code: Wjz5IjX, lat: -35.2637604, lng: 149.1215219} - - { name: Hovea Street,stop_code: Wjz5JzP, lat: -35.2582197, lng: 149.123961} - - { name: Alpen Street,stop_code: Wjr-_Uj, lat: -35.2054305, lng: 149.0615985} - - { name: Russell Drive,stop_code: Wjzc54R, lat: -35.3013866, lng: 149.1515283} - - { name: Russell Drive,stop_code: Wjz4-WZ, lat: -35.2972194, lng: 149.1503113} - - { name: Kings Avenue,stop_code: Wjz4RFJ, lat: -35.3034224, lng: 149.1361467} - - { name: Copland Drive,stop_code: Wjr--W0, lat: -35.2097244, lng: 149.0611869} - - { name: MacFarland Crescent,stop_code: Wjz3bdl, lat: -35.3556201, lng: 149.075221} - - { name: Eggleston Crescent,stop_code: Wjz3ceV, lat: -35.3497899, lng: 149.0761589} - - { name: Kingsford Smith Drive,stop_code: Wjr-RKi, lat: -35.2123821, lng: 149.0478391} - - { name: Verbrugghen Street,stop_code: Wjr-Zk5, lat: -35.2134943, lng: 149.0543506} - - { name: Alpen Street,stop_code: Wjz66fw, lat: -35.2063185, lng: 149.0646037} - - { name: Alfred Hill Drive,stop_code: Wjr--Lw, lat: -35.2063011, lng: 149.059093} - - { name: Alfred Hill Drive,stop_code: Wjr--6k, lat: -35.2066759, lng: 149.0519744} - - { name: Lathlain Street,stop_code: Wjz60c5, lat: -35.2408972, lng: 149.0639885} - - { name: Daley Road,stop_code: Wjz5yXo, lat: -35.2749982, lng: 149.1166312} - - { name: Kingsford Smith Drive,stop_code: Wjr-_3A, lat: -35.2032823, lng: 149.0522538} - - { name: Baddeley Crescent,stop_code: Wjz67k1, lat: -35.2028461, lng: 149.0653269} - - { name: Baddeley Crescent,stop_code: Wjz67kk, lat: -35.2025967, lng: 149.0657125} - - { name: John Cleland Crescent,stop_code: Wjr-Xky, lat: -35.2247107, lng: 149.0549856} - - { name: Bowman Street,stop_code: Wjz56XB, lat: -35.2526099, lng: 149.0728793} - - { name: Fulton Street,stop_code: Wjz5711, lat: -35.2488233, lng: 149.0625779} - - { name: London Circuit,stop_code: Wjz5Nht, lat: -35.281465, lng: 149.131837} - - { name: Yamba Drive,stop_code: Wjz3mQ5, lat: -35.339761, lng: 149.0927558} - - { name: Moynihan Street,stop_code: Wjz65rA, lat: -35.2142446, lng: 149.0673143} - - { name: Moynihan Street,stop_code: Wjz65Hy, lat: -35.2143691, lng: 149.0701627} - - { name: Clancy Street,stop_code: Wjz66XM, lat: -35.2090851, lng: 149.0732672} - - { name: Marconi Crescent,stop_code: WjrW_Qk, lat: -35.3783254, lng: 149.0600973} - - { name: Marconi Crescent,stop_code: Wjz27k8, lat: -35.3787048, lng: 149.065524} - - { name: Summerland Circuit,stop_code: Wjz26P8, lat: -35.3848854, lng: 149.0709314} - - { name: Summerland Circuit,stop_code: Wjz2def, lat: -35.3876959, lng: 149.0750942} - - { name: O'Halloran Circuit,stop_code: Wjz24vP, lat: -35.3928088, lng: 149.0677265} - - { name: O'Halloran Circuit,stop_code: Wjz24cK, lat: -35.3946419, lng: 149.0647484} - - { name: Vansittart Crescent,stop_code: Wjz2347, lat: -35.4000362, lng: 149.0625} - - { name: Callaway Crescent,stop_code: Wjz18KG, lat: -35.459505, lng: 149.0813694} - - { name: Cossington Smith Crescent,stop_code: Wjz6EIv, lat: -35.2407183, lng: 149.1248641} - - { name: Lewis Luxton Avenue,stop_code: Wjz1igo, lat: -35.4528675, lng: 149.0877906} - - { name: Carnegie Cresent,stop_code: Wjz3_kV, lat: -35.3346691, lng: 149.1435001} - - { name: Ginninderra Drive,stop_code: Wjr-DF9, lat: -35.2048888, lng: 149.0256331} - - { name: Yambina Crescent,stop_code: WjrXXGN, lat: -35.3580173, lng: 149.0594611} - - { name: Marrawah Street,stop_code: Wjz3eSa, lat: -35.3387126, lng: 149.0819166} - - { name: Fullagar Crescent,stop_code: Wjr-ypw, lat: -35.2324635, lng: 149.0233908} - - { name: Castieau Street,stop_code: Wjr-yYy, lat: -35.2301674, lng: 149.0289912} - - { name: Isabella Drive,stop_code: Wjz1nzY, lat: -35.4229506, lng: 149.0912343} - - { name: Taverner Street,stop_code: Wjz2b8J, lat: -35.4029944, lng: 149.0757807} - - { name: Cowper Street,stop_code: Wjz5Z5c, lat: -35.2568022, lng: 149.1396491} - - { name: Newman Morris Circuit,stop_code: Wjz2aGG, lat: -35.4073408, lng: 149.0812511} - - { name: Newman Morris Circuit,stop_code: Wjz2arg, lat: -35.4068086, lng: 149.0779936} - - { name: William Webb Drive,stop_code: Wjz6dtx, lat: -35.2131085, lng: 149.0784233} - - { name: Newman Morris Circuit,stop_code: Wjz29ea, lat: -35.4101319, lng: 149.0751278} - - { name: Boldrewood Street,stop_code: Wjz5zOq, lat: -35.2700411, lng: 149.1153216} - - { name: Hebblewhite Street,stop_code: Wjz2haF, lat: -35.4129406, lng: 149.0867361} - - { name: Harricks Crescent,stop_code: Wjz2iEO, lat: -35.40876, lng: 149.0925039} - - { name: Kalgoorlie Crescent,stop_code: WjrXWsn, lat: -35.3616093, lng: 149.055979} - - { name: Beasley Street,stop_code: Wjz3hu6, lat: -35.3658261, lng: 149.0887408} - - { name: Laverton Avenue,stop_code: WjzcJ38, lat: -35.3024713, lng: 149.2056109} - - { name: Bingley Crescent,stop_code: Wjr_N-q, lat: -35.1903433, lng: 149.0507803} - - { name: Commonwealth Avenue,stop_code: Wjz4KO9, lat: -35.2975962, lng: 149.1259252} - - { name: Ashkanasy Crescent,stop_code: Wjz66kG, lat: -35.2081931, lng: 149.0662542} - - { name: Alfred Hill Drive,stop_code: Wjr--r_, lat: -35.2084885, lng: 149.0569758} - - { name: Reg Saunders Way,stop_code: Wjz4-YV, lat: -35.2961803, lng: 149.1503194} - - { name: Melrose Drive,stop_code: Wjz3eZ4, lat: -35.3392098, lng: 149.0831308} - - { name: Eggleston Crescent,stop_code: Wjz3ceY, lat: -35.3495185, lng: 149.0761236} - - { name: Verbrugghen Street,stop_code: Wjr-RZE, lat: -35.2132014, lng: 149.0511677} - - { name: Verbrugghen Street,stop_code: Wjr-ZBY, lat: -35.2128526, lng: 149.0583185} - - { name: Alfred Hill Drive,stop_code: Wjr--m3, lat: -35.2067416, lng: 149.0543264} - - { name: Lathlain Street,stop_code: Wjz604Y, lat: -35.2410486, lng: 149.0638326} - - { name: Kingsford Smith Drive,stop_code: Wjr-_kG, lat: -35.2027328, lng: 149.0551853} - - { name: John Cleland Crescent,stop_code: Wjr-Yg7, lat: -35.2215188, lng: 149.0543538} - - { name: John Cleland Crescent,stop_code: Wjr-XyN, lat: -35.226202, lng: 149.0581637} - - { name: Launceston Street,stop_code: Wjz3m3b, lat: -35.3406241, lng: 149.0847703} - - { name: Bandjalong Crescent,stop_code: Wjz5dCr, lat: -35.2561978, lng: 149.0795805} - - { name: Lyttleton Crescent,stop_code: Wjz54CS, lat: -35.2614333, lng: 149.0690577} - - { name: Templeton Street,stop_code: Wjz551Q, lat: -35.2595831, lng: 149.0636761} - - { name: Coulter Drive,stop_code: WjrZ_o2, lat: -35.2493991, lng: 149.055711} - - { name: Gillespie Street,stop_code: WjrZTu1, lat: -35.2453967, lng: 149.044759} - - { name: Beetaloo Street,stop_code: WjrZT5e, lat: -35.245649, lng: 149.0408365} - - { name: Yamba Drive,stop_code: Wjz3mI-, lat: -35.3396854, lng: 149.092654} - - { name: Moynihan Street,stop_code: Wjz65rQ, lat: -35.2142653, lng: 149.0676927} - - { name: Ashkanasy Crescent,stop_code: Wjz66oJ, lat: -35.2107077, lng: 149.0674989} - - { name: Marconi Crescent,stop_code: Wjz27k0, lat: -35.3786939, lng: 149.0653235} - - { name: Summerland Circuit,stop_code: Wjz26tw, lat: -35.38347, lng: 149.0674733} - - { name: Vowels Crescent,stop_code: Wjz5nUS, lat: -35.2490745, lng: 149.0952032} - - { name: O'Halloran Circuit,stop_code: Wjz24uT, lat: -35.3931517, lng: 149.0676751} - - { name: Vansittart Crescent,stop_code: Wjz234e, lat: -35.4001412, lng: 149.0627055} - - { name: Learmonth Drive,stop_code: Wjz230Q, lat: -35.4030936, lng: 149.0635466} - - { name: Kingsford Smith Drive,stop_code: Wjr_UUM, lat: -35.2001188, lng: 149.062303} - - { name: Kingsford Smith Drive,stop_code: Wjr_UTJ, lat: -35.1949558, lng: 149.0607434} - - { name: Lousia Lawson Crescent,stop_code: Wjz2V0k, lat: -35.4140263, lng: 149.1397991} - - { name: Martin Street,stop_code: Wjz49Ui, lat: -35.3262888, lng: 149.0835377} - - { name: Jenkins Street,stop_code: Wjz49dp, lat: -35.3229961, lng: 149.075421} - - { name: Badimara Street,stop_code: Wjz33CI, lat: -35.3549749, lng: 149.0689295} - - { name: Bangalay Crescent,stop_code: WjrXIKK, lat: -35.3493279, lng: 149.0374035} - - { name: Warragamba Avenue,stop_code: WjrYEWc, lat: -35.3302839, lng: 149.0394086} - - { name: Tillyard Drive,stop_code: Wjr_McO, lat: -35.1972013, lng: 149.0429389} - - { name: Lhotsky Street,stop_code: Wjr-DTC, lat: -35.2002855, lng: 149.0276101} - - { name: Lance Hill Avenue,stop_code: Wjr_wf4, lat: -35.1950004, lng: 149.0199737} - - { name: Copland Drive,stop_code: Wjz67_v, lat: -35.2002563, lng: 149.0727607} - - { name: Osburn Drive,stop_code: Wjr-te3, lat: -35.2122382, lng: 149.0090273} - - { name: Handcock Crescent,stop_code: Wjr-CsO, lat: -35.2082115, lng: 149.0237453} - - { name: Southern Cross Drive,stop_code: Wjr-sQ8, lat: -35.2193706, lng: 149.0159919} - - { name: Beaurepaire Crescent,stop_code: Wjr-rxG, lat: -35.2267918, lng: 149.0140227} - - { name: Beaurepaire Crescent,stop_code: Wjr-rNr, lat: -35.226697, lng: 149.016389} - - { name: Hardwick Crescent,stop_code: Wjr-zcC, lat: -35.2243517, lng: 149.0207165} - - { name: Drake Brockman Drive,stop_code: Wjr-wDP, lat: -35.2389936, lng: 149.0252414} - - { name: Ross Smith Crescent,stop_code: Wjr-F_m, lat: -35.233261, lng: 149.039515} - - { name: Murranji Street,stop_code: Wjr-E8A, lat: -35.2437543, lng: 149.031741} - - { name: Shumack Street,stop_code: WjrZSWs, lat: -35.2533983, lng: 149.050782} - - { name: Coulter Drive,stop_code: WjrZZeD, lat: -35.2558247, lng: 149.0536901} - - { name: Bugden Avenue,stop_code: Wjz2Gu5, lat: -35.404351, lng: 149.1216336} - - { name: Sternberg Crescent,stop_code: Wjz2ri7, lat: -35.4014577, lng: 149.0982244} - - { name: Bugden Avenue,stop_code: Wjz2z1O, lat: -35.4025246, lng: 149.1075156} - - { name: Bugden Avenue,stop_code: Wjz2F6x, lat: -35.4102199, lng: 149.118121} - - { name: Cockcroft Avenue,stop_code: Wjz2ob-, lat: -35.4173112, lng: 149.0981386} - - { name: Charleston Street,stop_code: Wjz28Bd, lat: -35.4160434, lng: 149.0792451} - - { name: Downard Street,stop_code: Wjz1sPq, lat: -35.4396128, lng: 149.1043506} - - { name: Novar Street,stop_code: Wjz4t8Z, lat: -35.3041348, lng: 149.0981922} - - { name: La Perouse Street,stop_code: Wjz3TDn, lat: -35.3320346, lng: 149.1342948} - - { name: Ginninderra Drive,stop_code: Wjr-DqS, lat: -35.2037667, lng: 149.0237448} - - { name: Larakia Street,stop_code: Wjz344h, lat: -35.3511395, lng: 149.0628944} - - { name: Parkhill Street,stop_code: Wjz39tZ, lat: -35.3666092, lng: 149.0789018} - - { name: McGinness Street,stop_code: Wjr-Nfn, lat: -35.2332346, lng: 149.0422735} - - { name: Bennelong Crescent,stop_code: WjrZ-GZ, lat: -35.2532951, lng: 149.0596327} - - { name: Braybrooke Street,stop_code: Wjz6oJz, lat: -35.2403705, lng: 149.1030403} - - { name: MacFarland Crescent,stop_code: Wjz3bdj, lat: -35.3557447, lng: 149.0753424} - - { name: Temperley Street,stop_code: Wjz7hZW, lat: -35.1910485, lng: 149.0953265} - - { name: Whatmore Court,stop_code: Wjz7rzg, lat: -35.1815933, lng: 149.1014588} - - { name: Freda Bennett Circuit,stop_code: Wjz7rRa, lat: -35.1800948, lng: 149.1039243} - - { name: Bicentennial National Trail,stop_code: Wjz7thn, lat: -35.1713618, lng: 149.0985507} - - { name: Wanganeen Avenue,stop_code: Wjz7BsE, lat: -35.1699148, lng: 149.1115106} - - { name: Tuggeranong Parkway,stop_code: WjrXUAm, lat: -35.3726375, lng: 149.0574471} - - { name: Kambah pool Road,stop_code: WjrXMFM, lat: -35.3752866, lng: 149.0485475} - - { name: Melrose Drive,stop_code: Wjz3jei, lat: -35.3551755, lng: 149.0862349} - - { name: Gundaroo Drive,stop_code: Wjz7xpa, lat: -35.1938349, lng: 149.1107761} - - { name: O'Connell Street,stop_code: Wjz5YAK, lat: -35.2627902, lng: 149.1458623} - - { name: Campbell Street,stop_code: Wjz5XnQ, lat: -35.2664452, lng: 149.1432384} - - { name: Gooreen Street,stop_code: Wjz5W3H, lat: -35.2747063, lng: 149.1403907} - - { name: Foveaux Street,stop_code: Wjz5Y1_, lat: -35.2648034, lng: 149.1406151} - - { name: Ipima Street,stop_code: Wjz5PLJ, lat: -35.2663315, lng: 149.136253} - - { name: Fawkner Street,stop_code: Wjz5OLh, lat: -35.2721844, lng: 149.135684} - - { name: Doonkuna Street,stop_code: Wjz5OOo, lat: -35.2757106, lng: 149.1372297} - - { name: Fairbairn Avenue,stop_code: Wjzd0CK, lat: -35.283446, lng: 149.156771} - - { name: Vasey Crescent,stop_code: Wjzc7Ay, lat: -35.2905765, lng: 149.1566757} - - { name: Robert Campbell Road,stop_code: WjzceHt, lat: -35.2965216, lng: 149.168833} - - { name: Dominion Circuit,stop_code: Wjz4Ofi, lat: -35.3160439, lng: 149.1301934} - - { name: Northbourne Avenue,stop_code: Wjz5SDc, lat: -35.2499285, lng: 149.1341368} - - { name: Coranderrk Street,stop_code: Wjz5MI3, lat: -35.2850249, lng: 149.1353935} - - { name: Streeton Drive,stop_code: WjrXQeH, lat: -35.3495777, lng: 149.0428125} - - { name: Mirrabei Drive,stop_code: Wjz7BST, lat: -35.167951, lng: 149.1157463} - - { name: Gungahlin Cycleway,stop_code: Wjz7IFg, lat: -35.1774595, lng: 149.1246602} - - { name: Cultivation Street,stop_code: Wjzf0Zf, lat: -35.1960839, lng: 149.1602736} - - { name: Kate Crace Street,stop_code: Wjz7W61, lat: -35.1849836, lng: 149.1395562} - - { name: Kosciuszko Avenue,stop_code: Wjz7xO6, lat: -35.1928051, lng: 149.1147348} - - { name: Kosciuszko Avenue,stop_code: Wjz7EJ7, lat: -35.1960839, lng: 149.1244553} - - { name: Antill Street,stop_code: Wjze0VY, lat: -35.2430274, lng: 149.1613003} - - { name: Moonlight Avenue,stop_code: Wjzf2op, lat: -35.1890872, lng: 149.1551345} - - { name: Stott Street,stop_code: Wjzd6Cq, lat: -35.2507889, lng: 149.1563997} - - { name: Brisbane Avenue,stop_code: Wjz4Qhl, lat: -35.3089153, lng: 149.1316018} - - { name: Sir Harold Raggatt Drive,stop_code: Wjzb6EM, lat: -35.342941, lng: 149.1583643} - - { name: Narrabundah Lane,stop_code: Wjz3YW3, lat: -35.3523419, lng: 149.1490844} - - { name: Townsville Street,stop_code: Wjzcg-_, lat: -35.3272591, lng: 149.1832438} - - { name: Moodie Street,stop_code: Wjz3gUQ, lat: -35.3755566, lng: 149.0951557} - - { name: Basedow Street,stop_code: Wjz2f_R, lat: -35.3761632, lng: 149.0842481} - - { name: Wheeler Crescent,stop_code: Wjz2civ, lat: -35.3959622, lng: 149.0767882} - - { name: Sternberg Crescent,stop_code: Wjz2jPU, lat: -35.401368, lng: 149.0939538} - - { name: Hambidge Crescent,stop_code: Wjz2ExG, lat: -35.4190337, lng: 149.1238556} - - { name: Webber Crescent,stop_code: Wjz1BFG, lat: -35.4354872, lng: 149.1142337} - - { name: Knox Street,stop_code: Wjze1fs, lat: -35.2334888, lng: 149.1522978} - - { name: Clift Crescent,stop_code: Wjz1vMs, lat: -35.4250115, lng: 149.1042483} - - { name: Froggatt Street,stop_code: Wjz5H0p, lat: -35.2714838, lng: 149.1180142} - - { name: Macrossan Crescent,stop_code: Wjr-Jm9, lat: -35.2124379, lng: 149.0325045} - - { name: Dalley Crescent,stop_code: Wjr-AY4, lat: -35.2190044, lng: 149.0282415} - - { name: Maribyrnong Avenue,stop_code: Wjz6zon, lat: -35.2269858, lng: 149.1109391} - - { name: Belconnen Way,stop_code: Wjr-EYe, lat: -35.2408449, lng: 149.0394925} - - { name: Krefft Street,stop_code: Wjr-PyX, lat: -35.2259882, lng: 149.0472724} - - { name: King George Terrace,stop_code: Wjz4RbQ, lat: -35.3021238, lng: 149.1308574} - - { name: Andrews Street,stop_code: Wjze0l8, lat: -35.2407007, lng: 149.1533599} - - { name: Musgrave Street,stop_code: Wjz4tUp, lat: -35.3044055, lng: 149.1056974} - - { name: Hartung Crescent,stop_code: Wjz1zN3, lat: -35.4464057, lng: 149.1147796} - - { name: Chippindall Circuit,stop_code: Wjz1xRC, lat: -35.4544199, lng: 149.1154761} - - { name: Johnson Drive,stop_code: Wjz1BrK, lat: -35.4337687, lng: 149.1114553} - - { name: Outtrim Avenue,stop_code: Wjz1tE0, lat: -35.4363442, lng: 149.1024781} - - { name: Constitution Avenue,stop_code: Wjz4_kA, lat: -35.290428, lng: 149.1429573} - - { name: Gundaroo Drive,stop_code: Wjz7PcG, lat: -35.1807394, lng: 149.1308015} - - { name: Anthony Rolfe Avenue,stop_code: Wjz7WeI, lat: -35.1846679, lng: 149.1417449} - - { name: Goodwin Street,stop_code: Wjz5Sk7, lat: -35.2517234, lng: 149.1312585} - - { name: Antill Street,stop_code: Wjz5_N2, lat: -35.2487006, lng: 149.1476629} - - { name: Bromby Street,stop_code: Wjz3y3C, lat: -35.3623309, lng: 149.107183} - - { name: Hawkesbury Crescent,stop_code: Wjz2CDy, lat: -35.3819798, lng: 149.1127298} - - { name: Horse Park Drive,stop_code: Wjz7Y64, lat: -35.1737092, lng: 149.1394124} - - { name: Mirrabei Drive,stop_code: Wjz7If9, lat: -35.1733145, lng: 149.1190391} - - { name: Bugden Avenue,stop_code: Wjz2ziM, lat: -35.4020349, lng: 149.1102622} - - { name: Bugden Avenue,stop_code: Wjz2Gi8, lat: -35.4075441, lng: 149.1204868} - - { name: Bugden Avenue,stop_code: Wjz2wuu, lat: -35.415274, lng: 149.1111044} - - { name: Bugden Avenue,stop_code: Wjz2w2r, lat: -35.4182643, lng: 149.1070918} - - { name: Ellerston Avenue,stop_code: Wjz1u7M, lat: -35.4260193, lng: 149.0965722} - - { name: Stuart Street,stop_code: Wjz4V11, lat: -35.3256973, lng: 149.1394661} - - { name: Barraclough Crescent,stop_code: Wjz2osM, lat: -35.4171276, lng: 149.1006384} - - { name: Downard Street,stop_code: Wjz1sG6, lat: -35.4399974, lng: 149.1023765} - - { name: Johnson Drive,stop_code: Wjz1tbe, lat: -35.4337687, lng: 149.0971677} - - { name: Northbourne Avenue,stop_code: Wjz5RvC, lat: -35.2552151, lng: 149.1332875} - - { name: Northbourne Avenue,stop_code: Wjz5PdJ, lat: -35.2676612, lng: 149.1306865} - - { name: Cameron Avenue,stop_code: Wjz60QI, lat: -35.2410106, lng: 149.0717141} - - { name: Cameron Avenue,stop_code: Wjz60Qc, lat: -35.2410063, lng: 149.0710758} - - { name: Chuculba Crescent,stop_code: Wjz6u3h, lat: -35.2089622, lng: 149.095889} - - { name: Maribyrnong Avenue,stop_code: Wjz6sZ1, lat: -35.21859, lng: 149.10511} - - { name: O'Halloran Circuit,stop_code: WjrWYHH, lat: -35.3956133, lng: 149.0592665} - - { name: O'Halloran Circuit,stop_code: WjrWYHE, lat: -35.3958129, lng: 149.0592983} - - { name: Haydon Drive,stop_code: Wjz5nwb, lat: -35.2493711, lng: 149.0901523} - - { name: Bindubi Street,stop_code: Wjz55V-, lat: -35.2594169, lng: 149.0733684} - - { name: William Slim Drive,stop_code: Wjz6mip, lat: -35.2096535, lng: 149.0878294} - - { name: Aikman Drive,stop_code: Wjz69vO, lat: -35.2336108, lng: 149.0786617} - - { name: Anketell Street,stop_code: Wjz213q, lat: -35.4121336, lng: 149.063177} - - { name: Baldwin Drive,stop_code: Wjz6qe4, lat: -35.2286658, lng: 149.0969557} - - { name: Bradley Street,stop_code: Wjz3ldS, lat: -35.3445222, lng: 149.0870435} - - { name: Florey Drive,stop_code: Wjr-CS2, lat: -35.2068071, lng: 149.0268212} - - { name: Bradley Street,stop_code: Wjz3ldT, lat: -35.3444271, lng: 149.0869631} - - { name: Athllon Drive,stop_code: Wjz3kyX, lat: -35.3523555, lng: 149.0913002} - - { name: Badimara Street,stop_code: WjrXXqW, lat: -35.3578948, lng: 149.056972} - - { name: Dalley Crescent,stop_code: Wjr-AHx, lat: -35.2199899, lng: 149.0262529} - - { name: Darwinia Terrace,stop_code: WjrXIqk, lat: -35.3522608, lng: 149.0341457} - - { name: Bugden Avenue,stop_code: Wjz2zGA, lat: -35.4016851, lng: 149.1141675} - - { name: Clift Crescent,stop_code: Wjz1CRl, lat: -35.4269745, lng: 149.1151677} - - { name: Noarlunga Crescent,stop_code: Wjz1kv5, lat: -35.4365971, lng: 149.0887401} - - { name: Drumston Street,stop_code: Wjz1mDW, lat: -35.4258444, lng: 149.0913151} - - { name: Heagney Crescent,stop_code: Wjz1TLL, lat: -35.4199685, lng: 149.1361715} - - { name: Dyson Street,stop_code: Wjz5Kve, lat: -35.2497723, lng: 149.1218849} - - { name: Groom Street,stop_code: Wjz3nLq, lat: -35.3325054, lng: 149.0919265} - - { name: Miller Street,stop_code: Wjz5zJi, lat: -35.2679801, lng: 149.113807} - - { name: Carruthers Street,stop_code: Wjz49Wd, lat: -35.324698, lng: 149.0833563} - - { name: Hambidge Crescent,stop_code: Wjz2Ep9, lat: -35.4191211, lng: 149.1218171} - - { name: Ellerston Avenue,stop_code: Wjz1uHh, lat: -35.428677, lng: 149.1028378} - - { name: Wheeler Crescent,stop_code: Wjz2jFt, lat: -35.4023147, lng: 149.0919266} - - { name: Dumas Street,stop_code: Wjz6cjg, lat: -35.2200412, lng: 149.0766172} - - { name: Kerrigan Street,stop_code: Wjr_FV4, lat: -35.1935916, lng: 149.039268} - - { name: Wilson Crescent,stop_code: Wjz0udw, lat: -35.4713366, lng: 149.0976343} - - { name: Starke Street,stop_code: Wjr-yDR, lat: -35.2278849, lng: 149.0252438} - - { name: Downard Street,stop_code: Wjz1srs, lat: -35.4394729, lng: 149.1002307} - - { name: Southern Cross Drive,stop_code: Wjr-Hi1, lat: -35.2261454, lng: 149.032398} - - { name: Blackwood Terrace,stop_code: WjrXTgl, lat: -35.3370298, lng: 149.0436997} - - { name: Mulley Street,stop_code: WjrXTSe, lat: -35.3328347, lng: 149.0489873} - - { name: Kerrigan Street,stop_code: Wjr_xnT, lat: -35.1892671, lng: 149.0223682} - - { name: Osburn Drive,stop_code: Wjr-thp, lat: -35.2158247, lng: 149.0109263} - - { name: Tillyard Drive,stop_code: Wjr_MjV, lat: -35.1979805, lng: 149.0445264} - - { name: Lithgow Street,stop_code: Wjzc8im, lat: -35.3300635, lng: 149.1644887} - - { name: Caley Crescent,stop_code: Wjz3_o2, lat: -35.3372978, lng: 149.1435685} - - { name: Jerrabomberra Avenue,stop_code: Wjzb5vw, lat: -35.3436462, lng: 149.155296} - - { name: Alinga Street,stop_code: Wjz5F-1, lat: -35.2783161, lng: 149.1271286} - - { name: La Perouse Street,stop_code: Wjz3S3t, lat: -35.340463, lng: 149.1289947} - - { name: Gilmore Crescent,stop_code: Wjz3tCe, lat: -35.3438411, lng: 149.1012607} - - { name: Cunningham Street,stop_code: Wjz4WYQ, lat: -35.3179239, lng: 149.150152} - - { name: Giles Street,stop_code: Wjz4OYm, lat: -35.3177313, lng: 149.1384361} - - { name: Canberra Avenue;Manuka Circle,stop_code: Wjz4OqF, lat: -35.3195494, lng: 149.1335622} - - { name: East Row,stop_code: Wjz5Nds, lat: -35.2787886, lng: 149.1304779} - - { name: Gilmore Crescent,stop_code: Wjz3C4O, lat: -35.3400601, lng: 149.1074834} - - { name: Ainsworth Street,stop_code: Wjz3lVG, lat: -35.3476365, lng: 149.095065} - - { name: Kent Street,stop_code: Wjz4gYg, lat: -35.329258, lng: 149.0944878} - - { name: McCaughey Street,stop_code: Wjz5Hw8, lat: -35.2715996, lng: 149.1231371} - - { name: Macarthur Avenue,stop_code: Wjz5Jpp, lat: -35.2597672, lng: 149.1221194} - - { name: Scrivener Street,stop_code: Wjz5Juf, lat: -35.2558204, lng: 149.1217923} - - { name: Marcus Clarke Street,stop_code: Wjz5GMT, lat: -35.2764151, lng: 149.1267199} - - { name: Iron Knob Street,stop_code: WjzbnGh, lat: -35.3359862, lng: 149.1796321} - - { name: Alpen Street,stop_code: Wjr-_Ua, lat: -35.2054509, lng: 149.0613315} - - { name: Copland Drive,stop_code: Wjz66lY, lat: -35.2073806, lng: 149.0665685} - - { name: Lennox Crossing,stop_code: Wjz4Lh5, lat: -35.2924038, lng: 149.1201999} - - { name: Russell Drive,stop_code: Wjz4-WL, lat: -35.2970826, lng: 149.149927} - - { name: National Circuit,stop_code: Wjz4PuC, lat: -35.3109115, lng: 149.1332413} - - { name: Sydney Avenue,stop_code: Wjz4P6x, lat: -35.3112617, lng: 149.1291119} - - { name: Ellerston Avenue,stop_code: Wjz1lun, lat: -35.4316552, lng: 149.0890556} - - { name: Ellerston Avenue,stop_code: Wjz1lKC, lat: -35.4317601, lng: 149.0920382} - - { name: Box Hill Avenue,stop_code: Wjz1p8y, lat: -35.4581564, lng: 149.0976236} - - { name: Templestowe Avenue,stop_code: Wjz1whX, lat: -35.4629103, lng: 149.1104982} - - { name: Pocket Avenue,stop_code: Wjz0mNo, lat: -35.4741647, lng: 149.0932462} - - { name: Jim Pike Avenue,stop_code: Wjz18th, lat: -35.4602703, lng: 149.078022} - - { name: Tharwa Drive,stop_code: Wjz1ixR, lat: -35.4517314, lng: 149.0910093} - - { name: Jenolan Street,stop_code: Wjzf0LE, lat: -35.1953415, lng: 149.1582308} - - { name: Goodwin Street,stop_code: Wjz5Tho, lat: -35.2488671, lng: 149.1317091} - - { name: Northbourne Avenue,stop_code: Wjz6MyH, lat: -35.2424532, lng: 149.1348634} - - { name: Campbell Street,stop_code: Wjz5XwW, lat: -35.2714003, lng: 149.1461465} - - { name: Streeton Drive,stop_code: WjrXPR4, lat: -35.3556673, lng: 149.048857} - - { name: Shakespeare Crescent,stop_code: Wjr_O0I, lat: -35.1888592, lng: 149.0415483} - - { name: Parkinson Street,stop_code: WjrX-0-, lat: -35.3424839, lng: 149.052828} - - { name: Edinburgh Avenue,stop_code: Wjz5EKJ, lat: -35.28346, lng: 149.1252} - - { name: Chippindall Circuit,stop_code: Wjz1F5W, lat: -35.4547272, lng: 149.1186974} - - { name: Fullagar Crescent,stop_code: Wjr-yQP, lat: -35.2301148, lng: 149.0278969} - - { name: Harrison Street,stop_code: Wjr-Nmt, lat: -35.2340935, lng: 149.0438829} - - { name: Dunstan Street,stop_code: Wjz4aH6, lat: -35.3184453, lng: 149.0804542} - - { name: O'Loghlen Street,stop_code: Wjr-IMR, lat: -35.2216889, lng: 149.0389433} - - { name: Drakeford Drive,stop_code: Wjz2a26, lat: -35.4069683, lng: 149.0736259} - - { name: Whyalla Street,stop_code: Wjzbnmb, lat: -35.3331064, lng: 149.1753196} - - { name: Kalgoorlie Crescent,stop_code: WjrXW7A, lat: -35.3597972, lng: 149.0523061} - - { name: Larakia Street,stop_code: Wjz351q, lat: -35.3476392, lng: 149.0630875} - - { name: Bunbury Street,stop_code: WjrXZhO, lat: -35.3476305, lng: 149.0552983} - - { name: Kalgoorlie Crescent,stop_code: WjrXXk0, lat: -35.3567398, lng: 149.0543328} - - { name: Beaurepaire Crescent,stop_code: Wjr-syd, lat: -35.2203046, lng: 149.0133355} - - { name: Warragamba Avenue,stop_code: WjrYEpn, lat: -35.3306598, lng: 149.0341649} - - { name: Hardwick Crescent,stop_code: Wjr-zom, lat: -35.2270626, lng: 149.0231771} - - { name: Brazel Street,stop_code: Wjr-GeX, lat: -35.2287693, lng: 149.0321955} - - { name: Brindabella Circuit,stop_code: Wjzcrp_, lat: -35.3142011, lng: 149.1887666} - - { name: Alinga Street,stop_code: Wjz5FSY, lat: -35.2780524, lng: 149.1269928} - - { name: Lhotsky Street,stop_code: Wjr_Es4, lat: -35.1970405, lng: 149.0338265} - - { name: Brindabella Circuit,stop_code: WjzcrrQ, lat: -35.3131274, lng: 149.188611} - - { name: Leverrier Crescent,stop_code: Wjz6oEz, lat: -35.243821, lng: 149.1030282} - - { name: Curran Drive,stop_code: Wjz7ilp, lat: -35.1856235, lng: 149.0877402} - - { name: McClelland Avenue,stop_code: Wjz7jsi, lat: -35.1807665, lng: 149.0890046} - - { name: Ryder Place,stop_code: Wjz7qkM, lat: -35.1864502, lng: 149.0992461} - - { name: Anne Clark Avenue,stop_code: Wjz7rOj, lat: -35.1820066, lng: 149.104114} - - { name: Kelleway Avenue,stop_code: Wjz7r-a, lat: -35.1793714, lng: 149.1053784} - - { name: Battye Street,stop_code: Wjz5vj2, lat: -35.2473747, lng: 149.0982287} - - { name: William Webb Drive,stop_code: Wjz6ddQ, lat: -35.212863, lng: 149.0759771} - - { name: Kingsford Smith Drive,stop_code: Wjr-Rry, lat: -35.2143707, lng: 149.0454751} - - { name: Gungurra Crescent,stop_code: WjrXRmc, lat: -35.3440337, lng: 149.0435395} - - { name: Jabanungga Avenue,stop_code: Wjz7tLG, lat: -35.1677443, lng: 149.1032921} - - { name: Deumonga Court,stop_code: Wjz7BED, lat: -35.1720853, lng: 149.1141026} - - { name: Naas Close,stop_code: Wjz7IDY, lat: -35.1730154, lng: 149.1242809} - - { name: Shoalhaven Avenue,stop_code: Wjz7IuJ, lat: -35.1736356, lng: 149.1225108} - - { name: Oodgeroo Avenue,stop_code: Wjz6_7M, lat: -35.2008784, lng: 149.1404901} - - { name: Burrowa Street,stop_code: Wjz7xJz, lat: -35.191011, lng: 149.1141277} - - { name: Kosciuszko Avenue,stop_code: Wjz7EjH, lat: -35.1978404, lng: 149.1211679} - - { name: Hindmarsh Drive,stop_code: Wjz3knt, lat: -35.3486981, lng: 149.0879033} - - { name: Grimwade Street,stop_code: Wjz6QPM, lat: -35.2200763, lng: 149.1377788} - - { name: Federal Highway,stop_code: Wjzebjj, lat: -35.2253369, lng: 149.1645164} - - { name: Officer Crescent,stop_code: Wjzd6lW, lat: -35.2515158, lng: 149.1544172} - - { name: National Circuit,stop_code: Wjz4Pt5, lat: -35.3116531, lng: 149.1326324} - - { name: Gilmore Crescent,stop_code: Wjz3uJV, lat: -35.339486, lng: 149.1035524} - - { name: McCaughey Street,stop_code: Wjz5Guy, lat: -35.2727878, lng: 149.1223747} - - { name: Brigalow Street,stop_code: Wjz5KgT, lat: -35.2544701, lng: 149.1213129} - - { name: Ainslie Avenue,stop_code: Wjz5NRJ, lat: -35.2787111, lng: 149.1375365} - - { name: White Crescent,stop_code: Wjzd0yM, lat: -35.2866868, lng: 149.1570161} - - { name: Blamey Crescent,stop_code: Wjzc7bs, lat: -35.2911202, lng: 149.1523397} - - { name: Morshead Drive,stop_code: Wjzcd8D, lat: -35.3039101, lng: 149.1635732} - - { name: Yamba Drive,stop_code: Wjz3tp2, lat: -35.3475867, lng: 149.0997372} - - { name: Kootara Crescent,stop_code: Wjzc090, lat: -35.3312849, lng: 149.15186} - - { name: Monaro Crescent,stop_code: Wjz3ShE, lat: -35.3422498, lng: 149.1321257} - - { name: Arthur Circle,stop_code: Wjz4F-D, lat: -35.3217932, lng: 149.127895} - - { name: Sturt Avenue,stop_code: Wjz3_JM, lat: -35.3340521, lng: 149.1474054} - - { name: Gladstone Street,stop_code: Wjzcod5, lat: -35.3281204, lng: 149.1848684} - - { name: Bugden Avenue,stop_code: Wjz2z-1, lat: -35.3992364, lng: 149.1161738} - - { name: Heagney Crescent,stop_code: Wjz1LhA, lat: -35.4243494, lng: 149.1210339} - - { name: Duggan Street,stop_code: Wjz1scZ, lat: -35.4387125, lng: 149.0981386} - - { name: Gouger Street,stop_code: Wjz2nug, lat: -35.3773453, lng: 149.0890124} - - { name: Lhotsky Street,stop_code: Wjr-L8R, lat: -35.2052394, lng: 149.0319524} - - { name: Fincham Crescent,stop_code: Wjz2cy0, lat: -35.3964903, lng: 149.0791164} - - { name: Kareelah Vista,stop_code: Wjz3z3D, lat: -35.3568273, lng: 149.1071615} - - { name: Julia Flynn Avenue,stop_code: Wjz3xDo, lat: -35.3656556, lng: 149.1125474} - - { name: Julia Flynn Avenue,stop_code: Wjz3wEM, lat: -35.3759264, lng: 149.1143713} - - { name: Joynton Smith Drive,stop_code: Wjr-WVG, lat: -35.2322356, lng: 149.062079} - - { name: Golden Grove,stop_code: Wjz4M0c, lat: -35.3316757, lng: 149.1286729} - - { name: Combes Road,stop_code: Wjzcdvn, lat: -35.2991044, lng: 149.1658966} - - { name: Bradfield Street,stop_code: Wjz6Upw, lat: -35.2433821, lng: 149.1442189} - - { name: Knox Street,stop_code: Wjze0vc, lat: -35.2389219, lng: 149.1547225} - - { name: Shumack Street,stop_code: WjrZSQm, lat: -35.251846, lng: 149.0492258} - - { name: Antill Street,stop_code: Wjzd7Av, lat: -35.2462823, lng: 149.1564391} - - { name: Genoa Street,stop_code: Wjz7JZQ, lat: -35.1689499, lng: 149.1281264} - - { name: Tipiloura Street,stop_code: Wjz7CqS, lat: -35.1653247, lng: 149.1116147} - - { name: Eggleston Crescent,stop_code: Wjz3cal, lat: -35.3521568, lng: 149.0752845} - - { name: Cockle Street,stop_code: Wjz5AGB, lat: -35.2642702, lng: 149.1141435} - - { name: Verbrugghen Street,stop_code: Wjr-RZx, lat: -35.213153, lng: 149.050965} - - { name: Copland Drive,stop_code: Wjr-ZRJ, lat: -35.2127453, lng: 149.0607491} - - { name: Ellenborough Street,stop_code: Wjz6FEI, lat: -35.2382959, lng: 149.1252507} - - { name: Alpen Street,stop_code: Wjz66fx, lat: -35.2062629, lng: 149.0647145} - - { name: Dumas Street,stop_code: Wjz64OE, lat: -35.2207286, lng: 149.0717368} - - { name: Kingsford Smith Drive,stop_code: Wjr-SS5, lat: -35.2065999, lng: 149.0489353} - - { name: Macarthur Avenue,stop_code: Wjz5Jaa, lat: -35.2590481, lng: 149.1191164} - - { name: Kingsford Smith Drive,stop_code: Wjr-_Hp, lat: -35.2034703, lng: 149.0589653} - - { name: Copland Drive,stop_code: Wjr-YdU, lat: -35.2186771, lng: 149.0542242} - - { name: Coulter Drive,stop_code: WjrZ_so, lat: -35.2468109, lng: 149.0562979} - - { name: O'Hanlon Place,stop_code: Wjz79-a, lat: -35.1903384, lng: 149.0833628} - - { name: Moynihan Street,stop_code: Wjr-ZXo, lat: -35.214551, lng: 149.0617978} - - { name: William Webb Drive,stop_code: Wjz6eNd, lat: -35.2100405, lng: 149.0820067} - - { name: Moynihan Street,stop_code: Wjz65GS, lat: -35.2147682, lng: 149.0705542} - - { name: Ashkanasy Crescent,stop_code: Wjz66Fg, lat: -35.2104421, lng: 149.0698018} - - { name: Marconi Crescent,stop_code: Wjz27dd, lat: -35.3775909, lng: 149.0640777} - - { name: Summerland Circuit,stop_code: Wjz26WN, lat: -35.3854988, lng: 149.073226} - - { name: Summerland Circuit,stop_code: Wjz25Ox, lat: -35.3909341, lng: 149.0714764} - - { name: Learmonth Drive,stop_code: WjrWXNL, lat: -35.4020721, lng: 149.0607315} - - { name: Copland Drive,stop_code: Wjz66Cd, lat: -35.2065831, lng: 149.0682105} - - { name: Copland Drive,stop_code: Wjz67yW, lat: -35.2040813, lng: 149.0692143} - - { name: Baddeley Crescent,stop_code: Wjz701y, lat: -35.1992909, lng: 149.0633518} - - { name: Kingsford Smith Drive,stop_code: Wjr_UTL, lat: -35.1947749, lng: 149.060646} - - { name: Clarey Crescent,stop_code: Wjz70zz, lat: -35.1978567, lng: 149.0687555} - - { name: Copland Drive,stop_code: Wjz67_t, lat: -35.200411, lng: 149.0727116} - - { name: Bimbimbie Street,stop_code: Wjz68IH, lat: -35.2411129, lng: 149.0812786} - - { name: Bandjalong Crescent,stop_code: Wjz5d81, lat: -35.2605056, lng: 149.0749293} - - { name: Carbeen Street,stop_code: WjrXJ-g, lat: -35.3443528, lng: 149.0396647} - - { name: Amy Ackman Street,stop_code: Wjz7-xb, lat: -35.1662448, lng: 149.1450965} - - { name: Gundaroo Drive,stop_code: Wjz7oZp, lat: -35.1966204, lng: 149.1057315} - - { name: Barritt Street,stop_code: WjrWTJo, lat: -35.3779591, lng: 149.0479511} - - { name: Northbourne Avenue,stop_code: Wjz5P8K, lat: -35.2710632, lng: 149.1307122} - - { name: Northbourne Avenue,stop_code: Wjz5O3Q, lat: -35.274617, lng: 149.1295599} - - { name: Northbourne Avenue,stop_code: Wjz5Qi2, lat: -35.2645608, lng: 149.1311834} - - { name: Mulley Street,stop_code: WjrXTX5, lat: -35.3350148, lng: 149.0502343} - - { name: Dalley Crescent,stop_code: Wjr-I4P, lat: -35.2191133, lng: 149.0306838} - - { name: Maribyrnong Avenue,stop_code: Wjz6zth, lat: -35.2241129, lng: 149.1109391} - - { name: Le Souef Crescent,stop_code: Wjr-PWf, lat: -35.225611, lng: 149.0504341} - - { name: Ellerston Avenue,stop_code: Wjz1mTF, lat: -35.4259406, lng: 149.0936003} - - { name: Vonwiller Crescent,stop_code: Wjz1zWz, lat: -35.4457437, lng: 149.1168111} - - { name: Deamer Crescent,stop_code: Wjz1S2v, lat: -35.4289254, lng: 149.1290251} - - { name: Chuculba Crescent,stop_code: Wjz6sdJ, lat: -35.21822, lng: 149.09782} - - { name: Baldwin Drive,stop_code: Wjz6rsL, lat: -35.2242562, lng