From: maxious Date: Tue, 02 Nov 2010 13:59:56 +0000 Subject: More network 10 updates X-Git-Url: https://maxious.lambdacomplex.org/git/?p=bus.git&a=commitdiff&h=cbd4cfb99deafe3b04112026dc22776df8727d9f --- More network 10 updates --- --- a/maxious-canberra-transit-feed/02-tidytimepoints.rb +++ b/maxious-canberra-transit-feed/02-tidytimepoints.rb @@ -42,7 +42,12 @@ "Newcastle Streetafter Isa Street"=>"Newcastle Street after Isa Street", "William Web / Ginninderra Drive"=>"William Webb / Ginninderra Drive", "Procor / Mead"=>"Proctor / Mead", -"Fyshwick DirectFactory Outlet"=>"Fyshwick Direct Factory Outlet" +"Fyshwick DirectFactory Outlet"=>"Fyshwick Direct Factory Outlet", +"Dickson ShopsAntill Street"=>"Dickson Shops/Antill St", +"Yarrulumla Shops"=>"Yarralumla Shops", +"Tharwa Dr / Pocket Ave"=>"Tharwa Dr / Pockett Ave", +"Paul Coe / Mirrebei Dr"=>"Paul Coe / Mirrabei Dr", +"Mirrebei Drive / Dam Wall"=>"Mirrabei Drive / Dam Wall" } time_point_corrections.each do |wrong, right| --- a/maxious-canberra-transit-feed/03-locatetimepoints.rb +++ b/maxious-canberra-transit-feed/03-locatetimepoints.rb @@ -12,7 +12,7 @@ url = "#{base_url}#{URI.encode(query)}&bbox=-35.47,148.83,-35.16,149.25&return_location=true" resp = Net::HTTP.get_response(URI.parse(url)) data = resp.body - +pp url # we convert the returned JSON data to native Ruby # data structure - a hash result = JSON.parse(data) @@ -51,12 +51,11 @@ connbus = PGconn.connect("localhost", 5432, '', '', "bus", "postgres", "snmc") -connosm = PGconn.connect("localhost", 5432, '', '', "openstreetmap", "postgres", "snmc") if ask_if("Insert Timing Point names to database?") $time_points.each do |time_point| begin - time_point = time_point.gsub(/\\/, '\&\&').gsub(/'/, "''") + time_point = time_point.gsub(/\\/, '\&\&').gsub(/'/, "''") # DON'T PUT MORE GSUB HERE res = connbus.exec("INSERT INTO timing_point (name) VALUES ('#{time_point}')") puts "Put '#{time_point}' into DB" rescue PGError => e @@ -67,164 +66,6 @@ end -if ask_if("Fill null Timing Points from OSM bus_stop database?") -# TODO Where there's a "Cnr" or a \/ or a &, Look for 2 ways or nodes and average the closest two! - begin - null_points = connbus.exec('SELECT name FROM timing_point WHERE lat IS null OR lng IS null;') - rescue PGError => e - puts "Error selecting null points from DB #{e}" - #conn.close() if conn - end - - null_points.each do |null_point_name| - begin - name = null_point_name.to_s.gsub(/\\/, '\&\&').gsub(/'/, "''") - pp name - search_name = ask("Hmm, if we're still looking, the name is probably wrong. What's the right name?", :string, :default => name) - matching_nodes = connosm.exec("Select * FROM (SELECT * from current_node_tags, - (Select id as ctagid FROM current_node_tags WHERE v LIKE '%#{search_name}%') as a - where a.ctagid = current_node_tags.id) as ctags INNER JOIN current_nodes ON - ctags.id=current_nodes.id") - rescue PGError => e - puts "Error selecting matching bus stops from DB #{e}" - #conn.close() if conn - end - suggested_nodes = Hash.new() - - matching_nodes.each do |matching_node_row| - #pp matching_node_row - # 0 = id - # 1 = k - # 2 = v - # 3,4 = redundant ids - # 5 = lat*100000 - # 6 = lng*100000 - suggested_node = suggested_nodes.fetch(matching_node_row[0], {'lat' => Float(matching_node_row[5])/10000000, - 'lng' => Float(matching_node_row[6])/10000000}) - if matching_node_row[1] == "ref" - matching_node_row[1] = "loc_ref" - end - suggested_node[matching_node_row[1]] = matching_node_row[2] - suggested_nodes[matching_node_row[0]] = suggested_node - end - pp suggested_nodes - nodeID = ask("Enter selected node ID:", :string) - if suggested_nodes.has_key?(nodeID) - node = suggested_nodes.fetch(nodeID) - guess = ask_if("Is this a guess?") - puts "Location #{node["lat"]},#{node["lng"]} for #{null_point_name}" - begin - res = connbus.exec("UPDATE timing_point SET lat = #{node["lat"]*10000000}, lng = -#{node["lng"]*10000000},osm_node = #{nodeID}" + (node.has_key?("loc_ref") ? ",loc_ref = #{node["loc_ref"]}" : "") + ",guess = #{guess} WHERE name -= '#{name}'") - puts "Put '#{null_point_name}' into DB" - rescue PGError => e - puts "Error inserting '#{null_point_name}' to DB #{e}" - ask_if("Continue?") - #conn.close() if conn - end - else - puts "Uhh, there was no suggestion ID like that. Try again next time!" - end - - puts "Hmm, so maybe this isn't a point? Maybe it's a way.... like a street or something? Is it a 'street' or a 'corner' or nothing?" - whatisit = ask("So what is it:", :string, :default => "corner") - if whatisit == "street" - begin - name = null_point_name.to_s.gsub(/\\/, '\&\&').gsub(/'/, "''") - pp "#{name} (ways)" - search_name = ask("Streets tend to have pretty bad quality data, What's the real name of the street?", :string, :default => name) - matching_ways = connosm.exec("Select avg(latitude), avg(longitude), name FROM ( - SELECT * from current_way_nodes,(Select id as ctagid, v as name FROM current_way_tags WHERE k = 'name' AND v LIKE - '%#{search_name}%') as a where a.ctagid = current_way_nodes.id) as ctags INNER JOIN current_nodes ON ctags.node_id=current_nodes.id - GROUP BY name") - rescue PGError => e - puts "Error selecting matching ways from DB #{e}" - #conn.close() if conn - end - suggested_ways = Hash.new() - - matching_ways.each do |matching_way_row| - #pp matching_way_row - # 0 = lat*100000 - # 1 = lng*100000 - # 2 = name - suggested_way = suggested_ways.fetch(matching_way_row[2], {'lat' => Float(matching_way_row[0])/10000000, - 'lng' => Float(matching_way_row[1])/10000000}) - suggested_way['name'] = suggested_way['name'] - suggested_ways[matching_way_row[2]] = suggested_way - end - pp suggested_ways - wayID = ask("Enter selected way ID:", :string) - if suggested_ways.has_key?(wayID) - way = suggested_ways.fetch(wayID) - guess = ask_if("Is this a guess?") - puts "Location #{way["lat"]},#{way["lng"]} for #{null_point_name}" - begin - res = connbus.exec("UPDATE timing_point SET lat = #{way["lat"]*10000000}, lng = - #{way["lng"]*10000000},guess = #{guess} WHERE name = '#{name}'") - puts "Put '#{null_point_name}' into DB" - rescue PGError => e - puts "Error inserting '#{null_point_name}' to DB #{e}" - ask_if("Continue?") - #conn.close() if conn - end - else - puts "Uhh, there was no suggestion ID like that. Try again next time!" - end - end - if whatisit == "corner" - # Where there's a "Cnr" or a \/ or a &, look for 2 ways and find the intersections - - name = null_point_name.to_s.gsub(/\\/, '\&\&').gsub(/'/, "''") - search_name = ask("I need this to look like STREETNAME1/STREETNAME2, okay? Can you do that for me?", :string, :default => name) - search_pieces = search_name.split("/") - pp search_pieces - if search_pieces.length == 2 - begin - matching_ways = connosm.exec("SELECT w.way_id, latitude, longitude, w.node_id from (Select current_way_nodes.id as way_id, * from current_nodes inner join current_way_nodes on current_nodes.id=current_way_nodes.node_id inner join current_ways on current_way_nodes.id=current_ways.id) as w, (select node_id, count(node_id) from - (Select * FROM (SELECT * from current_way_nodes, (Select id as ctagid, v as name FROM current_way_tags WHERE k = 'name' AND v LIKE '%#{search_pieces[0]}%') as a where a.ctagid = current_way_nodes.id ) as ctags INNER JOIN current_nodes ON ctags.node_id=current_nodes.id where sequence_id = 1 union Select * FROM ( SELECT * from current_way_nodes, (Select id as ctagid, v as name FROM current_way_tags WHERE k = 'name' AND v LIKE '%#{search_pieces[0]}%') as a where a.ctagid = current_way_nodes.id ) as ctags INNER JOIN current_nodes ON ctags.node_id=current_nodes.id where sequence_id = (select max(sequence_id) from current_way_nodes cnodes where cnodes.id = ctags.id) union Select * FROM ( SELECT * from current_way_nodes, (Select id as ctagid, v as name FROM current_way_tags WHERE k = 'name' AND v LIKE '%#{search_pieces[1]}%') as a where a.ctagid = current_way_nodes.id ) as ctags INNER JOIN current_nodes ON ctags.node_id=current_nodes.id where sequence_id = 1 union Select * FROM ( SELECT * from current_way_nodes, (Select id as ctagid, v as name FROM current_way_tags WHERE k = 'name' AND v LIKE '%#{search_pieces[1]}%') as a where a.ctagid = current_way_nodes.id ) as ctags INNER JOIN current_nodes ON ctags.node_id=current_nodes.id where sequence_id = (select max(sequence_id) from current_way_nodes cnodes where cnodes.id = ctags.id) ) as t GROUP BY node_id HAVING ( COUNT(node_id) > 1 ) ) as s where s.node_id = w.node_id") - rescue PGError => e - puts "Error selecting matching bus stops from DB #{e}" - #conn.close() if conn - end - suggested_ways = Hash.new() - - matching_ways.each do |matching_way_row| - pp matching_way_row - # 0 = way_id - # 1 = lat*100000 - # 2 = lng*100000 - # 3 = node_id - suggested_way = suggested_ways.fetch(matching_way_row[3], {'lat' => Float(matching_way_row[1])/10000000, - 'lng' => Float(matching_way_row[2])/10000000}) - suggested_way['way_id'] = " " + matching_way_row[0] - suggested_way['node_id'] = matching_way_row[3] - suggested_ways[matching_way_row[3]] = suggested_way - end - pp suggested_ways - wayID = ask("Enter selected way ID:", :string) - if suggested_ways.has_key?(wayID) - way = suggested_ways.fetch(wayID) - guess = ask_if("Is this a guess?") - puts "Location #{way["lat"]},#{way["lng"]} for #{null_point_name}" - begin - res = connbus.exec("UPDATE timing_point SET lat = #{way["lat"]*10000000}, lng = - #{way["lng"]*10000000},osm_node = #{wayID} ,guess = #{guess} WHERE name - = '#{name}'") - puts "Put '#{null_point_name}' into DB" - rescue PGError => e - puts "Error inserting '#{null_point_name}' to DB #{e}" - ask_if("Continue?") - #conn.close() if conn - end - else - puts "Uhh, there was no suggestion ID like that. Try again next time!" - end - end - end - end -end if ask_if("Fill null Timing Points from geocoder?") begin null_points = connbus.exec('SELECT name FROM timing_point WHERE lat IS null OR lng IS null;') @@ -236,7 +77,7 @@ null_points.each do |null_point_name| pp null_point_name name = null_point_name.to_s.gsub(/\\/, '\&\&').gsub(/'/, "''") - results = cbr_geocode(null_point_name[0]) + results = cbr_geocode(null_point_name.to_s.gsub("Shops", "")) if !results.empty? results['features'].each_with_index { |feature,index| print "#{index}: #{feature['properties']['name']} (#{feature['location']}) => #{feature['centroid']['coordinates']}\n" --- /dev/null +++ b/maxious-canberra-transit-feed/cbrtable.yml @@ -1,1 +1,2719 @@ +options: + start_date: 20090525 + end_date: 20101001 + remove_date: 20101001 + agency_name: ACT Internal Omnibus Network (ACTION) + agency_url: http://www.action.act.gov.au/ + agency_timezone: Australia/Sydney + +stops: + - { name: ACTEW AGL House,stop_code: ACTEW AGL House, lat: -35.282374, lng: 149.132047} + - { name: ADFA,stop_code: ADFA, lat: -35.2937972, lng: 149.1643403} + - { name: Ainslie,stop_code: Ainslie, lat: -35.2620105, lng: 149.1443302} + - { name: Ainslie Shops,stop_code: Ainslie Shops, lat: -35.26198, lng: 149.14535} + - { name: Alexander Maconochie Centre,stop_code: Alexander Maconochie Centre, lat: -35.3720651, lng: 149.1696618} + - { name: Alpen & Clifford St,stop_code: Alpen & Clifford St, lat: -35.20562, lng: 149.06259} + - { name: Anthony Rolfe Av / Moonlight Av,stop_code: Anthony Rolfe Av / Moonlight Av, lat: -35.1856021, lng: 149.1543639} + - { name: Aranda,stop_code: Aranda, lat: -35.257534, lng: 149.0762963} + - { name: Aranda Shops,stop_code: Aranda Shops, lat: -35.25753, lng: 149.0763} + - { name: Athllon / Sulwood, Kambah,stop_code: Athllon / Sulwood, Kambah, lat: -35.38442, lng: 149.09328} + - { name: Australian Institute of Sport,stop_code: Australian Institute of Sport, lat: -35.246351, lng: 149.101478} + - { name: Belconnen Community Bus Station,stop_code: Belconnen Community Bus Station, lat: -35.23987, lng: 149.0619} + - { name: Belconnen Community Bus Station (Platform 1),stop_code: Belconnen Community Bus Station (Platform 1), lat: -35.23982, lng: 149.06978} + - { name: Belconnen Community Bus Station (Platform 2),stop_code: Belconnen Community Bus Station (Platform 2), lat: -35.23982, lng: 149.06926} + - { name: Belconnen Community Bus Station (Platform 3),stop_code: Belconnen Community Bus Station (Platform 3), lat: -35.23986, lng: 149.06847} + - { name: Belconnen Community Bus Station (Platform 4),stop_code: Belconnen Community Bus Station (Platform 4), lat: -35.23994, lng: 149.06887} + - { name: Belconnen Community Bus Station (Platform 5),stop_code: Belconnen Community Bus Station (Platform 5), lat: -35.23994, lng: 149.06928} + - { name: Belconnen Community Bus Station (Platform 6),stop_code: Belconnen Community Bus Station (Platform 6), lat: -35.23994, lng: 149.0698} + - { name: Belconnen Way,stop_code: Belconnen Way, lat: -35.24809, lng: 149.06765} + - { name: Bimberi Centre,stop_code: Bimberi Centre, lat: -35.2219941, lng: 149.1546928} + - { name: Black Mountain Telstra Tower,stop_code: Black Mountain Telstra Tower, lat: -35.2748058, lng: 149.0972461} + - { name: Bonython,stop_code: Bonython, lat: -35.4297416, lng: 149.0814517} + - { name: Bonython Primary School,stop_code: Bonython Primary School, lat: -35.431019, lng: 149.0831217} + - { name: Botanic Gardens,stop_code: Botanic Gardens, lat: -35.278643, lng: 149.1093237} + - { name: Brindabella Business Park,stop_code: Brindabella Business Park, lat: -35.314496, lng: 149.189145} + - { name: Brindabella Gardens Nursing Home,stop_code: Brindabella Gardens Nursing Home, lat: -35.3294459, lng: 149.0806116} + - { name: Bugden Sternberg,stop_code: Bugden Sternberg, lat: -35.4017223, lng: 149.0992172} + - { name: Burton and Garran Hall, Daley Road,stop_code: Burton and Garran Hall, Daley Road, lat: -35.2753671, lng: 149.1172822} + - { name: Calvary Hospital,stop_code: Calvary Hospital, lat: -35.25212, lng: 149.09088} + - { name: Calwell Shops,stop_code: Calwell Shops, lat: -35.43524, lng: 149.113942} + - { name: Cameron Ave Bus Station,stop_code: Cameron Ave Bus Station, lat: -35.2410195, lng: 149.0722506} + - { name: Cameron Ave Bus Station (Platform 1),stop_code: Cameron Ave Bus Station (Platform 1), lat: -35.2410195, lng: 149.0722506} + - { name: Cameron Ave Bus Station (Platform 2),stop_code: Cameron Ave Bus Station (Platform 2), lat: -35.2410108, lng: 149.0717142} + - { name: Cameron Ave Bus Station (Platform 3),stop_code: Cameron Ave Bus Station (Platform 3), lat: -35.2410064, lng: 149.0710758} + - { name: Cameron Ave Bus Station (Platform 4),stop_code: Cameron Ave Bus Station (Platform 4), lat: -35.2411773, lng: 149.0709793} + - { name: Cameron Ave Bus Station (Platform 5),stop_code: Cameron Ave Bus Station (Platform 5), lat: -35.241186, lng: 149.0720789} + - { name: Campbell Park Offices,stop_code: Campbell Park Offices, lat: -35.28368, lng: 149.17045} + - { name: Canberra College, Weston Campus,stop_code: Canberra College, Weston Campus, lat: -35.3490278, lng: 149.0486277} + - { name: Canberra Hospital,stop_code: Canberra Hospital, lat: -35.3459462, lng: 149.1012001} + - { name: Canberra Times,stop_code: Canberra Times, lat: -35.3245431, lng: 149.1705533} + - { name: Caswell Drive,stop_code: Caswell Drive, lat: -35.25922, lng: 149.08576} + - { name: Causeway,stop_code: Causeway, lat: -35.31615, lng: 149.15058} + - { name: Centrelink Tuggeranong,stop_code: Centrelink Tuggeranong, lat: -35.4207496, lng: 149.0700973} + - { name: Chapman,stop_code: Chapman, lat: -35.3557877, lng: 149.0408111} + - { name: Chapman Shops,stop_code: Chapman Shops, lat: -35.35579, lng: 149.04082} + - { name: Charnwood,stop_code: Charnwood, lat: -35.2052138, lng: 149.0337266} + - { name: Charnwood Shops,stop_code: Charnwood Shops, lat: -35.20472, lng: 149.03336} + - { name: Charnwood, Tillyard Dr,stop_code: Charnwood, Tillyard Dr, lat: -35.20295, lng: 149.04027} + - { name: Chifley,stop_code: Chifley, lat: -35.350985, lng: 149.077319} + - { name: Chifley Shops,stop_code: Chifley Shops, lat: -35.35099, lng: 149.07732} + - { name: Chisholm Shops,stop_code: Chisholm Shops, lat: -35.41341, lng: 149.12833} + - { name: Chuculba / William Slim Dr,stop_code: Chuculba / William Slim Dr, lat: -35.208931, lng: 149.088499} + - { name: CIT Weston,stop_code: CIT Weston, lat: -35.330234, lng: 149.058632} + - { name: City Bus Station,stop_code: City Bus Station, lat: -35.2794346, lng: 149.1305879} + - { name: City Bus Station (Platform 1),stop_code: City Bus Station (Platform 1), lat: -35.2794346, lng: 149.1305879} + - { name: City Bus Station (Platform 10),stop_code: City Bus Station (Platform 10), lat: -35.2793571, lng: 149.1293659} + - { name: City Bus Station (Platform 11),stop_code: City Bus Station (Platform 11), lat: -35.2787905, lng: 149.1288627} + - { name: City Bus Station (Platform 2),stop_code: City Bus Station (Platform 2), lat: -35.278907, lng: 149.130612} + - { name: City Bus Station (Platform 3),stop_code: City Bus Station (Platform 3), lat: -35.2787886, lng: 149.1304779} + - { name: City Bus Station (Platform 4),stop_code: City Bus Station (Platform 4), lat: -35.2785658, lng: 149.1301727} + - { name: City Bus Station (Platform 5),stop_code: City Bus Station (Platform 5), lat: -35.2785242, lng: 149.1297348} + - { name: City Bus Station (Platform 7),stop_code: City Bus Station (Platform 7), lat: -35.27843, lng: 149.130345} + - { name: City Bus Station (Platform 8),stop_code: City Bus Station (Platform 8), lat: -35.2778798, lng: 149.1305995} + - { name: City Bus Station (Platform 9),stop_code: City Bus Station (Platform 9), lat: -35.2783224, lng: 149.130726} + - { name: City West,stop_code: City West, lat: -35.2788605, lng: 149.1257969} + - { name: Cnr Kerrigan/Lhotsky,stop_code: Cnr Kerrigan/Lhotsky, lat: -35.1995716, lng: 149.0285277} + - { name: Cnr Tillyard Dr & Spalding St,stop_code: Cnr Tillyard Dr & Spalding St, lat: -35.2040477, lng: 149.0393052} + - { name: Cohen Street Bus Station,stop_code: Cohen Street Bus Station, lat: -35.2394775, lng: 149.0602031} + - { name: Cohen Street Bus Station (Platform 1),stop_code: Cohen Street Bus Station (Platform 1), lat: -35.2394775, lng: 149.0602031} + - { name: Cohen Street Bus Station (Platform 2),stop_code: Cohen Street Bus Station (Platform 2), lat: -35.2396467, lng: 149.0602152} + - { name: Cohen Street Bus Station (Platform 3),stop_code: Cohen Street Bus Station (Platform 3), lat: -35.239764, lng: 149.0604531} + - { name: Cohen Street Bus Station (Platform 4),stop_code: Cohen Street Bus Station (Platform 4), lat: -35.239844, lng: 149.0600683} + - { name: Cohen Street Bus Station (Platform 5),stop_code: Cohen Street Bus Station (Platform 5), lat: -35.2401211, lng: 149.0597102} + - { name: Cohen Street Bus Station (Platform 6),stop_code: Cohen Street Bus Station (Platform 6), lat: -35.2400028, lng: 149.060315} + - { name: Conder Primary,stop_code: Conder Primary, lat: -35.4643475, lng: 149.0986908} + - { name: Cook,stop_code: Cook, lat: -35.2596, lng: 149.0638} + - { name: Cook Shops,stop_code: Cook Shops, lat: -35.25898, lng: 149.06343} + - { name: Cooleman Court,stop_code: Cooleman Court, lat: -35.34147, lng: 149.05338} + - { name: Copland College,stop_code: Copland College, lat: -35.2127018, lng: 149.0596387} + - { name: Curtin,stop_code: Curtin, lat: -35.3248779, lng: 149.081441} + - { name: Curtin Shops,stop_code: Curtin Shops, lat: -35.32515, lng: 149.08224} + - { name: Deakin,stop_code: Deakin, lat: -35.3158608, lng: 149.1084563} + - { name: Deakin Shops,stop_code: Deakin Shops, lat: -35.31473, lng: 149.10771} + - { name: Deamer / Clift Richardson,stop_code: Deamer / Clift Richardson, lat: -35.4319597, lng: 149.1187876} + - { name: Dickson,stop_code: Dickson, lat: -35.2498434, lng: 149.1391218} + - { name: Dickson College,stop_code: Dickson College, lat: -35.24923, lng: 149.15315} + - { name: Dickson Cowper St,stop_code: Dickson Cowper St, lat: -35.250297, lng: 149.141336} + - { name: Dickson Shops,stop_code: Dickson Shops, lat: -35.25045, lng: 149.14044} + - { name: Dickson Shops/Antill St,stop_code: Dickson Shops/Antill St, lat: -35.2251335, lng: 149.1658895} + - { name: Duffy,stop_code: Duffy, lat: -35.3366908, lng: 149.0324311} + - { name: Duffy Primary,stop_code: Duffy Primary, lat: -35.334219, lng: 149.033656} + - { name: Dunlop,stop_code: Dunlop, lat: -35.1942693, lng: 149.0206702} + - { name: Erindale Centre,stop_code: Erindale Centre, lat: -35.4038881, lng: 149.0992283} + - { name: Erindale Dr / Charleston St, Monash,stop_code: Erindale Dr / Charleston St, Monash, lat: -35.414616, lng: 149.07888} + - { name: Erindale / Sternberg Cres,stop_code: Erindale / Sternberg Cres, lat: -35.4014472, lng: 149.0956545} + - { name: Evatt,stop_code: Evatt, lat: -35.2091093, lng: 149.0735343} + - { name: Evatt Shops,stop_code: Evatt Shops, lat: -35.21203, lng: 149.06505} + - { name: Eye Hospital,stop_code: Eye Hospital, lat: -35.3341884, lng: 149.1656213} + - { name: Fairbairn Park,stop_code: Fairbairn Park, lat: -35.3001773, lng: 149.2041185} + - { name: Farrer Primary School,stop_code: Farrer Primary School, lat: -35.37887, lng: 149.10641} + - { name: Farrer Terminus,stop_code: Farrer Terminus, lat: -35.3771794, lng: 149.1046948} + - { name: Federation Square,stop_code: Federation Square, lat: -35.1908726, lng: 149.0848153} + - { name: Fisher,stop_code: Fisher, lat: -35.3605627, lng: 149.0576481} + - { name: Fisher Shops,stop_code: Fisher Shops, lat: -35.36056, lng: 149.05765} + - { name: Flemington Rd,stop_code: Flemington Rd, lat: -35.20756, lng: 149.14778} + - { name: Flemington Rd / Nullabor Ave,stop_code: Flemington Rd / Nullabor Ave, lat: -35.2008585, lng: 149.1493407} + - { name: Flemington Road / Sandford St,stop_code: Flemington Road / Sandford St, lat: -35.2008585, lng: 149.1493407} + - { name: Florey Shops,stop_code: Florey Shops, lat: -35.2258544, lng: 149.0546214} + - { name: Flynn,stop_code: Flynn, lat: -35.2019283, lng: 149.0478356} + - { name: Fraser,stop_code: Fraser, lat: -35.1896539, lng: 149.0435012} + - { name: Fraser East Terminus,stop_code: Fraser East Terminus, lat: -35.1896539, lng: 149.0435012} + - { name: Fraser Shops,stop_code: Fraser Shops, lat: -35.18966, lng: 149.0435} + - { name: Fraser West Terminus,stop_code: Fraser West Terminus, lat: -35.191513, lng: 149.038006} + - { name: Fyshwick Direct Factory Outlet,stop_code: Fyshwick Direct Factory Outlet, lat: -35.3359862, lng: 149.1796322} + - { name: Fyshwick Terminus,stop_code: Fyshwick Terminus, lat: -35.3285202, lng: 149.1785592} + - { name: Garran,stop_code: Garran, lat: -35.3423286, lng: 149.10811} + - { name: Garran Shops,stop_code: Garran Shops, lat: -35.34236, lng: 149.1082} + - { name: Geoscience Australia,stop_code: Geoscience Australia, lat: -35.3429702, lng: 149.1583893} + - { name: Giralang,stop_code: Giralang, lat: -35.2115608, lng: 149.0960692} + - { name: Gordon Primary,stop_code: Gordon Primary, lat: -35.455517, lng: 149.086978} + - { name: Gowrie,stop_code: Gowrie, lat: -35.4120264, lng: 149.1110804} + - { name: Gungahlin Marketplace,stop_code: Gungahlin Marketplace, lat: -35.1769532, lng: 149.1319017} + - { name: Gwydir Square Kaleen,stop_code: Gwydir Square Kaleen, lat: -35.2338677, lng: 149.1031998} + - { name: Hackett,stop_code: Hackett, lat: -35.2481617, lng: 149.1626094} + - { name: Hackett Shops,stop_code: Hackett Shops, lat: -35.24825, lng: 149.16271} + - { name: Hawker,stop_code: Hawker, lat: -35.2437386, lng: 149.0432804} + - { name: Hawker College,stop_code: Hawker College, lat: -35.2454598, lng: 149.0324251} + - { name: Hawker Shops,stop_code: Hawker Shops, lat: -35.24398, lng: 149.04361} + - { name: Heagney/Clift Richardson,stop_code: Heagney/Clift Richardson, lat: -35.4251299, lng: 149.11375} + - { name: Hibberson / Kate Crace,stop_code: Hibberson / Kate Crace, lat: -35.1861642, lng: 149.1391756} + - { name: Higgins,stop_code: Higgins, lat: -35.2313901, lng: 149.0271811} + - { name: Higgins Shops,stop_code: Higgins Shops, lat: -35.23136, lng: 149.02611} + - { name: Holder,stop_code: Holder, lat: -35.3378123, lng: 149.0449433} + - { name: Holder Shops,stop_code: Holder Shops, lat: -35.33781, lng: 149.04494} + - { name: Holt,stop_code: Holt, lat: -35.223099, lng: 149.0126269} + - { name: Holt Shops,stop_code: Holt Shops, lat: -35.2231, lng: 149.01263} + - { name: Hoskins Street / Oodgeroo Ave,stop_code: Hoskins Street / Oodgeroo Ave, lat: -35.201095, lng: 149.139941} + - { name: Hospice / Menindee Dr,stop_code: Hospice / Menindee Dr, lat: -35.303557, lng: 149.151627} + - { name: Hughes,stop_code: Hughes, lat: -35.3339223, lng: 149.093854} + - { name: Hughes Shops,stop_code: Hughes Shops, lat: -35.3335, lng: 149.09392} + - { name: Isaacs,stop_code: Isaacs, lat: -35.3669823, lng: 149.1119217} + - { name: Isaacs Shops,stop_code: Isaacs Shops, lat: -35.36698, lng: 149.11192} + - { name: Isabella Shops,stop_code: Isabella Shops, lat: -35.4285703, lng: 149.0916837} + - { name: Jamison Centre,stop_code: Jamison Centre, lat: -35.2527268, lng: 149.0713712} + - { name: John James Hospital,stop_code: John James Hospital, lat: -35.3200295, lng: 149.0955996} + - { name: Kaleen Village / Maibrynong,stop_code: Kaleen Village / Maibrynong, lat: -35.220819, lng: 149.099751} + - { name: Kaleen Village / Maribyrnong,stop_code: Kaleen Village / Maribyrnong, lat: -35.2274031, lng: 149.1075421} + - { name: Kambah High,stop_code: Kambah High, lat: -35.3847749, lng: 149.0720245} + - { name: Kambah Village,stop_code: Kambah Village, lat: -35.3800314, lng: 149.0576581} + - { name: Katherine Ave / Horse Park Drive,stop_code: Katherine Ave / Horse Park Drive, lat: -35.1680901, lng: 149.1321801} + - { name: Kerrigan / Lhotsky,stop_code: Kerrigan / Lhotsky, lat: -35.193801, lng: 149.035689} + - { name: Kings Ave / National Circuit,stop_code: Kings Ave / National Circuit, lat: -35.305004, lng: 149.13262} + - { name: Kingston,stop_code: Kingston, lat: -35.3197448, lng: 149.1375261} + - { name: Kippax,stop_code: Kippax, lat: -35.22225, lng: 149.0195627} + - { name: Kippax Centre,stop_code: Kippax Centre, lat: -35.22172, lng: 149.01995} + - { name: Kosciuszko / Everard,stop_code: Kosciuszko / Everard, lat: -35.188901, lng: 149.1216937} + - { name: Lanyon Market Place,stop_code: Lanyon Market Place, lat: -35.4573, lng: 149.09199} + - { name: Latham Post Office,stop_code: Latham Post Office, lat: -35.21906, lng: 149.03223} + - { name: Latham Shops,stop_code: Latham Shops, lat: -35.21848, lng: 149.03214} + - { name: Lathlain St Bus Station,stop_code: Lathlain St Bus Station, lat: -35.2396657, lng: 149.0633993} + - { name: Lathlain St Bus Station (Platform 1),stop_code: Lathlain St Bus Station (Platform 1), lat: -35.2408973, lng: 149.0639887} + - { name: Lathlain St Bus Station (Platform 2),stop_code: Lathlain St Bus Station (Platform 2), lat: -35.2406038, lng: 149.0638922} + - { name: Lathlain St Bus Station (Platform 3),stop_code: Lathlain St Bus Station (Platform 3), lat: -35.2400517, lng: 149.0637152} + - { name: Lathlain St Bus Station (Platform 4),stop_code: Lathlain St Bus Station (Platform 4), lat: -35.2396657, lng: 149.0633993} + - { name: Lathlain St Bus Station (Platform 5),stop_code: Lathlain St Bus Station (Platform 5), lat: -35.2405468, lng: 149.0636669} + - { name: Lathlain St Bus Station (Platform 6),stop_code: Lathlain St Bus Station (Platform 6), lat: -35.2410486, lng: 149.0638326} + - { name: Lewis Luxton/Woodcock Dr,stop_code: Lewis Luxton/Woodcock Dr, lat: -35.4422566, lng: 149.0854375} + - { name: Lithgow St Terminus,stop_code: Lithgow St Terminus, lat: -35.32899, lng: 149.16942} + - { name: Lithgow St Terminus Fyshwick,stop_code: Lithgow St Terminus Fyshwick, lat: -35.3296912, lng: 149.1668153} + - { name: Livingston Shops Kambah,stop_code: Livingston Shops Kambah, lat: -35.3883359, lng: 149.0811471} + - { name: Livingston Shops / Kambah,stop_code: Livingston Shops / Kambah, lat: -35.390246, lng: 149.07822} + - { name: Lyneham,stop_code: Lyneham, lat: -35.2523304, lng: 149.1246184} + - { name: Lyneham , ACT, Wattle Street,stop_code: Lyneham , ACT, Wattle Street, lat: -35.36253, lng: 149.22632} + - { name: Lyneham High,stop_code: Lyneham High, lat: -35.2524016, lng: 149.130254} + - { name: Lyneham Shops, Wattle Street,stop_code: Lyneham Shops, Wattle Street, lat: -35.25205, lng: 149.12524} + - { name: Lyons,stop_code: Lyons, lat: -35.3415779, lng: 149.0765703} + - { name: Lyons Shops,stop_code: Lyons Shops, lat: -35.34019, lng: 149.0771} + - { name: Macarthur / Miller O'Connor,stop_code: Macarthur / Miller O'Connor, lat: -35.2587584, lng: 149.1153561} + - { name: Macarthur / Northbourne Ave,stop_code: Macarthur / Northbourne Ave, lat: -35.2481997, lng: 149.134308} + - { name: Macgregor Shops,stop_code: Macgregor Shops, lat: -35.2100645, lng: 149.0122952} + - { name: MacKillop College, Isabella Campus,stop_code: MacKillop College, Isabella Campus, lat: -35.42597, lng: 149.09172} + - { name: MacKillop College, Wanniassa Campus,stop_code: MacKillop College, Wanniassa Campus, lat: -35.4056, lng: 149.089774} + - { name: Macquarie,stop_code: Macquarie, lat: -35.2483414, lng: 149.0600666} + - { name: Majura Business Park,stop_code: Majura Business Park, lat: -35.2987, lng: 149.18561} + - { name: Manning Clarke / Oodgeroo,stop_code: Manning Clarke / Oodgeroo, lat: -35.193236, lng: 149.146534} + - { name: Manuka,stop_code: Manuka, lat: -35.3200096, lng: 149.1341344} + - { name: Manuka / Captain Cook Cres,stop_code: Manuka / Captain Cook Cres, lat: -35.3217, lng: 149.13445} + - { name: McKellar,stop_code: McKellar, lat: -35.2174267, lng: 149.0742108} + - { name: McKellar Shops,stop_code: McKellar Shops, lat: -35.2182, lng: 149.07555} + - { name: Melba,stop_code: Melba, lat: -35.2083104, lng: 149.0485366} + - { name: Melba Shops,stop_code: Melba Shops, lat: -35.21004, lng: 149.05302} + - { name: Mentone View / Tharwa Drive,stop_code: Mentone View / Tharwa Drive, lat: -35.45144, lng: 149.0919} + - { name: Merici College,stop_code: Merici College, lat: -35.266525, lng: 149.137037} + - { name: Mirrabei Drive / Dam Wall,stop_code: Mirrabei Drive / Dam Wall, lat: -35.177453, lng: 149.124291} + - { name: Monash,stop_code: Monash, lat: -35.4190254, lng: 149.0834805} + - { name: Monash, Goodwin Village,stop_code: Monash, Goodwin Village, lat: -35.421084, lng: 149.097438} + - { name: Monash Primary,stop_code: Monash Primary, lat: -35.414879, lng: 149.089411} + - { name: Mount Neighbour School,stop_code: Mount Neighbour School, lat: -35.382445, lng: 149.051518} + - { name: Narrabundah College,stop_code: Narrabundah College, lat: -35.3362106, lng: 149.1471005} + - { name: Narrabundah Terminus,stop_code: Narrabundah Terminus, lat: -35.332605, lng: 149.154049} + - { name: National Aquarium,stop_code: National Aquarium, lat: -35.29915, lng: 149.07025} + - { name: National Circ / Canberra Ave,stop_code: National Circ / Canberra Ave, lat: -35.31407, lng: 149.13011} + - { name: National Hockey Centre Lyneham,stop_code: National Hockey Centre Lyneham, lat: -35.2446729, lng: 149.1288303} + - { name: National Museum of Australia,stop_code: National Museum of Australia, lat: -35.29248, lng: 149.1205367} + - { name: Newcastle Street after Isa Street,stop_code: Newcastle Street after Isa Street, lat: -35.3255, lng: 149.173291} + - { name: Ngunnawal Primary,stop_code: Ngunnawal Primary, lat: -35.1688551, lng: 149.1112569} + - { name: Nicholls Primary,stop_code: Nicholls Primary, lat: -35.1905592, lng: 149.0876716} + - { name: Northbourne Avenue / Antill St,stop_code: Northbourne Avenue / Antill St, lat: -35.248287, lng: 149.134241} + - { name: North Lyneham,stop_code: North Lyneham, lat: -35.2385618, lng: 149.1221188} + - { name: O'Connor,stop_code: O'Connor, lat: -35.2640376, lng: 149.1226107} + - { name: O'Connor Shops,stop_code: O'Connor Shops, lat: -35.25662, lng: 149.11559} + - { name: Olims Hotel,stop_code: Olims Hotel, lat: -35.27597, lng: 149.1428} + - { name: Outtrim / Duggan,stop_code: Outtrim / Duggan, lat: -35.435871, lng: 149.097692} + - { name: Page Shops,stop_code: Page Shops, lat: -35.2360695, lng: 149.0536554} + - { name: Parliament House,stop_code: Parliament House, lat: -35.3081571, lng: 149.1244592} + - { name: Paul Coe / Mirrabei Dr,stop_code: Paul Coe / Mirrabei Dr, lat: -35.17467, lng: 149.12005} + - { name: Pearce,stop_code: Pearce, lat: -35.3625413, lng: 149.0815935} + - { name: Police College Weston,stop_code: Police College Weston, lat: -35.33018, lng: 149.05458} + - { name: Proctor / Mead,stop_code: Proctor / Mead, lat: -35.415305, lng: 149.127204} + - { name: Railway Station Kingston,stop_code: Railway Station Kingston, lat: -35.319602, lng: 149.149083} + - { name: Red Hill,stop_code: Red Hill, lat: -35.336505, lng: 149.131645} + - { name: Rivett,stop_code: Rivett, lat: -35.3473758, lng: 149.0365438} + - { name: Rivett Shops,stop_code: Rivett Shops, lat: -35.34737, lng: 149.03654} + - { name: Russell Offices,stop_code: Russell Offices, lat: -35.2973294, lng: 149.1508803} + - { name: Sainsbury Street,stop_code: Sainsbury Street, lat: -35.3885, lng: 149.09643} + - { name: Saint Andrews Village Hughes,stop_code: Saint Andrews Village Hughes, lat: -35.328097, lng: 149.088685} + - { name: Scullin Shops,stop_code: Scullin Shops, lat: -35.23356, lng: 149.04056} + - { name: Shoalhaven / Katherine Ave,stop_code: Shoalhaven / Katherine Ave, lat: -35.16823, lng: 149.12791} + - { name: Southlands Mawson,stop_code: Southlands Mawson, lat: -35.3650685, lng: 149.0945962} + - { name: Southwell Park,stop_code: Southwell Park, lat: -35.24573, lng: 149.1321} + - { name: Spence,stop_code: Spence, lat: -35.194735, lng: 149.062352} + - { name: Spence Shops,stop_code: Spence Shops, lat: -35.19968, lng: 149.06763} + - { name: Spence Terminus,stop_code: Spence Terminus, lat: -35.199684, lng: 149.0676196} + - { name: St Clare of Assisi,stop_code: St Clare of Assisi, lat: -35.46063, lng: 149.09627} + - { name: St Clare of Assisi Primary,stop_code: St Clare of Assisi Primary, lat: -35.4606284, lng: 149.0962704} + - { name: St Francis Xavier, Florey,stop_code: St Francis Xavier, Florey, lat: -35.223951, lng: 149.0406888} + - { name: Stromlo High Waramanga,stop_code: Stromlo High Waramanga, lat: -35.3551186, lng: 149.0547624} + - { name: St Thomas More's Campbell,stop_code: St Thomas More's Campbell, lat: -35.286717, lng: 149.156836} + - { name: Sydney Ave,stop_code: Sydney Ave, lat: -35.31193, lng: 149.13105} + - { name: Taverner St / Erindale Dr,stop_code: Taverner St / Erindale Dr, lat: -35.4059104, lng: 149.0809317} + - { name: Tharwa Drive,stop_code: Tharwa Drive, lat: -35.458251, lng: 149.091652} + - { name: Tharwa Drive / Knoke Ave,stop_code: Tharwa Drive / Knoke Ave, lat: -35.47281, lng: 149.08926} + - { name: Tharwa Dr / Pockett Ave,stop_code: Tharwa Dr / Pockett Ave, lat: -35.47348, lng: 149.09178} + - { name: Theodore,stop_code: Theodore, lat: -35.4464808, lng: 149.1234651} + - { name: Tillyard / Spalding,stop_code: Tillyard / Spalding, lat: -35.199204, lng: 149.044556} + - { name: Torrens Shops,stop_code: Torrens Shops, lat: -35.3730889, lng: 149.087327} + - { name: Tuggeranong Bus Station,stop_code: Tuggeranong Bus Station, lat: -35.41465, lng: 149.06537} + - { name: Tuggeranong Bus Station (Platform 3),stop_code: Tuggeranong Bus Station (Platform 3), lat: -35.4147569, lng: 149.0657435} + - { name: Tuggeranong Bus Station (Platform 4),stop_code: Tuggeranong Bus Station (Platform 4), lat: -35.4144924, lng: 149.0655423} + - { name: Tuggeranong Bus Station (Platform 5),stop_code: Tuggeranong Bus Station (Platform 5), lat: -35.414217, lng: 149.0653492} + - { name: Tuggeranong Bus Station (Platform 7),stop_code: Tuggeranong Bus Station (Platform 7), lat: -35.4146761, lng: 149.0654565} + - { name: Tuggeranong Bus Station (Platform 8),stop_code: Tuggeranong Bus Station (Platform 8), lat: -35.4149428, lng: 149.0656523} + - { name: University of Canberra,stop_code: University of Canberra, lat: -35.2423222, lng: 149.0831522} + - { name: Wanniassa High,stop_code: Wanniassa High, lat: -35.3952462, lng: 149.0852655} + - { name: Waramanga,stop_code: Waramanga, lat: -35.3526825, lng: 149.0594712} + - { name: Waramanga Shops,stop_code: Waramanga Shops, lat: -35.35268, lng: 149.05948} + - { name: War Memorial, Limestone Ave,stop_code: War Memorial, Limestone Ave, lat: -35.280477, lng: 149.149085} + - { name: Watson,stop_code: Watson, lat: -35.2389399, lng: 149.1535345} + - { name: Watson Terminus,stop_code: Watson Terminus, lat: -35.2374698, lng: 149.1534553} + - { name: Weetangera Shops,stop_code: Weetangera Shops, lat: -35.248393, lng: 149.0506342} + - { name: Westfield Bus Station,stop_code: Westfield Bus Station, lat: -35.23875, lng: 149.0638} + - { name: Westfield Bus Station (Platform 1),stop_code: Westfield Bus Station (Platform 1), lat: -35.23872, lng: 149.06387} + - { name: Westfield Bus Station (Platform 2),stop_code: Westfield Bus Station (Platform 2), lat: -35.23882, lng: 149.0637} + - { name: West Macgregor,stop_code: West Macgregor, lat: -35.21207, lng: 149.00165} + - { name: Weston Creek Terminus,stop_code: Weston Creek Terminus, lat: -35.342728, lng: 149.0524906} + - { name: Weston Primary,stop_code: Weston Primary, lat: -35.3305221, lng: 149.0524281} + - { name: William Webb / Ginninderra Drive,stop_code: William Webb / Ginninderra Drive, lat: -35.222395, lng: 149.0706} + - { name: Woden Bus Station,stop_code: Woden Bus Station, lat: -35.34433, lng: 149.08742} + - { name: Woden Bus Station (Platform 10),stop_code: Woden Bus Station (Platform 10), lat: -35.3439501, lng: 149.0877369} + - { name: Woden Bus Station (Platform 11),stop_code: Woden Bus Station (Platform 11), lat: -35.3439129, lng: 149.0876216} + - { name: Woden Bus Station (Platform 12),stop_code: Woden Bus Station (Platform 12), lat: -35.3442094, lng: 149.0876444} + - { name: Woden Bus Station (Platform 14),stop_code: Woden Bus Station (Platform 14), lat: -35.34438, lng: 149.0872662} + - { name: Woden Bus Station (Platform 15),stop_code: Woden Bus Station (Platform 15), lat: -35.3444271, lng: 149.0869631} + - { name: Woden Bus Station (Platform 16),stop_code: Woden Bus Station (Platform 16), lat: -35.344484, lng: 149.0866144} + - { name: Woden Bus Station (Platform 2),stop_code: Woden Bus Station (Platform 2), lat: -35.3447574, lng: 149.0862912} + - { name: Woden Bus Station (Platform 3),stop_code: Woden Bus Station (Platform 3), lat: -35.344566, lng: 149.086774} + - { name: Woden Bus Station (Platform 4),stop_code: Woden Bus Station (Platform 4), lat: -35.3445222, lng: 149.0870436} + - { name: Woden Bus Station (Platform 5),stop_code: Woden Bus Station (Platform 5), lat: -35.3444741, lng: 149.0873533} + - { name: Woden Bus Station (Platform 6),stop_code: Woden Bus Station (Platform 6), lat: -35.34445, lng: 149.0875371} + - { 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 Shops,stop_code: Yarralumla Shops, lat: -35.30725, lng: 149.0972} + - { name: Andrea Place,stop_code: Wjz1ceG, lat: -35.4375289, lng: 149.0757996} + - { name: Tarlton Place,stop_code: Wjz1kvl, lat: -35.4366017, lng: 149.0890756} + - { name: Don Dunstan Drive,stop_code: Wjz16U7, lat: -35.4302659, lng: 149.0722593} + - { name: Salmon Place,stop_code: WjrWY3_, lat: -35.3952466, lng: 149.0527528} + - { name: Crozier Circuit,stop_code: WjrWSUa, lat: -35.3867455, lng: 149.0504459} + - { name: Mouat Street,stop_code: Wjz5LYB, lat: -35.2464052, lng: 149.1278592} + - { name: Mackennal Street,stop_code: Wjz5LsC, lat: -35.2463364, lng: 149.1223897} + - { name: Clianthus Street,stop_code: Wjz5Krx, lat: -35.2529666, lng: 149.1223781} + - { name: Way Street,stop_code: Wjz5BWh, lat: -35.2591172, lng: 149.1164155} + - { name: Cockle Street,stop_code: Wjz5AGB, lat: -35.2642702, lng: 149.1141435} + - { name: Froggatt Street,stop_code: Wjz5H0p, lat: -35.2714838, lng: 149.1180142} + - { name: McClintock Street,stop_code: Wjz6ElH, lat: -35.2404264, lng: 149.1210434} + - { name: Cossington Smith Crescent,stop_code: Wjz6FEI, lat: -35.2382959, lng: 149.1252507} + - { name: Dumas Street,stop_code: Wjz6cz2, lat: -35.2199304, lng: 149.0791416} + - { name: Buggy Crescent,stop_code: Wjz64OE, lat: -35.2207286, lng: 149.0717368} + - { name: Owen Dixon Drive,stop_code: Wjz6eWi, lat: -35.2096321, lng: 149.0835148} + - { name: Baldwin Drive,stop_code: Wjz6kCT, lat: -35.217402, lng: 149.0910262} + - { name: Jacob Place,stop_code: Wjr-TRM, lat: -35.2021703, lng: 149.0498418} + - { name: Love Street,stop_code: Wjr_MMi, lat: -35.200018, lng: 149.0491234} + - { name: Box Place,stop_code: Wjr-IeY, lat: -35.2176259, lng: 149.032238} + - { name: Macrossan Crescent,stop_code: Wjr-J8t, lat: -35.2161747, lng: 149.0315719} + - { name: Want Place,stop_code: Wjr-Jm9, lat: -35.2124379, lng: 149.0325045} + - { name: Fellows Street,stop_code: Wjr-J44, lat: -35.2135626, lng: 149.0296181} + - { name: Osburn Drive,stop_code: Wjr-BB3, lat: -35.2129096, lng: 149.0241561} + - { name: Solomon Crescent,stop_code: Wjr-AY4, lat: -35.2190044, lng: 149.0282415} + - { name: Onslow Street,stop_code: Wjr-IcO, lat: -35.2191858, lng: 149.0319716} + - { name: Onslow Street,stop_code: Wjr-IqS, lat: -35.2202741, lng: 149.034858} + - { name: Kingsford Smith Drive,stop_code: Wjr-H-a, lat: -35.2232851, lng: 149.039343} + - { name: Krefft Street,stop_code: Wjr-Q4G, lat: -35.2192221, lng: 149.0415189} + - { name: Maribyrnong Avenue,stop_code: Wjz6zon, lat: -35.2269858, lng: 149.1109391} + - { name: Maribyrnong Avenue,stop_code: Wjz6ytu, lat: -35.2291622, lng: 149.1110812} + - { name: Belconnen Way,stop_code: Wjz5mpm, lat: -35.2538531, lng: 149.0889493} + - { name: Belconnen Way,stop_code: Wjz5mxf, lat: -35.2538241, lng: 149.0902637} + - { name: Belconnen Way,stop_code: Wjr-MNh, lat: -35.2433401, lng: 149.0492618} + - { name: Belconnen Way,stop_code: Wjr-Mqd, lat: -35.2422956, lng: 149.0448568} + - { name: Belconnen Way,stop_code: Wjr-EYe, lat: -35.2408449, lng: 149.0394925} + - { name: Belconnen Way,stop_code: Wjr-EA_, lat: -35.2407288, lng: 149.0362953} + - { name: Mackinolty Street,stop_code: Wjr-Fw4, lat: -35.2382916, lng: 149.035194} + - { name: Challinor Crescent,stop_code: Wjr-Vnf, lat: -35.2331848, lng: 149.054555} + - { name: Lightfoot Crescent,stop_code: Wjr-Ws2, lat: -35.230167, lng: 149.0557628} + - { name: Nanson Place,stop_code: Wjr-PyX, lat: -35.2259882, lng: 149.0472724} + - { name: Kulgera Street,stop_code: WjrZKZn, lat: -35.2510294, lng: 149.0396391} + - { name: King Edward Terrace,stop_code: Wjz4S1U, lat: -35.2983385, lng: 149.1296979} + - { name: King George Terrace,stop_code: Wjz4RbQ, lat: -35.3021238, lng: 149.1308574} + - { name: James Street,stop_code: Wjz3fCx, lat: -35.333256, lng: 149.0798309} + - { name: Kent Street,stop_code: Wjz4peM, lat: -35.322342, lng: 149.0979263} + - { name: Fuller Street,stop_code: Wjz4qgy, lat: -35.3208475, lng: 149.098981} + - { name: Hopetoun Circuit,stop_code: Wjz4A7o, lat: -35.3052441, lng: 149.107042} + - { name: De Chair Street,stop_code: Wjz4qTw, lat: -35.3162151, lng: 149.1045086} + - { name: Macgregor Street,stop_code: Wjz4qs0, lat: -35.3182278, lng: 149.09964} + - { name: Stonehaven Crescent,stop_code: Wjz4yzk, lat: -35.3186155, lng: 149.1123352} + - { name: Dominion Circuit,stop_code: Wjz4H0P, lat: -35.3152936, lng: 149.1185178} + - { name: Schlich Street,stop_code: Wjz4tpE, lat: -35.3038329, lng: 149.1005569} + - { name: Weston Street,stop_code: Wjz4z67, lat: -35.3107704, lng: 149.1065979} + - { name: Musgrave Street,stop_code: Wjz4tUp, lat: -35.3044055, lng: 149.1056974} + - { name: Hopetoun Circuit,stop_code: Wjz4A2c, lat: -35.3082791, lng: 149.1066534} + - { name: Lienhop Street,stop_code: Wjz1HTi, lat: -35.4423392, lng: 149.1260397} + - { name: Hartung Crescent,stop_code: Wjz1zN3, lat: -35.4464057, lng: 149.1147796} + - { name: Lawrence Wackett Crescent,stop_code: Wjz1HEb, lat: -35.4471149, lng: 149.1245306} + - { name: Callister Crescent,stop_code: Wjz1xWZ, lat: -35.4565002, lng: 149.1174205} + - { name: Chippindall Circuit,stop_code: Wjz1Gjj, lat: -35.4504956, lng: 149.1205257} + - { name: Fidge Street,stop_code: Wjz1rQ6, lat: -35.4440887, lng: 149.1038388} + - { name: Weavers Crescent,stop_code: Wjz1xRC, lat: -35.4544199, lng: 149.1154761} + - { name: Kiddle Crescent,stop_code: Wjz1CdY, lat: -35.4270927, lng: 149.1090734} + - { name: Fairley Crescent,stop_code: Wjz1G89, lat: -35.4527651, lng: 149.1190457} + - { name: Fairley Crescent,stop_code: Wjz1F5W, lat: -35.4547272, lng: 149.1186974} + - { name: Muscio Place,stop_code: Wjz2EdX, lat: -35.416214, lng: 149.120065} + - { name: Clift Crescent,stop_code: Wjz1CRl, lat: -35.4269745, lng: 149.1151677} + - { name: Southern Close,stop_code: Wjz1K49, lat: -35.428009, lng: 149.1176708} + - { name: Clift Crescent,stop_code: Wjz1J4T, lat: -35.4330044, lng: 149.1185777} + - { name: Prichard Circuit,stop_code: Wjz1K89, lat: -35.4308171, lng: 149.1191218} + - { name: Twamley Crescent,stop_code: Wjz1JD7, lat: -35.4309354, lng: 149.1230759} + - { name: Monaro Highway,stop_code: Wjz1JTP, lat: -35.4312901, lng: 149.126776} + - { name: Deamer Crescent,stop_code: Wjz1S5I, lat: -35.4271223, lng: 149.1292791} + - { name: Monaro Highway,stop_code: Wjz1SfM, lat: -35.4260286, lng: 149.1309478} + - { name: Henry Melville Crescent,stop_code: Wjz1TLL, lat: -35.4199685, lng: 149.1361715} + - { name: Muntz Street,stop_code: Wjz1Lxu, lat: -35.4241367, lng: 149.1234749} + - { name: Mofflin Street,stop_code: Wjz1Liw, lat: -35.4239889, lng: 149.1208993} + - { name: Tuck Place,stop_code: Wjz1DLm, lat: -35.4200572, lng: 149.1136804} + - { name: Proctor Street,stop_code: Wjz2M5R, lat: -35.4160071, lng: 149.129533} + - { name: Hynes Place,stop_code: Wjz2wY-, lat: -35.4166279, lng: 149.1173443} + - { name: Sweet Place,stop_code: Wjz2EL2, lat: -35.4149132, lng: 149.1244544} + - { name: Schoales Place,stop_code: WjrXZiM, lat: -35.3470777, lng: 149.0553331} + - { name: Logue Place,stop_code: WjrXRW0, lat: -35.3471147, lng: 149.0502999} + - { name: Finlayson Place,stop_code: Wjz2NPZ, lat: -35.4118681, lng: 149.1378765} + - { name: Namatjira Drive,stop_code: WjrXZz3, lat: -35.3461161, lng: 149.0570563} + - { name: Wark Street,stop_code: Wjz3nLq, lat: -35.3325054, lng: 149.0919265} + - { name: McCulloch Street,stop_code: Wjz49Y5, lat: -35.3233291, lng: 149.0831296} + - { name: Novar Street,stop_code: Wjz4shf, lat: -35.3086912, lng: 149.0984092} + - { name: Novar Street,stop_code: Wjz4rk2, lat: -35.3126013, lng: 149.0982349} + - { name: Denison Street,stop_code: Wjz4hPC, lat: -35.323921, lng: 149.0935136} + - { name: Jensen Street,stop_code: Wjz4gou, lat: -35.3314972, lng: 149.0892541} + - { name: Denison Street,stop_code: Wjz4hMe, lat: -35.3259558, lng: 149.0929241} + - { name: Yarra Glen,stop_code: Wjz4gt5, lat: -35.3281248, lng: 149.0887511} + - { name: Carruthers Street,stop_code: Wjz49Wd, lat: -35.324698, lng: 149.0833563} + - { name: Shiels Place,stop_code: Wjz4arc, lat: -35.3185933, lng: 149.0779149} + - { name: Heysen Street,stop_code: WjrYUG8, lat: -35.3306155, lng: 149.058622} + - { name: Dunstan Street,stop_code: Wjz4aH6, lat: -35.3184453, lng: 149.0804542} + - { name: Mair Place,stop_code: Wjz48dZ, lat: -35.3281016, lng: 149.0761465} + - { name: Jennings Street,stop_code: Wjz499S, lat: -35.3252899, lng: 149.0759651} + - { name: O'Loghlen Street,stop_code: Wjr-IMR, lat: -35.2216889, lng: 149.0389433} + - { name: Carruthers Street,stop_code: Wjz48qI, lat: -35.3302472, lng: 149.0785498} + - { name: Heysen Street,stop_code: WjrYUj0, lat: -35.3299526, lng: 149.0543559} + - { name: Heysen Street,stop_code: Wjz37Lm, lat: -35.3321544, lng: 149.0697369} + - { name: Burnie Street,stop_code: Wjz3d3K, lat: -35.3459087, lng: 149.0743512} + - { name: Derwent Street,stop_code: Wjz3ee-, lat: -35.3383098, lng: 149.0761505} + - { name: Anne Place,stop_code: Wjz3fa8, lat: -35.3360845, lng: 149.0750477} + - { name: McInnes Street,stop_code: WjrX-Lw, lat: -35.3381915, lng: 149.0592024} + - { name: Lycett Street,stop_code: WjrX_xY, lat: -35.3364869, lng: 149.0583028} + - { name: Meldrum Street,stop_code: WjrX_iU, lat: -35.3361318, lng: 149.0556038} + - { name: Namatjira Drive,stop_code: WjrX-m2, lat: -35.3386886, lng: 149.0543559} + - { name: Mather Street,stop_code: WjrX-sE, lat: -35.3402511, lng: 149.0565615} + - { name: Buvelot Street,stop_code: Wjz354b, lat: -35.345459, lng: 149.062772} + - { name: Gask Place,stop_code: Wjz1et6, lat: -35.4269117, lng: 149.0777759} + - { name: Drumston Street,stop_code: Wjz1nxQ, lat: -35.4243695, lng: 149.0911255} + - { name: Athllon Drive,stop_code: Wjz1f8Y, lat: -35.4250198, lng: 149.076216} + - { name: Anketell Street,stop_code: Wjz1f2H, lat: -35.4237487, lng: 149.0744748} + - { name: Lake Tuggeranong cycle track,stop_code: Wjz1f7q, lat: -35.4203787, lng: 149.0740032} + - { name: Forlonge Street,stop_code: Wjz2bHS, lat: -35.400824, lng: 149.0814035} + - { name: Derham Court,stop_code: Wjz2aLs, lat: -35.4037395, lng: 149.081019} + - { name: Mortimer Lewis Drive,stop_code: Wjz2a26, lat: -35.4069683, lng: 149.0736259} + - { name: Nunan Crescent,stop_code: Wjz29Ya, lat: -35.4114741, lng: 149.0833189} + - { name: William Webb Drive,stop_code: Wjz6e8G, lat: -35.2110071, lng: 149.0758577} + - { name: Evelyn Owen Crescent,stop_code: Wjr_w0L, lat: -35.1995769, lng: 149.0194714} + - { name: Cusack Place,stop_code: Wjr_Ow3, lat: -35.1889085, lng: 149.0461463} + - { name: Binns Street,stop_code: Wjr_GGq, lat: -35.1875953, lng: 149.0370811} + - { name: Clubbe Crescent,stop_code: Wjr-uUb, lat: -35.2108896, lng: 149.0174054} + - { name: Southern Cross Drive,stop_code: Wjr-s5D, lat: -35.2180783, lng: 149.0083939} + - { name: Higgins Place,stop_code: Wjr-yOB, lat: -35.2313222, lng: 149.0276235} + - { name: Southern Cross Drive,stop_code: Wjr-Hoi, lat: -35.2274077, lng: 149.0341216} + - { name: Wollongong Street,stop_code: WjzcgD0, lat: -35.3271927, lng: 149.1779495} + - { name: Taubman Street,stop_code: Wjzbfpl, lat: -35.3363832, lng: 149.1658515} + - { name: Wiluna Street,stop_code: Wjzc8l0, lat: -35.3285713, lng: 149.1642018} + - { name: Whyalla Street,stop_code: Wjzbnmb, lat: -35.3331064, lng: 149.1753196} + - { name: Allen Street,stop_code: Wjz3_3L, lat: -35.3347817, lng: 149.1404124} + - { name: Goyder Street,stop_code: Wjz3-aW, lat: -35.3414521, lng: 149.1420263} + - { name: Alfred Place,stop_code: Wjza_-f, lat: -35.3767042, lng: 149.237157} + - { name: Farrer Place,stop_code: WjzbXms, lat: -35.3550134, lng: 149.2306199} + - { name: Bazley Street,stop_code: Wjr_Vbj, lat: -35.1923583, lng: 149.0533723} + - { name: Tuggeranong Parkway,stop_code: Wjz33GY, lat: -35.3577485, lng: 149.0706526} + - { name: Kalgoorlie Crescent,stop_code: WjrXXFn, lat: -35.3581997, lng: 149.0587995} + - { name: Jarrahdale Street,stop_code: WjrXWQ8, lat: -35.3621767, lng: 149.0600261} + - { name: Kapunda Street,stop_code: WjrXW7A, lat: -35.3597972, lng: 149.0523061} + - { name: Nannine Place,stop_code: WjrXXq3, lat: -35.3578077, lng: 149.0557251} + - { name: Greenvale Street,stop_code: WjrXXd0, lat: -35.3559956, lng: 149.0529772} + - { name: Hindmarsh Drive,stop_code: Wjz35av, lat: -35.3464684, lng: 149.064395} + - { name: Bangalay Crescent,stop_code: WjrXIDX, lat: -35.348916, lng: 149.0363428} + - { name: Buvelot Street,stop_code: WjrX-FV, lat: -35.3422149, lng: 149.0596338} + - { name: Chevalier Street,stop_code: Wjz356k, lat: -35.3440169, lng: 149.0629513} + - { name: Larakia Street,stop_code: Wjz358l, lat: -35.3480588, lng: 149.0643043} + - { name: Tiwi Place,stop_code: Wjz348u, lat: -35.3534586, lng: 149.0644857} + - { name: Bidia Place,stop_code: Wjz337w, lat: -35.354642, lng: 149.0633068} + - { name: Dalabon Crescent,stop_code: WjrXXK9, lat: -35.355219, lng: 149.0585637} + - { name: Kalgoorlie Crescent,stop_code: WjrXXyQ, lat: -35.3576967, lng: 149.0580467} + - { name: Tristania Street,stop_code: WjrXRks, lat: -35.3453958, lng: 149.0438991} + - { name: Damala Street,stop_code: WjrXYL4, lat: -35.3488355, lng: 149.0584095} + - { name: Somerset Street,stop_code: WjrXLaD, lat: -35.3355436, lng: 149.0316183} + - { name: Frayne Place,stop_code: WjrXQZX, lat: -35.3502779, lng: 149.0514717} + - { name: Dixon Drive,stop_code: WjrXTgl, lat: -35.3370298, lng: 149.0436997} + - { name: Hyndes Crescent,stop_code: WjrXTqY, lat: -35.3357893, lng: 149.0460156} + - { name: Nelumbo Street,stop_code: WjrXQ65, lat: -35.349419, lng: 149.040696} + - { name: Hindmarsh Drive,stop_code: WjrXKoe, lat: -35.3424911, lng: 149.0339533} + - { name: Burrinjuck Crescent,stop_code: WjrXLR-, lat: -35.3335487, lng: 149.0390846} + - { name: Warragamba Avenue,stop_code: WjrYEpn, lat: -35.3306598, lng: 149.0341649} + - { name: Tantangara Street,stop_code: WjrXKBE, lat: -35.3395611, lng: 149.0360582} + - { name: Counsel Street,stop_code: WjrYMbF, lat: -35.3298385, lng: 149.0428712} + - { name: Hyndes Crescent,stop_code: WjrYMrj, lat: -35.3296313, lng: 149.0450622} + - { name: Mulley Street,stop_code: WjrYMHm, lat: -35.3294538, lng: 149.0477466} + - { name: Mulley Street,stop_code: WjrYMGB, lat: -35.3301626, lng: 149.0481758} + - { name: Dixon Drive,stop_code: WjrXTSe, lat: -35.3328347, lng: 149.0489873} + - { name: Calder Crescent,stop_code: WjrXTIp, lat: -35.3346742, lng: 149.0480789} + - { name: Woodger Place,stop_code: Wjr_V2c, lat: -35.192985, lng: 149.0517177} + - { name: Watt Place,stop_code: Wjz2ve3, lat: -35.3770117, lng: 149.0968721} + - { name: Pearce Avenue,stop_code: WjzcBHZ, lat: -35.3020154, lng: 149.2024041} + - { name: Duffy Place,stop_code: WjrXLgs, lat: -35.3371612, lng: 149.0328459} + - { name: Renmark Street,stop_code: WjrXKfG, lat: -35.338018, lng: 149.0318393} + - { name: Anstey Street,stop_code: Wjz3aaB, lat: -35.3631322, lng: 149.0756066} + - { name: Lhotsky Street,stop_code: Wjr-L1H, lat: -35.2046871, lng: 149.0304447} + - { name: McCay Place,stop_code: Wjz39PE, lat: -35.3683683, lng: 149.0827167} + - { name: Hodgson Crescent,stop_code: Wjz3h5c, lat: -35.3666525, lng: 149.0847118} + - { name: Collings Street,stop_code: Wjz3j2F, lat: -35.3580142, lng: 149.0853648} + - { name: Marr Street,stop_code: Wjz3it1, lat: -35.3614164, lng: 149.0886297} + - { name: Pialligo Avenue,stop_code: Wjzcrp_, lat: -35.3142011, lng: 149.1887666} + - { name: Brindabella Circuit,stop_code: WjzcrK3, lat: -35.3111478, lng: 149.190364} + - { name: Dakota Drive,stop_code: Wjzcuw1, lat: -35.2989793, lng: 149.188937} + - { name: Fairbairn Avenue,stop_code: WjzcJ0K, lat: -35.3040486, lng: 149.2062653} + - { name: Anthony Rolfe Avenue,stop_code: Wjzf3oM, lat: -35.1836894, lng: 149.1556666} + - { name: Binns Street,stop_code: Wjr_Gxf, lat: -35.1878657, lng: 149.0352296} + - { name: Lhotsky Street,stop_code: Wjr_Es4, lat: -35.1970405, lng: 149.0338265} + - { name: Rogers Street,stop_code: Wjr_FTN, lat: -35.1897508, lng: 149.038952} + - { name: Kerrigan Street,stop_code: Wjr_xLL, lat: -35.1892698, lng: 149.0264062} + - { name: Bandt Place,stop_code: Wjr_xnT, lat: -35.1892671, lng: 149.0223682} + - { name: Filshie Close,stop_code: Wjr_FXR, lat: -35.1922038, lng: 149.0402464} + - { name: Donnison Place,stop_code: Wjr_E1y, lat: -35.1992571, lng: 149.0303603} + - { name: Edlington Street,stop_code: Wjr_NDY, lat: -35.1895167, lng: 149.04724} + - { name: Nish Place,stop_code: Wjr_Vt9, lat: -35.191134, lng: 149.055871} + - { name: Shrivell Circuit,stop_code: Wjr_wm3, lat: -35.195762, lng: 149.0214528} + - { name: O'Reilly Street,stop_code: Wjr-thp, lat: -35.2158247, lng: 149.0109263} + - { name: Eddison Place,stop_code: Wjr_NFt, lat: -35.1935465, lng: 149.0479464} + - { name: Garrad Court,stop_code: Wjr_MjV, lat: -35.1979805, lng: 149.0445264} + - { name: Covington Crescent,stop_code: Wjr-Tf_, lat: -35.2002734, lng: 149.0432168} + - { name: Moyes Crescent,stop_code: Wjr-zOn, lat: -35.2256125, lng: 149.0272189} + - { name: Noakes Court,stop_code: Wjr-Lzm, lat: -35.2030997, lng: 149.0354829} + - { name: Hirschfeld Crescent,stop_code: Wjr-tbm, lat: -35.2140927, lng: 149.0093105} + - { name: Florey Drive,stop_code: Wjr-DNK, lat: -35.2044788, lng: 149.0277602} + - { name: Lhotsky Street,stop_code: Wjr-DQE, lat: -35.2029293, lng: 149.0277662} + - { name: Ginninderra Drive,stop_code: Wjr_oP1, lat: -35.1980445, lng: 149.0158736} + - { name: Krefft Street,stop_code: Wjr-Pk6, lat: -35.2243699, lng: 149.0432872} + - { name: Kerrigan Street,stop_code: Wjr_o_j, lat: -35.1950629, lng: 149.0175978} + - { name: Lance Hill Avenue,stop_code: Wjr_wjn, lat: -35.1975263, lng: 149.0216638} + - { name: Florey Drive,stop_code: Wjr-CS2, lat: -35.2068071, lng: 149.0268212} + - { name: Kerrigan Street,stop_code: Wjr_oJA, lat: -35.1964177, lng: 149.0152805} + - { name: Rossell Place,stop_code: Wjr-KJQ, lat: -35.2073355, lng: 149.037506} + - { name: O'Reilly Street,stop_code: Wjr-smi, lat: -35.2178617, lng: 149.0106876} + - { name: Archdall Street,stop_code: Wjr-vJY, lat: -35.2019113, lng: 149.0157184} + - { name: Cumpston Place,stop_code: Wjr-BL8, lat: -35.2118565, lng: 149.025622} + - { name: Nulsen Circuit,stop_code: Wjr-S6B, lat: -35.2066123, lng: 149.0412991} + - { name: Tulloch Place,stop_code: Wjr-RnT, lat: -35.2112095, lng: 149.0444601} + - { name: Grigson Place,stop_code: Wjr-s_F, lat: -35.2172009, lng: 149.0180976} + - { name: Hampton Gardens,stop_code: Wjr-rQJ, lat: -35.2244007, lng: 149.0167658} + - { name: Rentoul Place,stop_code: Wjr-Rs8, lat: -35.2139046, lng: 149.0449606} + - { name: Krefft Street,stop_code: Wjr-Q8c, lat: -35.2217975, lng: 149.042121} + - { name: Dalley Crescent,stop_code: Wjr-AHx, lat: -35.2199899, lng: 149.0262529} + - { name: Southern Cross Drive,stop_code: Wjr-z_L, lat: -35.222191, lng: 149.0291286} + - { name: Starke Street,stop_code: Wjr-sV3, lat: -35.2212162, lng: 149.0172455} + - { name: Drake Brockman Drive,stop_code: Wjr-qcc, lat: -35.230013, lng: 149.0092125} + - { name: Southern Cross Drive,stop_code: Wjr-st9, lat: -35.2186471, lng: 149.0119654} + - { name: Messenger Street,stop_code: Wjr-jRn, lat: -35.2235756, lng: 149.0053113} + - { name: Armstrong Crescent,stop_code: Wjr-syd, lat: -35.2203046, lng: 149.0133355} + - { name: Holt Place,stop_code: Wjr-rjD, lat: -35.2249706, lng: 149.0111289} + - { name: Drake Brockman Drive,stop_code: Wjr-qyr, lat: -35.2315106, lng: 149.0137011} + - { name: Ashburner Street,stop_code: Wjr-yrh, lat: -35.2309899, lng: 149.0230231} + - { name: Grout Place,stop_code: Wjr-jNB, lat: -35.2265208, lng: 149.0056756} + - { name: Starke Street,stop_code: Wjr-yni, lat: -35.2281496, lng: 149.0217011} + - { name: Hardwick Crescent,stop_code: Wjr-zom, lat: -35.2270626, lng: 149.0231771} + - { name: Davidson Street,stop_code: Wjr-ywh, lat: -35.2330631, lng: 149.0245222} + - { name: Kriewaldt Circuit,stop_code: Wjr-yJZ, lat: -35.2292857, lng: 149.0266955} + - { name: Kriewaldt Circuit,stop_code: Wjr-ySy, lat: -35.228821, lng: 149.0276438} + - { name: Starke Street,stop_code: Wjr-zWb, lat: -35.2259772, lng: 149.0283569} + - { name: Chave Street,stop_code: Wjr-zC9, lat: -35.2234474, lng: 149.0242983} + - { name: Dethridge Street,stop_code: Wjr-GeX, lat: -35.2287693, lng: 149.0321955} + - { name: Davidson Street,stop_code: Wjr-xLK, lat: -35.2332476, lng: 149.0263679} + - { name: Drake Brockman Drive,stop_code: Wjr-xxu, lat: -35.2373929, lng: 149.0246092} + - { name: Tanumbirini Street,stop_code: Wjr-Ekp, lat: -35.2412759, lng: 149.032879} + - { name: Crawford Street,stop_code: WjzbYue, lat: -35.3493054, lng: 149.2316145} + - { name: Antill Street,stop_code: WjzbYD0, lat: -35.3491814, lng: 149.232803} + - { name: Alinga Street,stop_code: Wjz5FSY, lat: -35.2780524, lng: 149.1269928} + - { name: Uriarra Road,stop_code: WjzbRdA, lat: -35.3446934, lng: 149.2184308} + - { name: Pound Street,stop_code: Wjzj5cC, lat: -35.3451754, lng: 149.2404108} + - { name: Uriarra Road,stop_code: WjzbRBx, lat: -35.3449879, lng: 149.2226535} + - { name: Alinga Street,stop_code: Wjz5Neo, lat: -35.27843, lng: 149.130345} + - { name: Redwood Avenue,stop_code: WjzaJ9a, lat: -35.391582, lng: 149.2069701} + - { name: Canberra Avenue,stop_code: WjzbPQW, lat: -35.3565184, lng: 149.2259167} + - { name: Kenneth Place,stop_code: WjzbVBj, lat: -35.3667378, lng: 149.233235} + - { name: Cooma Street,stop_code: WjzbVCw, lat: -35.3663608, lng: 149.2335824} + - { name: Gibbs Place,stop_code: Wjz9JIL, lat: -35.4330525, lng: 149.2131844} + - { name: Parkview Crescent,stop_code: WjzaK0g, lat: -35.3868815, lng: 149.2056751} + - { name: Dixon Place,stop_code: WjzaDIK, lat: -35.3781802, lng: 149.2021825} + - { name: Rutledge Street,stop_code: WjzbXBT, lat: -35.3553953, lng: 149.2338714} + - { name: Brindabella Circuit,stop_code: WjzcrrQ, lat: -35.3131274, lng: 149.188611} + - { name: Benjamin Way,stop_code: Wjz57tg, lat: -35.2461188, lng: 149.0669661} + - { name: Greene Place,stop_code: Wjz57T_, lat: -35.2441569, lng: 149.0719751} + - { name: Gatehouse Place,stop_code: Wjz5f2j, lat: -35.2479775, lng: 149.0739202} + - { name: Crisp Circuit,stop_code: Wjz688N, lat: -35.2439868, lng: 149.0759082} + - { name: Cobbett Place,stop_code: Wjz68g-, lat: -35.2436119, lng: 149.0775571} + - { name: Braybrooke Street,stop_code: Wjz5vjd, lat: -35.2470998, lng: 149.0983861} + - { name: Watkin Street,stop_code: Wjz5v68, lat: -35.2454993, lng: 149.0956677} + - { name: Dunlop Court,stop_code: Wjz6gQ0, lat: -35.2413491, lng: 149.0928379} + - { name: Eardley Street,stop_code: Wjz6gJc, lat: -35.2402968, lng: 149.0916132} + - { name: Leverrier Crescent,stop_code: Wjz6oEz, lat: -35.243821, lng: 149.1030282} + - { name: Krantzcke Circuit,stop_code: Wjz7pfP, lat: -35.189616, lng: 149.0978803} + - { name: Temperley Street,stop_code: Wjz7p2n, lat: -35.1926501, lng: 149.0958323} + - { name: Temperley Street,stop_code: Wjz7iV0, lat: -35.1885169, lng: 149.0941253} + - { name: Temperley Street,stop_code: Wjz7iG_, lat: -35.1872252, lng: 149.0926713} + - { name: Curran Drive,stop_code: Wjz7ilp, lat: -35.1856235, lng: 149.0877402} + - { name: Ayers Fowler Street,stop_code: Wjz7i7r, lat: -35.1841251, lng: 149.0850218} + - { name: McClelland Avenue,stop_code: Wjz7jsi, lat: -35.1807665, lng: 149.0890046} + - { name: Whiteside Court,stop_code: Wjz7qfu, lat: -35.1838151, lng: 149.0974127} + - { name: Oldershaw Court,stop_code: Wjz7qvq, lat: -35.1841768, lng: 149.1001944} + - { name: Ryder Place,stop_code: Wjz7qkM, lat: -35.1864502, lng: 149.0992461} + - { name: Lexcen Avenue,stop_code: Wjz7qwq, lat: -35.1890336, lng: 149.101522} + - { name: Anne Clark Avenue,stop_code: Wjz7rOj, lat: -35.1820066, lng: 149.104114} + - { name: Biddell Place,stop_code: Wjz7rMm, lat: -35.1831434, lng: 149.104114} + - { name: Lexcen Avenue,stop_code: Wjz7q-_, lat: -35.1844351, lng: 149.1063899} + - { name: Quist Place,stop_code: Wjz7yfG, lat: -35.1841768, lng: 149.108729} + - { name: Kelleway Avenue,stop_code: Wjz7r-a, lat: -35.1793714, lng: 149.1053784} + - { name: Wanganeen Avenue,stop_code: Wjz7Add, lat: -35.1743073, lng: 149.10816} + - { name: Bimbiang Crescent,stop_code: Wjz7tOr, lat: -35.1710517, lng: 149.1042404} + - { name: Bargang Crescent,stop_code: Wjz7txI, lat: -35.1716718, lng: 149.1018381} + - { name: Horse Park Drive,stop_code: Wjz7tug, lat: -35.1685711, lng: 149.0999415} + - { name: Horse Park Drive,stop_code: Wjz7tvK, lat: -35.1673308, lng: 149.1005105} + - { name: Warabin Crescent,stop_code: Wjz7tLG, lat: -35.1677443, lng: 149.1032921} + - { name: Wanganeen Avenue,stop_code: Wjz7Bg7, lat: -35.1720853, lng: 149.109298} + - { name: Bunburung Close,stop_code: Wjz7BqG, lat: -35.1711551, lng: 149.1115106} + - { name: Unaipon Avenue,stop_code: Wjz7BC3, lat: -35.1683127, lng: 149.1120164} + - { name: Gurubun Close,stop_code: Wjz7BJK, lat: -35.1687262, lng: 149.1142923} + - { name: Deumonga Court,stop_code: Wjz7BED, lat: -35.1720853, lng: 149.1141026} + - { name: Mirrabei Drive,stop_code: Wjz7BWN, lat: -35.1712067, lng: 149.1171372} + - { name: Ferguson Circuit,stop_code: Wjz7AGv, lat: -35.1762193, lng: 149.113913} + - { name: T