Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active January 31, 2018 19:34
Show Gist options
  • Save anisotropi4/0e5ab30d1a0ddb8c3fca315f51773099 to your computer and use it in GitHub Desktop.
Save anisotropi4/0e5ab30d1a0ddb8c3fca315f51773099 to your computer and use it in GitHub Desktop.
NaPTAN Interactive Visualisation
Released license:gpl-3.0
height:780
border:no
National Public Transport Access Nodes (NaPTAN) data is licensed under the Open Government License v3.0 http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
Software elements
Outwith this other elements

NaPTAN Interactive Visualisation

This contains the prepublish and associated scripts that creates a dynamic interactive geographic visualisation of National Public Transport Access Nodes (NaPTAN) data with a simple interface that allows the characteristics of transport nodes as points-of-interest to be displayed

This an attempt to apply the OSEMN model as described here http://www.dataists.com/tag/osemn and on the work of Jeroen Janssens in 'Data Science at the Command Line' https://github.com/jeroenjanssens/data-science-at-the-command-line

The National Public Transport Access Nodes (NaPTAN) data is licensed under the Open Government License v3.0 http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/

More information about the the development of this gist is here

Pre-requisites

To extract and process the data is dependant on the following tools:

Bibliography

The GNU parallel tool: O. Tange (2011): GNU Parallel - The Command-Line Power Tool, login: The USENIX Magazine, February 2011:42-47.

The style sheet used to remove namespaces from a document document is based on the following answer on stackoverflow: https://stackoverflow.com/questions/5268182/how-to-remove-namespaces-from-xml-using-xslt

#!/bin/sh
FILTER=$1
FILTER=${FILTER:-cat}
XTAG=$2
XTAG=${XTAG:-"_wrapper"}
(echo "<${XTAG}>"; cat - ;echo "</${XTAG}>") | ${FILTER}
#!/bin/sh
TAG=$1
FILE=$2
FILE=${FILE:-$TAG}
< ${FILE}.xml parallel -j 1 --files --pipe -N1024 add-x-tag.sh rmxmlns.sh | parallel -j 4 xml-to-ndjson.sh {} ${TAG} > ${FILE}.ndjson
<!DOCTYPE html>
<html>
<head>
<title>d3.js with OSM leaflet.js rendering NaPTAN points-of-interest</title>
<link rel="stylesheet" href="https://npmcdn.com/leaflet@1.0.3/dist/leaflet.css">
<script src="https://npmcdn.com/leaflet@1.3.1/dist/leaflet.js"></script>
<script src="http://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div id="map" style="width: 1340px; height: 635px"></div>
<script type="text/javascript">
var radius = 4;
var log2 = Math.log(2.0);
var minZoom = 2;
var maxZoom = 18;
// var map = L.map('map').setView([51.53, -0.124], 14); //KGX
var map = L.map('map').setView([53.96, -1.08], 10); //YRK
mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; ' + mapLink + ' Contributors',
minZoom: minZoom,
maxZoom: maxZoom
}).addTo(map);
L.svg().addTo(map);
var svg = d3.select("#map").select("svg")
, g = svg.selectAll("g");
var collections = [];
var active = {};
var colours15 = {0: "GreenYellow", 13: "DeepSkyBlue", 3: "Gold", 5: "Red", 4: "Purple", 6: "Orange", 7: "DeepPink", 8: "Magenta", 9: "DarkSlateBlue", 10: "GreenYellow", 11: "Lime", 12: "Cyan", 1: "Blue", 14: "DarkBlue", 15: "DarkOrange", 16: "DarkOrchid"};
var colourscale = function(n) {
return colours15[n];
}
var ncolours = {};
// mapply works for big data sets while Math.{min,max}.apply() fails
function mapply(a, fn) {
var m = a[0];
for (i=1; i < a.length; i++) {
if (fn(a[i], m) != m) {
m = a[i];
}
}
return m;
}
var arange;
d3.json("naptandata.json", function(err, d) {
if (err)
return console.warn(err);
var a = [];
for (var i = 1; i <= d.length; i++) {
a.push(Math.ceil(Math.log(i)/log2));
}
a = d3.shuffle(a);
arange = [mapply(a, Math.min), mapply(a, Math.max)];
var ascale = d3.scaleLinear().domain([arange[0], arange[1]]).range([maxZoom+4, minZoom+2]);
d.forEach(function(v, i) {
v.type = "naptandata";
if (! (v.stoptype in ncolours)) ncolours[v.stoptype] = Object.keys(ncolours).length;
v.title = v["AtcoCode"];
v.title2 = v["CommonName"];
v.indicator = v["Indicator"];
v.street = v["Street"];
v.colour = colourscale(ncolours[v.stoptype]);
v.LatLng = new L.LatLng(v.lat,v.lon);
v.lrange = ascale(a[i]);
});
collections = collections.concat(d);
render();
});
function render() {
var tree = d3.quadtree().x(function(d) {
return d.lat;
}).y(function(d) {
return d.lon;
}).addAll(collections);
var zscale = d3.scaleLinear().domain([minZoom, maxZoom]).range([arange[1], arange[0]]);
function visiblenodes() {
var nodes = [];
var z = map.getZoom();
console.log("zoom:", z, " zoomu:", zscale(z));
var bounds = map.getBounds();
var p0 = bounds._southWest
, p3 = bounds._northEast;
tree.visit(function(node, x1, y1, x2, y2) {
if (node.data && node.data.lrange >= zscale(map.getZoom())) nodes.push(node.data);
return x1 >= p3.lat || y1 >= p3.lon || x2 < p0.lat || y2 < p0.lon;
});
console.log("# nodes selected", nodes.length);
return nodes;
}
map.on("viewreset", update);
map.on("moveend", update);
update();
function update() {
g.selectAll("circle").remove();
g.selectAll("text").remove();
g.selectAll("rect").remove();
var nodes = visiblenodes()
, i = 0;
var feature = g.attr("pointer-events", "visible")
.selectAll("circle")
.data(nodes)
.enter()
.append("g")
.on("click", handleMouseClick)
.style("fill", function(d, i) { return d.colour; })
.append("svg:circle")
.style("stroke", "black")
.style("opacity", function(d, i) { return 0.6; })
.attr("r", radius)
.attr("transform", function(d) {
var p = map.latLngToLayerPoint(d.LatLng);
d.x = p.x;
d.y = p.y;
return "translate(" + d.x + "," + d.y + ")";
});
}
svg.attr("pointer-events", "visible").on("click",clearRectangles);
function clearRectangles() {
Object.keys(active).forEach(clearRectangle);
}
function clearRectangle(key) {
active[key].style("fill", function(d, i) { return d.colour; });
d3.select("#r"+key).remove();
d3.select("#t"+key).remove();
delete(active[key]);
}
function handleMouseClick(d, i) {
d3.event.stopPropagation();
var node = d3.select(this);
var output = [];
var key = (d.x + "-" + d.y + "-" + i);
if (key in active) return clearRectangle(key);
node.style("fill", "white");
output.push("Atco: " + d.title);
if (d.title) output.push("Title: " + d.title2);
if (d.node) output.push("Node: " + d.node);
if (d.indicator) output.push("Indicator: " + d.indicator);
if (d.street) output.push("Street: " + d.street);
if (d.stoptype) output.push("type: " + d.stoptype);
output.push("[" + parseFloat(d.lat).toFixed(6) + "," + parseFloat(d.lon).toFixed(6) + "]");
//output.push("range: " + parseFloat(d.lrange).toFixed(1));
if (d.type) output.push("Source: " + d.type);
svg.insert("rect")
.attr("id", "r" + key)
.attr("x", d.x)
.attr("y", (d.y - 110))
.attr("rx", 4)
.attr("ry", 4)
.attr("width", 270)
.attr("height", 120)
.attr("fill", "white");
svg.insert("text")
.attr("id", "t" + key)
.attr("x", (d.x + 4))
.attr("y", (d.y - 110))
.call(lineOutput, output);
active[key] = node;
}
function lineOutput(text, lines) {
text.each(function() {
var text = d3.select(this),
x = text.attr("x"),
y = text.attr("y"),
tspan = text.text(null)
.append("tspan")
.attr("x", x)
.attr("y", y);
lines.forEach(function (v) {
tspan = text.append("tspan")
.attr("x", x)
.attr("dy", "1.2em")
.text(v);
});
});
}
}
</script>
</body>
</html>
This file has been truncated, but you can view the full file.
[{"AtcoCode":"0170SGB20240","CommonName":"The Blue Bowl","Street":"High Street","Indicator":"NW-bound","lat":"51.44685083691","lon":"-2.50989946705","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20241","CommonName":"Victoria Road","Street":"High Street","Indicator":"NW-bound","lat":"51.44762246384","lon":"-2.51233994112","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20242","CommonName":"Victoria Road","Street":"High Street","Indicator":"SE-bound","lat":"51.44801524319","lon":"-2.51299188554","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20243","CommonName":"The Blue Bowl","Indicator":"SE-bound","lat":"51.44610426236","lon":"-2.50789103282","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20244","CommonName":"Stonehill","Street":"Stonehill","Indicator":"SE-bound","lat":"51.44301872602","lon":"-2.50195756709","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20245","CommonName":"The Butchers Arms","Indicator":"SE-bound","lat":"51.44185077727","lon":"-2.49962829276","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20246","CommonName":"The Crown","Street":"Bath Road","Indicator":"SE-bound","lat":"51.43839356939","lon":"-2.49431056568","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20247","CommonName":"Palmdale Close","Street":"Long Beach Road","Indicator":"E-bound","lat":"51.43693451027","lon":"-2.48845392002","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20248","CommonName":"Burney Way","Street":"Long Beach Road","Indicator":"E-bound","lat":"51.43718112171","lon":"-2.48319109267","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20249","CommonName":"Fairoaks","Street":"Long Beach Road","Indicator":"E-bound","lat":"51.43975804055","lon":"-2.48625402041","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20250","CommonName":"California Road","Street":"California Road","Indicator":"W-bound","lat":"51.44118956452","lon":"-2.49012515005","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20251","CommonName":"Tapsters","Street":"Parkwall Road","Indicator":"N-bound","lat":"51.4435456861","lon":"-2.49004966524","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20252","CommonName":"Stephens Drive","Street":"Parkwall Road","Indicator":"N-bound","lat":"51.44611563175","lon":"-2.48829291397","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20253","CommonName":"Newton Road","Street":"Parkwall Road","Indicator":"SW-bound","lat":"51.44854348247","lon":"-2.48610275338","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20254","CommonName":"Newton Road","Street":"Parkwall Road","Indicator":"NE-bound","lat":"51.44889527379","lon":"-2.48583307758","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20255","CommonName":"Howes Close","Indicator":"W-bound","lat":"51.4513775905","lon":"-2.48784539135","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20256","CommonName":"Palmers Close","Street":"Craven Way","Indicator":"E-bound","lat":"51.45114488726","lon":"-2.48974250738","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20257","CommonName":"Stoneleigh Drive","Street":"Craven Way","Indicator":"SW-bound","lat":"51.44826075407","lon":"-2.49351059123","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20258","CommonName":"Craven Close","Street":"Craven Way","Indicator":"SW-bound","lat":"51.44720326091","lon":"-2.49480864369","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20260","CommonName":"Woodward Drive","Indicator":"S-bound","lat":"51.44291967409","lon":"-2.49565440108","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20261","CommonName":"Woodward Drive","Street":"A4174","Indicator":"N-bound","lat":"51.44423263467","lon":"-2.49561106738","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20262","CommonName":"Craven Close","Street":"Craven Way","Indicator":"NE-bound","lat":"51.44768155621","lon":"-2.49439651181","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20263","CommonName":"Stoneleigh Drive","Street":"Craven Way","Indicator":"NE-bound","lat":"51.44924497304","lon":"-2.49252827719","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20264","CommonName":"Palmers Close","Street":"Craven Way","Indicator":"W-bound","lat":"51.45108279056","lon":"-2.48954037045","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20265","CommonName":"Howes Close","Street":"Craven Way","Indicator":"E-bound","lat":"51.45155699535","lon":"-2.4879480416","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20266","CommonName":"Parkwall Road","Indicator":"NW-bound","lat":"51.44274058793","lon":"-2.49120649199","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20267","CommonName":"Stourton Drive","Indicator":"E-bound","lat":"51.44387625114","lon":"-2.49270070882","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20268","CommonName":"Shellards Road","Street":"Shellards Road","Indicator":"S-bound","lat":"51.44011840508","lon":"-2.49254515371","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20269","CommonName":"Shellards Road","Street":"Shellards Road","Indicator":"N-bound","lat":"51.44018037583","lon":"-2.49277601977","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20270","CommonName":"Court Farm Road","Street":"Bath Road","Indicator":"SE-bound","lat":"51.43472601323","lon":"-2.48978261241","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20271","CommonName":"Court Farm Road","Street":"Willsbridge Hill","Indicator":"W-bound","lat":"51.43405677514","lon":"-2.48855268276","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20272","CommonName":"Willsbridge Hill","Street":"Bath Road","Indicator":"SE-bound","lat":"51.43239021181","lon":"-2.48279528417","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20273","CommonName":"Kenilworth Drive","Street":"Bath Road","Indicator":"E-bound","lat":"51.43115071419","lon":"-2.48027929164","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20274","CommonName":"Cherry Garden Road","Street":"Bath Road","Indicator":"E-bound","lat":"51.42940962422","lon":"-2.4728388549","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20275","CommonName":"Bitton School","Indicator":"E-bound","lat":"51.42693226006","lon":"-2.4650175371","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20276","CommonName":"The White Hart","Indicator":"E-bound","lat":"51.42497376632","lon":"-2.46003563151","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20277","CommonName":"Brewery Hill","Street":"Bath Road","Indicator":"W-bound","lat":"51.42264283468","lon":"-2.45365540592","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20278","CommonName":"Brewery Hill","Street":"Bath Road","Indicator":"NW-bound","lat":"51.42260569964","lon":"-2.45395705813","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20279","CommonName":"Swineford","Indicator":"SE-bound","lat":"51.41961653302","lon":"-2.4456152291","node":"E0041932","stoptype":"BCT"},{"AtcoCode":"0170SGB20282","CommonName":"Swineford","Indicator":"NW-bound","lat":"51.41937365811","lon":"-2.44564162774","node":"E0041932","stoptype":"BCT"},{"AtcoCode":"0170SGB20283","CommonName":"The White Hart","Street":"High Street","Indicator":"NW-bound","lat":"51.42483833218","lon":"-2.46017809699","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20284","CommonName":"Bitton School","Street":"Bath Road","Indicator":"NW-bound","lat":"51.4267972196","lon":"-2.46505931533","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20285","CommonName":"Cherry Garden Road","Street":"Bath Road","Indicator":"NW-bound","lat":"51.42897154654","lon":"-2.47221582228","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20286","CommonName":"Kenilworth Drive","Street":"Bath Road","Indicator":"W-bound","lat":"51.43081593287","lon":"-2.47859279332","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20288","CommonName":"Londonderry Farm","Street":"Keynsham Road","Indicator":"SW-bound","lat":"51.42808168311","lon":"-2.48316697713","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20289","CommonName":"Londonderry Farm","Indicator":"NE-bound","lat":"51.4278716194","lon":"-2.48395585707","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20290","CommonName":"Tudor House","Street":"Keynsham Road","Indicator":"SW-bound","lat":"51.42400221579","lon":"-2.48684896474","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20291","CommonName":"Tudor House","Street":"Keynsham Road","Indicator":"NE-bound","lat":"51.42435389045","lon":"-2.48660820155","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20292","CommonName":"The Marina","Street":"Keynsham Road","Indicator":"SW-bound","lat":"51.42028080327","lon":"-2.48873648513","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20293","CommonName":"The Marina","Street":"Keynsham Road","Indicator":"NE-bound","lat":"51.42035255336","lon":"-2.48878039444","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20294","CommonName":"Keynsham Road","Street":"Keynsham Road","Indicator":"N-bound","lat":"51.43033536001","lon":"-2.48176671035","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20295","CommonName":"Willsbridge Hill","Street":"Bath Road","Indicator":"NW-bound","lat":"51.4321207707","lon":"-2.48272051809","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20296","CommonName":"Kilnhurst Close","Street":"Court Farm Road","Indicator":"W-bound","lat":"51.43393297985","lon":"-2.49020569194","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20297","CommonName":"Kilnhurst Close","Street":"Court Farm Road","Indicator":"E-bound","lat":"51.43407834361","lon":"-2.48984761039","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20298","CommonName":"Sally Barn Close","Street":"Court Farm Road","Indicator":"W-bound","lat":"51.43350369339","lon":"-2.49818496368","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20299","CommonName":"Sally Barn Close","Indicator":"E-bound","lat":"51.43368645158","lon":"-2.49749645297","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20300","CommonName":"Larksleaze Road","Street":"Ellacombe Road","Indicator":"E-bound","lat":"51.43496259467","lon":"-2.49765418019","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20301","CommonName":"Larksleaze Road","Street":"Ellacombe Road","Indicator":"W-bound","lat":"51.43485531086","lon":"-2.4975091561","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20302","CommonName":"Ellacombe Road Shops","Street":"Ellacombe Road","Indicator":"NE-bound","lat":"51.43649484258","lon":"-2.49466410432","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20303","CommonName":"Ellacombe Road Shops","Street":"Ellacombe Road","Indicator":"SW-bound","lat":"51.43648664071","lon":"-2.49447699396","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20309","CommonName":"Bellevue Road","Street":"Orchard Road","Indicator":"E-bound","lat":"51.46021858173","lon":"-2.49800092087","node":"E0041948","stoptype":"BCT"},{"AtcoCode":"0170SGB20310","CommonName":"Bellvue Road","Street":"Orchard Road","Indicator":"W-bound","lat":"51.46005686272","lon":"-2.49797037253","node":"E0041948","stoptype":"BCT"},{"AtcoCode":"0170SGB20311","CommonName":"Gages Close","Indicator":"S-bound","lat":"51.45891099844","lon":"-2.49251721571","node":"E0041948","stoptype":"BCT"},{"AtcoCode":"0170SGB20312","CommonName":"Gages Close","Street":"Gages Road","Indicator":"N-bound","lat":"51.45854272235","lon":"-2.49242689061","node":"E0041948","stoptype":"BCT"},{"AtcoCode":"0170SGB20313","CommonName":"Courtney Way","Indicator":"S-bound","lat":"51.45770105443","lon":"-2.49158303771","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20314","CommonName":"Courtney Way","Indicator":"E-bound","lat":"51.45736144047","lon":"-2.49109003089","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20315","CommonName":"Rodborough Way","Indicator":"NE-bound","lat":"51.45821953913","lon":"-2.48800472464","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20316","CommonName":"Rodborough Way","Street":"Courtney Way","Indicator":"SW-bound","lat":"51.45808527034","lon":"-2.4878593613","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20317","CommonName":"Grimsbury Road","Street":"Grimsbury Road","Indicator":"S-bound","lat":"51.45927408508","lon":"-2.48739705855","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20318","CommonName":"Grimsbury Road","Street":"Grimsbury Road","Indicator":"N-bound","lat":"51.45939918358","lon":"-2.48758550702","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20319","CommonName":"Brook Road","Street":"Tenniscourt Road","Indicator":"N-bound","lat":"51.46120161088","lon":"-2.48659714015","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20320","CommonName":"Brook Road","Street":"Tenniscourt Road","Indicator":"S-bound","lat":"51.46137345933","lon":"-2.48635426885","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20321","CommonName":"Dawn Rise","Street":"Tenniscourt Road","Indicator":"SE-bound","lat":"51.46481367933","lon":"-2.4872113846","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGB20322","CommonName":"Dawn Rise","Street":"Tenniscourt Road","Indicator":"N-bound","lat":"51.46560934233","lon":"-2.48831391591","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGB20324","CommonName":"Jubilee Road","Street":"Station Road","Indicator":"NW-bound","lat":"51.476657352","lon":"-2.49537221793","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20325","CommonName":"Jubilee Road","Indicator":"S-bound","lat":"51.47766259665","lon":"-2.4958006909","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20326","CommonName":"Station Road","Indicator":"SE-bound","lat":"51.47861708474","lon":"-2.4975965879","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20327","CommonName":"Station Road","Street":"Station Road","Indicator":"W-bound","lat":"51.47868430205","lon":"-2.49870608584","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20328","CommonName":"Charnell Road","Street":"Teewell Hill","Indicator":"N-bound","lat":"51.47957826506","lon":"-2.49992542742","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20329","CommonName":"Staple Hill Police Station","Street":"Broad Street","Indicator":"E-bound","lat":"51.48093599027","lon":"-2.49992587942","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20330","CommonName":"The Hawthornes","Street":"Broad Street","Indicator":"E-bound","lat":"51.48105832854","lon":"-2.49652874511","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20331","CommonName":"The Hawthornes","Street":"Broad Street","Indicator":"W-bound","lat":"51.48090431966","lon":"-2.49680067673","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20332","CommonName":"Burley Grove","Street":"Mangotsfield Road","Indicator":"W-bound","lat":"51.48125673398","lon":"-2.49212438812","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20333","CommonName":"Burley Grove","Street":"Mangotsfield Road","Indicator":"E-bound","lat":"51.48153805794","lon":"-2.49150819805","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20334","CommonName":"Mangotsfield Road","Street":"Mangotsfield Road","Indicator":"E-bound","lat":"51.48229582499","lon":"-2.48876581582","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20335","CommonName":"Mangotsfield Road","Street":"Mangotsfield Road","Indicator":"W-bound","lat":"51.48229109254","lon":"-2.48774331614","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20336","CommonName":"The Salutation","Indicator":"NE-bound","lat":"51.48277169471","lon":"-2.48676918855","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20337","CommonName":"The Salutation","Street":"Mangotsfield Road","Indicator":"W-bound","lat":"51.48270215597","lon":"-2.48619241503","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20338","CommonName":"Cossham Street","Street":"Cossham Street","Indicator":"E-bound","lat":"51.48338460035","lon":"-2.48424113542","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20339","CommonName":"Cossham Street","Street":"Cossham Street","Indicator":"W-bound","lat":"51.4832132922","lon":"-2.4843545279","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20340","CommonName":"Wadham Court","Street":"Pomphrey Hill","Indicator":"SE-bound","lat":"51.48342568242","lon":"-2.4808141219","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20341","CommonName":"Wadham Court","Street":"Pomphrey Hill","Indicator":"NW-bound","lat":"51.48322829007","lon":"-2.48071123804","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20342","CommonName":"The Bridge Inn","Indicator":"E-bound","lat":"51.48223584592","lon":"-2.4704619233","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20343","CommonName":"The Bridge Inn","Street":"Main Road","Indicator":"W-bound","lat":"51.48211170241","lon":"-2.47002862643","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20344","CommonName":"Rock House Farm","Street":"Main Road","Indicator":"W-bound","lat":"51.48250388513","lon":"-2.46638927095","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20345","CommonName":"Rock House Farm","Street":"Main Road","Indicator":"E-bound","lat":"51.48267637866","lon":"-2.46597340822","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20346","CommonName":"Shortwood Hill","Indicator":"NW-bound","lat":"51.48142016584","lon":"-2.45847238836","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20347","CommonName":"Shortwood Hill","Street":"Shortwood Hill","Indicator":"E-bound","lat":"51.48178532536","lon":"-2.45706480123","node":"E0041914","stoptype":"BCT"},{"AtcoCode":"0170SGB20348","CommonName":"Siston Lane","Indicator":"E-bound","lat":"51.48096019608","lon":"-2.45188685641","node":"E0053723","stoptype":"BCT"},{"AtcoCode":"0170SGB20349","CommonName":"Siston Lane","Street":"Shortwood Road","Indicator":"W-bound","lat":"51.48075384226","lon":"-2.45176961436","node":"E0053723","stoptype":"BCT"},{"AtcoCode":"0170SGB20350","CommonName":"Dennisworth Farm","Indicator":"N-bound","lat":"51.4815379888","lon":"-2.44184106649","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20351","CommonName":"Dennisworth Farm","Street":"Police Station Hill","Indicator":"S-bound","lat":"51.48138546365","lon":"-2.44175318942","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20352","CommonName":"Homefield Road","Indicator":"NE-bound","lat":"51.48395377624","lon":"-2.43783209249","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20353","CommonName":"Homefield Road","Street":"Shortwood Road","Indicator":"SW-bound","lat":"51.48370180675","lon":"-2.43788728254","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20355","CommonName":"Castle Road","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.48795873985","lon":"-2.43441388457","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20356","CommonName":"Castle Road","Indicator":"NE-bound","lat":"51.48806594049","lon":"-2.43460213624","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20357","CommonName":"Motorway Bridge","Indicator":"N-bound","lat":"51.49510713558","lon":"-2.43194664326","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20358","CommonName":"Motorway Bridge","Indicator":"S-bound","lat":"51.49516235623","lon":"-2.43160145219","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20359","CommonName":"Westerleigh Crematorium","Street":"Westerleigh Road","Indicator":"N-bound","lat":"51.50370832598","lon":"-2.4280515606","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20360","CommonName":"Richmond Road","Street":"Richmond Road","Indicator":"N-bound","lat":"51.48514984215","lon":"-2.48571440339","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20361","CommonName":"St James's Street","Street":"St James's Street","Indicator":"SE-bound","lat":"51.48405459027","lon":"-2.48529952637","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20362","CommonName":"Charnhill Brow","Street":"Charnhill Drive","Indicator":"S-bound","lat":"51.48163520253","lon":"-2.4897811846","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20363","CommonName":"Charnhill Brow","Street":"Charnhill Drive","Indicator":"N-bound","lat":"51.48158047321","lon":"-2.48996780412","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20364","CommonName":"Charnhill Crescent","Street":"Charnhill Drive","Indicator":"W-bound","lat":"51.47918846453","lon":"-2.49217411547","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20365","CommonName":"Charnhill Crescent","Indicator":"E-bound","lat":"51.47934089103","lon":"-2.4922765553","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20366","CommonName":"Signal Road","Street":"Signal Road","Indicator":"W-bound","lat":"51.47900608363","lon":"-2.49915598654","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20371","CommonName":"Streamside","Street":"Royal Road","Indicator":"S-bound","lat":"51.48796088103","lon":"-2.49082836156","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20372","CommonName":"Streamside","Street":"Royal Road","Indicator":"N-bound","lat":"51.48800499237","lon":"-2.49103047034","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20379","CommonName":"Dibden Lane","Street":"Blackhorse Road","Indicator":"S-bound","lat":"51.49466349885","lon":"-2.48557068326","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGB20380","CommonName":"The Laurels","Indicator":"S-bound","lat":"51.48770708795","lon":"-2.48483423795","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20381","CommonName":"The Laurels","Street":"Blackhorse Road","Indicator":"N-bound","lat":"51.48772393819","lon":"-2.48510806238","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20383","CommonName":"The Lamb","Street":"Saint James's Street","Indicator":"S-bound","lat":"51.4860249399","lon":"-2.4871782944","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20385","CommonName":"Northcote Road","Street":"Northcote Road","Indicator":"NW-bound","lat":"51.48667309502","lon":"-2.49130419794","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20387","CommonName":"Peache Road","Street":"Burley Grove","Indicator":"S-bound","lat":"51.48782558243","lon":"-2.49520524885","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20389","CommonName":"Gerrish Avenue","Street":"Gerrish Avenue","Indicator":"W-bound","lat":"51.48424052823","lon":"-2.49245894992","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20390","CommonName":"Hill House Road","Street":"South View","Indicator":"W-bound","lat":"51.48330568963","lon":"-2.49665397126","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20393","CommonName":"The Portcullis","Street":"High Street","Indicator":"Stop B","lat":"51.48113590207","lon":"-2.50780504944","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20394","CommonName":"Park Road","Street":"South View","Indicator":"W-bound","lat":"51.48331747722","lon":"-2.50022555215","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20395","CommonName":"Pendennis Road","Street":"High Street","Indicator":"W-bound","lat":"51.48127083797","lon":"-2.51192505756","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20396","CommonName":"Syston Way","Street":"Syston Way","Indicator":"E-bound","lat":"51.46807937024","lon":"-2.51004979876","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20397","CommonName":"Northend Road","Street":"Syston Way","Indicator":"E-bound","lat":"51.46776516296","lon":"-2.50578503998","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20398","CommonName":"Spring Hill","Street":"New Cheltenham Road","Indicator":"E-bound","lat":"51.46736772288","lon":"-2.50202328743","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20399","CommonName":"Alma Road","Street":"New Cheltenham Road","Indicator":"E-bound","lat":"51.46646573802","lon":"-2.49847203836","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20400","CommonName":"Pinewood","Street":"New Cheltenham Road","Indicator":"E-bound","lat":"51.46719523884","lon":"-2.49394526955","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20401","CommonName":"The Made For Ever","Street":"Anchor Road","Indicator":"N-bound","lat":"51.46849257215","lon":"-2.4890501305","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20402","CommonName":"Siston Common Roundabout","Street":"Anchor Road","Indicator":"N-bound","lat":"51.469927869","lon":"-2.487697788","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20403","CommonName":"Chiphouse Road","Street":"Station Road","Indicator":"N-bound","lat":"51.47365322738","lon":"-2.49132262763","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20404","CommonName":"Bridge Road","Street":"Station Road","Indicator":"NW-bound","lat":"51.47480734696","lon":"-2.49270287472","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20405","CommonName":"Middle Road","Street":"Middle Road","Indicator":"W-bound","lat":"51.47558466356","lon":"-2.49600852878","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20406","CommonName":"Larch Road","Street":"Middle Road","Indicator":"W-bound","lat":"51.47550809448","lon":"-2.49921857668","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20407","CommonName":"Morley Road","Street":"Morley Road","Indicator":"NW-bound","lat":"51.47685379098","lon":"-2.5062167825","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20408","CommonName":"The Portcullis","Street":"Broad Street","Indicator":"Stop A","lat":"51.48115273922","lon":"-2.50599079349","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20411","CommonName":"Gloucester Road","Street":"Stanley Park Road","Indicator":"NE-bound","lat":"51.47563060031","lon":"-2.50211403316","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20412","CommonName":"Larch Road","Street":"Middle Road","Indicator":"E-bound","lat":"51.47560583178","lon":"-2.49949321736","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20413","CommonName":"Middle Road","Street":"Middle Road","Indicator":"E-bound","lat":"51.47564019408","lon":"-2.49563476776","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20414","CommonName":"Bridge Road","Street":"Station Road","Indicator":"SE-bound","lat":"51.47440679527","lon":"-2.4917338772","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20415","CommonName":"Chiphouse Road","Street":"Station Road","Indicator":"SE-bound","lat":"51.47327782987","lon":"-2.49078587221","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20416","CommonName":"Siston Common Roundabout","Street":"Anchor Road","Indicator":"S-bound","lat":"51.46988363179","lon":"-2.48752455469","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20417","CommonName":"The Made For Ever","Street":"Anchor Road","Indicator":"S-bound","lat":"51.46824111931","lon":"-2.4889754595","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20420","CommonName":"Alma Road","Street":"New Cheltenham Road","Indicator":"W-bound","lat":"51.46640842104","lon":"-2.49926317678","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20421","CommonName":"Spring Hill","Street":"New Cheltenham Road","Indicator":"W-bound","lat":"51.46723285536","lon":"-2.50202180663","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20422","CommonName":"Northend Road","Street":"Syston Way","Indicator":"W-bound","lat":"51.46760506075","lon":"-2.5053801788","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20423","CommonName":"Syston Way","Street":"Syston Way","Indicator":"W-bound","lat":"51.46796442637","lon":"-2.5096022346","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20424","CommonName":"Kingswood Leisure Centre","Street":"Church Road","Indicator":"E-bound","lat":"51.47330638631","lon":"-2.50522723899","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20425","CommonName":"St Stephens Close","Street":"Church Road","Indicator":"W-bound","lat":"51.47430748137","lon":"-2.50243065753","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20426","CommonName":"Pool Road","Street":"Pool Road","Indicator":"SE-bound","lat":"51.47339504903","lon":"-2.49922429604","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20427","CommonName":"Highview Road","Street":"Pound Road","Indicator":"E-bound","lat":"51.47048023739","lon":"-2.49534847361","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20428","CommonName":"Champion Road","Street":"Pound Road","Indicator":"E-bound","lat":"51.46965558624","lon":"-2.49260416278","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20431","CommonName":"Westbourne Road","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.4930122768","lon":"-2.49127154621","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20432","CommonName":"Westbourne Road","Street":"Westerleigh Road","Indicator":"NE-bound","lat":"51.49257725851","lon":"-2.49208789204","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20433","CommonName":"Mangotsfield Cemetery","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.49055694211","lon":"-2.49569576096","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20434","CommonName":"Mangotsfield Cemetery","Street":"Westerleigh Road","Indicator":"E-bound","lat":"51.49052820177","lon":"-2.49611314452","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20435","CommonName":"The Horseshoe","Street":"Westerleigh Road","Indicator":"W-bound","lat":"51.48852408738","lon":"-2.50221251244","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20436","CommonName":"The Horseshoe","Street":"Westerleigh Road","Indicator":"E-bound","lat":"51.48860556283","lon":"-2.50208378386","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20439","CommonName":"Four Acre Road","Street":"Four Acre Road","Indicator":"S-bound","lat":"51.49909900606","lon":"-2.49990858272","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGB20440","CommonName":"Four Acre Road","Street":"Four Acre Road","Indicator":"N-bound","lat":"51.49920616227","lon":"-2.50008262798","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGB20441","CommonName":"Queensholm Drive","Street":"Four Acre Road","Indicator":"SE-bound","lat":"51.50145375713","lon":"-2.50225384403","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20442","CommonName":"Queensholm Drive","Street":"Queensholm Drive","Indicator":"S-bound","lat":"51.50129837631","lon":"-2.50284280934","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20443","CommonName":"Queensholm Close","Street":"Queensholm Drive","Indicator":"S-bound","lat":"51.49949631906","lon":"-2.50371614728","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20444","CommonName":"Queensholm Close","Street":"Queensholm Drive","Indicator":"N-bound","lat":"51.49981107","lon":"-2.50370521262","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20445","CommonName":"Four Acre Road","Indicator":"E-bound","lat":"51.4996887312","lon":"-2.5007794087","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20446","CommonName":"Queensholm Crescent","Street":"Quaker's Road","Indicator":"W-bound","lat":"51.49934284629","lon":"-2.50594739581","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20447","CommonName":"Queensholm Crescent","Street":"Quaker's Road","Indicator":"E-bound","lat":"51.4993448969","lon":"-2.5054720181","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20448","CommonName":"Wedgewood Road","Street":"Quaker's Road","Indicator":"E-bound","lat":"51.50006034446","lon":"-2.50844763447","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20449","CommonName":"Wedgewood Road","Street":"Quakers Road","Indicator":"W-bound","lat":"51.50008325308","lon":"-2.50938429954","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20450","CommonName":"Quakers Road","Indicator":"N-bound","lat":"51.49981157869","lon":"-2.50982786229","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20451","CommonName":"Quakers Road","Street":"Bromley Heath Road","Indicator":"S-bound","lat":"51.49955265254","lon":"-2.50940719374","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGB20452","CommonName":"Bromley Heath Avenue","Street":"Bromley Heath Road","Indicator":"S-bound","lat":"51.495760343","lon":"-2.50891834555","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20454","CommonName":"Cleeve Wood Road","Street":"Bromley Heath Road","Indicator":"N-bound","lat":"51.49417471545","lon":"-2.50963530632","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20455","CommonName":"Heath Walk","Indicator":"SE-bound","lat":"51.49246091561","lon":"-2.50880956794","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20456","CommonName":"Heath Walk","Street":"Cleeve Hill","Indicator":"NW-bound","lat":"51.49208485085","lon":"-2.50844528467","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20457","CommonName":"Cleeve Park Road","Street":"Cleeve Hill","Indicator":"SE-bound","lat":"51.4909164262","lon":"-2.50625736447","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20458","CommonName":"Cleeve Park Road","Street":"Cleeve Hill","Indicator":"NW-bound","lat":"51.4908884574","lon":"-2.50648750907","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20459","CommonName":"Kidney Hill","Indicator":"N-bound","lat":"51.51089589982","lon":"-2.44407047807","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20460","CommonName":"Kidney Hill","Indicator":"S-bound","lat":"51.51098706642","lon":"-2.44373994146","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20461","CommonName":"Broad Lane","Indicator":"E-bound","lat":"51.51451278416","lon":"-2.44107939304","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20462","CommonName":"Broad Lane","Indicator":"SW-bound","lat":"51.5141332563","lon":"-2.44158010017","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20463","CommonName":"Mill Crescent","Indicator":"E-bound","lat":"51.51497280777","lon":"-2.43588147788","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20464","CommonName":"Mill Crescent","Indicator":"W-bound","lat":"51.51488300312","lon":"-2.43585179835","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20465","CommonName":"War Memorial","Indicator":"S-bound","lat":"51.51654438309","lon":"-2.43397976236","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20466","CommonName":"War Memorial","Street":"Westerleigh Road","Indicator":"N-bound","lat":"51.51682198903","lon":"-2.43428504477","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20467","CommonName":"Wapley Turn","Street":"Westerleigh Road","Indicator":"N-bound","lat":"51.51992362447","lon":"-2.43440103727","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20468","CommonName":"Wapley Turn","Street":"Westerleigh Road","Indicator":"S-bound","lat":"51.519996408","lon":"-2.43417112925","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20469","CommonName":"Nibley Turn","Indicator":"S-bound","lat":"51.5253508156","lon":"-2.43538963519","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20470","CommonName":"Nibley Turn","Street":"Westerleigh Road","Indicator":"N-bound","lat":"51.5254575852","lon":"-2.43569335397","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20471","CommonName":"Bradley Bridge","Street":"Beacon Lane","Indicator":"SW-bound","lat":"51.52205719214","lon":"-2.51993501613","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGB20472","CommonName":"Bradley Bridge","Street":"Beacon Lane","Indicator":"NE-bound","lat":"51.522137025","lon":"-2.52018095134","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGB20473","CommonName":"Begbrook Park","Street":"Frenchay Park Road","Indicator":"N-bound","lat":"51.49638012707","lon":"-2.52936615303","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20476","CommonName":"Pearces Hill","Street":"Begbrook Park","Indicator":"W-bound","lat":"51.494770301","lon":"-2.52544383865","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20477","CommonName":"Pearces Hill","Indicator":"E-bound","lat":"51.49507242382","lon":"-2.52423731614","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20478","CommonName":"St John's Church","Indicator":"NE-bound","lat":"51.49564959493","lon":"-2.52183831908","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20479","CommonName":"Cedar Hall","Street":"Beckspool Road","Indicator":"N-bound","lat":"51.49837131665","lon":"-2.51839762429","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20480","CommonName":"Cedar Hall","Street":"Beckspool Road","Indicator":"S-bound","lat":"51.4986963334","lon":"-2.51809878998","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20481","CommonName":"Frenchay Village Hall","Street":"Beckspool Road","Indicator":"N-bound","lat":"51.50006450742","lon":"-2.51776855966","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20482","CommonName":"Frenchay Village Hall","Indicator":"S-bound","lat":"51.50015575403","lon":"-2.51746706111","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20483","CommonName":"Beckspool Road","Street":"Beckspool Road","Indicator":"E-bound","lat":"51.50240691591","lon":"-2.51876038993","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20484","CommonName":"Beckspool Road","Indicator":"W-bound","lat":"51.50273192402","lon":"-2.52049293986","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGB20485","CommonName":"Cleeve Wood Road","Indicator":"S-bound","lat":"51.49480543201","lon":"-2.51139970996","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20486","CommonName":"Cleeve Wood Road","Street":"Cleeve Wood Road","Indicator":"NW-bound","lat":"51.49450048805","lon":"-2.51122344133","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20487","CommonName":"Glendale","Street":"Oakdale Road","Indicator":"S-bound","lat":"51.49904224027","lon":"-2.50476277546","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20488","CommonName":"Glendale","Street":"Oakdale Road","Indicator":"N-bound","lat":"51.49908632735","lon":"-2.5049649466","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20489","CommonName":"Oakdale Close","Street":"Oakdale Road","Indicator":"S-bound","lat":"51.49527744091","lon":"-2.50414497913","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20490","CommonName":"Oakdale Close","Street":"Oakdale Road","Indicator":"N-bound","lat":"51.49530354689","lon":"-2.50434693445","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGB20491","CommonName":"The Fleur De Lys","Street":"Abson Road","Indicator":"W-bound","lat":"51.48588422018","lon":"-2.43373167686","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20492","CommonName":"Pucklechurch Village Hall","Street":"Abson Road","Indicator":"E-bound","lat":"51.48585921702","lon":"-2.43319857326","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20493","CommonName":"Grove Lane","Street":"Feltham Road","Indicator":"E-bound","lat":"51.48974515243","lon":"-2.38645446204","node":"N0064868","stoptype":"BCT"},{"AtcoCode":"0170SGB20494","CommonName":"Grove Lane","Street":"Feltham Road","Indicator":"W-bound","lat":"51.48969125228","lon":"-2.38643960306","node":"N0064868","stoptype":"BCT"},{"AtcoCode":"0170SGB20495","CommonName":"Maple Walk","Street":"Oak Tree Avenue","Indicator":"SW-bound","lat":"51.4843031831","lon":"-2.4308940138","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20496","CommonName":"Maple Walk","Street":"Oak Tree Avenue","Indicator":"NE-bound","lat":"51.48458254647","lon":"-2.43072383172","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20497","CommonName":"Kestrel Drive","Street":"Oak Tree Avenue","Indicator":"S-bound","lat":"51.48187434465","lon":"-2.43363601275","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20498","CommonName":"Kestrel Drive","Street":"Oak Tree Avenue","Indicator":"N-bound","lat":"51.48186471399","lon":"-2.43380872774","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20499","CommonName":"Goldfinch Way","Street":"Oak Tree Avenue","Indicator":"E-bound","lat":"51.48076999801","lon":"-2.43075989602","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20500","CommonName":"Goldfinch Way","Street":"Oak Tree Avenue","Indicator":"W-bound","lat":"51.48072615278","lon":"-2.4304570791","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGB20501","CommonName":"Abson Road","Street":"Abson Road","Indicator":"S-bound","lat":"51.47175795079","lon":"-2.42652853068","node":"N0064862","stoptype":"BCT"},{"AtcoCode":"0170SGB20502","CommonName":"Abson Road","Street":"Abson Road","Indicator":"N-bound","lat":"51.47184712965","lon":"-2.42673092605","node":"N0064862","stoptype":"BCT"},{"AtcoCode":"0170SGB20503","CommonName":"Naishcombe Hill","Street":"Naishcombe Hill","Indicator":"S-bound","lat":"51.45919789775","lon":"-2.42867114022","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20504","CommonName":"Naishcombe Hill","Indicator":"N-bound","lat":"51.45928686251","lon":"-2.42893105575","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20505","CommonName":"Mendip View","Street":"Naishcombe Hill","Indicator":"SW-bound","lat":"51.45613807111","lon":"-2.42940526053","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20506","CommonName":"Mendip View","Street":"Naishcombe Hill","Indicator":"NE-bound","lat":"51.45623623667","lon":"-2.42960767666","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20507","CommonName":"Church Road","Street":"Naishcombe Hill","Indicator":"N-bound","lat":"51.45430013435","lon":"-2.43284205152","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20508","CommonName":"Church Road","Street":"High Street","Indicator":"E-bound","lat":"51.4541046104","lon":"-2.4322213541","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20509","CommonName":"The Carpenters Arms","Indicator":"SE-bound","lat":"51.45336134669","lon":"-2.4289474466","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20510","CommonName":"The Carpenters Arms","Street":"High Street","Indicator":"W-bound","lat":"51.45321706468","lon":"-2.42906122571","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20511","CommonName":"The Rose and Crown","Street":"High Street","Indicator":"W-bound","lat":"51.45265050226","lon":"-2.42662377564","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20512","CommonName":"The Rose and Crown","Indicator":"E-bound","lat":"51.45256644637","lon":"-2.4250111651","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20513","CommonName":"Oldbury Lane","Street":"High Street","Indicator":"E-bound","lat":"51.45177348055","lon":"-2.42049939635","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20514","CommonName":"Oldbury Lane","Street":"High Street","Indicator":"W-bound","lat":"51.45170165347","lon":"-2.42046995402","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20515","CommonName":"Bury Lane","Street":"Bury Lane","Indicator":"NE-bound","lat":"51.45294997269","lon":"-2.41838028037","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20516","CommonName":"Bury Lane","Street":"Bury Lane","Indicator":"SW-bound","lat":"51.45298732454","lon":"-2.41799205318","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20517","CommonName":"Bury Lane Cottages","Indicator":"NE-bound","lat":"51.45924035655","lon":"-2.41181686042","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGB20518","CommonName":"Bury Lane Cottages","Street":"Bury Lane","Indicator":"SW-bound","lat":"51.45925945149","lon":"-2.41150037739","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20519","CommonName":"Horsepool Lane","Street":"Bury Lane","Indicator":"NE-bound","lat":"51.46172031736","lon":"-2.40716108556","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGB20520","CommonName":"Horsepool Lane","Street":"Bury Lane","Indicator":"SW-bound","lat":"51.46169404346","lon":"-2.4069593332","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGB20521","CommonName":"Doynton Church","Street":"Toghill Lane","Indicator":"NW-bound","lat":"51.46452866156","lon":"-2.40370248837","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGB20522","CommonName":"Parkers Avenue","Street":"Holbrook Lane","Indicator":"E-bound","lat":"51.45921658381","lon":"-2.43093107947","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20523","CommonName":"Parkers Avenue","Street":"Holbrook Lane","Indicator":"W-bound","lat":"51.45913603281","lon":"-2.43082956682","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20524","CommonName":"St Annes Drive","Street":"Holbrook Lane","Indicator":"W-bound","lat":"51.45867483878","lon":"-2.43397734009","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20525","CommonName":"St Annes Drive","Street":"Holbrook Lane","Indicator":"E-bound","lat":"51.45893957817","lon":"-2.43290035356","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20526","CommonName":"Holbrook Farm","Street":"Holbrook Lane","Indicator":"W-bound","lat":"51.45916841561","lon":"-2.43906289037","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20527","CommonName":"Holbrook Farm","Indicator":"E-bound","lat":"51.45934899563","lon":"-2.43886311578","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20528","CommonName":"Lodge Road","Indicator":"SE-bound","lat":"51.46009907068","lon":"-2.4473769818","node":"E0041840","stoptype":"BCT"},{"AtcoCode":"0170SGB20529","CommonName":"Lodge Road","Street":"Chesley Hill","Indicator":"W-bound","lat":"51.46007685208","lon":"-2.44848507783","node":"E0041840","stoptype":"BCT"},{"AtcoCode":"0170SGB20530","CommonName":"Oaklodge Farm","Indicator":"NE-bound","lat":"51.45936365141","lon":"-2.451572677","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20531","CommonName":"Chesley Hill","Indicator":"E-bound","lat":"51.45689896272","lon":"-2.4564706401","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20532","CommonName":"Chesley Hill","Street":"London Road","Indicator":"W-bound","lat":"51.45678820645","lon":"-2.45720355988","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20533","CommonName":"Wick Church","Indicator":"W-bound","lat":"51.45241397804","lon":"-2.43953053353","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20534","CommonName":"Wick Church","Indicator":"E-bound","lat":"51.45265949295","lon":"-2.43879893403","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20535","CommonName":"Wick Primary School","Street":"Church Road","Indicator":"NE-bound","lat":"51.45322822952","lon":"-2.43578217017","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20536","CommonName":"Wick Primary School","Street":"Church Road","Indicator":"SW-bound","lat":"51.45341110269","lon":"-2.4349635924","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGB20537","CommonName":"Cold Ashton Roundabout","Street":"A420","Indicator":"W-bound","lat":"51.45311341867","lon":"-2.3697817869","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20538","CommonName":"Cold Ashton Roundabout","Street":"A420","Indicator":"E-bound","lat":"51.45323870696","lon":"-2.36996988931","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20539","CommonName":"The White Hart","Street":"A420","Indicator":"W-bound","lat":"51.45498273591","lon":"-2.3614351223","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20540","CommonName":"The White Hart","Street":"A420","Indicator":"E-bound","lat":"51.45509926829","lon":"-2.36155117989","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20541","CommonName":"Almshouses","Street":"High Street","Indicator":"E-bound","lat":"51.46236749418","lon":"-2.32684626956","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20542","CommonName":"Almshouses","Street":"High Street","Indicator":"W-bound","lat":"51.46229608502","lon":"-2.32665863273","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20543","CommonName":"Herron Hall","Indicator":"E-bound","lat":"51.46236028833","lon":"-2.32295974296","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20544","CommonName":"Herron Hall","Street":"High Street","Indicator":"W-bound","lat":"51.46222577467","lon":"-2.32282924396","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20545","CommonName":"The Crown Hotel","Street":"High Street","Indicator":"E-bound","lat":"51.462149204","lon":"-2.31794904088","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20546","CommonName":"The Crown Hotel","Street":"High Street","Indicator":"W-bound","lat":"51.46194302693","lon":"-2.31771729952","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20547","CommonName":"Withymead Road","Street":"Chippenham Road","Indicator":"E-bound","lat":"51.46315852017","lon":"-2.31039889546","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20548","CommonName":"Withymead Road","Street":"Chippenham Road","Indicator":"W-bound","lat":"51.4630597293","lon":"-2.31035504099","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGB20550","CommonName":"Cold Ashton Roundabout","Indicator":"N-bound","lat":"51.45241454338","lon":"-2.36899900985","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20551","CommonName":"Cold Ashton Roundabout","Indicator":"S-bound","lat":"51.45243334158","lon":"-2.3687401191","node":"E0053699","stoptype":"BCT"},{"AtcoCode":"0170SGB20552","CommonName":"Home Farm","Street":"High Street","Indicator":"W-bound","lat":"51.47910407312","lon":"-2.3794526361","node":"N0064867","stoptype":"BCT"},{"AtcoCode":"0170SGB20553","CommonName":"Home Farm","Street":"High Street","Indicator":"E-bound","lat":"51.47927490778","lon":"-2.37945405468","node":"N0064867","stoptype":"BCT"},{"AtcoCode":"0170SGB20554","CommonName":"Shorthill Road","Indicator":"NW-bound","lat":"51.5139979238","lon":"-2.42960353002","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20555","CommonName":"Shorthill Road","Indicator":"SE-bound","lat":"51.51406197061","lon":"-2.42930150856","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGB20558","CommonName":"Retail Park","Street":"Lysander Road","Indicator":"SW-bound","lat":"51.52636271774","lon":"-2.6028681898","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20559","CommonName":"Retail Park","Street":"Lysander Road","Indicator":"N-bound","lat":"51.52627964982","lon":"-2.60328511643","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20560","CommonName":"The Venue","Street":"Lysander Road","Indicator":"W-bound","lat":"51.52424562447","lon":"-2.60540590908","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20561","CommonName":"The Venue","Indicator":"E-bound","lat":"51.52441399555","lon":"-2.6058838061","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20562","CommonName":"Catbrain Lane","Indicator":"SW-bound","lat":"51.52441840697","lon":"-2.61539713267","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20563","CommonName":"Catbrain Lane","Indicator":"E-bound","lat":"51.52444399495","lon":"-2.61222638621","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20564","CommonName":"Rugby Club","Indicator":"SW-bound","lat":"51.51950511235","lon":"-2.62125441822","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20565","CommonName":"Rugby Club","Indicator":"NE-bound","lat":"51.51963875407","lon":"-2.62148683796","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGB20567","CommonName":"The William Iv","Street":"Berwick Lane","Indicator":"N-bound","lat":"51.51768351549","lon":"-2.64879964909","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20568","CommonName":"The William Iv","Indicator":"S-bound","lat":"51.51768503008","lon":"-2.64852584375","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20569","CommonName":"Berwick Farm","Street":"Berwick Lane","Indicator":"NE-bound","lat":"51.52296403702","lon":"-2.64016890137","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20570","CommonName":"Berwick Farm","Street":"Berwick Lane","Indicator":"SW-bound","lat":"51.52292081317","lon":"-2.63985119611","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20571","CommonName":"Sampsons Farm Cottages","Street":"Berwick Lane","Indicator":"N-bound","lat":"51.52623074784","lon":"-2.63800929147","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20572","CommonName":"Sampsons Farm Cottages","Street":"Berwick Lane","Indicator":"S-bound","lat":"51.52630408595","lon":"-2.6377508531","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20573","CommonName":"Spaniorum Farm","Street":"Berwick Lane","Indicator":"N-bound","lat":"51.53295397069","lon":"-2.63514787961","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20574","CommonName":"Spaniorum Farm","Indicator":"S-bound","lat":"51.53300048606","lon":"-2.63486019188","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20575","CommonName":"Vimpennys Lane","Street":"Berwick Lane","Indicator":"E-bound","lat":"51.53504892502","lon":"-2.6318322088","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20576","CommonName":"Vimpennys Lane","Street":"Berwick Lane","Indicator":"W-bound","lat":"51.53515581476","lon":"-2.63034869237","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20577","CommonName":"Hollywood Lane","Street":"Berwick Lane","Indicator":"NW-bound","lat":"51.53348075224","lon":"-2.62242507738","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20578","CommonName":"Hollywood Lane","Street":"Berwick Lane","Indicator":"SE-bound","lat":"51.53358087584","lon":"-2.62219577239","node":"E0041790","stoptype":"BCT"},{"AtcoCode":"0170SGB20579","CommonName":"Windsor Crescent","Indicator":"SE-bound","lat":"51.51425319836","lon":"-2.64473026627","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20580","CommonName":"Windsor Crescent","Street":"Hallen Road","Indicator":"N-bound","lat":"51.51405539919","lon":"-2.64472747272","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"0170SGB20583","CommonName":"Severnwood Gardens","Indicator":"S-bound","lat":"51.55511570762","lon":"-2.66000588069","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20584","CommonName":"Severnwood Gardens","Street":"Ableton Lane","Indicator":"N-bound","lat":"51.55520358612","lon":"-2.66036774816","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20585","CommonName":"Denny Isle Drive","Street":"Ablerton Lane","Indicator":"N-bound","lat":"51.55732167269","lon":"-2.66106196045","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20586","CommonName":"Denny Isle Drive","Street":"Ableton Lane","Indicator":"S-bound","lat":"51.55726894707","lon":"-2.6608448289","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20587","CommonName":"Severn Beach School","Street":"Ableton Lane","Indicator":"N-bound","lat":"51.55890897316","lon":"-2.66180623138","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20588","CommonName":"Severn Beach School","Street":"Ableton Lane","Indicator":"S-bound","lat":"51.55891869624","lon":"-2.66167654775","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20589","CommonName":"Severn Beach Station","Street":"Station Road","Indicator":"W-bound","lat":"51.56011589705","lon":"-2.66462227667","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20590","CommonName":"Severn Beach Station","Street":"Station Road","Indicator":"E-bound","lat":"51.56023261354","lon":"-2.66465282953","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20591","CommonName":"Post Office","Indicator":"S-bound","lat":"51.56101823907","lon":"-2.66564523092","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20592","CommonName":"Post Office","Street":"Beach Road","Indicator":"N-bound","lat":"51.56204146648","lon":"-2.66596312174","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20593","CommonName":"Osborne Road","Street":"Beach Avenue","Indicator":"NE-bound","lat":"51.562755747","lon":"-2.66526667634","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20594","CommonName":"Osborne Road","Street":"Beach Avenue","Indicator":"SW-bound","lat":"51.56298468578","lon":"-2.66453427884","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20595","CommonName":"Beach Avenue","Street":"Beach Avenue","Indicator":"NE-bound","lat":"51.5646150976","lon":"-2.66242289147","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20596","CommonName":"Beach Avenue","Street":"Beach Avenue","Indicator":"SW-bound","lat":"51.56445399693","lon":"-2.66229070899","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20597","CommonName":"Redwick Road","Street":"Green Lane","Indicator":"NW-bound","lat":"51.56864503037","lon":"-2.65086689792","node":"E0041906","stoptype":"BCT"},{"AtcoCode":"0170SGB20598","CommonName":"Redwick Road","Street":"Redwick Road","Indicator":"S-bound","lat":"51.5681463461","lon":"-2.64999410055","node":"E0041906","stoptype":"BCT"},{"AtcoCode":"0170SGB20599","CommonName":"The Kings Arms","Indicator":"SE-bound","lat":"51.56566563775","lon":"-2.64819860615","node":"E0041906","stoptype":"BCT"},{"AtcoCode":"0170SGB20600","CommonName":"The Kings Arms","Street":"Wick Road","Indicator":"NW-bound","lat":"51.56559235614","lon":"-2.64844282408","node":"E0041906","stoptype":"BCT"},{"AtcoCode":"0170SGB20601","CommonName":"M48 Interchange","Indicator":"W-bound","lat":"51.60049981662","lon":"-2.61797029245","node":"E0053693","stoptype":"BCT"},{"AtcoCode":"0170SGB20602","CommonName":"M48 Interchange","Indicator":"SE-bound","lat":"51.60196232476","lon":"-2.61684950478","node":"E0053693","stoptype":"BCT"},{"AtcoCode":"0170SGB20603","CommonName":"The Boars Head","Indicator":"E-bound","lat":"51.59824908098","lon":"-2.61509556177","node":"E0053693","stoptype":"BCT"},{"AtcoCode":"0170SGB20604","CommonName":"Vicarage Road","Indicator":"NW-bound","lat":"51.56437112825","lon":"-2.64652112195","node":"E0041906","stoptype":"BCT"},{"AtcoCode":"0170SGB20605","CommonName":"Vicarage Road","Indicator":"NW-bound","lat":"51.56374288571","lon":"-2.64631023768","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGB20606","CommonName":"The Cross Hands","Street":"Redwick Road","Indicator":"E-bound","lat":"51.56354344108","lon":"-2.6433355641","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20607","CommonName":"The Cross Hands","Street":"Redwick Road","Indicator":"W-bound","lat":"51.56341836092","lon":"-2.64318953436","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20608","CommonName":"Northwick School","Indicator":"NW-bound","lat":"51.57777938209","lon":"-2.63795185306","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20609","CommonName":"Northwick School","Indicator":"SE-bound","lat":"51.57795052085","lon":"-2.63789652621","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20610","CommonName":"St Peters Farm","Street":"Bank Road","Indicator":"NW-bound","lat":"51.56341099144","lon":"-2.63795265193","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20611","CommonName":"St Peters Farm","Street":"Bank Road","Indicator":"SE-bound","lat":"51.56349394777","lon":"-2.63757872659","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20612","CommonName":"Pilning School","Street":"Bank Road","Indicator":"NW-bound","lat":"51.56128735475","lon":"-2.63327784473","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20613","CommonName":"Pilning School","Indicator":"SE-bound","lat":"51.56136130538","lon":"-2.63290380328","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20614","CommonName":"Cranmoor Green","Street":"Cross Hands Road","Indicator":"NW-bound","lat":"51.56242054436","lon":"-2.63985745417","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20615","CommonName":"Cranmoor Green","Street":"Cross Hands Road","Indicator":"SE-bound","lat":"51.56246715032","lon":"-2.63955516071","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGB20616","CommonName":"Ellinghurst Farm","Indicator":"SE-bound","lat":"51.55614072436","lon":"-2.63558631194","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20617","CommonName":"Ellinghurst Farm","Indicator":"NW-bound","lat":"51.55594198834","lon":"-2.63575662903","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20618","CommonName":"Chequers Farm","Indicator":"N-bound","lat":"51.55264981732","lon":"-2.63266746712","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20619","CommonName":"Chequers Farm","Indicator":"S-bound","lat":"51.55265082841","lon":"-2.63247998245","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGB20620","CommonName":"Pilning Road","Street":"B4055","Indicator":"N-bound","lat":"51.54971693778","lon":"-2.63297289668","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20621","CommonName":"Pilning Road","Indicator":"S-bound","lat":"51.54973561978","lon":"-2.63284335755","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20622","CommonName":"Swanmoor Bridge","Street":"Marsh Common Road","Indicator":"NW-bound","lat":"51.54813992534","lon":"-2.63028301648","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20623","CommonName":"Swanmoor Bridge","Street":"Station Road","Indicator":"N-bound","lat":"51.54830321473","lon":"-2.62833835765","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20624","CommonName":"Swanmoor Bridge","Street":"Blackhorse Hill","Indicator":"S-bound","lat":"51.5473345198","lon":"-2.62789236952","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20625","CommonName":"Station Road","Indicator":"N-bound","lat":"51.55337402328","lon":"-2.6250476431","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20626","CommonName":"Station Road","Street":"Station Road","Indicator":"S-bound","lat":"51.55330371001","lon":"-2.62474379224","node":"N0074109","stoptype":"BCT"},{"AtcoCode":"0170SGB20627","CommonName":"Prospect Close","Street":"B4055","Indicator":"SE-bound","lat":"51.54117452472","lon":"-2.62129001262","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20628","CommonName":"The Fox","Street":"B4055","Indicator":"SE-bound","lat":"51.53948241032","lon":"-2.61821017495","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20629","CommonName":"The Fox","Street":"B4055","Indicator":"NW-bound","lat":"51.53936537691","lon":"-2.61823742614","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20630","CommonName":"Home Farm Way","Street":"Blackhorse Hill","Indicator":"NW-bound","lat":"51.53769568906","lon":"-2.61600880336","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20631","CommonName":"Home Farm Way","Street":"Blackhorse Hill","Indicator":"SE-bound","lat":"51.53734066953","lon":"-2.61512450289","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20632","CommonName":"Blackhorse Hill","Street":"Cribbs Causeway","Indicator":"N-bound","lat":"51.52964316763","lon":"-2.61010496533","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20633","CommonName":"Blackhorse Hill","Street":"Cribbs Causeway","Indicator":"S-bound","lat":"51.52961769438","lon":"-2.60981631101","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGB20634","CommonName":"Sundays Hill","Street":"Sundays Hill","Indicator":"N-bound","lat":"51.55104347531","lon":"-2.57622454233","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20635","CommonName":"Sundays Hill","Street":"Sundays Hill","Indicator":"S-bound","lat":"51.55114372136","lon":"-2.57595178254","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20636","CommonName":"Almondsbury School","Street":"Sundays Hill","Indicator":"N-bound","lat":"51.55335470202","lon":"-2.57430663027","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20637","CommonName":"St Mary's Church","Street":"Church Road","Indicator":"S-bound","lat":"51.55478567152","lon":"-2.5740361871","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20638","CommonName":"St Mary's Church","Street":"Church Road","Indicator":"NW-bound","lat":"51.55529214816","lon":"-2.57526858666","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20639","CommonName":"Marshwall Lane","Street":"Tockington Lane","Indicator":"N-bound","lat":"51.55647002281","lon":"-2.57710089593","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20640","CommonName":"Marshwall Lane","Indicator":"S-bound","lat":"51.55653451999","lon":"-2.57678438076","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20641","CommonName":"Over Lane","Indicator":"E-bound","lat":"51.55233040453","lon":"-2.5704716731","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20642","CommonName":"Over Lane","Street":"Over Lane","Indicator":"W-bound","lat":"51.5521505858","lon":"-2.57046942282","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGB20643","CommonName":"Moor Lane","Street":"Lower Tockington Road","Indicator":"S-bound","lat":"51.57118492326","lon":"-2.56688411812","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGB20644","CommonName":"The Swan","Indicator":"S-bound","lat":"51.57619871078","lon":"-2.56573436581","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGB20645","CommonName":"The Swan","Indicator":"W-bound","lat":"51.57618902394","lon":"-2.56587854937","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGB20646","CommonName":"Moor Lane","Indicator":"N-bound","lat":"51.57164234401","lon":"-2.5671206735","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGB20647","CommonName":"The Green","Indicator":"SE-bound","lat":"51.57898148467","lon":"-2.57591411932","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20648","CommonName":"The Green","Street":"New Road","Indicator":"N-bound","lat":"51.57937424867","lon":"-2.57649634221","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20649","CommonName":"Olveston Post Office","Street":"The Street","Indicator":"S-bound","lat":"51.58260020195","lon":"-2.57689799274","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20650","CommonName":"Olveston Post Office","Street":"The Street","Indicator":"NW-bound","lat":"51.58264402071","lon":"-2.57712946689","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20651","CommonName":"Haw Lane","Indicator":"S-bound","lat":"51.58089889067","lon":"-2.57178198508","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20652","CommonName":"Haw Lane","Street":"Orchard Rise","Indicator":"N-bound","lat":"51.58087957226","lon":"-2.57205594817","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20653","CommonName":"Daldry Gardens","Street":"Vicarage Lane","Indicator":"E-bound","lat":"51.58286497382","lon":"-2.57424576579","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGB20655","CommonName":"The Crescent","Indicator":"SW-bound","lat":"51.58531781412","lon":"-2.55405567776","node":"E0041887","stoptype":"BCT"},{"AtcoCode":"0170SGB20656","CommonName":"The Crescent","Street":"Alveston Road","Indicator":"NE-bound","lat":"51.58546997793","lon":"-2.55420186261","node":"E0041887","stoptype":"BCT"},{"AtcoCode":"0170SGB20657","CommonName":"The Cross Hands","Street":"Strode Common","Indicator":"W-bound","lat":"51.59113930015","lon":"-2.53772824129","node":"E0041753","stoptype":"BCT"},{"AtcoCode":"0170SGB20658","CommonName":"The Cross Hands","Indicator":"E-bound","lat":"51.59130060752","lon":"-2.53784562805","node":"E0041753","stoptype":"BCT"},{"AtcoCode":"0170SGB20659","CommonName":"Old Down Crossroads","Street":"Alveston Road","Indicator":"W-bound","lat":"51.58316090157","lon":"-2.56140448666","node":"E0041887","stoptype":"BCT"},{"AtcoCode":"0170SGB20660","CommonName":"Old Down Crossroads","Indicator":"E-bound","lat":"51.58333221209","lon":"-2.56130557023","node":"E0041887","stoptype":"BCT"},{"AtcoCode":"0170SGB20662","CommonName":"Elberton","Indicator":"W-bound","lat":"51.59496568161","lon":"-2.5800863382","node":"E0041808","stoptype":"BCT"},{"AtcoCode":"0170SGB20663","CommonName":"Elberton","Indicator":"E-bound","lat":"51.59510033032","lon":"-2.58013136341","node":"E0041808","stoptype":"BCT"},{"AtcoCode":"0170SGB20664","CommonName":"Strode Common","Indicator":"E-bound","lat":"51.59191415702","lon":"-2.53541330275","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGB20665","CommonName":"Strode Common","Street":"Down Road","Indicator":"W-bound","lat":"51.59175166152","lon":"-2.53555574447","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGB20666","CommonName":"Beanhill Crescent","Indicator":"E-bound","lat":"51.59247818993","lon":"-2.53000661334","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGB20667","CommonName":"Beanhill Crescent","Street":"Down Road","Indicator":"W-bound","lat":"51.59237068991","lon":"-2.52991874868","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGB20668","CommonName":"The Castle School","Street":"Park Road","Indicator":"NE-bound","lat":"51.61472924849","lon":"-2.52458992909","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20669","CommonName":"The Castle School","Street":"Park Road","Indicator":"SW-bound","lat":"51.61461281855","lon":"-2.52448748837","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20670","CommonName":"Alexandra Way","Street":"Park Road","Indicator":"NE-bound","lat":"51.61568315107","lon":"-2.52239117016","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20671","CommonName":"Alexandra Way","Street":"Park Road","Indicator":"SW-bound","lat":"51.6156122522","lon":"-2.52215927001","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20672","CommonName":"Howard Road","Indicator":"S-bound","lat":"51.61543242226","lon":"-2.52013521271","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20673","CommonName":"Howard Road","Indicator":"N-bound","lat":"51.61498178808","lon":"-2.5203755844","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20674","CommonName":"Morton Bridge","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.61729753949","lon":"-2.51517357268","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20675","CommonName":"Swallow Park","Indicator":"E-bound","lat":"51.61921304198","lon":"-2.51304311664","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20676","CommonName":"Swallow Park","Street":"Morton Way","Indicator":"W-bound","lat":"51.61909590745","lon":"-2.51309957098","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20677","CommonName":"Osprey Park","Indicator":"S-bound","lat":"51.6178424138","lon":"-2.50982118235","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20678","CommonName":"Osprey Park","Street":"Morton Way","Indicator":"NW-bound","lat":"51.61781449964","lon":"-2.51003752275","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20679","CommonName":"Primrose Drive","Street":"Primrose Drive","Indicator":"E-bound","lat":"51.6126064662","lon":"-2.50843383782","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20680","CommonName":"Bluebell Close","Street":"Primrose Drive","Indicator":"S-bound","lat":"51.61307112789","lon":"-2.5111685793","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20681","CommonName":"Speedwell Close","Street":"Primrose Drive","Indicator":"W-bound","lat":"51.61468653553","lon":"-2.50980024865","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20682","CommonName":"Stokefield Close","Street":"Castle Street","Indicator":"SE-bound","lat":"51.61090474019","lon":"-2.52730412395","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20683","CommonName":"Stokefield Close","Street":"Castle Street","Indicator":"NW-bound","lat":"51.61110951866","lon":"-2.52775418229","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20684","CommonName":"Raglan Place","Street":"Streamleaze","Indicator":"opp","lat":"51.60487619502","lon":"-2.52223820083","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20685","CommonName":"Hazel Crescent","Indicator":"SE-bound","lat":"51.60948860582","lon":"-2.51413203201","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20686","CommonName":"Knapp Road","Street":"Knapp Road","Indicator":"NE-bound","lat":"51.60891133315","lon":"-2.51249370511","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20687","CommonName":"Sibland Way","Indicator":"S-bound","lat":"51.6074721014","lon":"-2.51057137555","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20688","CommonName":"Sibland Way","Street":"Sibland Road","Indicator":"N-bound","lat":"51.60751586202","lon":"-2.51084623214","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20689","CommonName":"Grovesend Road","Indicator":"NW-bound","lat":"51.60603385484","lon":"-2.51254792967","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20690","CommonName":"Grovesend Road","Indicator":"SE-bound","lat":"51.60603461156","lon":"-2.51237466037","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20691","CommonName":"Malvern Drive","Street":"Grovesend Road","Indicator":"SE-bound","lat":"51.60429989942","lon":"-2.50809554127","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20692","CommonName":"Malvern Drive","Street":"Grovesend Road","Indicator":"NW-bound","lat":"51.60419125764","lon":"-2.50826759882","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20693","CommonName":"Cross Hands Farm","Indicator":"N-bound","lat":"51.61196799768","lon":"-2.55030765973","node":"E0041848","stoptype":"BCT"},{"AtcoCode":"0170SGB20694","CommonName":"Cross Hands Farm","Indicator":"S-bound","lat":"51.61195204675","lon":"-2.54987421528","node":"E0041848","stoptype":"BCT"},{"AtcoCode":"0170SGB20695","CommonName":"Manor Farm","Indicator":"N-bound","lat":"51.6207328952","lon":"-2.56950936474","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20696","CommonName":"Manor Farm","Indicator":"S-bound","lat":"51.6207338763","lon":"-2.56930715382","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20697","CommonName":"Oldbury School","Street":"Church Hill","Indicator":"N-bound","lat":"51.62595542813","lon":"-2.56609325363","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20698","CommonName":"Oldbury School","Street":"Church Hill","Indicator":"S-bound","lat":"51.62596567284","lon":"-2.56583335006","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20699","CommonName":"The Anchor Inn","Street":"Church Road","Indicator":"N-bound","lat":"51.6288384159","lon":"-2.56676482488","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20700","CommonName":"Pullens Green","Indicator":"E-bound","lat":"51.6286506053","lon":"-2.56094033216","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20701","CommonName":"Pullens Green","Street":"Chapel Road","Indicator":"W-bound","lat":"51.62849831343","lon":"-2.56082287723","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20702","CommonName":"Pickedmoor Lane","Street":"The Naite","Indicator":"N-bound","lat":"51.62930032333","lon":"-2.55667196942","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20703","CommonName":"Pickedmoor Lane","Street":"The Naite","Indicator":"S-bound","lat":"51.62929188059","lon":"-2.55655628823","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20705","CommonName":"Oldbury House","Indicator":"N-bound","lat":"51.63419581299","lon":"-2.55388551532","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20706","CommonName":"Oldbury House","Street":"The Naite","Indicator":"S-bound","lat":"51.63426024841","lon":"-2.55356842691","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20707","CommonName":"Vine Farm","Street":"The Naite","Indicator":"NE-bound","lat":"51.63560328787","lon":"-2.55286232353","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20708","CommonName":"Vine Farm","Street":"The Naite","Indicator":"SW-bound","lat":"51.63576675576","lon":"-2.55251752931","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20709","CommonName":"Whitehouse Farm","Indicator":"NE-bound","lat":"51.63736546901","lon":"-2.5509763886","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20710","CommonName":"Whitehouse Farm","Street":"The Naite","Indicator":"SW-bound","lat":"51.63741218608","lon":"-2.55060126014","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20711","CommonName":"Meads View","Indicator":"NE-bound","lat":"51.64077110714","lon":"-2.54757837499","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20712","CommonName":"Meads View","Indicator":"SW-bound","lat":"51.6407633968","lon":"-2.54730371563","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20713","CommonName":"Newlands Gout","Indicator":"SE-bound","lat":"51.64270449917","lon":"-2.54559291861","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20714","CommonName":"Newlands Gout","Indicator":"NW-bound","lat":"51.64262284269","lon":"-2.54575090412","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGB20715","CommonName":"Brickhouse Farm","Street":"Shepperdine Road","Indicator":"NW-bound","lat":"51.65693349429","lon":"-2.55036085635","node":"E0041913","stoptype":"BCT"},{"AtcoCode":"0170SGB20716","CommonName":"The Windbound Inn","Street":"Shepperdine Road","Indicator":"NW-bound","lat":"51.66211853394","lon":"-2.56048623486","node":"E0041913","stoptype":"BCT"},{"AtcoCode":"0170SGB20717","CommonName":"Nupdown","Street":"Nupdown Road","Indicator":"SE-bound","lat":"51.66095930453","lon":"-2.53530178551","node":"E0041913","stoptype":"BCT"},{"AtcoCode":"0170SGB20718","CommonName":"Hill","Indicator":"W-bound","lat":"51.65300594546","lon":"-2.51430648229","node":"E0053709","stoptype":"BCT"},{"AtcoCode":"0170SGB20719","CommonName":"Hill","Indicator":"E-bound","lat":"51.65311320246","lon":"-2.51445224458","node":"E0053709","stoptype":"BCT"},{"AtcoCode":"0170SGB20720","CommonName":"Rockhampton","Indicator":"SE-bound","lat":"51.63986111439","lon":"-2.50592087424","node":"E0053722","stoptype":"BCT"},{"AtcoCode":"0170SGB20721","CommonName":"Chapel Farm","Indicator":"S-bound","lat":"51.62782462929","lon":"-2.51353035902","node":"E0041880","stoptype":"BCT"},{"AtcoCode":"0170SGB20722","CommonName":"Manor Farm","Street":"Glouscester Road","Indicator":"NE-bound","lat":"51.62138295374","lon":"-2.51029421889","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20723","CommonName":"Yewtree Farm","Indicator":"E-bound","lat":"51.61982172208","lon":"-2.50119130299","node":"E0041942","stoptype":"BCT"},{"AtcoCode":"0170SGB20724","CommonName":"Yewtree Farm","Street":"Gloucester Road","Indicator":"W-bound","lat":"51.61966044037","lon":"-2.50105952816","node":"E0041942","stoptype":"BCT"},{"AtcoCode":"0170SGB20725","CommonName":"Willow Tree Cottage","Indicator":"NE-bound","lat":"51.62010098652","lon":"-2.49470890146","node":"E0041935","stoptype":"BCT"},{"AtcoCode":"0170SGB20727","CommonName":"Willow Tree Cottage","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.62000275582","lon":"-2.4945489461","node":"E0041935","stoptype":"BCT"},{"AtcoCode":"0170SGB20728","CommonName":"Morton Farm","Indicator":"E-bound","lat":"51.62159349117","lon":"-2.48828278306","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20729","CommonName":"Morton Farm","Street":"Gloucester Road","Indicator":"W-bound","lat":"51.62142182158","lon":"-2.48848316522","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGB20730","CommonName":"Eastwood Lodge","Indicator":"SE-bound","lat":"51.62072173472","lon":"-2.48165785639","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20732","CommonName":"Eastwood Lodge","Street":"Old Gloucester Road","Indicator":"NW-bound","lat":"51.62053375438","lon":"-2.48145364351","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20733","CommonName":"Meriden Cottage","Indicator":"E-bound","lat":"51.6199237281","lon":"-2.47670948378","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20734","CommonName":"Meriden Cottage","Indicator":"NE-bound","lat":"51.61984415844","lon":"-2.47637643339","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20735","CommonName":"Whitfieldgate Farm","Indicator":"NE-bound","lat":"51.62543403483","lon":"-2.46586056483","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20736","CommonName":"Whitfieldgate Farm","Indicator":"SW-bound","lat":"51.62419675849","lon":"-2.4672346604","node":"E0041956","stoptype":"BCT"},{"AtcoCode":"0170SGB20737","CommonName":"Mount Pleasant","Street":"A38","Indicator":"N-bound","lat":"51.63004315792","lon":"-2.4621803686","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20738","CommonName":"Mount Pleasant","Indicator":"S-bound","lat":"51.63031442255","lon":"-2.46179304431","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20739","CommonName":"The Huntsman","Indicator":"N-bound","lat":"51.63730229564","lon":"-2.45908970634","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20740","CommonName":"The Huntsman","Street":"A38","Indicator":"SW-bound","lat":"51.6372676313","lon":"-2.45875701282","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20741","CommonName":"The Gables Hotel","Indicator":"SW-bound","lat":"51.64252090344","lon":"-2.45584752212","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20742","CommonName":"Rose Cottage","Street":"A38","Indicator":"S-bound","lat":"51.65002705716","lon":"-2.45625528648","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGB20743","CommonName":"Tortworth Primary School","Indicator":"SE-bound","lat":"51.63417783804","lon":"-2.43427858561","node":"E0053728","stoptype":"BCT"},{"AtcoCode":"0170SGB20744","CommonName":"Tortworth Primary School","Indicator":"NW-bound","lat":"51.63405217792","lon":"-2.43421959011","node":"E0053728","stoptype":"BCT"},{"AtcoCode":"0170SGB20745","CommonName":"Tortworth Green","Indicator":"SE-bound","lat":"51.63252051799","lon":"-2.43018835984","node":"E0053728","stoptype":"BCT"},{"AtcoCode":"0170SGB20746","CommonName":"Tortworth Green","Indicator":"NW-bound","lat":"51.63272455469","lon":"-2.43094160031","node":"E0053728","stoptype":"BCT"},{"AtcoCode":"0170SGB20747","CommonName":"Elmtree Farm","Street":"B4509","Indicator":"SE-bound","lat":"51.62990346993","lon":"-2.42292546537","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20748","CommonName":"Elmtree Farm","Street":"B4509","Indicator":"NW-bound","lat":"51.62960879554","lon":"-2.42235928037","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20749","CommonName":"Charfield Hill Crossroads","Street":"B4509","Indicator":"S-bound","lat":"51.62549174901","lon":"-2.41452021497","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20750","CommonName":"Charfield Hill Crossroads","Street":"B4509","Indicator":"N-bound","lat":"51.62543703718","lon":"-2.41473640505","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20751","CommonName":"Charfield Primary School","Street":"Wotton Road","Indicator":"W-bound","lat":"51.62710443831","lon":"-2.40846740804","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20752","CommonName":"Charfield Primary School","Street":"Wotton Road","Indicator":"E-bound","lat":"51.62757714231","lon":"-2.40698365518","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20753","CommonName":"Railway Tavern","Street":"Wotton Road","Indicator":"E-bound","lat":"51.62953966506","lon":"-2.39841957337","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20754","CommonName":"Railway Tavern","Street":"Wotton Road","Indicator":"W-bound","lat":"51.62946842323","lon":"-2.398216688","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20757","CommonName":"Manor Lane","Street":"Manor Lane","Indicator":"NE-bound","lat":"51.62665221378","lon":"-2.39878431482","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20758","CommonName":"Moreton Lodge","Indicator":"SW-bound","lat":"51.63077243927","lon":"-2.43365369404","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20759","CommonName":"Moreton Lodge","Indicator":"NE-bound","lat":"51.63078105652","lon":"-2.43375490971","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20760","CommonName":"Leyhill Prison","Indicator":"SW-bound","lat":"51.62926312854","lon":"-2.43574857895","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20761","CommonName":"Leyhill Prison","Indicator":"N-bound","lat":"51.62934313538","lon":"-2.43599494802","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20762","CommonName":"Woodland Road","Indicator":"S-bound","lat":"51.62392301879","lon":"-2.43796533076","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20763","CommonName":"Woodland Road","Indicator":"N-bound","lat":"51.62398514698","lon":"-2.43818261148","node":"E0041855","stoptype":"BCT"},{"AtcoCode":"0170SGB20764","CommonName":"Bibstone Turn","Indicator":"SW-bound","lat":"51.61676902528","lon":"-2.43713093832","node":"E0041765","stoptype":"BCT"},{"AtcoCode":"0170SGB20765","CommonName":"Bibstone Turn","Indicator":"NE-bound","lat":"51.61684020002","lon":"-2.43733382746","node":"E0041765","stoptype":"BCT"},{"AtcoCode":"0170SGB20766","CommonName":"Stowell Hill Road","Street":"Stowell Hill Road","Indicator":"SE-bound","lat":"51.59627505452","lon":"-2.48363677167","node":"E0053729","stoptype":"BCT"},{"AtcoCode":"0170SGB20767","CommonName":"Stowell Hill Road","Street":"Stowell Hill Road","Indicator":"NW-bound","lat":"51.59620235282","lon":"-2.48382367599","node":"E0053729","stoptype":"BCT"},{"AtcoCode":"0170SGB20768","CommonName":"Shale Cottage","Street":"Wotton Road","Indicator":"N-bound","lat":"51.56040007261","lon":"-2.45188081531","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20769","CommonName":"Shale Cottage","Street":"Wotton Road","Indicator":"S-bound","lat":"51.56043731474","lon":"-2.45154940173","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20771","CommonName":"Rangeworthy Chapel","Street":"Wotton Road","Indicator":"NE-bound","lat":"51.56752166228","lon":"-2.44708935659","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20772","CommonName":"Rangeworthy Chapel","Indicator":"SW-bound","lat":"51.56744156719","lon":"-2.44687215716","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20773","CommonName":"New Road","Street":"Wotton Road","Indicator":"S-bound","lat":"51.5697088587","lon":"-2.44649040749","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20774","CommonName":"New Road","Street":"Wotton Road","Indicator":"N-bound","lat":"51.56978873464","lon":"-2.44676532813","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20775","CommonName":"The Rose and Crown","Street":"Wotten Road","Indicator":"S-bound","lat":"51.57370702956","lon":"-2.44963195254","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20776","CommonName":"The Rose and Crown","Street":"Worren Road","Indicator":"N-bound","lat":"51.57368799623","lon":"-2.44990592583","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20777","CommonName":"Little Bagstone Farm","Indicator":"S-bound","lat":"51.581902973","lon":"-2.44838512612","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20778","CommonName":"Little Bagstone Farm","Indicator":"N-bound","lat":"51.581901759","lon":"-2.44870262119","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20779","CommonName":"Whitehouse Farm","Street":"Bagstone Road","Indicator":"S-bound","lat":"51.58827282495","lon":"-2.44970363722","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20780","CommonName":"Whitehouse Farm","Street":"Bagstone Road","Indicator":"N-bound","lat":"51.58833498752","lon":"-2.44990632978","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20781","CommonName":"Winpenny Bridge","Street":"Bagstone Road","Indicator":"SW-bound","lat":"51.59354724406","lon":"-2.44591582022","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20782","CommonName":"Winpenny Bridge","Street":"Bagstone Road","Indicator":"NE-bound","lat":"51.59362755983","lon":"-2.44607540149","node":"E0041759","stoptype":"BCT"},{"AtcoCode":"0170SGB20783","CommonName":"Cowship Lane","Street":"Bristol Road","Indicator":"S-bound","lat":"51.60060968918","lon":"-2.44003654633","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20784","CommonName":"Cowship Lane","Indicator":"N-bound","lat":"51.60068102177","lon":"-2.44019605512","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20785","CommonName":"Heath End Cottages","Street":"Bristol Road","Indicator":"N-bound","lat":"51.60460841248","lon":"-2.43828474493","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20786","CommonName":"Heath End Cottages","Street":"Bristol Road","Indicator":"S-bound","lat":"51.60468136527","lon":"-2.43801110002","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20787","CommonName":"Heathend Garage","Street":"Bristol Road","Indicator":"opp","lat":"51.60881724157","lon":"-2.43805092419","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20788","CommonName":"Heathend Garage","Street":"Bristol Road","Indicator":"N-bound","lat":"51.6088618193","lon":"-2.43815243823","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20789","CommonName":"Longcross","Street":"Longcross","Indicator":"N-bound","lat":"51.61159088053","lon":"-2.43930516819","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20790","CommonName":"Longcross","Street":"Longcross","Indicator":"S-bound","lat":"51.6116636736","lon":"-2.43907480617","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20791","CommonName":"Wotton Road","Street":"B4058","Indicator":"N-bound","lat":"51.61442132192","lon":"-2.43979466685","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20792","CommonName":"Wotton Road","Street":"B4058","Indicator":"S-bound","lat":"51.6145304587","lon":"-2.43946354522","node":"E0041798","stoptype":"BCT"},{"AtcoCode":"0170SGB20793","CommonName":"Rangeworthy Chapel","Indicator":"E-bound","lat":"51.5668396041","lon":"-2.44675083348","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20794","CommonName":"Manor Road","Street":"Manor Road","Indicator":"S-bound","lat":"51.56570504052","lon":"-2.44244045971","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20795","CommonName":"Manor Road","Street":"Manor Road","Indicator":"N-bound","lat":"51.56576743389","lon":"-2.4425853359","node":"E0053721","stoptype":"BCT"},{"AtcoCode":"0170SGB20796","CommonName":"Tanhouse Lane","Indicator":"S-bound","lat":"51.56270248413","lon":"-2.43749201827","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGB20797","CommonName":"The Codrington Arms","Street":"North Road","Indicator":"S-bound","lat":"51.55358209105","lon":"-2.43590445888","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGB20798","CommonName":"The Codrington Arms","Street":"North Road","Indicator":"N-bound","lat":"51.55369822494","lon":"-2.43610749445","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGB20799","CommonName":"Broad Lane","Street":"North Road","Indicator":"S-bound","lat":"51.55024033879","lon":"-2.43507928559","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGB20800","CommonName":"Broad Lane","Street":"North Road","Indicator":"N-bound","lat":"51.55026656296","lon":"-2.43528144556","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGB20801","CommonName":"High Street","Indicator":"N-bound","lat":"51.59352590064","lon":"-2.39943230375","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGB20802","CommonName":"Poplar Lane","Street":"Sodbury Road","Indicator":"S-bound","lat":"51.58847702183","lon":"-2.39817552461","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGB20803","CommonName":"Poplar Lane","Street":"Sodbury Road","Indicator":"N-bound","lat":"51.58862038956","lon":"-2.39832112118","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGB20804","CommonName":"Hill House","Indicator":"S-bound","lat":"51.57996681438","lon":"-2.3994576605","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGB20805","CommonName":"Hill House","Street":"Wickwar Road","Indicator":"N-bound","lat":"51.5800919527","lon":"-2.39967523149","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGB20806","CommonName":"Love Lane","Indicator":"S-bound","lat":"51.561213906","lon":"-2.39852867455","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGB20807","CommonName":"Love Lane","Street":"Wickwar Road","Indicator":"N-bound","lat":"51.56123090758","lon":"-2.39881733469","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGB20808","CommonName":"Little Bristol","Street":"Little Bristol Lane","Indicator":"S-bound","lat":"51.62017157335","lon":"-2.39550640265","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGB20809","CommonName":"The Bell Hotel","Street":"Badminton Road","Indicator":"W-bound","lat":"51.53352060046","lon":"-2.3794582912","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGB20810","CommonName":"The Bell Hotel","Indicator":"E-bound","lat":"51.53363846564","lon":"-2.3791565182","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGB20811","CommonName":"Colts Green","Indicator":"E-bound","lat":"51.53388975962","lon":"-2.37086887899","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGB20812","CommonName":"Colts Green","Street":"Badminton Road","Indicator":"W-bound","lat":"51.53379049131","lon":"-2.37098340682","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGB20813","CommonName":"Commonmead Lane","Indicator":"E-bound","lat":"51.53285592535","lon":"-2.36218168529","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20814","CommonName":"Commonmead Lane","Street":"Badminton Road","Indicator":"W-bound","lat":"51.53260834911","lon":"-2.36082456733","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20815","CommonName":"The Dog Inn","Street":"Badminton Road","Indicator":"E-bound","lat":"51.53218921057","lon":"-2.35675583331","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20816","CommonName":"The Dog Inn","Street":"Badminton Road","Indicator":"W-bound","lat":"51.53221341719","lon":"-2.35766425479","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20817","CommonName":"Camers","Street":"A432","Indicator":"S-bound","lat":"51.52874022771","lon":"-2.35254842413","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20818","CommonName":"Camers","Street":"A432","Indicator":"N-bound","lat":"51.52884764576","lon":"-2.35270782289","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20819","CommonName":"The Cross Hands","Street":"A46","Indicator":"N-bound","lat":"51.5292537682","lon":"-2.34311027705","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20820","CommonName":"The Cross Hands","Indicator":"E-bound","lat":"51.52878862463","lon":"-2.34228510613","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20821","CommonName":"Hollybush Close","Indicator":"E-bound","lat":"51.52617073888","lon":"-2.27444543381","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGB20822","CommonName":"Rail Bridge","Street":"Badminton Road","Indicator":"S-bound","lat":"51.53018405932","lon":"-2.27693467469","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGB20823","CommonName":"Old Down Cottages","Street":"Old Down Road","Indicator":"W-bound","lat":"51.53901491109","lon":"-2.28392362032","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"0170SGB20824","CommonName":"Old Down Cottages","Indicator":"E-bound","lat":"51.53919463217","lon":"-2.28396799534","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"0170SGB20825","CommonName":"Newhouse Farm","Street":"B4040","Indicator":"N-bound","lat":"51.52920431134","lon":"-2.3091760014","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"0170SGB20826","CommonName":"The Cross Hands","Street":"A46","Indicator":"N-bound","lat":"51.52779924942","lon":"-2.34239300156","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGB20827","CommonName":"The Major's Retreat","Street":"Church Road","Indicator":"S-bound","lat":"51.50729433853","lon":"-2.33455943676","node":"E0053727","stoptype":"BCT"},{"AtcoCode":"0170SGB20828","CommonName":"The Major's Retreat","Street":"Church Road","Indicator":"N-bound","lat":"51.50744661468","lon":"-2.33476227268","node":"E0053727","stoptype":"BCT"},{"AtcoCode":"0170SGB20829","CommonName":"Horton Turn","Indicator":"SW-bound","lat":"51.5550549252","lon":"-2.32243357242","node":"E0041899","stoptype":"BCT"},{"AtcoCode":"0170SGB20830","CommonName":"Horton Turn","Indicator":"NE-bound","lat":"51.55510835686","lon":"-2.32262145742","node":"E0041899","stoptype":"BCT"},{"AtcoCode":"0170SGB20832","CommonName":"Petty France Hotel","Indicator":"N-bound","lat":"51.56784297313","lon":"-2.30821188236","node":"E0041899","stoptype":"BCT"},{"AtcoCode":"0170SGB20833","CommonName":"Petty France Hotel","Indicator":"S-bound","lat":"51.56804168974","lon":"-2.30786696248","node":"E0041899","stoptype":"BCT"},{"AtcoCode":"0170SGB20834","CommonName":"Dunkirk Crossroads","Street":"Stroud Road","Indicator":"SW-bound","lat":"51.57168108528","lon":"-2.30523665911","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGB20835","CommonName":"Dunkirk Crossroads","Street":"Stroud Road","Indicator":"NE-bound","lat":"51.57176148034","lon":"-2.30543920221","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGB20836","CommonName":"Starveall Farm","Indicator":"S-bound","lat":"51.58913381129","lon":"-2.29449905623","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"0170SGB20837","CommonName":"Starveall Farm","Indicator":"N-bound","lat":"51.58930424541","lon":"-2.29465893789","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"0170SGB20838","CommonName":"Britain Bottom","Street":"France Lane","Indicator":"N-bound","lat":"51.57555938555","lon":"-2.31093367819","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20839","CommonName":"Britain Bottom","Street":"France Lane","Indicator":"S-bound","lat":"51.57556902692","lon":"-2.31068843269","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20840","CommonName":"The Fox Inn","Street":"High Street","Indicator":"E-bound","lat":"51.58103825458","lon":"-2.31980336898","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20841","CommonName":"The Fox Inn","Street":"High Street","Indicator":"W-bound","lat":"51.58093043891","lon":"-2.31977374801","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20842","CommonName":"The Beaufort Arms","Street":"High Street","Indicator":"W-bound","lat":"51.58146299744","lon":"-2.32230308009","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20843","CommonName":"The Beaufort Arms","Street":"High Street","Indicator":"E-bound","lat":"51.58158887417","lon":"-2.3223039713","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20844","CommonName":"Hawkesbury Upton Pond","Indicator":"SE-bound","lat":"51.58450116058","lon":"-2.32588952169","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGB20845","CommonName":"School","Street":"Horton Hill","Indicator":"E-bound","lat":"51.55684363745","lon":"-2.34476040636","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20846","CommonName":"School","Street":"Horton Hill","Indicator":"W-bound","lat":"51.55670872685","lon":"-2.34477380972","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20847","CommonName":"Post Office","Street":"Horton Hill","Indicator":"SE-bound","lat":"51.55774391673","lon":"-2.34742131695","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20848","CommonName":"Post Office","Street":"Horton Hill","Indicator":"NW-bound","lat":"51.55761761237","lon":"-2.347564598","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20849","CommonName":"Social Club","Street":"Horton Road","Indicator":"W-bound","lat":"51.55923785456","lon":"-2.35298630398","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20850","CommonName":"Social Club","Indicator":"E-bound","lat":"51.55941750489","lon":"-2.35304539571","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20851","CommonName":"Mapleridge Lane","Street":"Horton Road","Indicator":"W-bound","lat":"51.55764033556","lon":"-2.36087851045","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20853","CommonName":"Mapleridge Lane","Indicator":"E-bound","lat":"51.55784757686","lon":"-2.36073590692","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20854","CommonName":"Totteroak Farm","Street":"Horton Road","Indicator":"SW-bound","lat":"51.55563327256","lon":"-2.36442529108","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20855","CommonName":"Totteroak Farm","Street":"Horton Road","Indicator":"NE-bound","lat":"51.55562342941","lon":"-2.36469926428","node":"E0053710","stoptype":"BCT"},{"AtcoCode":"0170SGB20856","CommonName":"High Street","Indicator":"S-bound","lat":"51.59359846826","lon":"-2.39924527497","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGP90411","CommonName":"The Ridge","Street":"Station Road","Indicator":"SE-bound","lat":"51.54032204039","lon":"-2.40516621768","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90412","CommonName":"The Ridge","Street":"Station Road","Indicator":"NW-bound","lat":"51.54019591481","lon":"-2.40523719158","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90413","CommonName":"Wickwar Road","Street":"Wickwar Road","Indicator":"N-bound","lat":"51.5398370301","lon":"-2.39446315291","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90414","CommonName":"Wickwar Road","Street":"Wickwar Road","Indicator":"S-bound","lat":"51.53883205247","lon":"-2.39384888268","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90415","CommonName":"The Clock","Street":"High Street","Indicator":"W-bound","lat":"51.53810946004","lon":"-2.39482308331","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90416","CommonName":"The Clock","Street":"High Street","Indicator":"E-bound","lat":"51.53820136091","lon":"-2.39423272918","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90418","CommonName":"Caroline Close","Street":"St Johns Way","Indicator":"W-bound","lat":"51.54219272171","lon":"-2.39180149706","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90419","CommonName":"Dowding Close","Street":"St Johns Way","Indicator":"W-bound","lat":"51.54232417519","lon":"-2.39012995423","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90420","CommonName":"Dowding Close","Street":"St Johns Way","Indicator":"E-bound","lat":"51.5424730139","lon":"-2.38863158562","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90421","CommonName":"Vayre Close","Street":"St Johns Way","Indicator":"NW-bound","lat":"51.54091225127","lon":"-2.38476837141","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90422","CommonName":"Grace Close","Street":"St Johns Way","Indicator":"S-bound","lat":"51.54037457603","lon":"-2.38421591324","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90423","CommonName":"Jenner Close","Street":"St Johns Way","Indicator":"S-bound","lat":"51.53665627468","lon":"-2.38294465383","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90424","CommonName":"Jenner Close","Street":"St Johns Way","Indicator":"N-bound","lat":"51.53665570951","lon":"-2.38311766263","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90425","CommonName":"Wickham Close","Street":"St Johns Way","Indicator":"S-bound","lat":"51.5345668728","lon":"-2.38397956001","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90426","CommonName":"Wickham Close","Street":"St Johns Way","Indicator":"N-bound","lat":"51.53460245988","lon":"-2.38409519682","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90427","CommonName":"The Boot","Street":"Horse Street","Indicator":"NW-bound","lat":"51.53630872762","lon":"-2.38746888903","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90428","CommonName":"The Boot","Indicator":"SE-bound","lat":"51.53702525736","lon":"-2.38831121624","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90429","CommonName":"Cotswold Road Roundabout","Indicator":"E-bound","lat":"51.53431577339","lon":"-2.38651484797","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90430","CommonName":"Hounds Road","Street":"Cotswold Road","Indicator":"W-bound","lat":"51.53442341494","lon":"-2.39200867263","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90431","CommonName":"Hounds Road","Street":"Cotswold Road","Indicator":"E-bound","lat":"51.534629634","lon":"-2.3921834511","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90432","CommonName":"Mallard Close","Street":"Heron Way","Indicator":"N-bound","lat":"51.53457597847","lon":"-2.40270750503","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90433","CommonName":"Mallard Close","Street":"Heron Way","Indicator":"S-bound","lat":"51.53452297179","lon":"-2.40243311152","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90434","CommonName":"Goldcrest Road","Street":"Heron Way","Indicator":"E-bound","lat":"51.53076731459","lon":"-2.40684008624","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90435","CommonName":"Goldcrest Road","Street":"Heron Way","Indicator":"W-bound","lat":"51.53071506707","lon":"-2.40634947867","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGP90436","CommonName":"Dovecote","Street":"Rodford Way","Indicator":"W-bound","lat":"51.53070397943","lon":"-2.41465295351","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90437","CommonName":"Dovecote","Street":"Rodford Way","Indicator":"E-bound","lat":"51.53089136609","lon":"-2.41505830459","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90439","CommonName":"Bredon","Street":"Rodford Way","Indicator":"W-bound","lat":"51.52985036496","lon":"-2.41954651819","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90440","CommonName":"Bredon","Street":"Rodford Way","Indicator":"E-bound","lat":"51.53006599843","lon":"-2.41959174865","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90441","CommonName":"Abbotswood","Street":"Rodford Way","Indicator":"W-bound","lat":"51.52837187119","lon":"-2.42561613272","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90442","CommonName":"Abbotswood","Street":"Rodford Way","Indicator":"E-bound","lat":"51.52855206084","lon":"-2.42551690711","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90443","CommonName":"Pitchcombe","Street":"Rodford Way","Indicator":"E-bound","lat":"51.52985068774","lon":"-2.42939241877","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90444","CommonName":"Pitchcombe","Street":"Rodford Way","Indicator":"W-bound","lat":"51.52970482185","lon":"-2.42993883924","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90445","CommonName":"Blaisdon","Street":"Shire Way","Indicator":"N-bound","lat":"51.52867136055","lon":"-2.41480746061","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90446","CommonName":"Littledean","Indicator":"SW-bound","lat":"51.52585497638","lon":"-2.4153872575","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90447","CommonName":"Littledean","Street":"Shire Way","Indicator":"NE-bound","lat":"51.52595347085","lon":"-2.41550346972","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90448","CommonName":"Cherington","Indicator":"SW-bound","lat":"51.52367668011","lon":"-2.42108966853","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90451","CommonName":"Cherington","Street":"Shire Way","Indicator":"NE-bound","lat":"51.52383862494","lon":"-2.42106233563","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90456","CommonName":"Blaisdon","Street":"Shire Way","Indicator":"S-bound","lat":"51.52830348677","lon":"-2.41458788796","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90459","CommonName":"Badgeworth","Street":"Shire Way","Indicator":"W-bound","lat":"51.52325143948","lon":"-2.4267935211","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90460","CommonName":"Badgeworth","Street":"Shire Way","Indicator":"E-bound","lat":"51.52328019581","lon":"-2.42630372807","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90461","CommonName":"Brockworth","Street":"Shire Way","Indicator":"S-bound","lat":"51.5259499994","lon":"-2.43140255488","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90462","CommonName":"Brockworth","Indicator":"NW-bound","lat":"51.5257610788","lon":"-2.43142959724","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90463","CommonName":"Rodborough","Street":"Shire Way","Indicator":"S-bound","lat":"51.52722292195","lon":"-2.43245246003","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90464","CommonName":"Rodborough","Street":"Shire Way","Indicator":"N-bound","lat":"51.52806500483","lon":"-2.43329651847","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90465","CommonName":"Goose Green Way","Street":"Goose Green Way","Indicator":"N-bound","lat":"51.54538712485","lon":"-2.40950855923","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90466","CommonName":"Goose Green Way","Street":"Goose Green Way","Indicator":"S-bound","lat":"51.54550426174","lon":"-2.4094375084","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90467","CommonName":"Gravel Hill Road","Street":"Gravel Hill Road","Indicator":"E-bound","lat":"51.55090683995","lon":"-2.40980332715","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90468","CommonName":"Gravel Hill Road","Street":"Gravel Hill Road","Indicator":"W-bound","lat":"51.55070120205","lon":"-2.40946976667","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90469","CommonName":"Hampshire Way","Street":"Greenways Road","Indicator":"SE-bound","lat":"51.55193678267","lon":"-2.40580309462","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90470","CommonName":"Hampshire Way","Street":"Greenways Road","Indicator":"NW-bound","lat":"51.55172154375","lon":"-2.40564253005","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90471","CommonName":"Carmarthen Close","Street":"Greenways Road","Indicator":"NW-bound","lat":"51.55016365126","lon":"-2.40372495207","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90472","CommonName":"Carmarthen Close","Street":"Greenways Road","Indicator":"SE-bound","lat":"51.55029866763","lon":"-2.4036828816","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90473","CommonName":"Dorset Way","Street":"Greenways Road","Indicator":"E-bound","lat":"51.54776281183","lon":"-2.40376137406","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90474","CommonName":"Dorset Way","Street":"Greenways Road","Indicator":"W-bound","lat":"51.54762754706","lon":"-2.40387554616","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90475","CommonName":"Rectory Close","Indicator":"E-bound","lat":"51.54756657835","lon":"-2.41107121163","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90476","CommonName":"Ullswater Close","Street":"Greenways Road","Indicator":"SW-bound","lat":"51.54653179734","lon":"-2.41384512006","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90477","CommonName":"Cheshire Close","Street":"Greenways Road","Indicator":"E-bound","lat":"51.54632925144","lon":"-2.41518442187","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90478","CommonName":"Cheshire Close","Street":"Wellington Road","Indicator":"S-bound","lat":"51.54659489597","lon":"-2.41634051716","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90479","CommonName":"Lancaster Road","Street":"Wellington Road","Indicator":"N-bound","lat":"51.54701671201","lon":"-2.41656068576","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90482","CommonName":"The Farmhouse","Street":"Wellington Road","Indicator":"N-bound","lat":"51.54945064757","lon":"-2.41733286404","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90483","CommonName":"The Farmhouse","Street":"Wellington Road","Indicator":"S-bound","lat":"51.54912758195","lon":"-2.41715684528","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90484","CommonName":"Sturmer Close","Street":"Wellington Road","Indicator":"N-bound","lat":"51.55031395168","lon":"-2.41729750169","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90485","CommonName":"Sturmer Close","Street":"Wellington Road","Indicator":"S-bound","lat":"51.55075508225","lon":"-2.4171428953","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90486","CommonName":"Longcroft","Street":"Randolph Avenue","Indicator":"N-bound","lat":"51.55289320482","lon":"-2.42017685877","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90487","CommonName":"Longcroft","Street":"Randolph Avenue","Indicator":"S-bound","lat":"51.55292963437","lon":"-2.42004738801","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90488","CommonName":"Randolph Avenue","Street":"Randolph Avenue","Indicator":"N-bound","lat":"51.55516801434","lon":"-2.42018340756","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90489","CommonName":"Randolph Avenue","Street":"Randolph Avenue","Indicator":"S-bound","lat":"51.55516853101","lon":"-2.4200391757","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90490","CommonName":"Peartree Hey","Street":"Eastfield Drive","Indicator":"SE-bound","lat":"51.55491027245","lon":"-2.41682033701","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90491","CommonName":"Peartree Hey","Street":"Eastfield Drive","Indicator":"NW-bound","lat":"51.55485596673","lon":"-2.41692080527","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90492","CommonName":"Summers Mead","Street":"Eastfield Drive","Indicator":"NW-bound","lat":"51.55374878717","lon":"-2.41473277201","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90494","CommonName":"Barkers Mead","Indicator":"N-bound","lat":"51.55296965499","lon":"-2.41129301673","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90495","CommonName":"Shopping Centre","Indicator":"Stop C","lat":"51.53964939987","lon":"-2.4098463351","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90496","CommonName":"Shopping Centre","Indicator":"Stop B","lat":"51.53964919828","lon":"-2.4099040083","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90497","CommonName":"Shopping Centre","Indicator":"Stop A","lat":"51.53964899666","lon":"-2.4099616815","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90498","CommonName":"Wentworth","Street":"Sundridge Park","Indicator":"N-bound","lat":"51.53779152145","lon":"-2.41401090548","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90499","CommonName":"Wentworth","Street":"Sundridge Park","Indicator":"SW-bound","lat":"51.53710712313","lon":"-2.41430746913","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90500","CommonName":"Sunningdale","Street":"Sundridge Park","Indicator":"S-bound","lat":"51.533934314","lon":"-2.41651327395","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90501","CommonName":"Sunningdale","Street":"Sundridge Park","Indicator":"N-bound","lat":"51.53334007699","lon":"-2.4167385155","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90502","CommonName":"Northfield","Street":"St Briavels Drive","Indicator":"E-bound","lat":"51.53299784296","lon":"-2.41941688619","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90503","CommonName":"Northfield","Street":"St Briavels Drive","Indicator":"W-bound","lat":"51.53296022726","lon":"-2.41987787287","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90504","CommonName":"Prescott","Street":"St Briavels Drive","Indicator":"W-bound","lat":"51.5334316955","lon":"-2.42378916392","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90505","CommonName":"Prescott","Street":"St Briavels Drive","Indicator":"E-bound","lat":"51.53349510251","lon":"-2.42366000175","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90507","CommonName":"Deerhurst","Street":"Barnwood Road","Indicator":"E-bound","lat":"51.53190215241","lon":"-2.42654288445","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90509","CommonName":"Hardwicke","Street":"Barnwood Road","Indicator":"S-bound","lat":"51.5302608233","lon":"-2.4278826211","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90510","CommonName":"The White Lion","Street":"Station Road","Indicator":"E-bound","lat":"51.54165548135","lon":"-2.4146804422","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90511","CommonName":"Morrisons","Street":"Station Road","Indicator":"W-bound","lat":"51.54149655127","lon":"-2.41639489805","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90512","CommonName":"Mow Barton","Street":"Station Road","Indicator":"E-bound","lat":"51.54081540363","lon":"-2.420815349","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90513","CommonName":"Mow Barton","Street":"Station Road","Indicator":"W-bound","lat":"51.54071629391","lon":"-2.42087211071","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90514","CommonName":"Longs Drive","Street":"Station Road","Indicator":"E-bound","lat":"51.54079650413","lon":"-2.42604931527","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90515","CommonName":"Longs Drive","Street":"Station Road","Indicator":"W-bound","lat":"51.54066121772","lon":"-2.42616340385","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90516","CommonName":"Yate Station","Street":"Station Road","Indicator":"W-bound","lat":"51.54077959685","lon":"-2.43067769388","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90517","CommonName":"Yate Station","Street":"Station Road","Indicator":"E-bound","lat":"51.54090721945","lon":"-2.43020306706","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90518","CommonName":"Stover Road","Street":"Badminton Road","Indicator":"E-bound","lat":"51.54079873917","lon":"-2.43523431822","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90519","CommonName":"Stover Road","Street":"Badminton Road","Indicator":"W-bound","lat":"51.54034786591","lon":"-2.43799845972","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90520","CommonName":"The Swan","Street":"Badminton Road","Indicator":"E-bound","lat":"51.53899751246","lon":"-2.4432194267","node":"E0041881","stoptype":"BCT"},{"AtcoCode":"0170SGP90521","CommonName":"The Swan","Indicator":"W-bound","lat":"51.53874467047","lon":"-2.4435053389","node":"E0041881","stoptype":"BCT"},{"AtcoCode":"0170SGP90522","CommonName":"The New Inn","Indicator":"NE-bound","lat":"51.53576349047","lon":"-2.45652422325","node":"E0041871","stoptype":"BCT"},{"AtcoCode":"0170SGP90524","CommonName":"The New Inn","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.53559322032","lon":"-2.456378344","node":"E0041871","stoptype":"BCT"},{"AtcoCode":"0170SGP90525","CommonName":"Church Road","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.53101731863","lon":"-2.46306485546","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90526","CommonName":"Church Road","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.5305390806","lon":"-2.46349247772","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90527","CommonName":"Heathcote Drive","Street":"Badminton Road","Indicator":"S-bound","lat":"51.52767430857","lon":"-2.46713919602","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90528","CommonName":"Heathcote Drive","Indicator":"NE-bound","lat":"51.52722141891","lon":"-2.46797062018","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90530","CommonName":"St Saviour's Church","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.52466527565","lon":"-2.47085603996","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90531","CommonName":"St Saviour's Church","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.52430238681","lon":"-2.47165947528","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90532","CommonName":"Station Road","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.52227657032","lon":"-2.47456443387","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90533","CommonName":"Station Road","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.52207853234","lon":"-2.47462002722","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90534","CommonName":"Park Lane","Street":"A432","Indicator":"SW-bound","lat":"51.51607859451","lon":"-2.48405470461","node":"E0041846","stoptype":"BCT"},{"AtcoCode":"0170SGP90535","CommonName":"Park Lane","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.51572430856","lon":"-2.48493003231","node":"E0041846","stoptype":"BCT"},{"AtcoCode":"0170SGP90536","CommonName":"Down Road","Street":"A432","Indicator":"SW-bound","lat":"51.5124247197","lon":"-2.4870276872","node":"E0041846","stoptype":"BCT"},{"AtcoCode":"0170SGP90537","CommonName":"Down Road","Street":"A432","Indicator":"NE-bound","lat":"51.51218052245","lon":"-2.48737092455","node":"E0041846","stoptype":"BCT"},{"AtcoCode":"0170SGP90538","CommonName":"Cuckoo Lane","Street":"A432","Indicator":"N-bound","lat":"51.50796289196","lon":"-2.48967453175","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90539","CommonName":"Cuckoo Lane","Indicator":"S-bound","lat":"51.50748618194","lon":"-2.48971264482","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90540","CommonName":"Wick Wick","Street":"Badminton Road","Indicator":"NW-bound","lat":"51.50453359976","lon":"-2.49051662469","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90541","CommonName":"Wick Wick","Street":"Badminton Road","Indicator":"S-bound","lat":"51.50353733192","lon":"-2.49008810832","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90542","CommonName":"The Trident","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.50080324073","lon":"-2.49239262359","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90543","CommonName":"The Trident","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.49999101163","lon":"-2.49310417979","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90546","CommonName":"Leap Bridge","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.49902610312","lon":"-2.49590292527","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGP90547","CommonName":"Leap Bridge","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.49839227129","lon":"-2.49694766419","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGP90548","CommonName":"Sandringham Avenue","Street":"Badminton Road","Indicator":"S-bound","lat":"51.49585302588","lon":"-2.49991627058","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90549","CommonName":"Sandringham Avenue","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.49614098762","lon":"-2.49986180207","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90550","CommonName":"Caroline Close","Street":"St Johns Way","Indicator":"E-bound","lat":"51.54226465121","lon":"-2.39180211517","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90552","CommonName":"Oakdale Road","Indicator":"S-bound","lat":"51.49180480144","lon":"-2.50249344097","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90554","CommonName":"The Horseshoe","Street":"Badminton Road","Indicator":"SW-bound","lat":"51.48877194845","lon":"-2.5031226096","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90555","CommonName":"The Horseshoe","Street":"Badminton Road","Indicator":"N-bound","lat":"51.48884301196","lon":"-2.50332503084","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90556","CommonName":"Christchurch Avenue","Street":"Downend Road","Indicator":"W-bound","lat":"51.4864738265","lon":"-2.50851246233","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90558","CommonName":"Christchurch Avenue","Street":"Downend Road","Indicator":"E-bound","lat":"51.48659171052","lon":"-2.5082833414","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90559","CommonName":"Hurstwood Road","Street":"Downend Road","Indicator":"SW-bound","lat":"51.48600758997","lon":"-2.51233817167","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90560","CommonName":"Hurstwood Road","Street":"Downend Road","Indicator":"NE-bound","lat":"51.48597904249","lon":"-2.5126978982","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90561","CommonName":"Cassell Road","Street":"Downend Road","Indicator":"NE-bound","lat":"51.48508654642","lon":"-2.5152801693","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGP90565","CommonName":"Frenchay Hospital","Street":"Frenchay Park Road","Indicator":"SW-bound","lat":"51.49838419968","lon":"-2.52760306362","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90566","CommonName":"Frenchay Hospital","Street":"Bristol Road","Indicator":"NE-bound","lat":"51.49893375761","lon":"-2.52736451085","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90567","CommonName":"Beckspool Road","Street":"Bristol Road","Indicator":"NE-bound","lat":"51.50280675979","lon":"-2.52186247427","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90569","CommonName":"Beckspool Road","Street":"Bristol Road","Indicator":"SW-bound","lat":"51.50267157286","lon":"-2.52193296502","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90570","CommonName":"The Stream","Street":"Bristol Road","Indicator":"N-bound","lat":"51.50628768424","lon":"-2.5195681183","node":"E0041825","stoptype":"BCT"},{"AtcoCode":"0170SGP90572","CommonName":"The Crown","Street":"Bristol Road","Indicator":"W-bound","lat":"51.50851803937","lon":"-2.51743215356","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90573","CommonName":"The Crown","Street":"Bristol Road","Indicator":"E-bound","lat":"51.50862593236","lon":"-2.51743337635","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90574","CommonName":"Whiteshill Church","Street":"Bristol Road","Indicator":"S-bound","lat":"51.51123581192","lon":"-2.51280858269","node":"E0041905","stoptype":"BCT"},{"AtcoCode":"0170SGP90575","CommonName":"Whiteshill Church","Street":"Bristol Road","Indicator":"N-bound","lat":"51.51125316378","lon":"-2.51295287593","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90576","CommonName":"Quarry Barton","Street":"Bristol Road","Indicator":"S-bound","lat":"51.51337978279","lon":"-2.51189598506","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90577","CommonName":"Quarry Barton","Street":"Bristol Road","Indicator":"N-bound","lat":"51.51346937904","lon":"-2.51196904246","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90578","CommonName":"Post Office","Street":"Flaxpits Lane","Indicator":"E-bound","lat":"51.52280331062","lon":"-2.50766323345","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90579","CommonName":"The George and Dragon","Street":"Dragon Road","Indicator":"S-bound","lat":"51.52229481288","lon":"-2.50881064165","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90580","CommonName":"Whiteshill Common","Street":"Worrel's Lane","Indicator":"W-bound","lat":"51.51052526774","lon":"-2.51079766639","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90581","CommonName":"Whiteshill Common","Indicator":"E-bound","lat":"51.51059719645","lon":"-2.51079847119","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90582","CommonName":"Worrells Lane","Street":"Worrel's Lane","Indicator":"NE-bound","lat":"51.51232463033","lon":"-2.50640828859","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90583","CommonName":"Worrells Lane","Indicator":"SW-bound","lat":"51.5122714927","lon":"-2.50622036714","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90584","CommonName":"Mill Road","Street":"Mill Road","Indicator":"SE-bound","lat":"51.51418640849","lon":"-2.50628483575","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90585","CommonName":"Mill Road","Street":"Mill Road","Indicator":"NW-bound","lat":"51.51417704404","lon":"-2.5063711964","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90586","CommonName":"Dragon Road","Street":"Dragon Road","Indicator":"S-bound","lat":"51.51849365","lon":"-2.50829266322","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90587","CommonName":"Dragon Road","Street":"Dragon Road","Indicator":"N-bound","lat":"51.51904079353","lon":"-2.50860141502","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90588","CommonName":"The George and Dragon","Street":"High Street","Indicator":"N-bound","lat":"51.52315708014","lon":"-2.50902204647","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90589","CommonName":"Parkside Avenue","Street":"High Street","Indicator":"SW-bound","lat":"51.52599238195","lon":"-2.5062572674","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90590","CommonName":"Parkside Avenue","Street":"High Street","Indicator":"NE-bound","lat":"51.5261901233","lon":"-2.50627387602","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90591","CommonName":"The Swan","Street":"High Street","Indicator":"S-bound","lat":"51.52908873055","lon":"-2.50340853462","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90592","CommonName":"The Swan","Street":"High Street","Indicator":"N-bound","lat":"51.52906988189","lon":"-2.50361014297","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90593","CommonName":"Flaxpits Lane","Street":"Bradley Avenue","Indicator":"S-bound","lat":"51.52188136524","lon":"-2.50461179516","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90594","CommonName":"Flaxpits Lane","Street":"Bradley Avenue","Indicator":"N-bound","lat":"51.52158360494","lon":"-2.50485352508","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90595","CommonName":"Bradley Avenue Shops","Street":"Bradley Avenue","Indicator":"S-bound","lat":"51.51874502725","lon":"-2.50421681202","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90596","CommonName":"Bradley Avenue Shops","Street":"Bradley Avenue","Indicator":"NW-bound","lat":"51.51792943962","lon":"-2.5036025003","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90597","CommonName":"Hicks Common Road","Street":"Bradley Avenue","Indicator":"E-bound","lat":"51.51830548518","lon":"-2.49977304368","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90598","CommonName":"Hicks Common Road","Street":"Hicks Common Road","Indicator":"S-bound","lat":"51.51855932326","lon":"-2.49928581089","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90599","CommonName":"Hicks Common Pond","Street":"Hicks Common Road","Indicator":"N-bound","lat":"51.52092164674","lon":"-2.49985934578","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90600","CommonName":"Hicks Common Pond","Street":"Hicks Common Road","Indicator":"S-bound","lat":"51.52076042145","lon":"-2.49971345154","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90601","CommonName":"Nicholls Lane","Street":"Nicholls Lane","Indicator":"SE-bound","lat":"51.52416835019","lon":"-2.49967870326","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90602","CommonName":"Nicholls Lane","Street":"Nicholls Lane","Indicator":"NW-bound","lat":"51.52446204422","lon":"-2.50038820525","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90603","CommonName":"Park Avenue","Street":"Park Avenue","Indicator":"E-bound","lat":"51.52677065941","lon":"-2.5009036249","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90604","CommonName":"Park Avenue","Street":"Park Avenue","Indicator":"SW-bound","lat":"51.5266808102","lon":"-2.50088822379","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90605","CommonName":"North Road","Street":"Watley's End Road","Indicator":"W-bound","lat":"51.52940019965","lon":"-2.49784756722","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90606","CommonName":"North Road","Street":"Watleys End Road","Indicator":"S-bound","lat":"51.5294990403","lon":"-2.49786306143","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90607","CommonName":"Factory Road","Street":"Watley's End Road","Indicator":"NE-bound","lat":"51.53005642191","lon":"-2.49363091084","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90608","CommonName":"Factory Road","Street":"Watley's End Road","Indicator":"SW-bound","lat":"51.52967703593","lon":"-2.49404485924","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90609","CommonName":"Rylestone Close","Street":"Court Road","Indicator":"SE-bound","lat":"51.53293241426","lon":"-2.4939359501","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90610","CommonName":"Rylestone Close","Street":"Court Road","Indicator":"NW-bound","lat":"51.53320943674","lon":"-2.49434261898","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGP90611","CommonName":"Court Road","Street":"Bristol Road","Indicator":"SW-bound","lat":"51.53513783294","lon":"-2.49547365609","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90612","CommonName":"Court Road","Street":"Bristol Road","Indicator":"NE-bound","lat":"51.53490982531","lon":"-2.49623529581","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90613","CommonName":"Perrinpit Road","Street":"Bristol Road","Indicator":"SW-bound","lat":"51.53709610582","lon":"-2.49164532852","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90614","CommonName":"Perrinpit Road","Street":"Bristol Road","Indicator":"NE-bound","lat":"51.53779198169","lon":"-2.4908021562","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90615","CommonName":"Western Avenue","Street":"Church Road","Indicator":"NE-bound","lat":"51.53687048155","lon":"-2.48969647847","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90616","CommonName":"School Road","Street":"Church Road","Indicator":"E-bound","lat":"51.53634529498","lon":"-2.48625941679","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90617","CommonName":"School Road","Street":"Church Road","Indicator":"W-bound","lat":"51.53622811197","lon":"-2.48633025597","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90618","CommonName":"St Peter's Church","Street":"Church Road","Indicator":"E-bound","lat":"51.53575353223","lon":"-2.481495315","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90619","CommonName":"St Peter's Church","Street":"Church Road","Indicator":"W-bound","lat":"51.53575252565","lon":"-2.48174040276","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90620","CommonName":"The Live and Let Live","Street":"Park Lane","Indicator":"N-bound","lat":"51.53370876527","lon":"-2.48020504213","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90621","CommonName":"The Live and Let Live","Street":"Park Lane","Indicator":"S-bound","lat":"51.53321407792","lon":"-2.48024308447","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90622","CommonName":"Sunnyside","Indicator":"N-bound","lat":"51.53108804216","lon":"-2.48122982743","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90623","CommonName":"Sunnyside","Street":"Park Lane","Indicator":"S-bound","lat":"51.530494748","lon":"-2.48119473692","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90624","CommonName":"The Golden Lion","Street":"Woodend Road","Indicator":"W-bound","lat":"51.53000011924","lon":"-2.48121835098","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90628","CommonName":"Lower Chapel Lane","Street":"Beesmoor Road","Indicator":"SE-bound","lat":"51.52644620537","lon":"-2.47737540834","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90629","CommonName":"Lower Chapel Lane","Street":"Beesmoor Road","Indicator":"NW-bound","lat":"51.52640965402","lon":"-2.47751917189","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGP90630","CommonName":"Frome View","Street":"Park Lane","Indicator":"S-bound","lat":"51.52795588327","lon":"-2.4819896183","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90631","CommonName":"Heather Avenue","Street":"Heather Avenue","Indicator":"E-bound","lat":"51.52667009063","lon":"-2.47979941752","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90632","CommonName":"Heather Avenue","Street":"Heather Avenue","Indicator":"W-bound","lat":"51.52653522403","lon":"-2.47979799923","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90633","CommonName":"Homestead Close","Street":"Church Road","Indicator":"W-bound","lat":"51.53085194558","lon":"-2.46395696848","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90634","CommonName":"Highcroft School","Street":"Church Road","Indicator":"W-bound","lat":"51.53271400167","lon":"-2.47052103803","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90635","CommonName":"Highcroft School","Street":"Church Road","Indicator":"E-bound","lat":"51.53280391276","lon":"-2.47052196549","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90637","CommonName":"Ryecroft Road","Street":"Church Road","Indicator":"NW-bound","lat":"51.53370648233","lon":"-2.47635570457","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90638","CommonName":"Ryecroft Road","Street":"Church Road","Indicator":"SE-bound","lat":"51.5336723325","lon":"-2.47590842425","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGP90639","CommonName":"Bridge Farm","Indicator":"E-bound","lat":"51.54831922743","lon":"-2.47373944496","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90640","CommonName":"Bridge Farm","Indicator":"W-bound","lat":"51.54823836596","lon":"-2.47372418318","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90641","CommonName":"The White Hart","Street":"Station Road","Indicator":"N-bound","lat":"51.54995230906","lon":"-2.46785780352","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90642","CommonName":"The White Hart","Street":"Station Road","Indicator":"S-bound","lat":"51.54988983164","lon":"-2.46774178618","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90643","CommonName":"Parish Hall","Street":"High Street","Indicator":"E-bound","lat":"51.5499823908","lon":"-2.46481506116","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90644","CommonName":"Parish Hall","Street":"High Street","Indicator":"W-bound","lat":"51.54984866723","lon":"-2.46452525765","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90645","CommonName":"The Lamb Inn","Street":"Wotton Road","Indicator":"S-bound","lat":"51.54990038621","lon":"-2.4605308864","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90646","CommonName":"The Lamb Inn","Street":"Wotton Road","Indicator":"N-bound","lat":"51.55012488042","lon":"-2.46060526482","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90647","CommonName":"Victoria Garage","Street":"Yate Road","Indicator":"NW-bound","lat":"51.54769092949","lon":"-2.45064438802","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90648","CommonName":"Victoria Garage","Indicator":"E-bound","lat":"51.54770119465","lon":"-2.45031279926","node":"E0053711","stoptype":"BCT"},{"AtcoCode":"0170SGP90649","CommonName":"Armstrong Way","Street":"Iron Acton Way","Indicator":"E-bound","lat":"51.54703067253","lon":"-2.44221593858","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90650","CommonName":"Armstrong Way","Street":"Iron Acton Way","Indicator":"W-bound","lat":"51.54707785613","lon":"-2.4416251306","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90651","CommonName":"North Road","Street":"Goose Green Way","Indicator":"W-bound","lat":"51.54918152443","lon":"-2.43449230882","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90652","CommonName":"North Road","Street":"Goose Green Way","Indicator":"E-bound","lat":"51.54925270526","lon":"-2.43469489245","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90653","CommonName":"Halifax Road","Street":"Greenways Road","Indicator":"NW-bound","lat":"51.54962847826","lon":"-2.42539634061","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90654","CommonName":"Halifax Road","Street":"Greenways Road","Indicator":"SE-bound","lat":"51.5494593197","lon":"-2.4249332625","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90655","CommonName":"Cranleigh Court Road","Street":"Greenways Road","Indicator":"S-bound","lat":"51.54749755773","lon":"-2.42289600263","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90656","CommonName":"Cranleigh Court Road","Street":"Greenways Road","Indicator":"N-bound","lat":"51.54729964853","lon":"-2.42292300905","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90657","CommonName":"Templar Road","Street":"Greenways Road","Indicator":"W-bound","lat":"51.54602768514","lon":"-2.41907528369","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90658","CommonName":"Templar Road","Street":"Greenways Road","Indicator":"E-bound","lat":"51.54615690717","lon":"-2.41813911873","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90659","CommonName":"Churchfarm Close","Street":"Church Road","Indicator":"S-bound","lat":"51.5462254796","lon":"-2.4114629021","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90660","CommonName":"The Lawns","Street":"Church Road","Indicator":"S-bound","lat":"51.54296489988","lon":"-2.41307733353","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90661","CommonName":"The Lawns","Street":"Church Road","Indicator":"N-bound","lat":"51.54305450671","lon":"-2.41316466435","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90662","CommonName":"Celestine Road","Street":"Cranleigh Court Road","Indicator":"N-bound","lat":"51.54793327973","lon":"-2.42424123272","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90663","CommonName":"Celestine Road","Street":"Cranleigh Court Road","Indicator":"S-bound","lat":"51.54770813594","lon":"-2.42434008662","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90664","CommonName":"Windsor Drive","Street":"Cranleigh Court Road","Indicator":"S-bound","lat":"51.54471403248","lon":"-2.42432663913","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90665","CommonName":"Windsor Drive","Street":"Cranleigh Court Road","Indicator":"N-bound","lat":"51.5442738836","lon":"-2.42420718092","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90666","CommonName":"Cranleigh Court Road Shops","Street":"Cranleigh Court Road","Indicator":"S-bound","lat":"51.54171836147","lon":"-2.42474576236","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90667","CommonName":"Cranleigh Court Road Shops","Street":"Cranleigh Court Road","Indicator":"N-bound","lat":"51.54143864315","lon":"-2.42501712388","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90668","CommonName":"Magistrates Court","Street":"Kennedy Way","Indicator":"SE-bound","lat":"51.54010189677","lon":"-2.41667054032","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90669","CommonName":"Magistrates Court","Street":"Kennedy Way","Indicator":"NW-bound","lat":"51.5398240926","lon":"-2.41640846326","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGP90679","CommonName":"Stoke Park","Street":"Coldharbour Lane","Indicator":"N-bound","lat":"51.49658800464","lon":"-2.54289506392","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90680","CommonName":"Stoke Park","Indicator":"S-bound","lat":"51.49663349353","lon":"-2.54278036268","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90682","CommonName":"Frenchay Campus","Indicator":"Stop A","lat":"51.50019614601","lon":"-2.54622260415","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90683","CommonName":"Frenchay Campus","Indicator":"Stop B","lat":"51.49994459784","lon":"-2.54617637679","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90684","CommonName":"Frenchay Campus","Indicator":"Stop C","lat":"51.49981879019","lon":"-2.54616046603","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90685","CommonName":"Frenchay Campus","Indicator":"Stop D","lat":"51.49966621068","lon":"-2.54610101663","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90686","CommonName":"Frenchay Campus","Indicator":"Stop E","lat":"51.49951396657","lon":"-2.5459695409","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGP90687","CommonName":"UWE The Gardens","Indicator":"N-bound","lat":"51.50138201541","lon":"-2.54450797931","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGP90688","CommonName":"UWE The Gardens","Street":"Coldharbour Lane","Indicator":"S-bound","lat":"51.50149976875","lon":"-2.54432209524","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGP90689","CommonName":"Coldharbour Lane","Indicator":"N-bound","lat":"51.50352880193","lon":"-2.5449802069","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGP90690","CommonName":"Coldharbour Lane","Street":"Coldharbour Lane","Indicator":"S-bound","lat":"51.50391722455","lon":"-2.54459583903","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGP90691","CommonName":"MOD","Indicator":"S-bound","lat":"51.50230762993","lon":"-2.55800399722","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"0170SGP90693","CommonName":"Great Stoke Way","Street":"Great Stoke Way","Indicator":"S-bound","lat":"51.50755838318","lon":"-2.55427867949","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90695","CommonName":"Fox Den Road","Street":"Fox Den Road","Indicator":"N-bound","lat":"51.51035290835","lon":"-2.55085430983","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90696","CommonName":"Fox Den Road","Street":"Fox Den Road","Indicator":"S-bound","lat":"51.51027334259","lon":"-2.55056515893","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90697","CommonName":"Abbeywood School","Street":"New Road","Indicator":"NE-bound","lat":"51.51135638114","lon":"-2.55161573196","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90698","CommonName":"Abbeywood School","Street":"New Road","Indicator":"SW-bound","lat":"51.51149314395","lon":"-2.55121390645","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90699","CommonName":"Brierly Furlong","Street":"Brierly Furlong","Indicator":"SW-bound","lat":"51.51312807283","lon":"-2.54770308912","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90700","CommonName":"Brierly Furlong","Indicator":"NE-bound","lat":"51.51356031535","lon":"-2.54756416945","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90701","CommonName":"Bristol Parkway Station","Indicator":"Stop C","lat":"51.51441598901","lon":"-2.5433808769","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90702","CommonName":"Bristol Parkway Station","Indicator":"Stop B","lat":"51.5141618348","lon":"-2.54389663909","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90703","CommonName":"Bristol Parkway Station","Indicator":"Stop A","lat":"51.51417229595","lon":"-2.54357972679","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90704","CommonName":"Hatchet Lane","Indicator":"S-bound","lat":"51.51661284639","lon":"-2.54662080344","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90705","CommonName":"Hatchet Lane","Street":"Hatchet Road","Indicator":"N-bound","lat":"51.51623495449","lon":"-2.54667392361","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90706","CommonName":"Ratcliffe Drive","Street":"Hatchet Road","Indicator":"NW-bound","lat":"51.51803421013","lon":"-2.54839608903","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90707","CommonName":"Ratcliffe Drive","Street":"Hatchet Road","Indicator":"SE-bound","lat":"51.51839283984","lon":"-2.5486165797","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90708","CommonName":"Winterbourne Road","Street":"Hatchet Road","Indicator":"N-bound","lat":"51.52030820489","lon":"-2.5504988438","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90709","CommonName":"Winterbourne Road","Street":"Hatchet Road","Indicator":"S-bound","lat":"51.52067717483","lon":"-2.55043123036","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90710","CommonName":"Sainsburys","Street":"Fox Den Road","Indicator":"N-bound","lat":"51.50719709659","lon":"-2.55271816759","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90711","CommonName":"Orpheus Avenue","Street":"Orpheus Avenue","Indicator":"NE-bound","lat":"51.5243375318","lon":"-2.55025917298","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90712","CommonName":"Orpheus Avenue","Street":"Orpheus Avenue","Indicator":"S-bound","lat":"51.52451052439","lon":"-2.54980000991","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90713","CommonName":"Sherbourne Avenue","Street":"Baileys Court Road","Indicator":"W-bound","lat":"51.52583118401","lon":"-2.54425194444","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90714","CommonName":"Sherbourne Avenue","Street":"Baileys Court Road","Indicator":"E-bound","lat":"51.52583385848","lon":"-2.54367539829","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90715","CommonName":"Great Meadow Road","Street":"Webbs Wood Road","Indicator":"NE-bound","lat":"51.52650758452","lon":"-2.53992119905","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90717","CommonName":"Great Meadow Road","Street":"Webbs Wood Road","Indicator":"SW-bound","lat":"51.52666242209","lon":"-2.53949058997","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90718","CommonName":"Baileys Court Inn","Indicator":"SE-bound","lat":"51.52491570874","lon":"-2.54000326186","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90719","CommonName":"Baileys Court Inn","Street":"Baileys Court Road","Indicator":"NW-bound","lat":"51.52469060122","lon":"-2.5400726683","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90720","CommonName":"Hunters Ridge","Indicator":"E-bound","lat":"51.5241418384","lon":"-2.53817795053","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90721","CommonName":"Hunters Ridge","Street":"Baileys Court Road","Indicator":"NW-bound","lat":"51.52399784964","lon":"-2.53820508005","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90722","CommonName":"Great Meadow Roundabout","Indicator":"NE-bound","lat":"51.52496803904","lon":"-2.53446883821","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90723","CommonName":"Great Meadow Roundabout","Street":"Baileys Court Road","Indicator":"SW-bound","lat":"51.52494244514","lon":"-2.53416584096","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90724","CommonName":"Ellan Hay Road","Indicator":"N-bound","lat":"51.52651259053","lon":"-2.53293014739","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90728","CommonName":"Webbs Wood Road","Street":"Webbs Wood Road","Indicator":"NW-bound","lat":"51.52811627906","lon":"-2.53420299909","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90729","CommonName":"Webbs Wood Road","Indicator":"E-bound","lat":"51.52854554902","lon":"-2.53471256094","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90730","CommonName":"Webbs Wood Roundabout","Indicator":"SE-bound","lat":"51.52856065475","lon":"-2.53926797554","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90731","CommonName":"The Bridge","Street":"Bradley Stoke Way","Indicator":"N-bound","lat":"51.53147988079","lon":"-2.54381476433","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90732","CommonName":"The Bridge","Street":"Bradley Stoke Way","Indicator":"S-bound","lat":"51.53140888842","lon":"-2.54361209108","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90733","CommonName":"Savages Wood Roundabout","Street":"Bradley Stoke Way","Indicator":"N-bound","lat":"51.53396074434","lon":"-2.54592039087","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90734","CommonName":"Savages Wood Roundabout","Street":"Bradley Stoke Way","Indicator":"S-bound","lat":"51.53390760352","lon":"-2.54574675085","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90737","CommonName":"Chessel Close","Street":"Bowsland Way","Indicator":"SW-bound","lat":"51.54255635902","lon":"-2.55744372124","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90738","CommonName":"Chessel Close","Indicator":"E-bound","lat":"51.54298550581","lon":"-2.55606465911","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90739","CommonName":"Campion Drive","Street":"Bowsland Way","Indicator":"W-bound","lat":"51.54279330274","lon":"-2.55297647496","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90740","CommonName":"Campion Drive","Street":"Bowsland Way","Indicator":"E-bound","lat":"51.54279554527","lon":"-2.55250064827","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90741","CommonName":"Tresham Close","Street":"Bowsland Way","Indicator":"NW-bound","lat":"51.54210549998","lon":"-2.55009863495","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90742","CommonName":"Tresham Close","Street":"Bowsland Way","Indicator":"SE-bound","lat":"51.54208995156","lon":"-2.54957934215","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90743","CommonName":"Ormonds Close","Indicator":"N-bound","lat":"51.54251472863","lon":"-2.54719078736","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90744","CommonName":"Ormonds Close","Indicator":"S-bound","lat":"51.54230833953","lon":"-2.54710179287","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90745","CommonName":"Trench Lane","Street":"Woodlands Lane","Indicator":"N-bound","lat":"51.54383593259","lon":"-2.5473075827","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90746","CommonName":"Trench Lane","Street":"Woodlands Lane","Indicator":"S-bound","lat":"51.5444835526","lon":"-2.54725767459","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90747","CommonName":"Westfield Way","Street":"Woodlands Lane","Indicator":"NW-bound","lat":"51.54567890684","lon":"-2.5492909228","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90748","CommonName":"Westfield Way","Street":"Woodlands Lane","Indicator":"SE-bound","lat":"51.54586690685","lon":"-2.54946623703","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90749","CommonName":"Foxfield Avenue","Street":"Woodlands Lane","Indicator":"E-bound","lat":"51.54623854549","lon":"-2.552657735","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90750","CommonName":"Foxfield Avenue","Street":"Woodlands Lane","Indicator":"W-bound","lat":"51.54624366051","lon":"-2.55347978857","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90751","CommonName":"Eagles Wood","Street":"Woodlands Lane","Indicator":"W-bound","lat":"51.54648470195","lon":"-2.55574680874","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90752","CommonName":"Eagles Wood","Street":"Woodlands Lane","Indicator":"E-bound","lat":"51.54662691703","lon":"-2.55609464684","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90755","CommonName":"Newleaze","Street":"Woodlands Lane","Indicator":"SW-bound","lat":"51.54626763049","lon":"-2.55979644005","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90756","CommonName":"Newleaze","Street":"Woodlands Lane","Indicator":"NE-bound","lat":"51.54602918124","lon":"-2.56077412971","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90757","CommonName":"Woodlands Park","Street":"Woodlands Lane","Indicator":"NE-bound","lat":"51.54502282935","lon":"-2.56250663654","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90758","CommonName":"Woodlands Park","Street":"Woodlands Lane","Indicator":"SW-bound","lat":"51.54448095017","lon":"-2.56300466421","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90759","CommonName":"Aztec West Roundabout","Street":"Bradley Stoke Way","Indicator":"Stop D","lat":"51.54314977978","lon":"-2.5649637597","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90760","CommonName":"Aztec West Roundabout","Street":"Bradley Stoke Way","Indicator":"Stop C","lat":"51.54332855688","lon":"-2.5651822745","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90761","CommonName":"Approach Road","Street":"Approach Road","Indicator":"E-bound","lat":"51.54352187364","lon":"-2.56982792741","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90763","CommonName":"Aztec West Roundabout","Street":"Gloucester Road","Indicator":"Stop B","lat":"51.54193734038","lon":"-2.56653488948","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90764","CommonName":"Aztec West Roundabout","Street":"Gloucester Road","Indicator":"Stop A","lat":"51.54245588902","lon":"-2.56714695966","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90765","CommonName":"Hempton Lane","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.54057900895","lon":"-2.56666220648","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90766","CommonName":"Hempton Lane","Indicator":"S-bound","lat":"51.53910623225","lon":"-2.56628344098","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90767","CommonName":"Stoke Lane","Indicator":"S-bound","lat":"51.536297429","lon":"-2.56699829239","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90768","CommonName":"Stoke Lane","Indicator":"N-bound","lat":"51.53486291215","lon":"-2.56800409027","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90769","CommonName":"Underpass","Indicator":"S-bound","lat":"51.53366662463","lon":"-2.56809011286","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90770","CommonName":"The Grove","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.53071080471","lon":"-2.56945165783","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90771","CommonName":"The Grove","Indicator":"N-bound","lat":"51.53136539503","lon":"-2.56982023398","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90772","CommonName":"Callicroft Road","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.52760029669","lon":"-2.57118588345","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90774","CommonName":"Callicroft Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.5277470293","lon":"-2.57059670248","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90775","CommonName":"Gipsy Patch Lane","Indicator":"S-bound","lat":"51.52298047849","lon":"-2.57081095847","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90776","CommonName":"Gipsy Patch Lane","Indicator":"N-bound","lat":"51.52386588088","lon":"-2.57178776138","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90777","CommonName":"Filton Airfield","Indicator":"N-bound","lat":"51.52049707251","lon":"-2.57116904226","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90778","CommonName":"Filton College","Street":"Gloucester Road North","Indicator":"S-bound","lat":"51.51391375978","lon":"-2.57332032582","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90779","CommonName":"Filton College","Indicator":"N-bound","lat":"51.51635707409","lon":"-2.5719675127","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90780","CommonName":"Blenheim Drive","Street":"Filton Avenue","Indicator":"NW-bound","lat":"51.51428203753","lon":"-2.56970783536","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90782","CommonName":"Conygre Road","Street":"Conygre Road","Indicator":"SW-bound","lat":"51.51212596731","lon":"-2.56746176722","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90783","CommonName":"Filton Church","Street":"Station Road","Indicator":"E-bound","lat":"51.51080155349","lon":"-2.57171058242","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90784","CommonName":"Filton Church","Street":"Church Road","Indicator":"W-bound","lat":"51.51018517304","lon":"-2.5727259403","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90785","CommonName":"Filton Church","Street":"Gloucester Road North","Indicator":"SW-bound","lat":"51.50882403883","lon":"-2.57525927665","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90786","CommonName":"Filton Church","Street":"Gloucester Road North","Indicator":"NE-bound","lat":"51.50896655133","lon":"-2.575534846","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90787","CommonName":"Station Road","Street":"Station Road","Indicator":"E-bound","lat":"51.50899967617","lon":"-2.56688977163","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90788","CommonName":"Hunters Way","Street":"Filton Avenue","Indicator":"S-bound","lat":"51.50993183449","lon":"-2.56377449657","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90789","CommonName":"Hunters Way","Street":"Filton Avenue","Indicator":"N-bound","lat":"51.51054149067","lon":"-2.56414226594","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90790","CommonName":"Conygre Road","Street":"Filton Avenue","Indicator":"S-bound","lat":"51.51243109552","lon":"-2.56572192185","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90791","CommonName":"Conygre Road","Street":"Filton Avenue","Indicator":"NW-bound","lat":"51.51312605988","lon":"-2.56704188537","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90792","CommonName":"McDonalds","Indicator":"E-bound","lat":"51.50736944193","lon":"-2.55809467294","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90793","CommonName":"McDonalds","Street":"Station Road","Indicator":"W-bound","lat":"51.50686923428","lon":"-2.55739695224","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90794","CommonName":"Filton Abbey Wood Station","Indicator":"N-bound","lat":"51.50529586249","lon":"-2.56301126581","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGP90796","CommonName":"Bush Avenue","Street":"Gipsy Patch Lane","Indicator":"W-bound","lat":"51.52235058443","lon":"-2.55404034004","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90797","CommonName":"Bush Avenue","Street":"Gipsy Patch Lane","Indicator":"E-bound","lat":"51.52259048","lon":"-2.55464861677","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGP90799","CommonName":"Kingsway Roundabout","Street":"Gipsy Patch Lane","Indicator":"W-bound","lat":"51.52259430994","lon":"-2.55952040456","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90800","CommonName":"Rolls Royce","Street":"Gipsy Patch Lane","Indicator":"E-bound","lat":"51.52268536931","lon":"-2.56303840691","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90801","CommonName":"Rolls Royce","Street":"Gipsy Patch Lane","Indicator":"W-bound","lat":"51.52255423095","lon":"-2.56413220934","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90804","CommonName":"Rolls Royce","Street":"Gipsy Patch Lane","Indicator":"E-bound","lat":"51.5232358347","lon":"-2.56821969649","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90807","CommonName":"Kingsway Roundabout","Street":"Kingsway","Indicator":"S-bound","lat":"51.52289904093","lon":"-2.55972593035","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90808","CommonName":"Kingsway Roundabout","Street":"Kingsway","Indicator":"NE-bound","lat":"51.52364728811","lon":"-2.55931710893","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90809","CommonName":"Kingsway","Street":"Kingsway","Indicator":"E-bound","lat":"51.52559953305","lon":"-2.55530501119","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90810","CommonName":"Kingsway","Street":"Kingsway","Indicator":"SW-bound","lat":"51.52550989605","lon":"-2.55524626289","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90811","CommonName":"Little Stoke School","Street":"Little Stoke Lane","Indicator":"N-bound","lat":"51.5242854208","lon":"-2.55368906867","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90812","CommonName":"Little Stoke School","Street":"Little Stoke Lane","Indicator":"S-bound","lat":"51.52427724633","lon":"-2.5535160019","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90813","CommonName":"Farley Close","Street":"Little Stoke Lane","Indicator":"N-bound","lat":"51.52999985997","lon":"-2.56024551726","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90814","CommonName":"Farley Close","Street":"Stoke Lane","Indicator":"S-bound","lat":"51.53093388926","lon":"-2.56047322862","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90815","CommonName":"Bourton Avenue","Street":"Stoke Lane","Indicator":"N-bound","lat":"51.53387368271","lon":"-2.56244122658","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90816","CommonName":"Bourton Avenue","Street":"Stoke Lane","Indicator":"S-bound","lat":"51.53468231741","lon":"-2.56256653527","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90818","CommonName":"Wroxham Drive","Street":"Braydon Avenue","Indicator":"E-bound","lat":"51.5322743036","lon":"-2.56033111549","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90819","CommonName":"Wroxham Drive","Street":"Braydon Avenue","Indicator":"W-bound","lat":"51.53226944214","lon":"-2.55946606622","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90821","CommonName":"Wrington Close","Street":"Braydon Avenue","Indicator":"NW-bound","lat":"51.53163656244","lon":"-2.55641646719","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90822","CommonName":"Wrington Close","Indicator":"SE-bound","lat":"51.53149434761","lon":"-2.55606874271","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90823","CommonName":"Silverbirch Close","Street":"Braydon Avenue","Indicator":"E-bound","lat":"51.52906657622","lon":"-2.55227671239","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90824","CommonName":"Silverbirch Close","Street":"Braydon Avenue","Indicator":"W-bound","lat":"51.52893941207","lon":"-2.55254906635","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90825","CommonName":"Elm Close","Street":"Brook Way","Indicator":"o/s 3","lat":"51.52703246353","lon":"-2.54887901967","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90826","CommonName":"Elm Close","Street":"Brook Way","Indicator":"opp 9","lat":"51.52673717664","lon":"-2.54857275795","node":"E0041862","stoptype":"BCT"},{"AtcoCode":"0170SGP90827","CommonName":"Braydon Avenue","Street":"Brook Way","Indicator":"N-bound","lat":"51.52883369932","lon":"-2.54825199623","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90829","CommonName":"Braydon Avenue","Street":"Brook Way","Indicator":"S-bound","lat":"51.52863650362","lon":"-2.54811988853","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90830","CommonName":"Linden Drive","Indicator":"S-bound","lat":"51.5308353214","lon":"-2.54899685243","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90831","CommonName":"Linden Drive","Street":"Brook Way","Indicator":"NW-bound","lat":"51.53143846303","lon":"-2.55076289017","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90832","CommonName":"Manor Farm Roundabout","Street":"Brook Way","Indicator":"S-bound","lat":"51.53390380013","lon":"-2.55232085867","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90834","CommonName":"Manor Farm Roundabout","Street":"Brook Way","Indicator":"N-bound","lat":"51.53487265359","lon":"-2.552793944","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90835","CommonName":"Courtlands","Indicator":"NW-bound","lat":"51.53789196678","lon":"-2.5588717919","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90836","CommonName":"Winsbury Way","Street":"Brook Way","Indicator":"SE-bound","lat":"51.53703300022","lon":"-2.55609301156","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90837","CommonName":"Bradley Stoke Surgery","Street":"Brook Way","Indicator":"N-bound","lat":"51.54082609955","lon":"-2.56014779916","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90838","CommonName":"Bradley Stoke Surgery","Street":"Brook Way","Indicator":"S-bound","lat":"51.540341138","lon":"-2.56002649024","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGP90845","CommonName":"Patchway Roundabout","Street":"Highwood Road","Indicator":"Stop D","lat":"51.53184431533","lon":"-2.57118135426","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90846","CommonName":"Patchway Roundabout","Street":"Highwood Road","Indicator":"Stop C","lat":"51.53193141512","lon":"-2.57175910049","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90847","CommonName":"Fir Tree Close","Street":"Highwood Road","Indicator":"SW-bound","lat":"51.52754934403","lon":"-2.58516780727","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90848","CommonName":"Fir Tree Close","Street":"Highwood Road","Indicator":"NE-bound","lat":"51.52863795223","lon":"-2.58323569564","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90849","CommonName":"Coach Park","Street":"Pegasus Road","Indicator":"W-bound","lat":"51.5258746538","lon":"-2.59099861284","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90850","CommonName":"Coach Park","Street":"Pegasus Road","Indicator":"E-bound","lat":"51.52597319096","lon":"-2.59107196171","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90851","CommonName":"Bus Station","Indicator":"Stop A","lat":"51.52705537153","lon":"-2.59577081142","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90852","CommonName":"Bus Station","Indicator":"Stop B","lat":"51.52689287559","lon":"-2.59589842303","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90853","CommonName":"Bus Station","Indicator":"Stop C","lat":"51.52674843463","lon":"-2.59601185483","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90854","CommonName":"Bus Station","Indicator":"Stop D","lat":"51.52657687421","lon":"-2.59615376103","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90855","CommonName":"Bus Station","Indicator":"Stop E","lat":"51.52685332081","lon":"-2.59660423179","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90856","CommonName":"Bus Station","Indicator":"Stop F","lat":"51.52703379938","lon":"-2.59647685787","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90857","CommonName":"Bus Station","Indicator":"Stop G","lat":"51.52718730501","lon":"-2.59634913041","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90858","CommonName":"Bus Station","Indicator":"Stop H","lat":"51.5273408105","lon":"-2.5962214021","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90859","CommonName":"Pegasus Road","Street":"Pegasus Road","Indicator":"W-bound","lat":"51.52897750203","lon":"-2.59970250383","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90860","CommonName":"Asda Wal-Mart","Indicator":"Stop K","lat":"51.53014094121","lon":"-2.59901142045","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGP90863","CommonName":"Sycamore Drive","Street":"Coniston Road","Indicator":"N-bound","lat":"51.52768972053","lon":"-2.58766341318","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90864","CommonName":"Sycamore Drive","Street":"Coniston Road","Indicator":"S-bound","lat":"51.52805806039","lon":"-2.58772581808","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90865","CommonName":"Hawthorn Close","Street":"Coniston Road","Indicator":"N-bound","lat":"51.53030044545","lon":"-2.58882148043","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90867","CommonName":"Hawthorn Close","Street":"Coniston Road","Indicator":"S-bound","lat":"51.53068676638","lon":"-2.58888413051","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90868","CommonName":"Linnet Close","Street":"Coniston Road","Indicator":"NE-bound","lat":"51.53321119238","lon":"-2.58932038854","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90870","CommonName":"Linnet Close","Indicator":"SW-bound","lat":"51.53343059471","lon":"-2.58860237914","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90871","CommonName":"Bevington Close","Street":"Coniston Road","Indicator":"N-bound","lat":"51.5354253957","lon":"-2.58707102896","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90873","CommonName":"Bevington Close","Street":"Coniston Road","Indicator":"S-bound","lat":"51.53523687469","lon":"-2.58701093286","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90874","CommonName":"Coniston Road Shops","Street":"Coniston Road","Indicator":"W-bound","lat":"51.53766414426","lon":"-2.58349529152","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90875","CommonName":"Coniston Road Shops","Street":"Coniston Road","Indicator":"E-bound","lat":"51.53784120592","lon":"-2.58224316756","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90876","CommonName":"Bradley Road","Street":"Coniston Road","Indicator":"SE-bound","lat":"51.53746752159","lon":"-2.57962871272","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90878","CommonName":"Bradley Road","Street":"Coniston Road","Indicator":"NW-bound","lat":"51.53725330607","lon":"-2.57930879272","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90879","CommonName":"Pretoria Road","Street":"Bradley Road","Indicator":"W-bound","lat":"51.53641493963","lon":"-2.57974509702","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90880","CommonName":"Pretoria Road","Indicator":"E-bound","lat":"51.53639346349","lon":"-2.58045129658","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90881","CommonName":"Durban Road","Street":"Bradley Road","Indicator":"NE-bound","lat":"51.53546193772","lon":"-2.58335178028","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90882","CommonName":"Durban Road","Street":"Durban Road","Indicator":"SE-bound","lat":"51.53501289254","lon":"-2.58324511596","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90883","CommonName":"Cavendish Road","Street":"Durban Road","Indicator":"E-bound","lat":"51.53369253832","lon":"-2.58115219263","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90884","CommonName":"Cavendish Road","Street":"Durban Road","Indicator":"W-bound","lat":"51.53337179162","lon":"-2.58055701544","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90885","CommonName":"Rodway Road Shops","Street":"Rodway Road","Indicator":"NE-bound","lat":"51.53197566483","lon":"-2.57558000306","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90886","CommonName":"Rodway Road Shops","Street":"Rodway Road","Indicator":"SW-bound","lat":"51.53164852136","lon":"-2.5762822745","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90887","CommonName":"Patchway Roundabout","Street":"Coniston Road","Indicator":"Stop A","lat":"51.53298750173","lon":"-2.57092175026","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90888","CommonName":"Patchway Roundabout","Street":"Coniston Road","Indicator":"Stop B","lat":"51.53296207237","lon":"-2.57060426422","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGP90891","CommonName":"Almondsbury Depot","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.54962623542","lon":"-2.5700051757","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90892","CommonName":"Almondsbury Depot","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.55022988969","lon":"-2.56975312403","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90893","CommonName":"The Swan","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.5526218997","lon":"-2.56969648268","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90894","CommonName":"The Swan","Indicator":"S-bound","lat":"51.55265090318","lon":"-2.56927857988","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90895","CommonName":"Florence Park","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.55710963155","lon":"-2.56391071342","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90898","CommonName":"Florence Park","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.55674874556","lon":"-2.56416588461","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90900","CommonName":"Hortham Lane","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.5593574233","lon":"-2.56017358602","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90902","CommonName":"Hortham Lane","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.56077787274","lon":"-2.55833015603","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"0170SGP90903","CommonName":"Fern Hill","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.56361547696","lon":"-2.55532095358","node":"E0041960","stoptype":"BCT"},{"AtcoCode":"0170SGP90904","CommonName":"Fern Hill","Indicator":"SW-bound","lat":"51.56439401948","lon":"-2.55420516338","node":"E0041960","stoptype":"BCT"},{"AtcoCode":"0170SGP90905","CommonName":"Abbotswood","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.56879865176","lon":"-2.55063730487","node":"E0041960","stoptype":"BCT"},{"AtcoCode":"0170SGP90906","CommonName":"Abbotswood","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.56872733365","lon":"-2.55050659074","node":"E0041960","stoptype":"BCT"},{"AtcoCode":"0170SGP90907","CommonName":"Washingpool Hill","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.57317989955","lon":"-2.54627486132","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90908","CommonName":"Washingpool Hill","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.57263835939","lon":"-2.54671567376","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90909","CommonName":"Rudgeway Park","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.5751715769","lon":"-2.54335501723","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90910","CommonName":"Church Road","Indicator":"SW-bound","lat":"51.57656552142","lon":"-2.54135137773","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90911","CommonName":"Church Road","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.57767307152","lon":"-2.54100377143","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90912","CommonName":"The Masons Arms","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.58061468263","lon":"-2.53678134404","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90913","CommonName":"The Masons Arms","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.58008944142","lon":"-2.53759775447","node":"E0041911","stoptype":"BCT"},{"AtcoCode":"0170SGP90914","CommonName":"Alveston Church","Indicator":"NE-bound","lat":"51.58443500212","lon":"-2.53108205407","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90915","CommonName":"Alveston Church","Indicator":"SW-bound","lat":"51.58451885877","lon":"-2.53043354687","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90916","CommonName":"Greenhill Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.58708309549","lon":"-2.52806740794","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90917","CommonName":"Davids Lane","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.58914442446","lon":"-2.52755724302","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90918","CommonName":"Davids Lane","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.58986622985","lon":"-2.52700265458","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90919","CommonName":"The Ship","Street":"Thornbury Road","Indicator":"N-bound","lat":"51.59204232428","lon":"-2.52896219023","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90922","CommonName":"The Ship","Indicator":"S-bound","lat":"51.59187338296","lon":"-2.52854160229","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGP90923","CommonName":"Leisure Centre","Indicator":"S-bound","lat":"51.60151848111","lon":"-2.52713759412","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90924","CommonName":"Leisure Centre","Street":"Bristol Road","Indicator":"N-bound","lat":"51.60249875135","lon":"-2.52709119553","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90925","CommonName":"Tesco","Indicator":"NW-bound","lat":"51.60422540376","lon":"-2.52501750634","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90926","CommonName":"Streamleaze Court","Street":"Rock Street","Indicator":"N-bound","lat":"51.60540612021","lon":"-2.52438134797","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90927","CommonName":"Rock Street","Street":"Rock Street","Indicator":"N-bound","lat":"51.6078273869","lon":"-2.5238027598","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90929","CommonName":"Gillingstool","Street":"Gillingstool","Indicator":"E-bound","lat":"51.60731170045","lon":"-2.52047556981","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90932","CommonName":"Knapp Road","Street":"Gillingstool","Indicator":"E-bound","lat":"51.60717150123","lon":"-2.51761480974","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90933","CommonName":"Knapp Road","Street":"Grovesend Road","Indicator":"W-bound","lat":"51.6068663529","lon":"-2.51544532527","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90934","CommonName":"Streamleaze","Street":"Streamleaze","Indicator":"SW-bound","lat":"51.60540671145","lon":"-2.51613632993","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90935","CommonName":"Streamleaze","Street":"Streamleaze","Indicator":"NE-bound","lat":"51.60525113289","lon":"-2.51675546659","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90936","CommonName":"Avon Way","Street":"Streamleaze","Indicator":"W-bound","lat":"51.60476537454","lon":"-2.51884366514","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90937","CommonName":"Ladden Court","Street":"Avon Way","Indicator":"S-bound","lat":"51.60454321734","lon":"-2.51824911847","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90938","CommonName":"Ladden Court","Street":"Avon Way","Indicator":"N-bound","lat":"51.60446178871","lon":"-2.51836370555","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90939","CommonName":"Windrush Court","Street":"Avon Way","Indicator":"SE-bound","lat":"51.60319684536","lon":"-2.51567809435","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90940","CommonName":"Windrush Court","Street":"Avon Way","Indicator":"W-bound","lat":"51.60295554895","lon":"-2.51534326626","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90941","CommonName":"Dovedale","Street":"Avon Way","Indicator":"SE-bound","lat":"51.60265723013","lon":"-2.51160025192","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90943","CommonName":"Dovedale","Street":"Avon Way","Indicator":"NW-bound","lat":"51.60260284375","lon":"-2.51170071152","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90944","CommonName":"Bockenem Close","Street":"Avon Way","Indicator":"S-bound","lat":"51.60222267738","lon":"-2.50814453874","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90945","CommonName":"Bockenem Close","Street":"Avon Way","Indicator":"N-bound","lat":"51.60240224628","lon":"-2.50820429875","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90946","CommonName":"Grovesend Road","Street":"Morton Way","Indicator":"S-bound","lat":"51.60343757118","lon":"-2.50581898993","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90947","CommonName":"Grovesend Road","Street":"Morton Way","Indicator":"N-bound","lat":"51.60404108507","lon":"-2.50556579399","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90948","CommonName":"Pentland Avenue","Street":"Morton Way","Indicator":"S-bound","lat":"51.60542929697","lon":"-2.50474372178","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90950","CommonName":"Pentland Avenue","Street":"Morton Way","Indicator":"N-bound","lat":"51.606031877","lon":"-2.50470708755","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90951","CommonName":"Cheviot Drive","Street":"Morton Way","Indicator":"N-bound","lat":"51.60805502679","lon":"-2.50468621141","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90952","CommonName":"Cheviot Drive","Street":"Morton Way","Indicator":"S-bound","lat":"51.6083790114","lon":"-2.5046176029","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90954","CommonName":"Crossways Road","Street":"Crossways Road","Indicator":"W-bound","lat":"51.61024591283","lon":"-2.50746877831","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90955","CommonName":"Crossways Road","Street":"Knapp Road","Indicator":"NE-bound","lat":"51.6101826424","lon":"-2.5096198012","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90956","CommonName":"Easton Hill Road","Street":"Easton Hill Road","Indicator":"NW-bound","lat":"51.61004023982","lon":"-2.51135113644","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90957","CommonName":"Easton Hill Road","Street":"Easton Hill Road","Indicator":"S-bound","lat":"51.6104981481","lon":"-2.51150069625","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90958","CommonName":"Easton Hill Road School","Street":"Easton Hill Road","Indicator":"N-bound","lat":"51.61228965189","lon":"-2.51305167317","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90960","CommonName":"Eastland Road","Street":"Eastland Road","Indicator":"o/s 611","lat":"51.61296866481","lon":"-2.51404138949","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90961","CommonName":"Health Centre","Street":"Eastland Road","Indicator":"W-bound","lat":"51.61252116609","lon":"-2.51766124362","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90962","CommonName":"Health Centre","Street":"Eastland Road","Indicator":"E-bound","lat":"51.61266387384","lon":"-2.5179228224","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0100BRA56574","CommonName":"The Boulevard","Street":"Whitchurch Lane","Indicator":"NW-bound","lat":"51.41093460882","lon":"-2.58745874608","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA56575","CommonName":"The Boulevard","Street":"Whitchurch Lane","Indicator":"SE-bound","lat":"51.41100754695","lon":"-2.58725838454","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA56576","CommonName":"Boswell Street","Street":"B4058","Indicator":"SW-bound","lat":"51.4721385419","lon":"-2.56225729512","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRA56577","CommonName":"Skills Academy","Street":"The Boulevard","Indicator":"SW-bound","lat":"51.41132166513","lon":"-2.58558013378","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA56578","CommonName":"Bridge Campus","Street":"William Jessop Way","Indicator":"NE-bound","lat":"51.40826073747","lon":"-2.58991176931","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA56579","CommonName":"Bridge Campus","Street":"William Jessop Way","Indicator":"SW-bound","lat":"51.40824521544","lon":"-2.58942273545","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA56580","CommonName":"Cantocks Close","Street":"Woodland Road","Indicator":"SE-bound","lat":"51.45583555396","lon":"-2.60231246745","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRA56582","CommonName":"Mecca Bingo","Street":"Barrow Road","Indicator":"NE-bound","lat":"51.45598104782","lon":"-2.56961471002","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRC0","CommonName":"Castle Park Ferry Landing","Indicator":"Entrance","lat":"51.45499605372","lon":"-2.58880157058","node":"N0077024","stoptype":"FTD"},{"AtcoCode":"0100BRC53349","CommonName":"Downs Road","Indicator":"N-bound","lat":"51.48808087463","lon":"-2.61760089002","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRC53350","CommonName":"Coombe Lane","Street":"Dingle Road","Indicator":"E-bound","lat":"51.49223187812","lon":"-2.63832659932","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRC53351","CommonName":"Coombe Lane","Street":"Dingle Road","Indicator":"W-bound","lat":"51.49154892286","lon":"-2.63990146335","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRC53353","CommonName":"Brynland Avenue","Street":"Ashley Down Road","Indicator":"SE-bound","lat":"51.48236970907","lon":"-2.58457473264","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRC53354","CommonName":"Brynland Avenue","Street":"Ashley Down Road","Indicator":"NW-bound","lat":"51.4820114322","lon":"-2.58429653747","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRC53357","CommonName":"Begbrook Lane","Street":"Begbrook Lane","Indicator":"S-bound","lat":"51.4890213021","lon":"-2.53612223181","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRC53358","CommonName":"Wren Drive","Street":"Wren Drive","Indicator":"NE-bound","lat":"51.48972741033","lon":"-2.53507909444","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRC53359","CommonName":"Wren Drive","Street":"Wren Drive","Indicator":"SW-bound","lat":"51.49033985047","lon":"-2.53288257011","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRC53360","CommonName":"Brambling Walk","Street":"Sheldrake Drive","Indicator":"E-bound","lat":"51.48730362541","lon":"-2.53814720297","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRC53361","CommonName":"Brambling Walk","Street":"Sheldrake Drive","Indicator":"W-bound","lat":"51.48722277175","lon":"-2.53813184843","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRC53363","CommonName":"Ledbury Road","Street":"Thicket Road","Indicator":"N-bound","lat":"51.47924503091","lon":"-2.5166398822","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRC53365","CommonName":"Long Close","Street":"Frenchay Road","Indicator":"SE-bound","lat":"51.48918871147","lon":"-2.51482233296","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRC53367","CommonName":"Redland Station","Street":"South Road","Indicator":"C","lat":"51.46851844888","lon":"-2.59964342641","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRC53368","CommonName":"Ironmould Lane","Street":"Broomhill Road","Indicator":"N-bound","lat":"51.4336851535","lon":"-2.53256808374","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRC53372","CommonName":"Montrose Park","Street":"Grove Park","Indicator":"S-bound","lat":"51.43528304272","lon":"-2.55255434746","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRC53373","CommonName":"St Brendans Grounds","Indicator":"W-bound","lat":"51.4299261375","lon":"-2.53465322678","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRC53374","CommonName":"Brixham Road","Street":"Brixham Road","Indicator":"NW-bound","lat":"51.43116461372","lon":"-2.59837731234","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRC53375","CommonName":"Brixham Road","Street":"Brixham Road","Indicator":"SE-bound","lat":"51.43120101871","lon":"-2.59829148003","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRC53376","CommonName":"Kings Road","Indicator":"N-bound","lat":"51.43927349363","lon":"-2.56051547588","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRC53377","CommonName":"Kings Road","Street":"King's Road","Indicator":"N-bound","lat":"51.43937205192","lon":"-2.56058861896","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRC53378","CommonName":"Brislington School","Indicator":"W-bound","lat":"51.42602242435","lon":"-2.54082111237","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRC53380","CommonName":"Froomshaw Road","Street":"Begbrook Park","Indicator":"NW-bound","lat":"51.49520645378","lon":"-2.5284306452","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0100BRC53381","CommonName":"Froomshaw Road","Street":"Begbrook Park","Indicator":"SE-bound","lat":"51.49526111439","lon":"-2.52827282478","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0100BRC53382","CommonName":"Lawn Avenue","Street":"Downend Road","Indicator":"NE-bound","lat":"51.48256586785","lon":"-2.52206332134","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRC53383","CommonName":"Eastville Park","Street":"Muller Road","Indicator":"B","lat":"51.4740777723","lon":"-2.55722739861","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRC53385","CommonName":"Eastville Park","Street":"Muller Road","Indicator":"A","lat":"51.47464579896","lon":"-2.55878934114","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRC53386","CommonName":"Tesco Car Park","Street":"Eastgate Road","Indicator":"NW-bound","lat":"51.47387914694","lon":"-2.56304180144","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRC53387","CommonName":"Thicket Avenue","Street":"Thicket Avenue","Indicator":"N-bound","lat":"51.47738879293","lon":"-2.51754044662","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRC53390","CommonName":"Oxford Place","Street":"Warwick Road","Indicator":"NE-bound","lat":"51.46698119119","lon":"-2.56891676683","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRC53391","CommonName":"Oxford Place","Street":"Warwick Road","Indicator":"SW-bound","lat":"51.46680987172","lon":"-2.56901540631","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRC53393","CommonName":"York Road","Street":"Belle Vue Road","Indicator":"S-bound","lat":"51.46582395216","lon":"-2.56089844531","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRC53394","CommonName":"Kingsland Road","Street":"Kingsland Road","Indicator":"N-bound","lat":"51.45259400593","lon":"-2.57456634984","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRC53395","CommonName":"Whitland Avenue","Street":"Whitland Road","Indicator":"W-bound","lat":"51.41351663347","lon":"-2.60832721294","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRC53396","CommonName":"Maynard Road","Street":"Whitchurch Lane","Indicator":"W-bound","lat":"51.4126893391","lon":"-2.59961700976","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRC53397","CommonName":"Park Avenue","Street":"St John's Lane","Indicator":"C","lat":"51.43731193556","lon":"-2.58471846668","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRC53398","CommonName":"Brislington Square","Street":"Bristol Hill","Indicator":"W-bound","lat":"51.43400807153","lon":"-2.55025165826","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRC53399","CommonName":"Kings Head Lane","Street":"Bridgwater Road","Indicator":"A","lat":"51.42123301988","lon":"-2.63016023634","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRC53400","CommonName":"Sandburrows Road","Street":"Sandburrows Road","Indicator":"E-bound","lat":"51.41468889313","lon":"-2.62814336345","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRC53402","CommonName":"Banwell Close","Street":"Bishopsworth Road","Indicator":"S-bound","lat":"51.42551751202","lon":"-2.61408156439","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRC53403","CommonName":"Headley Lane","Street":"Hartcliffe Way","Indicator":"SW-bound","lat":"51.42847908624","lon":"-2.60654100004","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRC53404","CommonName":"Headley Lane","Indicator":"N-bound","lat":"51.42574699161","lon":"-2.60453434617","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRC53405","CommonName":"Stillingfleet Road","Street":"Whitland Road","Indicator":"E-bound","lat":"51.41283272765","lon":"-2.60321361571","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRC53407","CommonName":"Fossedale Avenue","Street":"New Fosseway Road","Indicator":"W-bound","lat":"51.41711714574","lon":"-2.564443352","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRC53408","CommonName":"Church Road","Street":"Wellington Hill","Indicator":"W-bound","lat":"51.48748942551","lon":"-2.58926339411","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRD0","CommonName":"Bristol Marina Ferry Landing","Indicator":"Entrance","lat":"51.44859862054","lon":"-2.6124629899","node":"N0077031","stoptype":"FTD"},{"AtcoCode":"0100BRE0","CommonName":"The Cottage Ferry Landing","Indicator":"Entrance","lat":"51.44684283414","lon":"-2.61635346249","node":"N0077031","stoptype":"FTD"},{"AtcoCode":"0100BRF0","CommonName":"Millennium Square Ferry Landing","Indicator":"Entrance","lat":"51.44864125853","lon":"-2.59899436586","node":"E0035583","stoptype":"FTD"},{"AtcoCode":"0100BRG0","CommonName":"ss Great Britain Ferry Landing","Indicator":"Entrance","lat":"51.44907520351","lon":"-2.60727446924","node":"N0077031","stoptype":"FTD"},{"AtcoCode":"0100BRH0","CommonName":"Mardyke Ferry Landing","Indicator":"Entrance","lat":"51.44921546514","lon":"-2.61314759297","node":"E0035614","stoptype":"FTD"},{"AtcoCode":"0100BRL0","CommonName":"Pumphouse Ferry Landing","Indicator":"Entrance","lat":"51.44808842151","lon":"-2.61716168998","node":"E0035614","stoptype":"FTD"},{"AtcoCode":"0100BRM0","CommonName":"Temple Bridge (Bristol) Ferry Landing","Indicator":"Entrance","lat":"51.45254777508","lon":"-2.58392016509","node":"N0077020","stoptype":"FTD"},{"AtcoCode":"0100BRN0","CommonName":"Nova Scotia Ferry Landing","Indicator":"Entrance","lat":"51.44734668416","lon":"-2.61800068225","node":"E0035614","stoptype":"FTD"},{"AtcoCode":"0100BRP0","CommonName":"Prince Street Bridge Ferry Landing","Indicator":"Entrance","lat":"51.44874225415","lon":"-2.59682276891","node":"N0077031","stoptype":"FTD"},{"AtcoCode":"0100BRP90002","CommonName":"Bannerman Road","Street":"Easton Road","Indicator":"NE-bound","lat":"51.46168538458","lon":"-2.56700842362","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRP90003","CommonName":"Stokes Croft","Street":"North Street","Indicator":"N1","lat":"51.46032565457","lon":"-2.59107243473","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90008","CommonName":"Nine Tree Hill","Street":"Cheltenham Road","Indicator":"N-bound","lat":"51.46480848816","lon":"-2.59007952188","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90010","CommonName":"Nine Tree Hill","Street":"Cheltenham Road","Indicator":"S-bound","lat":"51.46525746034","lon":"-2.59020047833","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90012","CommonName":"Colstons School","Street":"Cheltenham Road","Indicator":"N-bound","lat":"51.46805358893","lon":"-2.59203610196","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90013","CommonName":"Colstons School","Street":"Cheltenham Road","Indicator":"SE-bound","lat":"51.46785796672","lon":"-2.59160168305","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90015","CommonName":"Zetland Road Junction","Street":"Cheltenham Road","Indicator":"B","lat":"51.46953838244","lon":"-2.59358138108","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90017","CommonName":"Zetland Road Junction","Street":"Cheltenham Road","Indicator":"A","lat":"51.46977273229","lon":"-2.59346924905","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90019","CommonName":"Zetland Road Junction","Street":"Gloucester Road","Indicator":"C","lat":"51.47116860006","lon":"-2.59304105346","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90021","CommonName":"Sommerville Road","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.47493499512","lon":"-2.59147728937","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90023","CommonName":"Sommerville Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.47294145671","lon":"-2.59096197167","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90025","CommonName":"Hatherley Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.47740586374","lon":"-2.59005494178","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90026","CommonName":"Hatherley Road","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.4781892419","lon":"-2.58983466325","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90027","CommonName":"Nevil Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.4796483941","lon":"-2.58933509663","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90028","CommonName":"Nevil Road","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.48160660317","lon":"-2.58793469511","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90029","CommonName":"Ashley Down Road","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.48253491594","lon":"-2.58750021218","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90031","CommonName":"Ashley Down Road","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.48401348132","lon":"-2.58671274842","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90032","CommonName":"Churchways Avenue","Street":"Gloucester Road","Indicator":"C","lat":"51.48541989715","lon":"-2.58596751421","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90033","CommonName":"Churchways Avenue","Street":"Gloucester Road","Indicator":"A","lat":"51.48585168179","lon":"-2.58592984552","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90035","CommonName":"Muller Road Top","Street":"Gloucester Road","Indicator":"B","lat":"51.48892387289","lon":"-2.58471619581","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90036","CommonName":"Muller Road Top","Street":"Gloucester Road","Indicator":"C","lat":"51.48991044067","lon":"-2.58521852848","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90037","CommonName":"Horfield Sports Centre","Street":"Filton Road","Indicator":"N-bound","lat":"51.49401504995","lon":"-2.5825198627","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90038","CommonName":"Horfield Sports Centre","Street":"Filton Road","Indicator":"S-bound","lat":"51.49371820357","lon":"-2.58254488614","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90039","CommonName":"Filton Road","Street":"Filton Road","Indicator":"S-bound","lat":"51.49620637006","lon":"-2.58123694103","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90040","CommonName":"Filton Road","Street":"Filton Road","Indicator":"N-bound","lat":"51.49757635733","lon":"-2.58057731308","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90056","CommonName":"Eden Grove","Street":"Filton Avenue","Indicator":"SW-bound","lat":"51.49897802743","lon":"-2.57163460094","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90057","CommonName":"Toronto Road","Street":"Filton Avenue","Indicator":"N-bound","lat":"51.49568582194","lon":"-2.57373973905","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90058","CommonName":"Toronto Road","Street":"Filton Avenue","Indicator":"S-bound","lat":"51.49480258662","lon":"-2.574160786","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90059","CommonName":"Dorchester Road","Street":"Filton Avenue","Indicator":"NE-bound","lat":"51.49301438258","lon":"-2.57576597605","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90060","CommonName":"Dorchester Road","Street":"Filton Avenue","Indicator":"SW-bound","lat":"51.49287994168","lon":"-2.57567785721","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90061","CommonName":"Lockleaze Road","Street":"Filton Avenue","Indicator":"NE-bound","lat":"51.49117935649","lon":"-2.57774494143","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90063","CommonName":"Lockleaze Road","Street":"Filton Avenue","Indicator":"SW-bound","lat":"51.49025701542","lon":"-2.57879911828","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90064","CommonName":"Filton Avenue","Street":"Filton Avenue","Indicator":"A","lat":"51.48869651843","lon":"-2.58161669315","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90065","CommonName":"Filton Avenue","Street":"Muller Road","Indicator":"D","lat":"51.48800592437","lon":"-2.58126224148","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90066","CommonName":"Downend Road","Street":"Muller Road","Indicator":"D","lat":"51.48615284042","lon":"-2.57961124796","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90067","CommonName":"Downend Road","Street":"Muller Road","Indicator":"C","lat":"51.48576522939","lon":"-2.57980795706","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90068","CommonName":"Downend Road","Street":"Muller Road","Indicator":"B","lat":"51.48471484596","lon":"-2.57947779659","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90069","CommonName":"Muller Road Depot","Street":"Muller Road","Indicator":"A","lat":"51.48285363204","lon":"-2.57946859702","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90070","CommonName":"Muller Road Depot","Street":"Muller Road","Indicator":"B","lat":"51.4825858224","lon":"-2.57907637883","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90071","CommonName":"Muller Road Depot","Indicator":"C","lat":"51.48183441432","lon":"-2.57828922578","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90074","CommonName":"Kennington Avenue","Street":"Ashley Down Road","Indicator":"NW-bound","lat":"51.48027071501","lon":"-2.58175426523","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRP90075","CommonName":"Kennington Avenue","Street":"Ashley Down Road","Indicator":"S-bound","lat":"51.47976186839","lon":"-2.58101339131","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRP90076","CommonName":"Sefton Park Road","Street":"Ashley Down Road","Indicator":"N-bound","lat":"51.47766359879","lon":"-2.57984917611","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRP90077","CommonName":"Sefton Park Road","Street":"Ashley Down Road","Indicator":"SW-bound","lat":"51.47719577997","lon":"-2.5799008381","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRP90078","CommonName":"Osborne Avenue","Street":"Ashley Down Road","Indicator":"N-bound","lat":"51.47475286252","lon":"-2.58115130235","node":"E0035561","stoptype":"BCT"},{"AtcoCode":"0100BRP90079","CommonName":"Ashley Park","Street":"Chesterfield Road","Indicator":"NE-bound","lat":"51.47258729397","lon":"-2.58267872336","node":"N0077042","stoptype":"BCT"},{"AtcoCode":"0100BRP90080","CommonName":"Ashley Park","Street":"Chesterfield Road","Indicator":"SW-bound","lat":"51.47247940149","lon":"-2.58267734825","node":"N0077042","stoptype":"BCT"},{"AtcoCode":"0100BRP90081","CommonName":"Balmoral Road","Street":"Cromwell Road","Indicator":"N-bound","lat":"51.47051651393","lon":"-2.58502784281","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90082","CommonName":"Balmoral Road","Street":"Cromwell Road","Indicator":"SW-bound","lat":"51.46987807825","lon":"-2.58503407056","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90083","CommonName":"Belvoir Road","Street":"Cromwell Road","Indicator":"E-bound","lat":"51.46915073667","lon":"-2.58663718378","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90084","CommonName":"Belvoir Road","Street":"Cromwell Road","Indicator":"W-bound","lat":"51.46890444616","lon":"-2.58733945371","node":"E0035625","stoptype":"BCT"},{"AtcoCode":"0100BRP90085","CommonName":"Cromwell Road Arches","Street":"Cromwell Road","Indicator":"E-bound","lat":"51.46949244469","lon":"-2.59199714587","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90086","CommonName":"Cromwell Road Arches","Street":"North Road","Indicator":"SW-bound","lat":"51.46920979407","lon":"-2.59277090413","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP90087","CommonName":"Brunswick Street","Street":"City Road","Indicator":"NE-bound","lat":"51.46275619858","lon":"-2.58872873898","node":"N0077045","stoptype":"BCT"},{"AtcoCode":"0100BRP90088","CommonName":"Brigstocke Road","Street":"City Road","Indicator":"SW-bound","lat":"51.46319397998","lon":"-2.58749642768","node":"N0077045","stoptype":"BCT"},{"AtcoCode":"0100BRP90089","CommonName":"Brigstocke Road","Street":"City Road","Indicator":"NE-bound","lat":"51.46381969639","lon":"-2.58643924129","node":"N0077045","stoptype":"BCT"},{"AtcoCode":"0100BRP90090","CommonName":"Denbigh Street","Street":"City Road","Indicator":"SW-bound","lat":"51.46439368472","lon":"-2.58493511561","node":"N0077045","stoptype":"BCT"},{"AtcoCode":"0100BRP90091","CommonName":"Denbigh Street","Street":"City Road","Indicator":"NE-bound","lat":"51.46498291192","lon":"-2.58397816785","node":"N0077045","stoptype":"BCT"},{"AtcoCode":"0100BRP90092","CommonName":"Brook Road","Street":"Ashley Road","Indicator":"E-bound","lat":"51.46597838659","lon":"-2.58088143002","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90093","CommonName":"Brook Road","Street":"Ashley Road","Indicator":"W-bound","lat":"51.46563251457","lon":"-2.58172637068","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90094","CommonName":"Sevier Street","Street":"Sevier Street","Indicator":"E-bound","lat":"51.46866825951","lon":"-2.57878492752","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90095","CommonName":"Sevier Street","Street":"Sevier Street","Indicator":"W-bound","lat":"51.46857870439","lon":"-2.5787118118","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90096","CommonName":"Stafford Road","Street":"James Street","Indicator":"NE-bound","lat":"51.47044431323","lon":"-2.57417157441","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90097","CommonName":"Stafford Road","Street":"James Street","Indicator":"SW-bound","lat":"51.47046412825","lon":"-2.57379750095","node":"N0077044","stoptype":"BCT"},{"AtcoCode":"0100BRP90098","CommonName":"Narroways Road","Street":"Glenfrome Road","Indicator":"NE-bound","lat":"51.4726278222","lon":"-2.57078674435","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90100","CommonName":"Narroways Road","Street":"Glenfrome Road","Indicator":"SW-bound","lat":"51.4725203501","lon":"-2.57069901659","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90101","CommonName":"Eastgate Road","Street":"Eastgate Road","Indicator":"S-bound","lat":"51.47337266379","lon":"-2.56738373599","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90102","CommonName":"Eastgate Road","Street":"Eastgate Road","Indicator":"N-bound","lat":"51.4734438256","lon":"-2.56754299661","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90103","CommonName":"Eastgate Centre","Indicator":"B","lat":"51.47477624741","lon":"-2.5634704034","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90105","CommonName":"Heath Road","Street":"Muller Road","Indicator":"NW-bound","lat":"51.47528347305","lon":"-2.56457094347","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90106","CommonName":"Eastgate Centre","Street":"Muller Road","Indicator":"C","lat":"51.47514073047","lon":"-2.56246700272","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90107","CommonName":"Heath Road","Street":"Muller Road","Indicator":"SE-bound","lat":"51.47553970269","lon":"-2.56551001737","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90110","CommonName":"Narroways Road","Street":"Glenfrome Road","Indicator":"Stop B","lat":"51.47357832576","lon":"-2.56947399692","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90111","CommonName":"Dormer Road","Street":"Muller Road","Indicator":"NW-bound","lat":"51.47589838513","lon":"-2.56757347148","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90112","CommonName":"Elmcroft Crescent","Street":"Muller Road","Indicator":"N-bound","lat":"51.47802252651","lon":"-2.57268283189","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90114","CommonName":"Elmcroft Crescent","Street":"Muller Road","Indicator":"S-bound","lat":"51.47839803935","lon":"-2.57311952208","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90116","CommonName":"Shaldon Road","Street":"Shaldon Road","Indicator":"N-bound","lat":"51.47993893182","lon":"-2.57427644362","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90117","CommonName":"Morris Road","Street":"Shaldon Road","Indicator":"NE-bound","lat":"51.4818758948","lon":"-2.57166547214","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90118","CommonName":"Morris Road","Street":"Romney Avenue","Indicator":"SW-bound","lat":"51.48235543805","lon":"-2.57105223822","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90119","CommonName":"Orpen Gardens","Street":"Romney Avenue","Indicator":"S-bound","lat":"51.48458959234","lon":"-2.56832947849","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90120","CommonName":"Haydon Gardens","Street":"Romney Avenue","Indicator":"NE-bound","lat":"51.48571284717","lon":"-2.56661523158","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90121","CommonName":"Haydon Gardens","Street":"Romney Avenue","Indicator":"SW-bound","lat":"51.48610391332","lon":"-2.56569835715","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90122","CommonName":"Mulready Close","Street":"Romney Avenue","Indicator":"NE-bound","lat":"51.488005897","lon":"-2.56284139894","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90123","CommonName":"Mulready Close","Street":"Romney Avenue","Indicator":"SW-bound","lat":"51.48814193793","lon":"-2.56259823102","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90124","CommonName":"Cameron Walk","Street":"Romney Avenue","Indicator":"S-bound","lat":"51.48971183486","lon":"-2.56147971994","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90125","CommonName":"Cameron Walk","Street":"Cameron Walk","Indicator":"W-bound","lat":"51.49029245625","lon":"-2.56227903425","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90127","CommonName":"Gainsborough Square","Street":"Gainsborough Square","Indicator":"A","lat":"51.49091415059","lon":"-2.56388546818","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90128","CommonName":"Gainsborough Square","Street":"Gainsborough Square","Indicator":"Stop B","lat":"51.49069629326","lon":"-2.56244244151","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90130","CommonName":"Stothard Road","Street":"Bonnington Walk","Indicator":"N-bound","lat":"51.49306023637","lon":"-2.56448812283","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90131","CommonName":"Stothard Road","Street":"Bonnington Walk","Indicator":"S-bound","lat":"51.493374992","lon":"-2.56447760797","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90132","CommonName":"Melton Crescent","Street":"Wordsworth Road","Indicator":"N-bound","lat":"51.49489447728","lon":"-2.57007100452","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90133","CommonName":"Melton Crescent","Street":"Wordsworth Road","Indicator":"SW-bound","lat":"51.49438170864","lon":"-2.57012222362","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90134","CommonName":"Blakeney Road","Street":"Wordsworth Road","Indicator":"S-bound","lat":"51.49070537322","lon":"-2.5717183318","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90135","CommonName":"Blakeney Road","Street":"Wordsworth Road","Indicator":"N-bound","lat":"51.49087655394","lon":"-2.57164845673","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90138","CommonName":"Dovercourt Road","Street":"Dovercourt Road","Indicator":"SW-bound","lat":"51.48584924279","lon":"-2.57553167106","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90140","CommonName":"Dovercourt Road","Street":"Dovercourt Road","Indicator":"N-bound","lat":"51.48560436314","lon":"-2.57596064023","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90142","CommonName":"Filton Avenue","Street":"Muller Road","Indicator":"C","lat":"51.48870791947","lon":"-2.58294189237","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90143","CommonName":"Muller Road Top","Street":"Muller Road","Indicator":"D","lat":"51.48921675261","lon":"-2.58368293345","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90145","CommonName":"Churchways Avenue","Street":"Filton Avenue","Indicator":"B","lat":"51.48717033807","lon":"-2.58475136545","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP90146","CommonName":"Filton Avenue","Street":"Filton Avenue","Indicator":"B","lat":"51.48770676416","lon":"-2.58356282723","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90149","CommonName":"Horfield Health Centre","Street":"Lockleaze Road","Indicator":"W-bound","lat":"51.4902407593","lon":"-2.57662402274","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRP90150","CommonName":"Turville Drive","Street":"Lockleaze Road","Indicator":"E-bound","lat":"51.48962054363","lon":"-2.57291461257","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90151","CommonName":"Turville Drive","Street":"Lockleaze Road","Indicator":"W-bound","lat":"51.48952957739","lon":"-2.57312951714","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90153","CommonName":"Landseer Avenue","Street":"Constable Road","Indicator":"W-bound","lat":"51.4892117551","lon":"-2.56822853957","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90154","CommonName":"Landseer Avenue","Street":"Constable Road","Indicator":"E-bound","lat":"51.48954937541","lon":"-2.56721012418","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRP90155","CommonName":"Woburn Road","Street":"Glenfrome Road","Indicator":"NE-bound","lat":"51.47628568295","lon":"-2.56557684161","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90156","CommonName":"Woburn Road","Street":"Glenfrome Road","Indicator":"SW-bound","lat":"51.47674252068","lon":"-2.56407060091","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90157","CommonName":"Sir John's Lane","Street":"Glenfrome Road","Indicator":"N-bound","lat":"51.47808765716","lon":"-2.56294964783","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90158","CommonName":"Stapleton Road","Street":"B4058","Indicator":"SW-bound","lat":"51.47621401507","lon":"-2.55990282151","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90163","CommonName":"Lamb Street","Street":"Lamb Street","Indicator":"NE-bound","lat":"51.45809043469","lon":"-2.57952905072","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90165","CommonName":"Thrissell Street","Street":"Stapleton Road","Indicator":"NE-bound","lat":"51.45945577039","lon":"-2.57616386573","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRP90166","CommonName":"Armoury Square","Street":"Stapleton Road","Indicator":"NE-bound","lat":"51.46175622209","lon":"-2.57278140381","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRP90167","CommonName":"Villiers Road","Street":"Stapleton Road","Indicator":"N-bound","lat":"51.46446638706","lon":"-2.57018104115","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90168","CommonName":"Warwick Road","Street":"Stapleton Road","Indicator":"N-bound","lat":"51.46669466447","lon":"-2.56866847294","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90170","CommonName":"Robertson Road","Indicator":"NE-bound","lat":"51.47003130214","lon":"-2.56479402343","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90171","CommonName":"Glen Park","Indicator":"NE-bound","lat":"51.47177873278","lon":"-2.56041000045","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90173","CommonName":"Eastville Park","Street":"Fishponds Road","Indicator":"C","lat":"51.47406812698","lon":"-2.55547070839","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90174","CommonName":"Royate Hill","Street":"Fishponds Road","Indicator":"E-bound","lat":"51.47315391627","lon":"-2.55103946104","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90175","CommonName":"Huyton Road","Street":"Fishponds Road","Indicator":"NE-bound","lat":"51.47421435344","lon":"-2.5473231154","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90176","CommonName":"Alcove Road","Indicator":"E-bound","lat":"51.47545703114","lon":"-2.54306161982","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90177","CommonName":"Lodge Causeway","Street":"Fishponds Road","Indicator":"NE-bound","lat":"51.47657374515","lon":"-2.53878400985","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90178","CommonName":"Channon's Hill","Street":"Fishponds Road","Indicator":"D","lat":"51.47821021135","lon":"-2.53485785627","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90179","CommonName":"Channons Hill","Street":"Fishponds Road","Indicator":"B","lat":"51.4790108058","lon":"-2.53280807074","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90180","CommonName":"New Station Road","Street":"Fishponds Road","Indicator":"Stop B","lat":"51.4804114188","lon":"-2.52929636964","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90181","CommonName":"Straits Parade","Street":"Straits Parade","Indicator":"B","lat":"51.48187266763","lon":"-2.52627477143","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90183","CommonName":"Vassal Road","Street":"Gill Avenue","Indicator":"E-bound","lat":"51.48518675612","lon":"-2.52511760509","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90184","CommonName":"Ettricke Drive","Street":"Gill Avenue","Indicator":"N-bound","lat":"51.48684068402","lon":"-2.52120482818","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90185","CommonName":"Selbrooke Crescent","Street":"Gill Avenue","Indicator":"NE-bound","lat":"51.48935699296","lon":"-2.51744556262","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90186","CommonName":"Long Close","Street":"Frenchay Road","Indicator":"NW-bound","lat":"51.48900958478","lon":"-2.51466188348","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90187","CommonName":"Selbrooke Crescent","Street":"Gill Avenue","Indicator":"SW-bound","lat":"51.48956664752","lon":"-2.51679980227","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90188","CommonName":"Ettricke Drive","Street":"Gill Avenue","Indicator":"S-bound","lat":"51.48647121591","lon":"-2.52138784002","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90189","CommonName":"Vassal Road","Street":"Gill Avenue","Indicator":"W-bound","lat":"51.48512581734","lon":"-2.52467045512","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100BRP90190","CommonName":"Straits Parade","Street":"Vassall Road","Indicator":"A","lat":"51.48202790736","lon":"-2.52574373597","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90191","CommonName":"Cross Hands","Street":"Fishponds Road","Indicator":"Stop B","lat":"51.48175875518","lon":"-2.5256110347","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90192","CommonName":"Maywood Road","Street":"Staple Hill Road","Indicator":"E-bound","lat":"51.48176760793","lon":"-2.51959170947","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90195","CommonName":"Stanbury Avenue","Street":"Downend Road","Indicator":"SW-bound","lat":"51.48305939108","lon":"-2.52026884078","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90196","CommonName":"Stanbury Avenue","Street":"Downend Road","Indicator":"NE-bound","lat":"51.48338511567","lon":"-2.51981171555","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90197","CommonName":"Thicket Road","Street":"Staple Hill Road","Indicator":"W-bound","lat":"51.48146850355","lon":"-2.51606019938","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90199","CommonName":"Maywood Road","Street":"Staple Hill Road","Indicator":"W-bound","lat":"51.48159632978","lon":"-2.51969056552","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90200","CommonName":"Cross Hands","Street":"Fishponds Road","Indicator":"Stop A","lat":"51.48167284386","lon":"-2.5247172147","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90201","CommonName":"New Station Road","Street":"Fishponds Road","Indicator":"Stop A","lat":"51.48013197909","lon":"-2.52945153373","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90202","CommonName":"Channons Hill","Street":"Fishponds Road","Indicator":"C","lat":"51.47890310887","lon":"-2.53276361632","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90203","CommonName":"Lodge Causeway","Street":"Fishponds Road","Indicator":"SW-bound","lat":"51.47744837984","lon":"-2.53628886044","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90204","CommonName":"Alcove Road","Street":"Fishponds Road","Indicator":"W-bound","lat":"51.47558930204","lon":"-2.54168092489","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRP90205","CommonName":"Huyton Road","Street":"Fishponds Road","Indicator":"W-bound","lat":"51.474289037","lon":"-2.54673368334","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90207","CommonName":"Royate Hill","Street":"Fishponds Road","Indicator":"W-bound","lat":"51.47309300831","lon":"-2.55060679207","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90208","CommonName":"Eastville Park","Street":"Fishponds Road","Indicator":"D","lat":"51.47369478088","lon":"-2.55645963519","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90210","CommonName":"Glen Park","Street":"Fishponds Road","Indicator":"SW-bound","lat":"51.47164483009","lon":"-2.56020679581","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90212","CommonName":"Chester Street","Street":"Robertson Road","Indicator":"SE-bound","lat":"51.46997349299","lon":"-2.56372794227","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90213","CommonName":"Robertson Road","Street":"Stapleton Road","Indicator":"SW-bound","lat":"51.46994284775","lon":"-2.56449059705","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90215","CommonName":"Berwick Road","Street":"Stapleton Road","Indicator":"SW-bound","lat":"51.46843217191","lon":"-2.5663722669","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90216","CommonName":"Warwick Road","Street":"Stapleton Road","Indicator":"S-bound","lat":"51.46650592181","lon":"-2.56865172993","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90217","CommonName":"Villiers Road","Street":"Stapleton Road","Indicator":"S-bound","lat":"51.46465652971","lon":"-2.56990990348","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90218","CommonName":"Armoury Square","Street":"Stapleton Road","Indicator":"SW-bound","lat":"51.46155785572","lon":"-2.57289407315","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRP90219","CommonName":"Thrissell Street","Street":"Stapleton Road","Indicator":"SW-bound","lat":"51.4603816196","lon":"-2.57439069274","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRP90221","CommonName":"West Street","Street":"West Street","Indicator":"W-bound","lat":"51.45705656508","lon":"-2.5776736743","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90224","CommonName":"Glenfrome Road","Street":"Bell Hill","Indicator":"N-bound","lat":"51.47919877439","lon":"-2.5599969837","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRP90225","CommonName":"Stapleton Church","Street":"Bell Hill","Indicator":"E-bound","lat":"51.48116335299","lon":"-2.55718418234","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRP90226","CommonName":"Stapleton Church","Street":"Bell Hill","Indicator":"W-bound","lat":"51.48121289011","lon":"-2.55621996038","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRP90227","CommonName":"Glenfrome Road","Street":"Bell Hill","Indicator":"S-bound","lat":"51.47909150062","lon":"-2.55986607187","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRP90228","CommonName":"Stapleton Road","Street":"Stapleton Road","Indicator":"N-bound","lat":"51.47681180486","lon":"-2.56087487708","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRP90231","CommonName":"Park Street Top","Street":"Queen's Road","Indicator":"U6","lat":"51.45586597923","lon":"-2.60513378547","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP90232","CommonName":"Park Street Top","Street":"Queen's Road","Indicator":"U1","lat":"51.45592698389","lon":"-2.60550879632","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP90233","CommonName":"Triangle West","Street":"Triangle West","Indicator":"U3","lat":"51.45648000653","lon":"-2.60810679009","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP90237","CommonName":"Queen's Road","Street":"Queen's Road","Indicator":"U2","lat":"51.45651518271","lon":"-2.60652406708","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP90268","CommonName":"Park Row","Street":"B4051","Indicator":"U5","lat":"51.45539604417","lon":"-2.60034932966","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90269","CommonName":"Horfield Road","Street":"Horfield Road","Indicator":"SW-bound","lat":"51.45788934329","lon":"-2.59807916185","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90270","CommonName":"Horfield Road","Street":"Horfield Road","Indicator":"N-bound","lat":"51.45799628085","lon":"-2.59826767041","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90271","CommonName":"Bristol Royal Infirmary","Street":"Upper Maudlin Street","Indicator":"H1","lat":"51.45866501713","lon":"-2.59584394741","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90273","CommonName":"Bristol Royal Infirmary","Indicator":"H2","lat":"51.45866384621","lon":"-2.59607422513","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90307","CommonName":"Temple Way","Street":"Temple Way","Indicator":"Of","lat":"51.45491608033","lon":"-2.58321639604","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90309","CommonName":"Temple Way","Indicator":"Th","lat":"51.45120566702","lon":"-2.5843923287","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90310","CommonName":"Temple Meads","Street":"Temple Gate","Indicator":"Te","lat":"51.44885172762","lon":"-2.58401689873","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90311","CommonName":"Temple Meads","Street":"Temple Gate","Indicator":"Tf","lat":"51.44876260554","lon":"-2.58385746911","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90312","CommonName":"Temple Meads","Street":"Station Approach","Indicator":"Tc","lat":"51.44898454992","lon":"-2.5826227388","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90313","CommonName":"Temple Meads","Street":"Station Approach","Indicator":"Ta","lat":"51.44943839275","lon":"-2.58176509364","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90317","CommonName":"Temple Meads","Street":"Temple Gate","Indicator":"Tg","lat":"51.44829030494","lon":"-2.58300243009","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90318","CommonName":"Temple Meads","Indicator":"Tj","lat":"51.44838505207","lon":"-2.58383826146","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90319","CommonName":"Temple Meads","Street":"A4","Indicator":"Tk","lat":"51.44890278271","lon":"-2.58098121099","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90320","CommonName":"Temple Way","Indicator":"Tl","lat":"51.45147310203","lon":"-2.58485625805","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRP90325","CommonName":"Temple Way","Street":"Temple Way","Indicator":"Oi","lat":"51.45488624115","lon":"-2.58379170026","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90326","CommonName":"College Green","Street":"Park Street","Indicator":"P2","lat":"51.45349369684","lon":"-2.60134617531","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90327","CommonName":"College Green","Street":"College Green","Indicator":"P1","lat":"51.45301061636","lon":"-2.60086490487","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90332","CommonName":"The Centre","Street":"St Augustines Parade","Indicator":"C8","lat":"51.45337679506","lon":"-2.59783307596","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90336","CommonName":"The Centre","Street":"Colston Street","Indicator":"Cv","lat":"51.45433868997","lon":"-2.5978744299","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90337","CommonName":"The Centre","Street":"Colston Avenue","Indicator":"C10","lat":"51.45492824244","lon":"-2.59687468528","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90338","CommonName":"The Centre","Street":"Colston Avenue","Indicator":"C11","lat":"51.45517217306","lon":"-2.59664759255","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90340","CommonName":"The Centre","Street":"Colston Avenue","Indicator":"C12","lat":"51.45589306795","lon":"-2.59634036138","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90342","CommonName":"Broadmead","Street":"Lewins Mead","Indicator":"He","lat":"51.45767555983","lon":"-2.59414707748","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90343","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Rh","lat":"51.45864961604","lon":"-2.59178483461","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90344","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Ri","lat":"51.4587943447","lon":"-2.59161398691","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90345","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Rj","lat":"51.45892986418","lon":"-2.59148619923","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90346","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Re","lat":"51.45868783214","lon":"-2.59133913625","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90347","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Rf","lat":"51.45864258643","lon":"-2.59139612451","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90348","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Rs","lat":"51.45849793073","lon":"-2.59155258002","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90349","CommonName":"The Haymarket","Street":"The Haymarket","Indicator":"Rg","lat":"51.4583171653","lon":"-2.59173735383","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90350","CommonName":"Stokes Croft","Street":"Stokes Croft","Indicator":"N2","lat":"51.46093835187","lon":"-2.59082126041","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90354","CommonName":"Bond Street","Street":"Bond Street South","Indicator":"Om","lat":"51.4567165444","lon":"-2.58459226431","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90355","CommonName":"Queen Square","Street":"Prince Street","Indicator":"Q1","lat":"51.45051546947","lon":"-2.5964573486","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90356","CommonName":"Cabot Circus South","Street":"Bond Street South","Indicator":"Ok","lat":"51.45649248561","lon":"-2.58444547467","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90357","CommonName":"Bond Street","Street":"Bond Street South","Indicator":"Ou","lat":"51.45641465038","lon":"-2.58382559854","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRP90363","CommonName":"Cabot Circus","Street":"Bond Street","Indicator":"Su","lat":"51.45922849417","lon":"-2.58753185259","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRP90364","CommonName":"Bond Street","Indicator":"Rc","lat":"51.45919995961","lon":"-2.5896329335","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90365","CommonName":"Bond Street","Indicator":"Rd","lat":"51.4591899547","lon":"-2.58983431315","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90366","CommonName":"Stokes Croft","Street":"Marlborough Street","Indicator":"Rm","lat":"51.45980076059","lon":"-2.59174215387","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP90368","CommonName":"Broadmead","Street":"Rupert Street","Indicator":"Ha","lat":"51.45699304284","lon":"-2.59397989175","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90369","CommonName":"Rupert Street","Street":"Rupert Street","Indicator":"Hb","lat":"51.45689268224","lon":"-2.59426644362","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90371","CommonName":"The Centre","Street":"St Augustines Parade","Indicator":"C7","lat":"51.45387335724","lon":"-2.59743659438","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90372","CommonName":"The Centre","Street":"Colston Avenue","Indicator":"C2","lat":"51.4540917088","lon":"-2.59693573031","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90373","CommonName":"The Centre","Street":"Colston Avenue","Indicator":"C1","lat":"51.45381283979","lon":"-2.59696087513","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90379","CommonName":"Baldwin Street","Street":"Baldwin Street","Indicator":"C13","lat":"51.45343508107","lon":"-2.59521455419","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90382","CommonName":"Baldwin Street","Street":"Baldwin Street","Indicator":"R10","lat":"51.45360076465","lon":"-2.5926837675","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90383","CommonName":"Baldwin Street","Street":"Baldwin Street","Indicator":"R11","lat":"51.45373592153","lon":"-2.59262795145","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRP90384","CommonName":"Wine Street","Street":"Wine Street","Indicator":"Se","lat":"51.45546751114","lon":"-2.59159974552","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90385","CommonName":"Wine Street","Street":"Wine Street","Indicator":"Sc","lat":"51.45546925408","lon":"-2.59125435277","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90386","CommonName":"Union Street","Street":"Union Street","Indicator":"Sf","lat":"51.45621681796","lon":"-2.59100494944","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90387","CommonName":"Union Street","Street":"Union Street","Indicator":"Sg","lat":"51.45645885055","lon":"-2.59115200261","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90388","CommonName":"Union Street","Street":"Union Street","Indicator":"Sh","lat":"51.45662032649","lon":"-2.59122605271","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90396","CommonName":"Union Street","Street":"Union Street","Indicator":"Si","lat":"51.4575431358","lon":"-2.59188566316","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90399","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"Sk","lat":"51.45806723199","lon":"-2.59137429251","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90402","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"Sl","lat":"51.45822269295","lon":"-2.59085814831","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90404","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"Sm","lat":"51.4584690044","lon":"-2.59015606096","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRP90405","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"Sn","lat":"51.45888286338","lon":"-2.58831904857","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRP90408","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"Sp","lat":"51.45890351733","lon":"-2.58778675909","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRP90409","CommonName":"The Horsefair","Street":"The Horsefair","Indicator":"So","lat":"51.45890207339","lon":"-2.58807460817","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRP90671","CommonName":"Five Acre Drive","Street":"Frenchay Park Road","Indicator":"SW-bound","lat":"51.49250572111","lon":"-2.53509723199","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRP90673","CommonName":"Stoke Lane","Street":"Frenchay Park Road","Indicator":"E-bound","lat":"51.49031853893","lon":"-2.53950781384","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRP90674","CommonName":"Sheldrake Drive","Street":"Frenchay Park Road","Indicator":"W-bound","lat":"51.48929897955","lon":"-2.54221792722","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRP90677","CommonName":"Frenchay Park Road","Street":"Stoke Lane","Indicator":"NW-bound","lat":"51.49062904736","lon":"-2.5404188913","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRP90678","CommonName":"Frenchay Park Road","Street":"Stoke Lane","Indicator":"SE-bound","lat":"51.49066560914","lon":"-2.54028969359","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRP90979","CommonName":"Belgrave Road","Street":"Whiteladies Road","Indicator":"N-bound","lat":"51.46096398515","lon":"-2.60865580345","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP90981","CommonName":"Belgrave Road","Street":"Whiteladies Road","Indicator":"S-bound","lat":"51.46115399213","lon":"-2.60842802639","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP90983","CommonName":"Clifton Down Station","Street":"Whiteladies Road","Indicator":"N-bound","lat":"51.46408829455","lon":"-2.60957548125","node":"N0077028","stoptype":"BCT"},{"AtcoCode":"0100BRP90984","CommonName":"Apsley Road","Street":"Whiteladies Road","Indicator":"NW-bound","lat":"51.46801687484","lon":"-2.6131693333","node":"N0077028","stoptype":"BCT"},{"AtcoCode":"0100BRP90986","CommonName":"Black Boy Hill","Street":"Upper Belgrave Road","Indicator":"B","lat":"51.47124767727","lon":"-2.61606332355","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP90987","CommonName":"Black Boy Hill","Indicator":"C","lat":"51.47093692473","lon":"-2.6153104827","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP90988","CommonName":"Black Boy Hill","Street":"Westbury Road","Indicator":"D","lat":"51.47069499918","lon":"-2.6151488587","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP90990","CommonName":"Clifton Down Station","Indicator":"S-bound","lat":"51.46410717475","lon":"-2.60940299253","node":"N0077028","stoptype":"BCT"},{"AtcoCode":"0100BRP90996","CommonName":"Sunderland Place","Street":"Saint Pauls Road","Indicator":"NE-bound","lat":"51.45961991101","lon":"-2.60948714112","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP90997","CommonName":"Queen's Avenue","Street":"Queen's Avenue","Indicator":"E-bound","lat":"51.45780206015","lon":"-2.60805240037","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP90998","CommonName":"Victoria Rooms","Street":"Queen's Road","Indicator":"W-bound","lat":"51.45788299776","lon":"-2.60978064508","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP90999","CommonName":"Victoria Rooms","Street":"Queen's Road","Indicator":"E-bound","lat":"51.45806656334","lon":"-2.61079061141","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91001","CommonName":"Students Union","Street":"Queen's Road","Indicator":"S-bound","lat":"51.45717334588","lon":"-2.61309593373","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91002","CommonName":"Students Union","Street":"Queens Road","Indicator":"N-bound","lat":"51.4567837949","lon":"-2.61365202913","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91003","CommonName":"Victoria Square","Indicator":"W-bound","lat":"51.45538234191","lon":"-2.61513002768","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91004","CommonName":"Clifton Village","Street":"Clifton Down Road","Indicator":"S-bound","lat":"51.45525361185","lon":"-2.61908616579","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91005","CommonName":"Clifton Village","Street":"Clifton Down Road","Indicator":"N-bound","lat":"51.45569173768","lon":"-2.61955265149","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91006","CommonName":"Christ Church","Street":"Clifton Down","Indicator":"W-bound","lat":"51.45705890572","lon":"-2.62116877136","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91008","CommonName":"Christ Church","Indicator":"S-bound","lat":"51.45717952407","lon":"-2.62046515918","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91011","CommonName":"Percival Road","Street":"The Promenade","Indicator":"SE-bound","lat":"51.45822782634","lon":"-2.62623665497","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91012","CommonName":"Percival Road","Street":"The Promenade","Indicator":"N-bound","lat":"51.45871963821","lon":"-2.62674715543","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91013","CommonName":"Bridge Valley Road","Street":"The Promenade","Indicator":"N-bound","lat":"51.46213875177","lon":"-2.62631899295","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91014","CommonName":"Bridge Valley Road","Street":"The Promenade","Indicator":"S-bound","lat":"51.46218447572","lon":"-2.62617567475","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91015","CommonName":"Bristol Zoo","Street":"Clifton Down","Indicator":"SW-bound","lat":"51.46356070357","lon":"-2.62439515912","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91016","CommonName":"Bristol Zoo","Street":"Clifton Down","Indicator":"NE-bound","lat":"51.46395875969","lon":"-2.62393995405","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91017","CommonName":"The Avenue","Street":"Clifton Down","Indicator":"SW-bound","lat":"51.46553733646","lon":"-2.62129832638","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91018","CommonName":"The Avenue","Street":"Clifton Down","Indicator":"NE-bound","lat":"51.46579906683","lon":"-2.62111473993","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91019","CommonName":"Downfield Road","Street":"Pembroke Road","Indicator":"N-bound","lat":"51.46564583704","lon":"-2.61948596468","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91020","CommonName":"Downfield Road","Street":"Pembroke Road","Indicator":"SE-bound","lat":"51.46553100759","lon":"-2.61909573101","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91021","CommonName":"Guthrie Road","Street":"Pembroke Road","Indicator":"N-bound","lat":"51.46392792397","lon":"-2.61787924585","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91022","CommonName":"Guthrie Road","Street":"Pembroke Road","Indicator":"S-bound","lat":"51.46355356323","lon":"-2.61725520892","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91023","CommonName":"Alma Vale","Street":"Pembroke Road","Indicator":"N-bound","lat":"51.46160706112","lon":"-2.6163652836","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91024","CommonName":"College Road","Street":"College Road","Indicator":"SE-bound","lat":"51.46332709131","lon":"-2.62436318004","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRP91027","CommonName":"Durdham Park","Street":"Westbury Road","Indicator":"N-bound","lat":"51.47419588779","lon":"-2.61626143326","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP91028","CommonName":"Durdham Park","Street":"Westbury Road","Indicator":"S-bound","lat":"51.47478982238","lon":"-2.61616865107","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP91029","CommonName":"Westbury Road","Indicator":"B","lat":"51.47901338633","lon":"-2.61664317801","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP91030","CommonName":"Westbury Road","Street":"Parry's Lane","Indicator":"C","lat":"51.47944055701","lon":"-2.61748413312","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP91031","CommonName":"Westbury Road","Street":"Westbury Road","Indicator":"A","lat":"51.47998335086","lon":"-2.6168578647","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP91032","CommonName":"Henleaze Gardens","Street":"Westbury Road","Indicator":"N-bound","lat":"51.48354491126","lon":"-2.61668991993","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRP91033","CommonName":"Henleaze Gardens","Street":"Westbury Road","Indicator":"SW-bound","lat":"51.48327624259","lon":"-2.61648467948","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRP91034","CommonName":"Brecon Road","Street":"Westbury Road","Indicator":"SE-bound","lat":"51.48627288373","lon":"-2.61602103613","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRP91035","CommonName":"Brecon Road","Street":"Westbury Road","Indicator":"N-bound","lat":"51.48716720899","lon":"-2.6169404375","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRP91036","CommonName":"Grange Court Road","Indicator":"N-bound","lat":"51.48867473305","lon":"-2.61752250035","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRP91037","CommonName":"Southfield Road","Street":"Westbury Road","Indicator":"SW-bound","lat":"51.48967621708","lon":"-2.61687349375","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91038","CommonName":"Southfield Road","Street":"Westbury Road","Indicator":"N-bound","lat":"51.490674971","lon":"-2.61674294457","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91041","CommonName":"Westbury Village","Indicator":"W-bound","lat":"51.49295948553","lon":"-2.62002911683","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91043","CommonName":"Westbury Village","Street":"Canford Lane","Indicator":"E-bound","lat":"51.49303948985","lon":"-2.62020305244","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91045","CommonName":"Henbury Road","Street":"Falcondale Road","Indicator":"SW-bound","lat":"51.49634670902","lon":"-2.62052165337","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91046","CommonName":"Falcondale Walk","Indicator":"NE-bound","lat":"51.49768100859","lon":"-2.61814844808","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91047","CommonName":"Falcondale Walk","Street":"Falcondale Road","Indicator":"SW-bound","lat":"51.49777440968","lon":"-2.61748705262","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91048","CommonName":"Brentry Hill","Street":"Passage Road","Indicator":"N-bound","lat":"51.4995590895","lon":"-2.61666121433","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91049","CommonName":"The Ridgeway","Street":"Passage Road","Indicator":"N-bound","lat":"51.50294513403","lon":"-2.61566961178","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91050","CommonName":"The Ridgeway","Street":"Passage Road","Indicator":"S-bound","lat":"51.5031179281","lon":"-2.61529735087","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91051","CommonName":"Brentry Lane","Street":"Passage Road","Indicator":"N-bound","lat":"51.50705005498","lon":"-2.6164742036","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91052","CommonName":"Brentry Lane","Street":"Passage Road","Indicator":"S-bound","lat":"51.50694390559","lon":"-2.61614137427","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91053","CommonName":"Brentry Roundabout","Street":"Crow Lane","Indicator":"W-bound","lat":"51.50940786465","lon":"-2.61950317481","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91054","CommonName":"Brentry Roundabout","Street":"Crow Lane","Indicator":"E-bound","lat":"51.50951491823","lon":"-2.61966313015","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91055","CommonName":"Crow Lane Lay-by","Street":"Crow Lane","Indicator":"SW-bound","lat":"51.50847216399","lon":"-2.62300627912","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91057","CommonName":"Crow Lane Lay-by","Street":"Crow Lane","Indicator":"NE-bound","lat":"51.50865075725","lon":"-2.62323926116","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91058","CommonName":"The Salutation","Street":"Crow Lane","Indicator":"C","lat":"51.50653713568","lon":"-2.62672606387","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91059","CommonName":"The Salutation","Street":"Henbury Road","Indicator":"B","lat":"51.50670955292","lon":"-2.62811164288","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91060","CommonName":"Avonmouth Way","Street":"Station Road","Indicator":"N-bound","lat":"51.50775400048","lon":"-2.63119508357","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91061","CommonName":"Avonmouth Way","Street":"Station Road","Indicator":"S-bound","lat":"51.50777275779","lon":"-2.63105125485","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91062","CommonName":"Marissal Road","Street":"Station Road","Indicator":"S-bound","lat":"51.51145072601","lon":"-2.62930084625","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91063","CommonName":"Marissal Road","Street":"Station Road","Indicator":"N-bound","lat":"51.51143181611","lon":"-2.62947350506","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91064","CommonName":"Tormarton Crescent","Street":"Station Road","Indicator":"N-bound","lat":"51.51332994667","lon":"-2.62762630545","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91065","CommonName":"Tormarton Crescent","Street":"Station Road","Indicator":"SW-bound","lat":"51.51304968581","lon":"-2.62791066169","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91066","CommonName":"Westover Road","Street":"Northover Road","Indicator":"SW-bound","lat":"51.50002061847","lon":"-2.62290539518","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91067","CommonName":"Northover Road","Street":"Northover Road","Indicator":"E-bound","lat":"51.50150701558","lon":"-2.61727819506","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91068","CommonName":"The Salutation","Street":"Henbury Road","Indicator":"A","lat":"51.50619761112","lon":"-2.62800374281","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91071","CommonName":"Arnall Drive","Indicator":"NW-bound","lat":"51.50303190973","lon":"-2.62644744216","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91072","CommonName":"Arnall Drive","Indicator":"S-bound","lat":"51.50290004643","lon":"-2.62588375014","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91073","CommonName":"Coombe Way","Street":"Henbury Road","Indicator":"N-bound","lat":"51.50062272813","lon":"-2.62465679868","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91074","CommonName":"Coombe Way","Street":"Henbury Road","Indicator":"S-bound","lat":"51.50070433714","lon":"-2.62452825573","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRP91075","CommonName":"Falcondale Road","Street":"Henbury Road","Indicator":"N-bound","lat":"51.49735133004","lon":"-2.62098187166","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91076","CommonName":"Henbury Road","Street":"Henbury Road","Indicator":"N-bound","lat":"51.4962984761","lon":"-2.61944060993","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91077","CommonName":"Westbury High Street","Indicator":"S-bound","lat":"51.49357032333","lon":"-2.61843852813","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRP91078","CommonName":"Grasmere Close","Street":"Greystoke Avenue","Indicator":"NE-bound","lat":"51.49888416573","lon":"-2.6133387247","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91080","CommonName":"Grasmere Close","Street":"Greystoke Avenue","Indicator":"SW-bound","lat":"51.49805942677","lon":"-2.6145809484","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91081","CommonName":"Ambleside Avenue","Street":"Greystoke Avenue","Indicator":"SW-bound","lat":"51.49976749659","lon":"-2.61120405315","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91082","CommonName":"Ambleside Avenue","Street":"Greystoke Avenue","Indicator":"NE-bound","lat":"51.50043171145","lon":"-2.60970026215","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91083","CommonName":"Gosforth Road","Street":"Greystoke Avenue","Indicator":"SW-bound","lat":"51.50093578817","lon":"-2.60786294255","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91084","CommonName":"Gosforth Road","Street":"Greystoke Avenue","Indicator":"NE-bound","lat":"51.5013808976","lon":"-2.60699005376","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91085","CommonName":"Arnside Road","Indicator":"NE-bound","lat":"51.50289546937","lon":"-2.60273123178","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91086","CommonName":"Arnside Road","Indicator":"SW-bound","lat":"51.50268027871","lon":"-2.60261313426","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91087","CommonName":"Greystoke Avenue","Street":"Greystoke Avenue","Indicator":"NE-bound","lat":"51.50464894221","lon":"-2.59743789821","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91088","CommonName":"Greystoke Avenue","Street":"Greystoke Avenue","Indicator":"SW-bound","lat":"51.50528045696","lon":"-2.59525614535","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91089","CommonName":"Jarratts Road","Street":"Pen Park Road","Indicator":"opp","lat":"51.50711263875","lon":"-2.59566906167","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91090","CommonName":"Jarratts Road","Street":"Pen Park Road","Indicator":"adj","lat":"51.50738178209","lon":"-2.59578784207","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91091","CommonName":"Lanercost Road","Street":"Pen Park Road","Indicator":"SE-bound","lat":"51.50859560804","lon":"-2.59756158384","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91092","CommonName":"Lanercost Road","Street":"Pen Park Road","Indicator":"NW-bound","lat":"51.50951336782","lon":"-2.59920184986","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91093","CommonName":"Charlton Rd Jct","Street":"Pen Park Road","Indicator":"N-bound","lat":"51.5104154104","lon":"-2.60039527711","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91094","CommonName":"Charlton Rd Jct","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.51046903687","lon":"-2.60221159622","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91095","CommonName":"Knole Lane","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.50995902475","lon":"-2.60347290282","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91096","CommonName":"Robin Close","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.5081380955","lon":"-2.60611448223","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91097","CommonName":"Robin Close","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.50798450453","lon":"-2.6062565319","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91098","CommonName":"Brentry Hospital","Street":"Charlton Road","Indicator":"opp","lat":"51.50516754311","lon":"-2.61022454666","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91099","CommonName":"Brentry Hospital","Street":"Charlton Road","Indicator":"adj","lat":"51.50497760837","lon":"-2.61043812714","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91100","CommonName":"Burghill Road","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.50258398583","lon":"-2.6142384347","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91102","CommonName":"Burghill Road","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.50262833671","lon":"-2.61435428856","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91103","CommonName":"Marlwood Drive","Street":"Knole Lane","Indicator":"E-bound","lat":"51.50997468621","lon":"-2.61430904081","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91104","CommonName":"Marlwood Drive","Street":"Knole Lane","Indicator":"W-bound","lat":"51.50999002493","lon":"-2.61481357938","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91105","CommonName":"St Josephs Road","Street":"Knole Lane","Indicator":"W-bound","lat":"51.5099573162","lon":"-2.60902052835","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91106","CommonName":"St Josephs Road","Street":"Knole Lane","Indicator":"E-bound","lat":"51.51030275248","lon":"-2.6065610971","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100BRP91107","CommonName":"Turnbridge Road","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.51181416835","lon":"-2.59940496824","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91108","CommonName":"Turnbridge Road","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.51166795515","lon":"-2.5998641689","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91109","CommonName":"Chakeshill Drive","Street":"Charlton Road","Indicator":"N-bound","lat":"51.51352279902","lon":"-2.59759725715","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91112","CommonName":"Pen Park Road","Street":"Pen Park Road","Indicator":"S-bound","lat":"51.50544697193","lon":"-2.59433620104","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91113","CommonName":"Charfield Road","Street":"Pen Park Road","Indicator":"N-bound","lat":"51.50377866491","lon":"-2.59352207458","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91114","CommonName":"Charfield Road","Street":"Pen Park Road","Indicator":"S-bound","lat":"51.50286522953","lon":"-2.59278984147","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP91115","CommonName":"Lydney Road","Street":"Pen Park Road","Indicator":"N-bound","lat":"51.50176188739","lon":"-2.5922712791","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92000","CommonName":"Doncaster Road","Street":"Doncaster Road","Indicator":"NW-bound","lat":"51.49743568621","lon":"-2.59783333403","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92001","CommonName":"Birchall Road","Street":"King's Drive","Indicator":"S-bound","lat":"51.47683911052","lon":"-2.59897502467","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92002","CommonName":"Birchall Road","Street":"King's Drive","Indicator":"N-bound","lat":"51.47685635674","lon":"-2.59911924104","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92003","CommonName":"Queen's Drive","Street":"Bishop Road","Indicator":"SE-bound","lat":"51.48068804992","lon":"-2.60238072269","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92004","CommonName":"King's Drive","Street":"Bishop Road","Indicator":"NW-bound","lat":"51.4800601781","lon":"-2.60032764061","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92005","CommonName":"King's Drive","Street":"King's Drive","Indicator":"S-bound","lat":"51.47940803528","lon":"-2.59949828403","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92006","CommonName":"Cheriton Place","Street":"Eastfield Road","Indicator":"E-bound","lat":"51.49238143126","lon":"-2.61024099717","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92007","CommonName":"Cheriton Place","Street":"Eastfield Road","Indicator":"W-bound","lat":"51.49226702175","lon":"-2.60976414027","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92008","CommonName":"Cherington Road","Street":"Wellington Hill West","Indicator":"E-bound","lat":"51.49231128733","lon":"-2.59943712729","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92009","CommonName":"Cherington Road","Street":"Wellington Hill West","Indicator":"W-bound","lat":"51.49218747487","lon":"-2.59903219444","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92010","CommonName":"Clare Avenue","Street":"Clare Avenue","Indicator":"C","lat":"51.47533120518","lon":"-2.60020794111","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92013","CommonName":"Halsbury Road","Street":"Coldharbour Road","Indicator":"SW-bound","lat":"51.47804395006","lon":"-2.6077168585","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92014","CommonName":"Cotham Park","Street":"Cotham Grove","Indicator":"SE-bound","lat":"51.4662259386","lon":"-2.59781390218","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92015","CommonName":"Cotham Hill","Street":"Cotham Road","Indicator":"E-bound","lat":"51.46239804308","lon":"-2.60258601833","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92016","CommonName":"Cotham Hill","Street":"Cotham Road","Indicator":"W-bound","lat":"51.46227202075","lon":"-2.6026131468","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92017","CommonName":"Cotham Hill","Street":"St Michael's Hill","Indicator":"N-bound","lat":"51.46186631447","lon":"-2.602823716","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92018","CommonName":"Cotham Side","Street":"Cotham Road","Indicator":"N-bound","lat":"51.46427198189","lon":"-2.59659356773","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92019","CommonName":"Cotham Side","Street":"Cotham Road","Indicator":"SW-bound","lat":"51.46386665278","lon":"-2.59673222949","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100BRP92020","CommonName":"Badocks Wood School","Street":"Doncaster Road","Indicator":"opp","lat":"51.50001153934","lon":"-2.6057617224","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92021","CommonName":"Badocks Wood School","Street":"Doncaster Road","Indicator":"adj","lat":"51.50005105622","lon":"-2.60681391016","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92022","CommonName":"The Hawthorns","Street":"Woodland Road","Indicator":"N-bound","lat":"51.45922512652","lon":"-2.60411310724","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP92023","CommonName":"Elton Road","Street":"Elton Road","Indicator":"W-bound","lat":"51.45865809837","lon":"-2.60422076478","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"0100BRP92024","CommonName":"Phoenix Grove","Street":"Kellaway Avenue","Indicator":"NE-bound","lat":"51.48356393821","lon":"-2.59914956832","node":"E0035605","stoptype":"BCT"},{"AtcoCode":"0100BRP92025","CommonName":"Henleaze Road","Street":"Northumbria Drive","Indicator":"S-bound","lat":"51.48243243716","lon":"-2.61278669131","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92026","CommonName":"Henleaze Road","Street":"Henleaze Road","Indicator":"N-bound","lat":"51.48309663999","lon":"-2.61301161254","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92027","CommonName":"Lake Road","Street":"Southmead Road","Indicator":"E-bound","lat":"51.4925283015","lon":"-2.60619544033","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92028","CommonName":"Lake Road","Street":"Southmead Road","Indicator":"W-bound","lat":"51.49237293644","lon":"-2.60494023685","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92029","CommonName":"Henley Grove","Street":"Henleaze Road","Indicator":"NE-bound","lat":"51.48569588997","lon":"-2.61115984068","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92030","CommonName":"Northumbria Drive","Street":"Northumbria Drive","Indicator":"N-bound","lat":"51.48073577584","lon":"-2.61225993359","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92031","CommonName":"Northumbria Drive","Street":"North View","Indicator":"W-bound","lat":"51.47974085894","lon":"-2.61165620791","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92032","CommonName":"Henleaze Park Drive","Street":"Henleaze Road","Indicator":"SW-bound","lat":"51.48715310699","lon":"-2.60932143562","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92033","CommonName":"Henley Grove","Street":"Henleaze Road","Indicator":"S-bound","lat":"51.48456563068","lon":"-2.61236885","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92034","CommonName":"Wellington Hill","Street":"Kellaway Avenue","Indicator":"S-bound","lat":"51.48758861816","lon":"-2.59099296297","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92036","CommonName":"Phoenix Grove","Indicator":"SW-bound","lat":"51.48319368777","lon":"-2.59946153692","node":"E0035605","stoptype":"BCT"},{"AtcoCode":"0100BRP92037","CommonName":"Kingsholm Road","Street":"Southmead Road","Indicator":"NE-bound","lat":"51.4975389175","lon":"-2.59698475747","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92038","CommonName":"Kingsholm Road","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.49669666275","lon":"-2.59816938858","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92039","CommonName":"Longmead Avenue","Street":"Kellaway Avenue","Indicator":"NE-bound","lat":"51.48544268808","lon":"-2.59571778315","node":"E0035605","stoptype":"BCT"},{"AtcoCode":"0100BRP92040","CommonName":"Longmead Avenue","Street":"Kellaway Avenue","Indicator":"SW-bound","lat":"51.48471002329","lon":"-2.59657232265","node":"E0035605","stoptype":"BCT"},{"AtcoCode":"0100BRP92041","CommonName":"Myrtle Road","Street":"Saint Michael's Hill","Indicator":"S-bound","lat":"51.46046248636","lon":"-2.60129385585","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100BRP92042","CommonName":"Chapel Green Lane","Street":"Redland Road","Indicator":"NW-bound","lat":"51.4724142624","lon":"-2.60962889698","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92043","CommonName":"Grove Road","Street":"Redland Hill","Indicator":"W-bound","lat":"51.47157994342","lon":"-2.6127132097","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92044","CommonName":"Grove Road","Street":"Redland Hill","Indicator":"E-bound","lat":"51.47164923646","lon":"-2.6132180476","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92047","CommonName":"Chapel Green Lane","Indicator":"SE-bound","lat":"51.47219322895","lon":"-2.60890607081","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92048","CommonName":"Ermleet Road","Street":"Redland Road","Indicator":"W-bound","lat":"51.47003744559","lon":"-2.6032625712","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92049","CommonName":"Ermleet Road","Street":"Redland Road","Indicator":"E-bound","lat":"51.47014659699","lon":"-2.60301926358","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92050","CommonName":"Redland Station","Street":"Redland Grove","Indicator":"A","lat":"51.46864933478","lon":"-2.60042255149","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92051","CommonName":"Redland Station","Street":"Redland Grove","Indicator":"B","lat":"51.46762966323","lon":"-2.59937264047","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92052","CommonName":"Southmead Hospital","Street":"Southmead Road","Indicator":"Stop D","lat":"51.49846339648","lon":"-2.59554185025","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92053","CommonName":"Southmead Hospital","Street":"Southmead Road","Indicator":"Stop C","lat":"51.49904971198","lon":"-2.59517493839","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92054","CommonName":"Southmead Hospital","Street":"Monks Park Avenue","Indicator":"Stop B","lat":"51.4984640859","lon":"-2.58828131464","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92055","CommonName":"Southmead Hospital","Street":"Monk's Park Avenue","Indicator":"Stop A","lat":"51.49830347655","lon":"-2.58803434761","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92056","CommonName":"Greenfield Road","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.50056266489","lon":"-2.59293283308","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92057","CommonName":"Greenfield Road","Street":"Southmead Road","Indicator":"NE-bound","lat":"51.50101439869","lon":"-2.5925064984","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92058","CommonName":"Springfield Grove","Street":"Coldharbour Road","Indicator":"NE-bound","lat":"51.48143365926","lon":"-2.60426261271","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92059","CommonName":"Springfield Grove","Street":"Coldharbour Road","Indicator":"SW-bound","lat":"51.48123533784","lon":"-2.60436079358","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92060","CommonName":"Queen's Drive","Street":"Bishop Road","Indicator":"NW-bound","lat":"51.48098930097","lon":"-2.60324871373","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRP92061","CommonName":"Bishopthorpe Road","Street":"Wellington Hill West","Indicator":"SE-bound","lat":"51.49159106384","lon":"-2.59608602379","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92062","CommonName":"Bishopthorpe Road","Street":"Wellington Hill West","Indicator":"N-bound","lat":"51.49053393251","lon":"-2.59532325749","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92063","CommonName":"St Oswald's Road","Street":"Coldharbour Road","Indicator":"SW-bound","lat":"51.47356675435","lon":"-2.61105527032","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92064","CommonName":"St Oswald's Road","Street":"Coldharbour Road","Indicator":"N-bound","lat":"51.47389065519","lon":"-2.61101640535","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92065","CommonName":"Dorset Road","Street":"Henleaze Road","Indicator":"N-bound","lat":"51.48862230132","lon":"-2.60863529313","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92066","CommonName":"Dorset Road","Street":"Henleaze Road","Indicator":"S-bound","lat":"51.4895696416","lon":"-2.6080141784","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92067","CommonName":"Monk's Park Avenue","Street":"Monk's Park Avenue","Indicator":"E-bound","lat":"51.49741221775","lon":"-2.58285129653","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92068","CommonName":"Monk's Park Avenue","Street":"Monk's Park Avenue","Indicator":"W-bound","lat":"51.4970502388","lon":"-2.58150697619","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92069","CommonName":"Halsbury Road","Street":"Coldharbour Road","Indicator":"N-bound","lat":"51.47955156056","lon":"-2.60655611247","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92070","CommonName":"Linden Road","Street":"Linden Road","Indicator":"NW-bound","lat":"51.47866350715","lon":"-2.60788349163","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92071","CommonName":"Upper Cranbrook Road","Street":"Upper Cranbrook Road","Indicator":"SE-bound","lat":"51.47908559322","lon":"-2.60624753419","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRP92072","CommonName":"Waterdale Gardens","Street":"Wellington Hill West","Indicator":"E-bound","lat":"51.49260014399","lon":"-2.60272502928","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92073","CommonName":"Waterdale Gardens","Street":"Wellington Hill West","Indicator":"W-bound","lat":"51.49241281405","lon":"-2.602434479","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRP92074","CommonName":"Church Road","Street":"Wellington Hill","Indicator":"E-bound","lat":"51.48757150256","lon":"-2.58903401407","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP92075","CommonName":"Kellaway Crescent","Street":"Wellington Hill West","Indicator":"SE-bound","lat":"51.48891077965","lon":"-2.59269519582","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP92076","CommonName":"Kellaway Crescent","Street":"Wellington Hill West","Indicator":"NW-bound","lat":"51.48839395794","lon":"-2.59176672095","node":"N0077032","stoptype":"BCT"},{"AtcoCode":"0100BRP92077","CommonName":"Bayswater Avenue","Street":"Coldharbour Road","Indicator":"N-bound","lat":"51.47642319671","lon":"-2.60988394499","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92078","CommonName":"Bayswater Avenue","Street":"Coldharbour Road","Indicator":"S-bound","lat":"51.47663171192","lon":"-2.60955555061","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"0100BRP92079","CommonName":"Whiteleaze","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.4949110763","lon":"-2.60095492865","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92080","CommonName":"Whiteleaze","Street":"Southmead Road","Indicator":"NE-bound","lat":"51.49545348674","lon":"-2.60038586848","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92081","CommonName":"Wilton Close","Street":"Doncaster Road","Indicator":"E-bound","lat":"51.49919718455","lon":"-2.60151553414","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRP92082","CommonName":"Wilton Close","Street":"Doncaster Road","Indicator":"W-bound","lat":"51.49925694177","lon":"-2.60213578336","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRQ0","CommonName":"Capricorn Quay Ferry Landing","Indicator":"Entrance","lat":"51.45008514504","lon":"-2.60845351371","node":"E0035583","stoptype":"FTD"},{"AtcoCode":"0100BRR0","CommonName":"Redcliffe Back Ferry Landing","Indicator":"Entrance","lat":"51.45216743092","lon":"-2.59162902795","node":"N0077026","stoptype":"FTD"},{"AtcoCode":"0100BRS0","CommonName":"Bristol Docks Ferry Landing","Indicator":"Entrance","lat":"51.50444257282","lon":"-2.70426876946","node":"E0035565","stoptype":"FTD"},{"AtcoCode":"0100BRSTLTM0","CommonName":"Bristol Temple Meads Rail Station","Indicator":"Entrance","lat":"51.44963940906","lon":"-2.5811200786","node":"E0057160","stoptype":"RSE"},{"AtcoCode":"0100BRT0","CommonName":"Temple Meads Station Ferry Landing","Indicator":"Entrance","lat":"51.4515084824","lon":"-2.58135968429","node":"N0077020","stoptype":"FTD"},{"AtcoCode":"0100BRW0","CommonName":"Welsh Back Ferry Landing","Indicator":"Entrance","lat":"51.45278447025","lon":"-2.5922990145","node":"N0076879","stoptype":"FTD"},{"AtcoCode":"0100BRX32921","CommonName":"Prince Street","Street":"Prince Street","Indicator":"Bp","lat":"51.45118066078","lon":"-2.59649480227","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRX32922","CommonName":"Queen Square","Street":"Prince Street","Indicator":"Q2","lat":"51.45074850436","lon":"-2.59660429474","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRX43052","CommonName":"Morrisons Fishponds","Indicator":"S-bound","lat":"51.47852159043","lon":"-2.53163600617","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRZ00678","CommonName":"Clifton High School","Street":"College Road","Indicator":"S-bound","lat":"51.45908605944","lon":"-2.61870623205","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRZ00679","CommonName":"Clifton College School","Street":"The Avenue","Indicator":"opp","lat":"51.46470780576","lon":"-2.62003467162","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRZ00680","CommonName":"Clifton College School","Street":"The Avenue","Indicator":"adj","lat":"51.46473394105","lon":"-2.62019337356","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRZ00681","CommonName":"Badminton School","Street":"Westbury Road","Indicator":"opp","lat":"51.48406782632","lon":"-2.61642335132","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ00686","CommonName":"Portway P&R","Indicator":"N-bound","lat":"51.48987962291","lon":"-2.68854643399","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRZ00687","CommonName":"Temple Meads","Street":"Station Approach","Indicator":"Tb","lat":"51.44887602347","lon":"-2.58093770055","node":"N0077020","stoptype":"BCT"},{"AtcoCode":"0100BRZ00692","CommonName":"The Centre","Street":"Rupert Street","Indicator":"C9","lat":"51.45537209993","lon":"-2.59623282411","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRZ00695","CommonName":"Windmill Lane","Indicator":"S-bound","lat":"51.51003098919","lon":"-2.63745147273","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRZ00696","CommonName":"Windmill Lane","Street":"Hallen Road","Indicator":"N-bound","lat":"51.51119549384","lon":"-2.63826027545","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRZ00698","CommonName":"Greville Road","Street":"North Street","Indicator":"NW-bound","lat":"51.44078182886","lon":"-2.61132247145","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRZ00699","CommonName":"Durnford Street","Street":"Duckmoor Road","Indicator":"SE-bound","lat":"51.44117830959","lon":"-2.61801810567","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRZ00702","CommonName":"Wot Baptist Church","Street":"Reedley Road","Indicator":"SW-bound","lat":"51.48642619005","lon":"-2.62443390905","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ00703","CommonName":"Wot Baptist Church","Street":"Reedley Road","Indicator":"NE-bound","lat":"51.48647045437","lon":"-2.62456413266","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ00704","CommonName":"Reedley Road","Street":"Reedley Road","Indicator":"NE-bound","lat":"51.48498756574","lon":"-2.62611364154","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ00705","CommonName":"Reedley Road","Street":"Reedley Road","Indicator":"SW-bound","lat":"51.48518751943","lon":"-2.62571313414","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ01652","CommonName":"Sea Mills Station","Indicator":"NE-bound","lat":"51.47952592709","lon":"-2.64992826154","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRZ01655","CommonName":"Windmill Hill","Street":"Windmill Hill","Indicator":"SE-bound","lat":"51.43963767308","lon":"-2.59427258688","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01656","CommonName":"Windmill Hill","Street":"Windmill Hill","Indicator":"NW-bound","lat":"51.43959227996","lon":"-2.59435832141","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01657","CommonName":"Mendip Road","Street":"Mendip Road","Indicator":"NE-bound","lat":"51.4368447328","lon":"-2.59712800479","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRZ01658","CommonName":"Mendip Road","Street":"Mendip Road","Indicator":"SW-bound","lat":"51.43678216179","lon":"-2.59705525641","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRZ01659","CommonName":"Porlock Road","Street":"Quantock Road","Indicator":"NE-bound","lat":"51.43759217303","lon":"-2.59513800542","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01660","CommonName":"Quantock Road","Street":"Quantock Road","Indicator":"NE-bound","lat":"51.43855113905","lon":"-2.59398512763","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01661","CommonName":"Quantock Road","Street":"Quantock Road","Indicator":"SW-bound","lat":"51.43848842028","lon":"-2.59394115285","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01662","CommonName":"Alfred Road","Street":"Alfred Road","Indicator":"NE-bound","lat":"51.43947627149","lon":"-2.59418416768","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01663","CommonName":"Alfred Road","Street":"Alfred Road","Indicator":"SW-bound","lat":"51.4394406719","lon":"-2.59411176921","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01664","CommonName":"Vivian St Orwell Street","Street":"Vivian Street","Indicator":"NE-bound","lat":"51.43994922489","lon":"-2.59134159703","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01665","CommonName":"Vivian St Orwell Street","Street":"Vivian Street","Indicator":"SW-bound","lat":"51.43993182346","lon":"-2.59122627285","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01666","CommonName":"Orwell Street","Street":"Orwell Street","Indicator":"SE-bound","lat":"51.43963729458","lon":"-2.59079084864","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01667","CommonName":"Orwell Street","Street":"Orwell Street","Indicator":"NW-bound","lat":"51.43955593967","lon":"-2.59087612237","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01668","CommonName":"Somerset Terrace","Street":"Somerset Terrace","Indicator":"SW-bound","lat":"51.43883120816","lon":"-2.5919457974","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01669","CommonName":"Somerset Terrace","Street":"Somerset Terrace","Indicator":"NE-bound","lat":"51.438893855","lon":"-2.59200415594","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01670","CommonName":"Dunkerry Road","Street":"Dunkerry Road","Indicator":"SW-bound","lat":"51.43812299269","lon":"-2.59330338973","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01671","CommonName":"Dunkerry Road","Street":"Dunkerry Road","Indicator":"NE-bound","lat":"51.4381584471","lon":"-2.59340455732","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01672","CommonName":"Cotswold Road","Street":"Cotswold Road","Indicator":"E-bound","lat":"51.4364863439","lon":"-2.59510924225","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRZ01673","CommonName":"Cotswold Road","Street":"Cotswold Road","Indicator":"W-bound","lat":"51.4363965062","lon":"-2.59509368803","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRZ01674","CommonName":"Brendon Road","Street":"Cotswold Road","Indicator":"W-bound","lat":"51.43665518849","lon":"-2.59373034365","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01675","CommonName":"Brendon Road","Street":"Cotswold Road","Indicator":"E-bound","lat":"51.43673588952","lon":"-2.59377454961","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01676","CommonName":"Dunford Road","Street":"Dunford Road","Indicator":"E-bound","lat":"51.43692887567","lon":"-2.59117310057","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01677","CommonName":"Dunford Road","Street":"Dunford Road","Indicator":"W-bound","lat":"51.43685694702","lon":"-2.59117217165","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01678","CommonName":"Paultow Road","Street":"Paultow Road","Indicator":"N-bound","lat":"51.43654342009","lon":"-2.59093794099","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01679","CommonName":"Paultow Road","Street":"Paultow Road","Indicator":"S-bound","lat":"51.43655299147","lon":"-2.59082297369","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01680","CommonName":"Raymend Road","Street":"St John's Lane","Indicator":"W-bound","lat":"51.43665371811","lon":"-2.58688240334","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01681","CommonName":"Atlas Road Kensal Road","Street":"Atlas Road","Indicator":"SW-bound","lat":"51.43699686812","lon":"-2.58838299831","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01682","CommonName":"Atlas Road Kensal Road","Street":"Atlas Road","Indicator":"NE-bound","lat":"51.43709533664","lon":"-2.58847058315","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01683","CommonName":"Kensal Road","Street":"Kensal Road","Indicator":"NW-bound","lat":"51.43842313631","lon":"-2.59084711231","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01684","CommonName":"Kensal Road","Street":"Kensal Road","Indicator":"SE-bound","lat":"51.43845968084","lon":"-2.59073248837","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01685","CommonName":"Holmesdale Road","Street":"Holmesdale Road","Indicator":"NE-bound","lat":"51.43929193236","lon":"-2.58973612405","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01686","CommonName":"Holmesdale Road","Street":"Holmesdale Road","Indicator":"SW-bound","lat":"51.43923834785","lon":"-2.58966349765","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01687","CommonName":"Nutgrove Avenue","Street":"Nutgrove Avenue","Indicator":"SE-bound","lat":"51.43806978255","lon":"-2.58600857537","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01688","CommonName":"Nutgrove Avenue","Street":"Nutgrove Avenue","Indicator":"NW-bound","lat":"51.4380154763","lon":"-2.58607981421","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01689","CommonName":"Newport Street","Street":"Newport Street","Indicator":"SE-bound","lat":"51.43788138759","lon":"-2.5841214964","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01691","CommonName":"Raven Hill","Street":"Saint John's Lane","Indicator":"W-bound","lat":"51.44117707403","lon":"-2.57954507084","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01692","CommonName":"Cambridge Street","Street":"Oxford Street","Indicator":"N-bound","lat":"51.44352510058","lon":"-2.57930142241","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01693","CommonName":"William Street","Street":"Cambridge Street","Indicator":"NW-bound","lat":"51.44370107916","lon":"-2.58008063426","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01694","CommonName":"Richmond Street","Street":"Cambridge Street","Indicator":"NW-bound","lat":"51.44405715951","lon":"-2.58080458323","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01695","CommonName":"Pylle Hill Crescent","Street":"Richmond Street","Indicator":"SW-bound","lat":"51.44334470949","lon":"-2.58304014543","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01696","CommonName":"Pylle Hill Crescent","Street":"Pylle Hill Crescent","Indicator":"SE-bound","lat":"51.44208290134","lon":"-2.58182985931","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01697","CommonName":"Stevens Crescent","Street":"Windsor Terrace","Indicator":"SW-bound","lat":"51.44174238264","lon":"-2.58159532267","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRZ01699","CommonName":"Corinthian Court","Street":"Somerset Street","Indicator":"NW-bound","lat":"51.44771411559","lon":"-2.58675084276","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRZ01700","CommonName":"Somerset Square","Street":"Prewett Street","Indicator":"SW-bound","lat":"51.44743048954","lon":"-2.58772571052","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRZ01701","CommonName":"Prewett Street","Street":"Prewett Street","Indicator":"W-bound","lat":"51.44705985808","lon":"-2.58990817823","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRZ01704","CommonName":"Kensal Avenue","Street":"Kensal Avenue","Indicator":"NE-bound","lat":"51.43726125073","lon":"-2.58945100346","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01705","CommonName":"Kensal Avenue","Street":"Kensal Avenue","Indicator":"SW-bound","lat":"51.43719867493","lon":"-2.58937826487","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRZ01707","CommonName":"Clifton High School","Street":"College Road","Indicator":"N-bound","lat":"51.45920142261","lon":"-2.61899566239","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRZ01708","CommonName":"Badminton School","Street":"Westbury Road","Indicator":"NE-bound","lat":"51.48421983972","lon":"-2.61658381684","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRZ01709","CommonName":"St Ursula's High School","Street":"Brecon Road","Indicator":"NE-bound","lat":"51.48681126633","lon":"-2.61280220513","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRZ01710","CommonName":"Red Maid's School","Street":"Grange Court Road","Indicator":"W-bound","lat":"51.4881353733","lon":"-2.61407298934","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRZ01713","CommonName":"Parson Street Station","Indicator":"SW-bound","lat":"51.43292549109","lon":"-2.60740547766","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100CLFDOWN0","CommonName":"Clifton Down Rail Station","Indicator":"Entrance","lat":"51.4646144192","lon":"-2.61041741536","node":"E0035590","stoptype":"RSE"},{"AtcoCode":"0100FBX18331","CommonName":"Belland Drive","Street":"Belland Drive","Indicator":"B","lat":"51.40734322651","lon":"-2.57734867513","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100FBX18333","CommonName":"Oldbury Court School","Indicator":"S-bound","lat":"51.49053787812","lon":"-2.51676757899","node":"N0077035","stoptype":"BCT"},{"AtcoCode":"0100FBX18336","CommonName":"Hengrove Leisure Park","Street":"Hengrove Way","Indicator":"NE-bound","lat":"51.41764122634","lon":"-2.5894861074","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100FBX18337","CommonName":"Hengrove Leisure Park","Street":"Hengrove Way","Indicator":"SW-bound","lat":"51.41735568028","lon":"-2.58905102293","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100FBX18339","CommonName":"Hengrove Depot","Street":"Roman Farm Road","Indicator":"NE-bound","lat":"51.41955536232","lon":"-2.58791444808","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100FBX18342","CommonName":"Hengrove Depot","Street":"Roman Farm Road","Indicator":"SW-bound","lat":"51.41942999177","lon":"-2.58781217206","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100GAS0","CommonName":"Gasferry North","Indicator":"Entrance","lat":"51.44965502591","lon":"-2.6064331261","node":"E0057160","stoptype":"FTD"},{"AtcoCode":"0100HNV0","CommonName":"Hannover Quay","Indicator":"Entrance","lat":"51.44930735235","lon":"-2.60585290316","node":"E0057160","stoptype":"FTD"},{"AtcoCode":"0100LAWRNCH0","CommonName":"Lawrence Hill Rail Station","Indicator":"Entrance","lat":"51.45802101961","lon":"-2.56427149014","node":"N0077038","stoptype":"RSE"},{"AtcoCode":"0100MONPELR0","CommonName":"Montpelier Rail Station","Indicator":"Entrance","lat":"51.46823239334","lon":"-2.58866967853","node":"E0035625","stoptype":"RSE"},{"AtcoCode":"0100OST0","CommonName":"The Ostrich","Indicator":"Entrance","lat":"51.44827983781","lon":"-2.5940394587","node":"N0077026","stoptype":"FTD"},{"AtcoCode":"0100PARSNST0","CommonName":"Parson Street Rail Station","Indicator":"Entrance","lat":"51.43314728375","lon":"-2.60798383212","node":"E0035570","stoptype":"RSE"},{"AtcoCode":"0100PATCHWY0","CommonName":"Patchway Rail Station","Indicator":"Entrance","lat":"51.52583643467","lon":"-2.56219800627","node":"E0041896","stoptype":"RSE"},{"AtcoCode":"0100REDLAND0","CommonName":"Redland Rail Station","Indicator":"Entrance","lat":"51.46831334878","lon":"-2.59930962064","node":"E0035635","stoptype":"RSE"},{"AtcoCode":"0100SADWRD0","CommonName":"St Andrews Road Rail Station","Indicator":"Entrance","lat":"51.51299954134","lon":"-2.69574005619","node":"E0035565","stoptype":"RSE"},{"AtcoCode":"0100SEMILLS0","CommonName":"Sea Mills Rail Station","Indicator":"Entrance","lat":"51.47988524437","lon":"-2.64999097092","node":"E0035641","stoptype":"RSE"},{"AtcoCode":"0100SGB20368","CommonName":"Ledbury Road","Street":"Thicket Road","Indicator":"S-bound","lat":"51.48014712473","lon":"-2.51597327841","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100SGP90563","CommonName":"Begbrook Park","Street":"Frenchay Park Road","Indicator":"NE-bound","lat":"51.49680048553","lon":"-2.53184873372","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0100SGZ01485","CommonName":"Blackhorse Road","Street":"Blackhorse Road","Indicator":"N-bound","lat":"51.46249524743","lon":"-2.51218986933","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100SHAMPTN0","CommonName":"Shirehampton Rail Station","Indicator":"Entrance","lat":"51.48434325315","lon":"-2.67887165134","node":"E0035642","stoptype":"RSE"},{"AtcoCode":"0100STP0","CommonName":"St Philip's Bridge","Indicator":"Entrance","lat":"51.453568453","lon":"-2.58659565763","node":"N0077020","stoptype":"FTD"},{"AtcoCode":"0100STPLTNR0","CommonName":"Stapleton Road Rail Station","Indicator":"Entrance","lat":"51.46738146814","lon":"-2.56610012365","node":"E0035599","stoptype":"RSE"},{"AtcoCode":"0100WWH0","CommonName":"Wapping Wharf","Indicator":"Entrance","lat":"51.44720452463","lon":"-2.60212690531","node":"E0035583","stoptype":"FTD"},{"AtcoCode":"017000001","CommonName":"Pomphrey Hill","Indicator":"E-bound","lat":"51.48222023068","lon":"-2.47655324246","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000002","CommonName":"Pomphrey Hill","Street":"Pomphrey Hill","Indicator":"W-bound","lat":"51.48228000491","lon":"-2.47733150266","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000003","CommonName":"Shopping Centre","Indicator":"W-bound","lat":"51.53964960143","lon":"-2.40978866191","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"017000004","CommonName":"Shopping Centre","Indicator":"W-bound","lat":"51.53964980297","lon":"-2.40973098871","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"017000005","CommonName":"Science Park","Indicator":"SE-bound","lat":"51.49952652512","lon":"-2.47715158879","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000006","CommonName":"Science Park","Indicator":"NW-bound","lat":"51.49936468439","lon":"-2.47714989787","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000007","CommonName":"Buckingham Parade","Indicator":"N-bound","lat":"51.61040616841","lon":"-2.52419348394","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"017000008","CommonName":"Cleve Road","Indicator":"S-bound","lat":"51.51663867531","lon":"-2.5713801673","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000009","CommonName":"Viburnum Road","Indicator":"SW-bound","lat":"51.55725758648","lon":"-2.54979106616","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"017000010","CommonName":"Hickory Lane","Indicator":"NW-bound","lat":"51.55696401847","lon":"-2.55294644533","node":"E0055149","stoptype":"BCT"},{"AtcoCode":"017000011","CommonName":"Wallshut Wood","Street":"Long Mead","Indicator":"NW-bound","lat":"51.49854608437","lon":"-2.55864952131","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000012","CommonName":"Wallshut Wood","Indicator":"SE-bound","lat":"51.49811046095","lon":"-2.55760698188","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000013","CommonName":"Platts Wood","Street":"Long Mead","Indicator":"W-bound","lat":"51.49838664538","lon":"-2.55053710746","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000014","CommonName":"Platts Wood","Street":"Long Mead","Indicator":"E-bound","lat":"51.49841915744","lon":"-2.55127219541","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000015","CommonName":"Hi-ways Park","Street":"Moorhouse Lane","Indicator":"E-bound","lat":"51.51515652157","lon":"-2.65210711811","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"017000016","CommonName":"Moorhouse Park","Street":"Moorhouse Lane","Indicator":"E-bound","lat":"51.51499581527","lon":"-2.65351710964","node":"E0041824","stoptype":"BCT"},{"AtcoCode":"017000017","CommonName":"Longdown Avenue","Street":"Long Mead","Indicator":"SE-bound","lat":"51.49999110019","lon":"-2.55920022977","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000018","CommonName":"Longdown Avenue","Street":"Long Mead","Indicator":"NW-bound","lat":"51.49999830418","lon":"-2.55957488198","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000019","CommonName":"Aldermoor Way","Indicator":"W-bound","lat":"51.44535350448","lon":"-2.49845785487","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"017000020","CommonName":"Rutherford Close","Indicator":"W-bound","lat":"51.44006615575","lon":"-2.48783990878","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"017000021","CommonName":"Post Box","Indicator":"S-bound","lat":"51.53937602792","lon":"-2.28332028726","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"017000022","CommonName":"Post Box","Indicator":"N-bound","lat":"51.53915999292","lon":"-2.2834198745","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"017000023","CommonName":"High Leaze Road","Street":"Highwood Road","Indicator":"NE-bound","lat":"51.5302541926","lon":"-2.57823963535","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"017000024","CommonName":"High Leaze Road","Indicator":"SW-bound","lat":"51.53011868847","lon":"-2.57836766032","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"017000025","CommonName":"Frenchay Campus","Indicator":"Stop F","lat":"51.49918183413","lon":"-2.54585032221","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"017000026","CommonName":"Shield Retail Centre","Indicator":"SW-bound","lat":"51.5084788278","lon":"-2.57414543492","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000027","CommonName":"Abbey Wood Retail Park","Indicator":"W-bound","lat":"51.50567383855","lon":"-2.55729591132","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000028","CommonName":"Elm Park","Indicator":"SW-bound","lat":"51.50634379549","lon":"-2.57496867943","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000029","CommonName":"Bude Road","Indicator":"S-bound","lat":"51.51281338839","lon":"-2.56288781992","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000030","CommonName":"Braemar Avenue","Indicator":"NW-bound","lat":"51.5023144593","lon":"-2.58248164868","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000031","CommonName":"Shields Avenue","Indicator":"S-bound","lat":"51.50422223801","lon":"-2.57304015693","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"017000032","CommonName":"Waitrose","Indicator":"E-bound","lat":"51.5400546117","lon":"-2.39659902865","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"017000033","CommonName":"The Clamp","Indicator":"N-bound","lat":"51.43970304114","lon":"-2.47110362061","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"017000034","CommonName":"The Clamp","Indicator":"S-bound","lat":"51.43973111359","lon":"-2.47083055099","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"017000035","CommonName":"Lyde Green P&R","Indicator":"N-bound","lat":"51.49414230085","lon":"-2.46780449338","node":"E0041869","stoptype":"BCT"},{"AtcoCode":"017000036","CommonName":"Lyde Green P&R","Indicator":"S-bound","lat":"51.49360219812","lon":"-2.46795740868","node":"E0041869","stoptype":"BCT"},{"AtcoCode":"017000037","CommonName":"Gleneagles Road","Indicator":"E-bound","lat":"51.45257405546","lon":"-2.48118056994","node":"N0074118","stoptype":"BCT"},{"AtcoCode":"017000038","CommonName":"Gleneagles Road","Indicator":"W-bound","lat":"51.45248075754","lon":"-2.47981241451","node":"N0074118","stoptype":"BCT"},{"AtcoCode":"017000039","CommonName":"Southernwood","Indicator":"S-bound","lat":"51.43039112845","lon":"-2.29377852338","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"017000040","CommonName":"Hambrook","Indicator":"W-bound","lat":"51.50334943554","lon":"-2.51708543807","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"017000041","CommonName":"The Square","Indicator":"SE-bound","lat":"51.49697855321","lon":"-2.55927859023","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000042","CommonName":"The Square","Indicator":"NW-bound","lat":"51.49696901239","lon":"-2.55939371623","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"017000043","CommonName":"Fire Station","Indicator":"SW-bound","lat":"51.53090899314","lon":"-2.57490340601","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"017000044","CommonName":"Patchway Brook","Indicator":"NW-bound","lat":"51.5414517712","lon":"-2.55715625047","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"017000045","CommonName":"Patchway Brook","Indicator":"SE-bound","lat":"51.54148821453","lon":"-2.55705575989","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"017000046","CommonName":"Willow Brook","Indicator":"N-bound","lat":"51.53596874826","lon":"-2.54722759515","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"017000047","CommonName":"Willow Brook","Indicator":"S-bound","lat":"51.53622143782","lon":"-2.54702877853","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"017000048","CommonName":"Webbs Wood","Indicator":"NW-bound","lat":"51.52718576208","lon":"-2.53713273848","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"017000049","CommonName":"Great Meadow","Indicator":"NW-bound","lat":"51.5248941389","lon":"-2.53292565864","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"017000050","CommonName":"Great Meadow","Indicator":"SE-bound","lat":"51.52584036625","lon":"-2.53443581288","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"017000051","CommonName":"Great Stoke","Indicator":"N-bound","lat":"51.51842101096","lon":"-2.53077472758","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"017000052","CommonName":"Great Stoke","Indicator":"S-bound","lat":"51.51839553775","lon":"-2.53044295313","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"017000053","CommonName":"Harry Stoke","Indicator":"N-bound","lat":"51.50778700167","lon":"-2.53801396832","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"017000054","CommonName":"Harry Stoke","Indicator":"S-bound","lat":"51.50760962559","lon":"-2.53747875644","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"017000055","CommonName":"Parkway North","Indicator":"NE-bound","lat":"51.51592908677","lon":"-2.53501150004","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"017000056","CommonName":"Parkway North","Indicator":"SW-bound","lat":"51.51584816735","lon":"-2.53501055156","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"017000057","CommonName":"Hambrook","Indicator":"E-bound","lat":"51.50370558176","lon":"-2.51788188098","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"017000058","CommonName":"Willy Wicket","Indicator":"E-bound","lat":"51.50538184077","lon":"-2.49193771823","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"017000059","CommonName":"Willy Wicket","Indicator":"W-bound","lat":"51.50500817884","lon":"-2.4888360043","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"017000060","CommonName":"Emerald Park","Indicator":"SE-bound","lat":"51.50012167309","lon":"-2.48113394742","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000061","CommonName":"Emerald Park","Indicator":"NW-bound","lat":"51.50001129466","lon":"-2.48173784796","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000062","CommonName":"Emersons Green","Indicator":"NE-bound","lat":"51.49143980533","lon":"-2.47130569117","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"017000064","CommonName":"Palmer Avenue","Indicator":"S-bound","lat":"51.54506004142","lon":"-2.64440145491","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"017000065","CommonName":"Western Approach","Indicator":"N-bound","lat":"51.55257192876","lon":"-2.65343544754","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"01700SG027","CommonName":"Starveall Crossroads","Indicator":"SE-bound","lat":"51.5886843959","lon":"-2.29443841095","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"01700SG028","CommonName":"Starveall Crossroads","Indicator":"NW-bound","lat":"51.58856776382","lon":"-2.29433661699","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"01700SG033","CommonName":"The Limes","Street":"Wotton Road","Indicator":"W-bound","lat":"51.63042356638","lon":"-2.39494547234","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"01700SG034","CommonName":"The Limes","Street":"Wotton Road","Indicator":"E-bound","lat":"51.63030478508","lon":"-2.39550789147","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170BRP90055","CommonName":"Eden Grove","Street":"Filton Avenue","Indicator":"N-bound","lat":"51.49974359798","lon":"-2.57137046434","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170BRP90193","CommonName":"Thicket Road","Street":"High Street","Indicator":"E-bound","lat":"51.48151124123","lon":"-2.51451983291","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170BRP91110","CommonName":"Charlton Road","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.51559177197","lon":"-2.59565000221","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170BRP91111","CommonName":"Charlton Road","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.51561954993","lon":"-2.59549184087","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170BRSTPWY0","CommonName":"Bristol Parkway Rail Station","Indicator":"Entrance","lat":"51.51413679939","lon":"-2.54347842878","node":"E0053725","stoptype":"RSE"},{"AtcoCode":"0170FILTNEW0","CommonName":"Filton Abbey Wood Rail Station","Indicator":"Entrance","lat":"51.50491035528","lon":"-2.56277598692","node":"E0053705","stoptype":"RSE"},{"AtcoCode":"0170PILNING0","CommonName":"Pilning Rail Station","Indicator":"Entrance","lat":"51.55623817998","lon":"-2.62582254765","node":"E0041900","stoptype":"RSE"},{"AtcoCode":"0170SGA01531","CommonName":"Stockwell Drive","Street":"Blackhorse Road","Indicator":"N-bound","lat":"51.49007616141","lon":"-2.48596842155","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA01532","CommonName":"Morrisons","Street":"Station Road","Indicator":"E-bound","lat":"51.54147646824","lon":"-2.41698590728","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01533","CommonName":"Frenchay Campus","Indicator":"Stop A1","lat":"51.5000525576","lon":"-2.54616326156","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGA01579","CommonName":"Burley Avenue","Street":"Hill House Road","Indicator":"N-bound","lat":"51.4858027257","lon":"-2.49727158628","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA01580","CommonName":"Haythorn Court","Street":"Hill House Road","Indicator":"N-bound","lat":"51.48233714528","lon":"-2.49605301578","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGA01581","CommonName":"Farleigh Lane","Street":"B4058","Indicator":"NE-bound","lat":"51.61688261078","lon":"-2.43560104837","node":"E0041765","stoptype":"BCT"},{"AtcoCode":"0170SGA01582","CommonName":"Farleigh Lane","Street":"B4058","Indicator":"SW-bound","lat":"51.61685692398","lon":"-2.43525416513","node":"E0041765","stoptype":"BCT"},{"AtcoCode":"0170SGA01583","CommonName":"Aldermoor Way","Street":"Aldermoor Way","Indicator":"E-bound","lat":"51.44543852203","lon":"-2.49749471124","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGA01584","CommonName":"Peache Court","Street":"Peache Road","Indicator":"NW-bound","lat":"51.48891402002","lon":"-2.499336242","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA01585","CommonName":"Peache Court","Street":"Peache Road","Indicator":"SE-bound","lat":"51.48899481757","lon":"-2.49936593069","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA01591","CommonName":"Old Gloucester Road","Street":"Winterbourne Road","Indicator":"W-bound","lat":"51.52123390354","lon":"-2.52910670994","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"0170SGA01592","CommonName":"Old Gloucester Road","Street":"Winterbourne Road","Indicator":"E-bound","lat":"51.5214500138","lon":"-2.52903715028","node":"E0041820","stoptype":"BCT"},{"AtcoCode":"0170SGA01593","CommonName":"Salisbury Road","Street":"Hill House Road","Indicator":"N-bound","lat":"51.48681664689","lon":"-2.49777229327","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA01594","CommonName":"Lower Moor Road","Street":"Eastfield Drive","Indicator":"E-bound","lat":"51.55361057943","lon":"-2.41313054277","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01595","CommonName":"Barkers Mead","Street":"Eastfield Drive","Indicator":"S-bound","lat":"51.55298854747","lon":"-2.41103357376","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01596","CommonName":"Peache Road","Street":"Peache Road","Indicator":"NW-bound","lat":"51.48817349748","lon":"-2.49585713446","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA01597","CommonName":"Scott Park","Indicator":"SE-bound","lat":"51.53611837202","lon":"-2.57606480933","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGA01598","CommonName":"Scott Park","Street":"Coniston Road","Indicator":"NW-bound","lat":"51.53561834643","lon":"-2.57535203394","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGA01599","CommonName":"Greenfield Farm","Street":"Severn Road","Indicator":"N-bound","lat":"51.57882314667","lon":"-2.64111248916","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA01600","CommonName":"Greenfield Farm","Street":"Severn Road","Indicator":"S-bound","lat":"51.57881604787","lon":"-2.64076603889","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA01601","CommonName":"Croomes Hill","Street":"Overndale Road","Indicator":"N-bound","lat":"51.48812678669","lon":"-2.51298124436","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA01602","CommonName":"Sheppard Road","Street":"Overndale Road","Indicator":"N-bound","lat":"51.48554945888","lon":"-2.51633671586","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0170SGA01603","CommonName":"Lansdown Road","Street":"Castle Road","Indicator":"NW-bound","lat":"51.4884050109","lon":"-2.43287705074","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA01604","CommonName":"Lansdown Road","Street":"Castle Road","Indicator":"SE-bound","lat":"51.48841464024","lon":"-2.43270431084","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA01605","CommonName":"Windsor Place","Street":"Windsor Place","Indicator":"N-bound","lat":"51.48635827106","lon":"-2.48702342684","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA01606","CommonName":"Willow Brook Centre","Indicator":"NE-bound","lat":"51.53560589426","lon":"-2.54983281668","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGA01607","CommonName":"Gorlands Road","Street":"Gorlands Road","Indicator":"N-bound","lat":"51.53869762019","lon":"-2.3883254575","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA01608","CommonName":"Kingrove Crescent","Street":"Horse Street","Indicator":"N-bound","lat":"51.53553048867","lon":"-2.38625121172","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA01609","CommonName":"Woodmans Road","Street":"Woodmans Road","Indicator":"N-bound","lat":"51.53533427057","lon":"-2.39119471132","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA01610","CommonName":"Hound Close","Street":"Hounds Road","Indicator":"N-bound","lat":"51.53566908801","lon":"-2.39324486662","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA01611","CommonName":"Celestine Road","Street":"Celestine Road","Indicator":"E-bound","lat":"51.54694765307","lon":"-2.42577511444","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01612","CommonName":"Fox Avenue","Street":"Windsor Drive","Indicator":"N-bound","lat":"51.54364544181","lon":"-2.42394177343","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01613","CommonName":"The Ridge","Street":"Woodend Road","Indicator":"N-bound","lat":"51.52610951881","lon":"-2.46945832348","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGA01614","CommonName":"Hillside Close","Street":"Lower Chapel Lane","Indicator":"N-bound","lat":"51.5295456454","lon":"-2.47358770989","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGA01615","CommonName":"Station Road","Street":"Hicks Common Road","Indicator":"S-bound","lat":"51.51826341481","lon":"-2.49909521718","node":"E0041959","stoptype":"BCT"},{"AtcoCode":"0170SGA01616","CommonName":"Quarry Lane","Indicator":"N-bound","lat":"51.51460393273","lon":"-2.50118801326","node":"E0041959","stoptype":"BCT"},{"AtcoCode":"0170SGA01617","CommonName":"Cedar Way","Street":"Harcombe Road","Indicator":"E-bound","lat":"51.51814412208","lon":"-2.5080293544","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGA01618","CommonName":"Cedar Way","Street":"Harcombe Road","Indicator":"N-bound","lat":"51.51867204478","lon":"-2.5044610126","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGA01619","CommonName":"Sandstone Rise","Street":"Dragon Road","Indicator":"N-bound","lat":"51.51800076424","lon":"-2.50791246297","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGA01620","CommonName":"Station Road","Street":"Harcombe Hill","Indicator":"N-bound","lat":"51.51480702769","lon":"-2.49995090173","node":"E0041959","stoptype":"BCT"},{"AtcoCode":"0170SGA01621","CommonName":"Mill Close","Indicator":"N-bound","lat":"51.52648287386","lon":"-2.47720281653","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGA01622","CommonName":"Lower Stone Close","Indicator":"N-bound","lat":"51.52969942555","lon":"-2.47335865614","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGA01623","CommonName":"Lower Moor Road","Street":"Eastfield Drive","Indicator":"W-bound","lat":"51.5535223944","lon":"-2.41263935667","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA01624","CommonName":"Pendennis Road","Street":"High Street","Indicator":"E-bound","lat":"51.48132276324","lon":"-2.51032719512","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGA10004","CommonName":"Kenmore Grove","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.50407643873","lon":"-2.58616365556","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10007","CommonName":"Charborough Road","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.50629847037","lon":"-2.58233075273","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10008","CommonName":"Charborough Road","Indicator":"NE-bound","lat":"51.5059525163","lon":"-2.58319083269","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10009","CommonName":"Golf Course Lane","Street":"Southmead Road","Indicator":"SW-bound","lat":"51.50797743225","lon":"-2.57919663067","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10010","CommonName":"Golf Course Lane","Street":"Southmead Road","Indicator":"NE-bound","lat":"51.50863395033","lon":"-2.57734619255","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10017","CommonName":"Oakdale Road","Street":"Badminton Road","Indicator":"NE-bound","lat":"51.4938388946","lon":"-2.50202606917","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA10026","CommonName":"The Trident","Street":"Blackhorse Lane","Indicator":"E-bound","lat":"51.50025568917","lon":"-2.4921706246","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA10027","CommonName":"Blackhorse Lane","Street":"Blackhorse Lane","Indicator":"S-bound","lat":"51.49829287606","lon":"-2.48634396167","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10028","CommonName":"Blackhorse Lane","Street":"Blackhorse Lane","Indicator":"N-bound","lat":"51.49750308926","lon":"-2.48598981999","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10029","CommonName":"Beaufort Road","Street":"Beaufort Road","Indicator":"W-bound","lat":"51.49635283669","lon":"-2.48799429784","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10030","CommonName":"Beaufort Road","Street":"Beaufort Road","Indicator":"NE-bound","lat":"51.49596836169","lon":"-2.4896323602","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10031","CommonName":"Berkeley Close","Street":"Beaufort Road","Indicator":"SW-bound","lat":"51.49520176707","lon":"-2.49018592823","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA10032","CommonName":"Springfield Road","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.49391934356","lon":"-2.48937992663","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10033","CommonName":"Westerleigh Road","Street":"Westerleigh Road","Indicator":"NE-bound","lat":"51.49436417442","lon":"-2.48836197324","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10034","CommonName":"Westerleigh Road","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.49468353954","lon":"-2.4872418293","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10037","CommonName":"Park Road","Indicator":"E-bound","lat":"51.48345302028","lon":"-2.50006862422","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGA10038","CommonName":"Hill House Road","Street":"South View","Indicator":"E-bound","lat":"51.48345872223","lon":"-2.49661243133","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGA10042","CommonName":"The Lamb","Street":"Windsor Place","Indicator":"E-bound","lat":"51.48627117836","lon":"-2.4885058988","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA10043","CommonName":"Jubilee Crescent","Street":"Blackhorse Road","Indicator":"N-bound","lat":"51.49255825691","lon":"-2.48586519124","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA10044","CommonName":"Dibden Lane","Street":"Blackhorse Road","Indicator":"N-bound","lat":"51.49424877214","lon":"-2.48583995926","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA10045","CommonName":"Meadgate","Street":"Emerson Way","Indicator":"SE-bound","lat":"51.49624181253","lon":"-2.4822310775","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10046","CommonName":"Bromfield Walk","Street":"Emerson Way","Indicator":"E-bound","lat":"51.49522176427","lon":"-2.4788207844","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10047","CommonName":"Bett's Green","Street":"Emerson Way","Indicator":"S-bound","lat":"51.4944219507","lon":"-2.47650767885","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10048","CommonName":"Church Farm Road","Street":"Emerson Way","Indicator":"SE-bound","lat":"51.49174247132","lon":"-2.47429037176","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10049","CommonName":"Church Farm Road","Street":"Emerson Way","Indicator":"NW-bound","lat":"51.49168794148","lon":"-2.47443384206","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10050","CommonName":"Sainsburys","Indicator":"E-bound","lat":"51.49174005392","lon":"-2.47266273297","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGA10377","CommonName":"Kenmore Grove","Street":"Southmead Road","Indicator":"NE-bound","lat":"51.50397501595","lon":"-2.58666661889","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA10378","CommonName":"Cassell Road","Indicator":"SW-bound","lat":"51.48483745212","lon":"-2.5146724971","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGA10418","CommonName":"Peache Road","Indicator":"E-bound","lat":"51.48816943508","lon":"-2.49469048412","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA10419","CommonName":"Northcote Road","Street":"Northcote Road","Indicator":"E-bound","lat":"51.48659440674","lon":"-2.49077047605","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA19673","CommonName":"The Poplars","Street":"Shortwood Road","Indicator":"SW-bound","lat":"51.48492281553","lon":"-2.4359691837","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA19674","CommonName":"Grovesend Road Crossroads","Street":"Grovesend Road","Indicator":"NW-bound","lat":"51.5998151328","lon":"-2.50137518217","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19675","CommonName":"Grovesend Road Crossroads","Street":"Grovesend Road","Indicator":"SE-bound","lat":"51.60035187443","lon":"-2.50201636847","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19680","CommonName":"Nimlet Crossroads","Street":"A46","Indicator":"N-bound","lat":"51.43691556227","lon":"-2.36819786913","node":"N0064869","stoptype":"BCT"},{"AtcoCode":"0170SGA19681","CommonName":"Nimlet Crossroads","Street":"A46","Indicator":"S-bound","lat":"51.43689821233","lon":"-2.36799632047","node":"N0064869","stoptype":"BCT"},{"AtcoCode":"0170SGA19683","CommonName":"New Road","Street":"Orchard Rise","Indicator":"E-bound","lat":"51.58019277368","lon":"-2.57643454554","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGA19684","CommonName":"New Road","Street":"Orchard Rise","Indicator":"W-bound","lat":"51.58011213933","lon":"-2.57637579836","node":"E0041892","stoptype":"BCT"},{"AtcoCode":"0170SGA19685","CommonName":"Woodlands Road","Street":"Little Bristol Lane","Indicator":"N-bound","lat":"51.62488670813","lon":"-2.39707867413","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGA19686","CommonName":"Youth Centre","Street":"High Street","Indicator":"N-bound","lat":"51.59223147694","lon":"-2.39933433098","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGA19687","CommonName":"Youth Centre","Street":"High Street","Indicator":"S-bound","lat":"51.59222312448","lon":"-2.39914659766","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGA19688","CommonName":"The Castle School","Street":"School Grounds","Indicator":"E-bound","lat":"51.61540782381","lon":"-2.5236445312","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19689","CommonName":"Castle Upper School","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.61121183676","lon":"-2.52297524357","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19692","CommonName":"Bromley Heath Avenue","Street":"Bromley Heath Road","Indicator":"N-bound","lat":"51.49660550771","lon":"-2.50892776244","node":"E0041772","stoptype":"BCT"},{"AtcoCode":"0170SGA19693","CommonName":"Soundwell Campus","Street":"Sweets Road","Indicator":"SW-bound","lat":"51.47141383958","lon":"-2.50414092521","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGA19694","CommonName":"Soundwell Campus","Street":"Sweets Road","Indicator":"NE-bound","lat":"51.47147652999","lon":"-2.50419920571","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGA19697","CommonName":"Winsbury Way","Street":"Brook Way","Indicator":"NW-bound","lat":"51.53663154877","lon":"-2.55542489509","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGA19704","CommonName":"The Street","Street":"The Street","Indicator":"S-bound","lat":"51.52652653256","lon":"-2.27609083485","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA19705","CommonName":"The Street","Street":"The Street","Indicator":"N-bound","lat":"51.52646342355","lon":"-2.27616252551","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA19708","CommonName":"Woodlands Road","Street":"Little Bristol Lane","Indicator":"S-bound","lat":"51.62490508124","lon":"-2.39696326858","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGA19710","CommonName":"St David's Road","Indicator":"SE-bound","lat":"51.60960725461","lon":"-2.51577964164","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19711","CommonName":"St David's Road","Street":"St David's Road","Indicator":"NW-bound","lat":"51.60948074679","lon":"-2.5159226164","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGA19712","CommonName":"Mill Lane","Street":"Hardy Lane","Indicator":"E-bound","lat":"51.57509196792","lon":"-2.57146377586","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGA19713","CommonName":"Mill Lane","Street":"Hardy Lane","Indicator":"S-bound","lat":"51.57495717471","lon":"-2.57144765472","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGA19714","CommonName":"Pig Farm","Street":"A403","Indicator":"N-bound","lat":"51.58464311216","lon":"-2.6373552214","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA19716","CommonName":"Pig Farm","Street":"A403","Indicator":"S-bound","lat":"51.58467180881","lon":"-2.6370380945","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA19717","CommonName":"White Horse","Street":"Northwick Road","Indicator":"S-bound","lat":"51.57077978965","lon":"-2.63707468077","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA19718","CommonName":"White Horse","Street":"Northwick Road","Indicator":"N-bound","lat":"51.57076047587","lon":"-2.63731969877","node":"E0041885","stoptype":"BCT"},{"AtcoCode":"0170SGA19719","CommonName":"Golf Club","Street":"Blackhorse Hill","Indicator":"S-bound","lat":"51.53139639008","lon":"-2.60839846182","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGA19720","CommonName":"Parkfield","Street":"Parkfield Rank","Indicator":"N-bound","lat":"51.49497663472","lon":"-2.44519770129","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA19721","CommonName":"Parkfield","Street":"Parkfield Rank","Indicator":"S-bound","lat":"51.49479670132","lon":"-2.44522475668","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA19722","CommonName":"Rose and Crown","Indicator":"SE-bound","lat":"51.49011620217","lon":"-2.43937467531","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA19723","CommonName":"Rose and Crown","Street":"Parkfield Road","Indicator":"NW-bound","lat":"51.4899719108","lon":"-2.43948851222","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA19724","CommonName":"Shellards Lane","Street":"Earthcott Road","Indicator":"N-bound","lat":"51.5754542704","lon":"-2.49576782234","node":"E0041843","stoptype":"BCT"},{"AtcoCode":"0170SGA19725","CommonName":"Shellards Lane","Street":"Earthcott Road","Indicator":"S-bound","lat":"51.57541922089","lon":"-2.49555098923","node":"E0041843","stoptype":"BCT"},{"AtcoCode":"0170SGA19727","CommonName":"Orange End","Street":"Chase Lane","Indicator":"W-bound","lat":"51.58860793236","lon":"-2.34553502991","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19728","CommonName":"Orange End","Street":"Chase Lane","Indicator":"E-bound","lat":"51.58871637893","lon":"-2.3453482079","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19729","CommonName":"Inglestone Common","Street":"Oxleaze Farm Road","Indicator":"N-bound","lat":"51.59185872716","lon":"-2.34691662559","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19730","CommonName":"Inglestone Common","Street":"Oxleaze Farm Road","Indicator":"S-bound","lat":"51.59173336314","lon":"-2.34674244738","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19731","CommonName":"Inglestone Farm","Indicator":"W-bound","lat":"51.59522674381","lon":"-2.36300992985","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19732","CommonName":"Inglestone Farm","Indicator":"E-bound","lat":"51.59526275303","lon":"-2.36299578077","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGA19733","CommonName":"The Green","Indicator":"W-bound","lat":"51.60946474858","lon":"-2.48597200665","node":"E0041872","stoptype":"BCT"},{"AtcoCode":"0170SGA19734","CommonName":"The Green","Indicator":"E-bound","lat":"51.60937543684","lon":"-2.48582664386","node":"E0041872","stoptype":"BCT"},{"AtcoCode":"0170SGA19736","CommonName":"Golf Club","Street":"Blackhorse Hill","Indicator":"N-bound","lat":"51.53149476653","lon":"-2.60850068769","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGA19737","CommonName":"Lay-by","Street":"A403","Indicator":"S-bound","lat":"51.59953849573","lon":"-2.61953096096","node":"E0053693","stoptype":"BCT"},{"AtcoCode":"0170SGA19738","CommonName":"The Green","Street":"B4461","Indicator":"E-bound","lat":"51.59556513793","lon":"-2.57886687269","node":"E0041808","stoptype":"BCT"},{"AtcoCode":"0170SGA19739","CommonName":"The Green","Street":"B4461","Indicator":"W-bound","lat":"51.59550220193","lon":"-2.57886607227","node":"E0041808","stoptype":"BCT"},{"AtcoCode":"0170SGA19740","CommonName":"Old Post Office","Street":"Village Road","Indicator":"N-bound","lat":"51.60667707825","lon":"-2.58640155154","node":"N0074108","stoptype":"BCT"},{"AtcoCode":"0170SGA19741","CommonName":"Old Post Office","Street":"Village Road","Indicator":"S-bound","lat":"51.60668729546","lon":"-2.5861562021","node":"N0074108","stoptype":"BCT"},{"AtcoCode":"0170SGA19742","CommonName":"The Lamb","Street":"Northcote Road","Indicator":"E-bound","lat":"51.48577984301","lon":"-2.48773735091","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA19745","CommonName":"Durham Road","Street":"Manor Lane","Indicator":"N-bound","lat":"51.6272093111","lon":"-2.40674921796","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGA19746","CommonName":"Pike Cottage","Street":"France Lane","Indicator":"NW-bound","lat":"51.5724549688","lon":"-2.30499655205","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGA19747","CommonName":"Pike Cottage","Street":"France Lane","Indicator":"SE-bound","lat":"51.57258964949","lon":"-2.30506959982","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGA19749","CommonName":"Woodland Avenue","Street":"Woodland Way","Indicator":"W-bound","lat":"51.47155650162","lon":"-2.51065008724","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGA19750","CommonName":"Fox & Hounds","Street":"Burton Road","Indicator":"N-bound","lat":"51.52507610619","lon":"-2.27727842535","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA19751","CommonName":"Fox & Hounds","Street":"Burton Road","Indicator":"S-bound","lat":"51.5251391818","lon":"-2.27722115232","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA19753","CommonName":"St John's Church","Indicator":"SW-bound","lat":"51.49562633745","lon":"-2.52100256864","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGA19755","CommonName":"Blackwell's","Street":"A46","Indicator":"N-bound","lat":"51.58254309285","lon":"-2.29807891566","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"0170SGA19756","CommonName":"Blackwell's","Indicator":"S-bound","lat":"51.58253483492","lon":"-2.29779021594","node":"N0074112","stoptype":"BCT"},{"AtcoCode":"0170SGA19759","CommonName":"The Lamb","Street":"Northcote Road","Indicator":"W-bound","lat":"51.48559210695","lon":"-2.48747611578","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGA20039","CommonName":"Gerrish Avenue","Street":"Gerrish Avenue","Indicator":"N-bound","lat":"51.48476249914","lon":"-2.4923493636","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGA47196","CommonName":"Park Avenue","Street":"Park Avenue","Indicator":"W-bound","lat":"51.54375065292","lon":"-2.57270039154","node":"N0078158","stoptype":"BCT"},{"AtcoCode":"0170SGA47197","CommonName":"Park Avenue","Street":"Park Avenue","Indicator":"E-bound","lat":"51.5413802794","lon":"-2.57200733218","node":"N0078158","stoptype":"BCT"},{"AtcoCode":"0170SGA47198","CommonName":"Waterside Drive","Indicator":"E-bound","lat":"51.54043345238","lon":"-2.57440344279","node":"N0078158","stoptype":"BCT"},{"AtcoCode":"0170SGA47199","CommonName":"Duck Street","Street":"Duck Street","Indicator":"N-bound","lat":"51.59262426206","lon":"-2.47932505621","node":"E0053729","stoptype":"BCT"},{"AtcoCode":"0170SGA47200","CommonName":"Duck Street","Street":"Duck Street","Indicator":"S-bound","lat":"51.59266087469","lon":"-2.4791666506","node":"E0053729","stoptype":"BCT"},{"AtcoCode":"0170SGA56526","CommonName":"The Griffin","Indicator":"E-bound","lat":"51.45770620063","lon":"-2.46157379726","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGA56527","CommonName":"The Griffin","Street":"London Road","Indicator":"W-bound","lat":"51.45757969966","lon":"-2.46173084253","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGA56528","CommonName":"Oakes Lane","Street":"Tormarton Road","Indicator":"NE-bound","lat":"51.51763443098","lon":"-2.30493259425","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA56529","CommonName":"Oakes Lane","Street":"Tormarton Road","Indicator":"W-bound","lat":"51.51761745999","lon":"-2.30454336337","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA56530","CommonName":"Tormarton Road","Indicator":"S-bound","lat":"51.51790112758","lon":"-2.30610173631","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA56531","CommonName":"Tormarton Road","Street":"Oakes Lane","Indicator":"N-bound","lat":"51.51774774829","lon":"-2.30630247247","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGA56532","CommonName":"Sir Bernard Lovell School","Street":"School Car Park","Indicator":"N-bound","lat":"51.44275477344","lon":"-2.47021418895","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGA56533","CommonName":"Batten Court","Street":"Gorlands Road","Indicator":"S-bound","lat":"51.53876940651","lon":"-2.38836932424","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA56534","CommonName":"Bus Terminus","Street":"Frenchay Hospital Main Road","Indicator":"E-bound","lat":"51.49766366128","lon":"-2.52386370187","node":"E0041814","stoptype":"BCT"},{"AtcoCode":"0170SGA56535","CommonName":"Becket Court","Street":"Becket Court","Indicator":"S-bound","lat":"51.48292096822","lon":"-2.43750537717","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA56536","CommonName":"Post Office","Street":"Woodend Road","Indicator":"NW-bound","lat":"51.52670805332","lon":"-2.47043026647","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGA56537","CommonName":"Post Office","Street":"Woodend Road","Indicator":"SE-bound","lat":"51.5267535293","lon":"-2.47030100304","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGA56538","CommonName":"Burgage Close","Street":"Woodmans Road","Indicator":"W-bound","lat":"51.53525527235","lon":"-2.39061733943","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGA56539","CommonName":"Harcombe Hill","Street":"Down Road","Indicator":"W-bound","lat":"51.51456156276","lon":"-2.50058229146","node":"E0041959","stoptype":"BCT"},{"AtcoCode":"0170SGA56540","CommonName":"Harcombe Hill","Street":"Down Road","Indicator":"E-bound","lat":"51.51468817627","lon":"-2.50041074908","node":"E0041959","stoptype":"BCT"},{"AtcoCode":"0170SGA56542","CommonName":"Poplar Road","Street":"Victoria Road","Indicator":"W-bound","lat":"51.44952927525","lon":"-2.4692620959","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGA56544","CommonName":"Old Fire Station","Street":"Marsh Common Road","Indicator":"N-bound","lat":"51.55708412528","lon":"-2.63737366607","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGA56545","CommonName":"Old Fire Station","Street":"Marsh Common Road","Indicator":"S-bound","lat":"51.55705911154","lon":"-2.63701270691","node":"E0041900","stoptype":"BCT"},{"AtcoCode":"0170SGA56546","CommonName":"Conygre Grove","Street":"Filton Avenue","Indicator":"S-bound","lat":"51.50903564135","lon":"-2.56315824547","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGA56547","CommonName":"Morley Road","Street":"Morley Road","Indicator":"SE-bound","lat":"51.47638179469","lon":"-2.50516043992","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGA56548","CommonName":"Gloucester Road","Street":"Stanley Park Road","Indicator":"E-bound","lat":"51.4754771955","lon":"-2.50224193499","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGA56549","CommonName":"Sunnybank","Street":"Westerleigh Road","Indicator":"E-bound","lat":"51.51077215056","lon":"-2.44350729793","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGA56550","CommonName":"Laurel Farm","Street":"Westerleigh Road","Indicator":"N-bound","lat":"51.48962494245","lon":"-2.43366637113","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGA56551","CommonName":"Golden Valley Lane","Indicator":"SE-bound","lat":"51.4240144709","lon":"-2.45702008241","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGA56552","CommonName":"Fire Station","Street":"Highwood Road","Indicator":"NE-bound","lat":"51.5310787612","lon":"-2.57512178726","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGA56553","CommonName":"Folly Brook Road","Indicator":"N-bound","lat":"51.5011263599","lon":"-2.47951658416","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA56554","CommonName":"Folly Brook Road","Indicator":"S-bound","lat":"51.50108240562","lon":"-2.47927121028","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA56555","CommonName":"Cousins Way","Street":"Westerleigh Road","Indicator":"NE-bound","lat":"51.49765425235","lon":"-2.48204431324","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA56556","CommonName":"Cousins Way","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.49771855225","lon":"-2.48171366426","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA56557","CommonName":"Ridley Avenue","Street":"Carsons Road","Indicator":"N-bound","lat":"51.47378772865","lon":"-2.48056875809","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGA56558","CommonName":"Ridley Avenue","Street":"Carsons Road","Indicator":"S-bound","lat":"51.47369822996","lon":"-2.48046703131","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGA56559","CommonName":"Siston Park","Street":"Station Road Link","Indicator":"E-bound","lat":"51.47069768306","lon":"-2.48636707548","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGA56560","CommonName":"Siston Park","Street":"Station Road Link","Indicator":"W-bound","lat":"51.47056305425","lon":"-2.48630805521","node":"E0041916","stoptype":"BCT"},{"AtcoCode":"0170SGA56561","CommonName":"Stirling Close","Street":"Halifax Road","Indicator":"E-bound","lat":"51.5500411517","lon":"-2.42066976184","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56562","CommonName":"Stirling Close","Street":"Halifax Road","Indicator":"W-bound","lat":"51.54996017968","lon":"-2.42068343659","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56563","CommonName":"Hampden Close","Street":"Halifax Road","Indicator":"E-bound","lat":"51.54999818719","lon":"-2.42261633917","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56564","CommonName":"Hampden Close","Street":"Halifax Road","Indicator":"W-bound","lat":"51.54994496777","lon":"-2.42241393759","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56565","CommonName":"Waverley Road","Street":"Stover Road","Indicator":"SE-bound","lat":"51.54127492216","lon":"-2.43774781759","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56566","CommonName":"Waverley Road","Street":"Stover Road","Indicator":"NW-bound","lat":"51.54127395304","lon":"-2.43800735528","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGA56567","CommonName":"Greenacres Park","Street":"Ram Hill","Indicator":"N-bound","lat":"51.51838572984","lon":"-2.46496877617","node":"N0074111","stoptype":"BCT"},{"AtcoCode":"0170SGA56568","CommonName":"Govier Way","Street":"Govier Way","Indicator":"SE-bound","lat":"51.54922783459","lon":"-2.64681113009","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGA56569","CommonName":"Treatment Centre","Street":"The Brooms","Indicator":"E-bound","lat":"51.50376384091","lon":"-2.4831749597","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGA56570","CommonName":"UWE Entrance North","Indicator":"S-bound","lat":"51.50419087157","lon":"-2.54954091731","node":"N0064864","stoptype":"BCT"},{"AtcoCode":"0170SGB20001","CommonName":"Bett's Green","Street":"Emerson Way","Indicator":"N-bound","lat":"51.4938636203","lon":"-2.47671791937","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGB20002","CommonName":"Bromfield Walk","Street":"Emerson Way","Indicator":"NW-bound","lat":"51.49546732926","lon":"-2.48033586673","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGB20003","CommonName":"Meadgate","Street":"Emerson Way","Indicator":"NW-bound","lat":"51.4964908965","lon":"-2.48288193967","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGB20005","CommonName":"Jubilee Crescent","Street":"Blackhorse Road","Indicator":"S-bound","lat":"51.49197484664","lon":"-2.48561412253","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20014","CommonName":"Teewell Hill","Street":"Broad Street","Indicator":"W-bound","lat":"51.48087355145","lon":"-2.50191243099","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20040","CommonName":"The Made For Ever","Street":"New Cheltenham Road","Indicator":"W-bound","lat":"51.46742860685","lon":"-2.48975855071","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20041","CommonName":"Pinewood","Street":"New Cheltenham Road","Indicator":"W-bound","lat":"51.46705940024","lon":"-2.49417413645","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20051","CommonName":"The Ride","Street":"Holly Hill Road","Indicator":"S-bound","lat":"51.46759480221","lon":"-2.49086882795","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20052","CommonName":"Cennick Avenue","Street":"Alma Road","Indicator":"S-bound","lat":"51.46536391135","lon":"-2.4996116563","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20053","CommonName":"Cennick Avenue","Street":"Alma Road","Indicator":"N-bound","lat":"51.4652369915","lon":"-2.49985499013","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20054","CommonName":"Kingswood Health Centre","Street":"Alma Road","Indicator":"S-bound","lat":"51.46392495509","lon":"-2.49968230411","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20055","CommonName":"Kingswood Health Centre","Indicator":"N-bound","lat":"51.4628994085","lon":"-2.49980064943","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20056","CommonName":"Kingswood Health Centre","Street":"Holly Hill Road","Indicator":"W-bound","lat":"51.46307502342","lon":"-2.49867978631","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20057","CommonName":"Shortwoood Drive","Street":"Holly Hill Road","Indicator":"E-bound","lat":"51.4637023244","lon":"-2.49706000975","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20058","CommonName":"Shortwood Drive","Street":"Holly Hill Road","Indicator":"W-bound","lat":"51.4636760833","lon":"-2.4968869865","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20059","CommonName":"Honeyhill Road","Indicator":"W-bound","lat":"51.46425141882","lon":"-2.4947915659","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20060","CommonName":"Honeyhill Road","Street":"Holly Hill Road","Indicator":"NE-bound","lat":"51.46449594234","lon":"-2.49437675409","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20061","CommonName":"Holly Green","Street":"Holly Hill Road","Indicator":"SW-bound","lat":"51.46574756626","lon":"-2.4918134946","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20062","CommonName":"Holly Green","Street":"Holly Hill Road","Indicator":"N-bound","lat":"51.46602689694","lon":"-2.49167254335","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20063","CommonName":"The Ride","Street":"Pound Road","Indicator":"N-bound","lat":"51.46801624192","lon":"-2.49114688033","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20064","CommonName":"Champion Road","Street":"Pound Road","Indicator":"NW-bound","lat":"51.46949453147","lon":"-2.49241527084","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20065","CommonName":"Highview Road","Street":"Pound Road","Indicator":"NW-bound","lat":"51.47038042166","lon":"-2.49556334628","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20066","CommonName":"Pool Road","Street":"Pool Road","Indicator":"N-bound","lat":"51.47278463084","lon":"-2.4989872666","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20067","CommonName":"St Stephens Close","Street":"Church Road","Indicator":"E-bound","lat":"51.47437054289","lon":"-2.50240255426","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20068","CommonName":"Kingswood Leisure Centre","Street":"Church Road","Indicator":"W-bound","lat":"51.47296031191","lon":"-2.50624565524","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20069","CommonName":"Christchurch School","Street":"North Street","Indicator":"SW-bound","lat":"51.48576966438","lon":"-2.50500498934","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20071","CommonName":"The Portcullis","Street":"Soundwell Road","Indicator":"Stop C","lat":"51.48035784841","lon":"-2.50683159808","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20072","CommonName":"The Portcullis","Street":"Soundwell Road","Indicator":"Stop D","lat":"51.48018595804","lon":"-2.50707449246","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20073","CommonName":"Portland Street","Indicator":"S-bound","lat":"51.47690994059","lon":"-2.50778689597","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20074","CommonName":"Portland Street","Street":"Soundwell Road","Indicator":"N-bound","lat":"51.47687266574","lon":"-2.50808886075","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20075","CommonName":"The Turnpike","Street":"Soundwell Road","Indicator":"SW-bound","lat":"51.47274404323","lon":"-2.50843170975","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20076","CommonName":"The Turnpike","Street":"Soundwell Road","Indicator":"NE-bound","lat":"51.47278799954","lon":"-2.50866256197","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20077","CommonName":"The Waterworks","Street":"Soundwell Road","Indicator":"S-bound","lat":"51.47017449708","lon":"-2.51002998164","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20078","CommonName":"The Waterworks","Street":"Soundwell Road","Indicator":"N-bound","lat":"51.46968753354","lon":"-2.51035567408","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGB20079","CommonName":"Morley Terrace","Street":"Downend Road","Indicator":"S-bound","lat":"51.46732016303","lon":"-2.51094827692","node":"E0041879","stoptype":"BCT"},{"AtcoCode":"0170SGB20081","CommonName":"Cross Street","Street":"Downend Road","Indicator":"S-bound","lat":"51.46564962689","lon":"-2.51051214148","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20082","CommonName":"Orchard Road","Street":"Hanham Road","Indicator":"S-bound","lat":"51.45983638044","lon":"-2.50536629748","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20083","CommonName":"Douglas Road","Street":"Hanham Road","Indicator":"SW-bound","lat":"51.45746249693","lon":"-2.50747021534","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20084","CommonName":"The Terracotta","Street":"Hanham Road","Indicator":"S-bound","lat":"51.45511830049","lon":"-2.5089409921","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20085","CommonName":"Mount Hill Road","Street":"Lower Hanham Road","Indicator":"S-bound","lat":"51.45205026588","lon":"-2.51349764825","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20086","CommonName":"Martins Road","Street":"High Street","Indicator":"W-bound","lat":"51.44867694832","lon":"-2.51587732986","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20087","CommonName":"The Maypole","Street":"High Street","Indicator":"W-bound","lat":"51.44993276375","lon":"-2.518596908","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20088","CommonName":"Church Road","Street":"Memorial Road","Indicator":"S-bound","lat":"51.44987970643","lon":"-2.52042390104","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20089","CommonName":"Launceston Avenue","Street":"Memorial Road","Indicator":"S-bound","lat":"51.44655377095","lon":"-2.522227924","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20090","CommonName":"Memorial Close","Street":"Memorial Road","Indicator":"S-bound","lat":"51.44455085422","lon":"-2.5217302348","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20091","CommonName":"Samuel White Road","Street":"Memorial Road","Indicator":"SE-bound","lat":"51.44140714231","lon":"-2.52097500378","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20092","CommonName":"Hanham Common","Street":"Whittucks Road","Indicator":"NE-bound","lat":"51.43988681367","lon":"-2.51911611507","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20093","CommonName":"Willow Road","Street":"Whittucks Road","Indicator":"E-bound","lat":"51.4408807688","lon":"-2.51597648752","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20095","CommonName":"Hanham Hall","Street":"Whittucks Road","Indicator":"NE-bound","lat":"51.44307788494","lon":"-2.51320991621","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20096","CommonName":"Abbots Avenue","Street":"Whittucks Road","Indicator":"NE-bound","lat":"51.44495817485","lon":"-2.5109143818","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20097","CommonName":"The Blue Bowl","Street":"Whittucks Road","Indicator":"SW-bound","lat":"51.44594422884","lon":"-2.509544022","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20098","CommonName":"Abbots Avenue","Street":"Whittucks Road","Indicator":"SW-bound","lat":"51.44437136242","lon":"-2.51145460343","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20099","CommonName":"Hanham Hall","Street":"Whittucks Road","Indicator":"SW-bound","lat":"51.44245579088","lon":"-2.51359142049","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20100","CommonName":"Willow Road","Street":"Whittucks Road","Indicator":"W-bound","lat":"51.44065459495","lon":"-2.51629046499","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20101","CommonName":"Hanham Common","Street":"Memorial Road","Indicator":"N-bound","lat":"51.44020641374","lon":"-2.52004053796","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20102","CommonName":"Samuel White Road","Street":"Memorial Road","Indicator":"N-bound","lat":"51.44169300441","lon":"-2.521395508","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20103","CommonName":"Memorial Close","Street":"Memorial Road","Indicator":"N-bound","lat":"51.44475694649","lon":"-2.52189086238","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20104","CommonName":"Launceston Avenue","Street":"Memorial Road","Indicator":"N-bound","lat":"51.44676904604","lon":"-2.52234549717","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20105","CommonName":"Church Road","Street":"Memorial Road","Indicator":"N-bound","lat":"51.44998689742","lon":"-2.52058341628","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20106","CommonName":"The Maypole","Indicator":"SE-bound","lat":"51.45011233245","lon":"-2.51865650573","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20107","CommonName":"Chapel Road","Street":"Chapel Road","Indicator":"N-bound","lat":"51.4493581864","lon":"-2.51635989225","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20108","CommonName":"Mount Hill Road","Street":"Lower Hanham Road","Indicator":"N-bound","lat":"51.4523743265","lon":"-2.51341493793","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20109","CommonName":"The Terracotta","Street":"Hanham Road","Indicator":"N-bound","lat":"51.45547807256","lon":"-2.50891621045","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20110","CommonName":"Douglas Road","Street":"Hanham Road","Indicator":"N-bound","lat":"51.45727199897","lon":"-2.50785670811","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20111","CommonName":"Orchard Road","Street":"Hanham Road","Indicator":"N-bound","lat":"51.45971875027","lon":"-2.50553772083","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20112","CommonName":"Kingswood Post Office","Street":"Hanham Road","Indicator":"N-bound","lat":"51.46131031218","lon":"-2.50552652579","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20113","CommonName":"Cecil Road","Street":"Cecil Road","Indicator":"SW-bound","lat":"51.46135717007","lon":"-2.50716797233","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20114","CommonName":"Moravian Road","Street":"Moravian Road","Indicator":"Stop C","lat":"51.46227795964","lon":"-2.50840170802","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20115","CommonName":"Kings Chase Centre","Street":"Regent Street","Indicator":"Stop B","lat":"51.46265221434","lon":"-2.50918317272","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20116","CommonName":"Kings Chase Centre","Street":"Regent Street","Indicator":"Stop A","lat":"51.46275998325","lon":"-2.50921316176","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20117","CommonName":"Cross Street","Street":"Downend Road","Indicator":"N-bound","lat":"51.46518083228","lon":"-2.51079481396","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20120","CommonName":"Victoria Street","Indicator":"N-bound","lat":"51.48347021414","lon":"-2.5065348927","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGB20121","CommonName":"Christchurch School","Street":"North Street","Indicator":"N-bound","lat":"51.4863008237","lon":"-2.50485243832","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGB20123","CommonName":"Clock Tower","Street":"High Street","Indicator":"E-bound","lat":"51.46252635434","lon":"-2.50502176707","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20124","CommonName":"Civic Centre","Street":"High Street","Indicator":"o/s","lat":"51.46218375852","lon":"-2.50104513794","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20125","CommonName":"Kingswood Library","Street":"High Street","Indicator":"opp","lat":"51.46211198705","lon":"-2.49889959425","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20126","CommonName":"Woodstock Road","Street":"Hill Street","Indicator":"E-bound","lat":"51.46151949575","lon":"-2.4944309421","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20127","CommonName":"Tennis Court Inn","Street":"Hill Street","Indicator":"E-bound","lat":"51.46066658329","lon":"-2.48768538263","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20128","CommonName":"Baden Road","Street":"Deanery Road","Indicator":"E-bound","lat":"51.46012358486","lon":"-2.47982062597","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20129","CommonName":"Station Road","Street":"High Street","Indicator":"E-bound","lat":"51.45985404891","lon":"-2.4753557748","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20130","CommonName":"The Grange School","Street":"Tower Road North","Indicator":"S-bound","lat":"51.45775535569","lon":"-2.47625511202","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20131","CommonName":"St Ivel Way","Street":"Tower Road North","Indicator":"S-bound","lat":"51.45301914471","lon":"-2.47567331695","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20132","CommonName":"Tower Road South","Street":"Tower Road South","Indicator":"S-bound","lat":"51.44935146199","lon":"-2.47766421839","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20133","CommonName":"Park Road","Street":"Park Road","Indicator":"W-bound","lat":"51.4464264201","lon":"-2.48054034143","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20134","CommonName":"Newton Road Shops","Street":"Newton Road","Indicator":"N-bound","lat":"51.44594763339","lon":"-2.48326927126","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20136","CommonName":"Park Crescent","Street":"Park Crescent","Indicator":"S-bound","lat":"51.44644624116","lon":"-2.48228166815","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20137","CommonName":"Park Road","Street":"Park Road","Indicator":"E-bound","lat":"51.44661019412","lon":"-2.47957817763","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20138","CommonName":"Tower Road South","Street":"Tower Road South","Indicator":"N-bound","lat":"51.44957530398","lon":"-2.47789680168","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20139","CommonName":"St Ivel Way","Street":"Tower Road North","Indicator":"N-bound","lat":"51.4544209577","lon":"-2.47588938086","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20140","CommonName":"The Grange School","Street":"Tower Road North","Indicator":"N-bound","lat":"51.45715183251","lon":"-2.47652229044","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20141","CommonName":"Station Road","Street":"Station Road","Indicator":"NE-bound","lat":"51.4593769306","lon":"-2.47549475045","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20142","CommonName":"Baden Road","Street":"Deanery Road","Indicator":"W-bound","lat":"51.45997370565","lon":"-2.48128720709","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20143","CommonName":"Tennis Court Inn","Indicator":"W-bound","lat":"51.46035536221","lon":"-2.48684722431","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20144","CommonName":"Fussell Court","Street":"Hill Street","Indicator":"W-bound","lat":"51.46104553726","lon":"-2.49167656288","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20146","CommonName":"Kingswood Library","Street":"High Street","Indicator":"o/s","lat":"51.46196134161","lon":"-2.49837975613","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20147","CommonName":"Civic Centre","Street":"High Street","Indicator":"opp","lat":"51.4620746949","lon":"-2.50131743535","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20149","CommonName":"Russell Avenue","Indicator":"E-bound","lat":"51.4578517494","lon":"-2.50478304168","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20150","CommonName":"Courtney Road School","Indicator":"E-bound","lat":"51.45705673494","lon":"-2.49936259182","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20151","CommonName":"Bredon Close","Street":"Courtney Road","Indicator":"E-bound","lat":"51.45652677235","lon":"-2.49499585236","node":"E0041948","stoptype":"BCT"},{"AtcoCode":"0170SGB20152","CommonName":"Lintham Drive","Street":"Westons Way","Indicator":"S-bound","lat":"51.45462652658","lon":"-2.49357926648","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20153","CommonName":"Westons Way","Street":"Cock Road","Indicator":"NE-bound","lat":"51.45425657966","lon":"-2.49174750719","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20154","CommonName":"Ashford Way","Street":"Cock Road","Indicator":"E-bound","lat":"51.4550651135","lon":"-2.48977008609","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20155","CommonName":"Ashford Way","Street":"Cock Road","Indicator":"W-bound","lat":"51.45500307706","lon":"-2.4895535403","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20156","CommonName":"Lintham Drive","Street":"Westons Way","Indicator":"N-bound","lat":"51.45510184749","lon":"-2.49387223808","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20157","CommonName":"Bredon Close","Street":"Courtney Road","Indicator":"W-bound","lat":"51.45626286398","lon":"-2.4936113162","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20158","CommonName":"Courtney Road School","Street":"Courtney Road","Indicator":"W-bound","lat":"51.4569301223","lon":"-2.4995339221","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20159","CommonName":"Russell Avenue","Street":"Courtney Road","Indicator":"W-bound","lat":"51.45754988928","lon":"-2.50388734977","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20160","CommonName":"Russell Avenue","Street":"Court Road","Indicator":"N-bound","lat":"51.45670496702","lon":"-2.50590740496","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20161","CommonName":"Russell Avenue","Street":"Court Road","Indicator":"S-bound","lat":"51.45648936509","lon":"-2.5058618426","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20162","CommonName":"Pettigrove Road","Street":"Court Road","Indicator":"N-bound","lat":"51.45470761995","lon":"-2.50618754719","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20163","CommonName":"Pettigrove Road","Street":"Court Road","Indicator":"S-bound","lat":"51.45462750724","lon":"-2.50599956478","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20164","CommonName":"Mounthill Road","Street":"Court Road","Indicator":"N-bound","lat":"51.45204890054","lon":"-2.50553930797","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20165","CommonName":"Hanham Mount","Street":"Mount Hill Road","Indicator":"E-bound","lat":"51.45142286296","lon":"-2.50891427187","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20166","CommonName":"Hanham Mount","Street":"Mount Hill Road","Indicator":"W-bound","lat":"51.45127919149","lon":"-2.50886950085","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20167","CommonName":"Woodcote","Street":"Mount Hill Road","Indicator":"W-bound","lat":"51.45155221147","lon":"-2.50603750531","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"0170SGB20168","CommonName":"Mounthill Road","Street":"Mount Hill Road","Indicator":"E-bound","lat":"51.45196215236","lon":"-2.50480440046","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20169","CommonName":"Hollyguest Road","Street":"Cock Road","Indicator":"W-bound","lat":"51.45220385063","lon":"-2.50086387051","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20171","CommonName":"Hollyguest Road","Street":"Cock Road","Indicator":"NE-bound","lat":"51.45234826319","lon":"-2.50073593014","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20172","CommonName":"Cock Road Chapel","Street":"Cock Road","Indicator":"W-bound","lat":"51.45290354044","lon":"-2.49702901457","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20173","CommonName":"Cock Road Chapel","Street":"Cock Road","Indicator":"E-bound","lat":"51.45300305387","lon":"-2.496886181","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20174","CommonName":"Westons Way","Street":"Cock Road","Indicator":"W-bound","lat":"51.45334856361","lon":"-2.49385330923","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGB20175","CommonName":"Kennmoor Close","Street":"Craven Way","Indicator":"E-bound","lat":"51.4522242896","lon":"-2.48532156428","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20176","CommonName":"Kennmoor Close","Street":"Craven Way","Indicator":"SW-bound","lat":"51.45197038898","lon":"-2.48583695204","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20177","CommonName":"Wraxall Road","Street":"Wraxall Road","Indicator":"N-bound","lat":"51.45078325035","lon":"-2.48589629894","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20178","CommonName":"Wraxall Road","Street":"Wraxall Road","Indicator":"S-bound","lat":"51.45082874336","lon":"-2.48576726501","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20179","CommonName":"Cadbury Heath Road","Street":"Cadbury Heath Road","Indicator":"W-bound","lat":"51.44986881542","lon":"-2.48306605171","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20180","CommonName":"Cadbury Heath Road","Street":"Cadbury Heath Road","Indicator":"E-bound","lat":"51.45020557939","lon":"-2.48207665669","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20181","CommonName":"The King William Iv","Street":"Cadbury Heath Road","Indicator":"E-bound","lat":"51.4511289073","lon":"-2.47837353893","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20182","CommonName":"The King William Iv","Street":"Cadbury Heath Road","Indicator":"W-bound","lat":"51.45102230453","lon":"-2.4780558256","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20183","CommonName":"Hazelbury Drive","Street":"Mill Lane","Indicator":"E-bound","lat":"51.44996691072","lon":"-2.47446155952","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20184","CommonName":"Hazelbury Drive","Street":"Mill Lane","Indicator":"W-bound","lat":"51.44990303967","lon":"-2.47469114502","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20185","CommonName":"Cloverlea Road","Street":"Cloverlea Road","Indicator":"S-bound","lat":"51.44914633437","lon":"-2.4705820714","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20186","CommonName":"Cloverlea Road","Street":"Cloverlea Road","Indicator":"N-bound","lat":"51.44905601745","lon":"-2.470681874","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20187","CommonName":"Fallowfield","Street":"Millers Drive","Indicator":"E-bound","lat":"51.44616355235","lon":"-2.46997582153","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20188","CommonName":"Fallowfield","Street":"Millers Drive","Indicator":"W-bound","lat":"51.44579802503","lon":"-2.4691950503","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20189","CommonName":"Atherston","Street":"Millers Drive","Indicator":"N-bound","lat":"51.44786524096","lon":"-2.46715850061","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20190","CommonName":"Atherston","Street":"Millers Drive","Indicator":"S-bound","lat":"51.44807232638","lon":"-2.46708866547","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20191","CommonName":"Millers Drive","Street":"Millers Drive","Indicator":"N-bound","lat":"51.44887134215","lon":"-2.46739901625","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20192","CommonName":"Millers Drive","Street":"Victoria Road","Indicator":"NW-bound","lat":"51.44962008164","lon":"-2.46678787833","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20193","CommonName":"Victoria Road","Street":"High Street","Indicator":"S-bound","lat":"51.44751390011","lon":"-2.46279482285","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20194","CommonName":"Redfield Edge","Indicator":"SW-bound","lat":"51.44493176201","lon":"-2.46318598542","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20195","CommonName":"The Dolphin","Street":"High Street","Indicator":"SW-bound","lat":"51.44229318857","lon":"-2.46646854057","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20196","CommonName":"North Street School","Street":"North Street","Indicator":"NW-bound","lat":"51.44334894623","lon":"-2.47003324474","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20197","CommonName":"Westcourt Drive","Street":"West Street","Indicator":"SE-bound","lat":"51.44422075338","lon":"-2.4745890308","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20199","CommonName":"Westcourt Drive","Street":"West Street","Indicator":"N-bound","lat":"51.44391563384","lon":"-2.47444198021","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20200","CommonName":"Court Road","Street":"West Street","Indicator":"S-bound","lat":"51.44183681704","lon":"-2.47265070951","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20201","CommonName":"The Cherry Tree","Street":"West Street","Indicator":"S-bound","lat":"51.43984470188","lon":"-2.47165179736","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20202","CommonName":"The Cherry Tree","Street":"West Street","Indicator":"N-bound","lat":"51.43953899934","lon":"-2.47164864695","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20203","CommonName":"The Beeches","Street":"Barry Road","Indicator":"S-bound","lat":"51.43618398729","lon":"-2.4719305715","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20204","CommonName":"Cherry Garden Lane","Street":"Cherry Garden Road","Indicator":"S-bound","lat":"51.43375455072","lon":"-2.47235147292","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20205","CommonName":"Cherry Garden Road","Street":"Cherry Garden Road","Indicator":"S-bound","lat":"51.42974404167","lon":"-2.47241078393","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGB20206","CommonName":"Cherry Garden Lane","Street":"Barry Road","Indicator":"N-bound","lat":"51.43420393969","lon":"-2.47239926673","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20207","CommonName":"The Beeches","Street":"Barry Road","Indicator":"N-bound","lat":"51.43639942976","lon":"-2.47201911028","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20208","CommonName":"Court Road","Street":"West Street","Indicator":"NW-bound","lat":"51.44214135838","lon":"-2.47294161594","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20209","CommonName":"North Street School","Street":"North Street","Indicator":"SE-bound","lat":"51.44409634536","lon":"-2.47199778043","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20210","CommonName":"The Dolphin","Street":"High Street","Indicator":"NE-bound","lat":"51.44244609716","lon":"-2.46645571107","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20211","CommonName":"Redfield Edge","Street":"High Street","Indicator":"NE-bound","lat":"51.44516553461","lon":"-2.46318835181","node":"E0041891","stoptype":"BCT"},{"AtcoCode":"0170SGB20212","CommonName":"Victoria Road","Street":"High Street","Indicator":"N-bound","lat":"51.44732462916","lon":"-2.46290802581","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20213","CommonName":"Rogers Close","Street":"Tower Road South","Indicator":"N-bound","lat":"51.44761762036","lon":"-2.4772863728","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20214","CommonName":"Rogers Close","Street":"Tower Road South","Indicator":"S-bound","lat":"51.44758271008","lon":"-2.47702699287","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20215","CommonName":"Corfe Place","Street":"Kenilworth Drive","Indicator":"S-bound","lat":"51.43131744448","lon":"-2.47908711437","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20216","CommonName":"Caldicot Close","Street":"Kenilworth Drive","Indicator":"N-bound","lat":"51.43295079161","lon":"-2.47985223652","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20217","CommonName":"Caldicot Close","Indicator":"S-bound","lat":"51.43314096236","lon":"-2.47952336966","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20218","CommonName":"Dunster Gardens","Street":"Kenilworth Drive","Indicator":"NE-bound","lat":"51.43535657407","lon":"-2.47862588049","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20219","CommonName":"Dunster Gardens","Street":"Kenilworth Drive","Indicator":"SW-bound","lat":"51.43554809149","lon":"-2.4779661278","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20220","CommonName":"St Annes Drive","Street":"Cherry Garden Lane","Indicator":"NW-bound","lat":"51.43554571992","lon":"-2.47634048703","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20221","CommonName":"St Annes Drive","Street":"Cherry Garden Lane","Indicator":"SE-bound","lat":"51.4355557051","lon":"-2.4760960292","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGB20222","CommonName":"Poplar Road","Street":"Poplar Road","Indicator":"N-bound","lat":"51.45003964251","lon":"-2.46979978054","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20223","CommonName":"Tweeney Lane","Street":"Poplar Road","Indicator":"NE-bound","lat":"51.45178226402","lon":"-2.46799000895","node":"E0041882","stoptype":"BCT"},{"AtcoCode":"0170SGB20224","CommonName":"Windermere Way","Street":"Poplar Road","Indicator":"NE-bound","lat":"51.45296509537","lon":"-2.46449059548","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20225","CommonName":"The Griffin","Street":"London Road","Indicator":"E-bound","lat":"51.4577008074","lon":"-2.46294107207","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20226","CommonName":"The Griffin","Street":"London Road","Indicator":"W-bound","lat":"51.45748063475","lon":"-2.46404709456","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGB20227","CommonName":"Church Avenue","Street":"London Road","Indicator":"NW-bound","lat":"51.45757302026","lon":"-2.46794850802","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20228","CommonName":"Church Avenue","Street":"London Road","Indicator":"E-bound","lat":"51.45779688122","lon":"-2.46818108597","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGB20229","CommonName":"Hampton Close","Street":"Newton Road","Indicator":"NW-bound","lat":"51.44742131023","lon":"-2.48567352943","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20230","CommonName":"Hampton Close","Street":"Newton Road","Indicator":"SE-bound","lat":"51.44739546934","lon":"-2.48539985065","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20231","CommonName":"Stephens Drive","Street":"Parkwall Road","Indicator":"SW-bound","lat":"51.44475633806","lon":"-2.48866690876","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20232","CommonName":"Tapsters","Street":"Parkwall Road","Indicator":"S-bound","lat":"51.44215887073","lon":"-2.49055278509","node":"E0041774","stoptype":"BCT"},{"AtcoCode":"0170SGB20233","CommonName":"California Road","Street":"California Road","Indicator":"E-bound","lat":"51.44131934949","lon":"-2.48919133286","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20234","CommonName":"Fairoaks","Street":"Long Beach Road","Indicator":"W-bound","lat":"51.43945978746","lon":"-2.48445244968","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20235","CommonName":"Burney Way","Street":"Long Beach Road","Indicator":"W-bound","lat":"51.43725648943","lon":"-2.48235747","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20236","CommonName":"Palmdale Close","Street":"Long Beach Road","Indicator":"W-bound","lat":"51.43641768768","lon":"-2.48948421573","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20237","CommonName":"The Crown","Street":"Bath Road","Indicator":"N-bound","lat":"51.43757985404","lon":"-2.49323716731","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20238","CommonName":"The Butchers Arms","Street":"A431","Indicator":"NW-bound","lat":"51.4421878989","lon":"-2.5006966912","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGB20239","CommonName":"Stonehill","Street":"Stonehill","Indicator":"NW-bound","lat":"51.44453325629","lon":"-2.50522605328","node":"E0041828","stoptype":"BCT"},{"AtcoCode":"010000001","CommonName":"Cassell Road","Street":"Downend Road","Indicator":"SW-bound","lat":"51.48440530191","lon":"-2.51684223667","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"010000002","CommonName":"The Centre","Street":"Broad Quay","Indicator":"C4","lat":"51.45313726499","lon":"-2.59719671663","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"010000003","CommonName":"Southmead Way","Indicator":"SE-bound","lat":"51.49788847986","lon":"-2.59366161809","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000004","CommonName":"Southmead Way","Street":"Southmead Way","Indicator":"NW-bound","lat":"51.49798395056","lon":"-2.59433992649","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000005","CommonName":"Tyndall's Way","Indicator":"NE-bound","lat":"51.49838084152","lon":"-2.59231387075","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000006","CommonName":"Tyndall's Way","Street":"Tyndall's Way","Indicator":"NW-bound","lat":"51.49821212251","lon":"-2.59189391568","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000007","CommonName":"Southmead Hospital","Indicator":"H","lat":"51.49651500674","lon":"-2.59143976748","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000008","CommonName":"Hengrove Park","Indicator":"E-bound","lat":"51.41217923727","lon":"-2.58310357877","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"010000009","CommonName":"Beechmount Grove","Street":"Airport Road","Indicator":"W-bound","lat":"51.42662550214","lon":"-2.56730774234","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"010000010","CommonName":"Beechmount Grove","Street":"Airport Road","Indicator":"E-bound","lat":"51.42657559796","lon":"-2.5683283321","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"010000011","CommonName":"Transport Hub","Street":"Parrys Lane","Indicator":"1","lat":"51.48019031658","lon":"-2.62531351762","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"010000012","CommonName":"Transport Hub","Street":"Parrys Lane","Indicator":"2","lat":"51.48031718834","lon":"-2.62512805152","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"010000013","CommonName":"Transport Hub","Street":"Parry Lane","Indicator":"3","lat":"51.48055917624","lon":"-2.62527536348","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"010000014","CommonName":"Transport Hub","Street":"Parrys Lane","Indicator":"4","lat":"51.48048786295","lon":"-2.62515918629","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"010000015","CommonName":"Kings Head Lane","Street":"Kings Head Lane","Indicator":"Stop D","lat":"51.45572039505","lon":"-2.58780342713","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"010000016","CommonName":"Dorian Way","Street":"Dorian Way","Indicator":"NW-bound","lat":"51.49486813923","lon":"-2.58993475993","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000017","CommonName":"Hogarth Walk","Street":"Romney Avenue","Indicator":"SW-bound","lat":"51.49383744853","lon":"-2.55991713803","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"010000018","CommonName":"Hogarth Walk","Indicator":"NE-bound","lat":"51.4946207009","lon":"-2.55971066936","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"010000019","CommonName":"St Andrews Road","Street":"Saint Andrews Road","Indicator":"N-bound","lat":"51.51539680712","lon":"-2.69177026508","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000020","CommonName":"St Andrews Road","Street":"Saint Andrews Road","Indicator":"S-bound","lat":"51.51517161248","lon":"-2.69183890839","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000021","CommonName":"St Brendan's Way","Street":"Saint Andrews Road","Indicator":"SE-bound","lat":"51.50055732509","lon":"-2.69689032116","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000022","CommonName":"Campbell Farm Drive","Indicator":"NW-bound","lat":"51.49959310595","lon":"-2.66631994353","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"010000027","CommonName":"Hengrove Way Rbt","Street":"Hengrove Way","Indicator":"NE-bound","lat":"51.41552910202","lon":"-2.59286693123","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"010000029","CommonName":"Cater Road Rbt","Street":"Whitchurch Lane","Indicator":"E-bound","lat":"51.41407034601","lon":"-2.60905353069","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"010000030","CommonName":"McLaren Road","Street":"McLaren Road","Indicator":"E-bound","lat":"51.5012639833","lon":"-2.69901890203","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000031","CommonName":"The Centre","Street":"Rupert Street","Indicator":"T1","lat":"51.45594957604","lon":"-2.59583736202","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"010000032","CommonName":"William Jessop Way","Street":"William Jessop Way","Indicator":"NE-bound","lat":"51.40654944654","lon":"-2.59226193501","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"010000033","CommonName":"Southmead Hospital","Indicator":"G","lat":"51.49663848166","lon":"-2.59191674004","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000034","CommonName":"Southmead Hospital","Indicator":"F","lat":"51.49674542795","lon":"-2.59210539481","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000035","CommonName":"Southmead Hospital","Indicator":"NW-bound","lat":"51.49687050145","lon":"-2.59226547485","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"010000036","CommonName":"Cabot Circus","Street":"Bond Street","Indicator":"T","lat":"51.45923329766","lon":"-2.58836673646","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"010000037","CommonName":"Tyndall Avenue","Street":"Tyndall Avenue","Indicator":"NE-bound","lat":"51.4589893342","lon":"-2.60275701171","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"010000038","CommonName":"Hareclive Road","Street":"South Bristol Link","Indicator":"D","lat":"51.41306656819","lon":"-2.61187284906","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"010000039","CommonName":"Hareclive Road","Street":"South Bristol Link","Indicator":"C","lat":"51.4135398812","lon":"-2.6107719761","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"010000040","CommonName":"Queens Road","Street":"South Bristol Link","Indicator":"W-bound","lat":"51.41104078875","lon":"-2.61922189676","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"010000041","CommonName":"Queens Road","Street":"South Bristol Link","Indicator":"E-bound","lat":"51.41113145929","lon":"-2.61907933818","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"010000042","CommonName":"Highridge Common","Street":"King George's Road","Indicator":"S-bound","lat":"51.41187308806","lon":"-2.62504211103","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"010000043","CommonName":"Highridge Common","Street":"South Bristol Link","Indicator":"N-bound","lat":"51.41249555197","lon":"-2.62634469705","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"010000044","CommonName":"Begbrook","Street":"Stoke Lane","Indicator":"NE-bound","lat":"51.49185727233","lon":"-2.53925231449","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"010000045","CommonName":"Begbrook","Street":"Stoke Lane","Indicator":"SW-bound","lat":"51.49177661763","lon":"-2.53919374763","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"010000046","CommonName":"Canon's Road","Street":"Anchor Road","Indicator":"S-bound","lat":"51.45192703374","lon":"-2.59824586762","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"010000047","CommonName":"Ashton Vale","Street":"Guided Busway","Indicator":"SW-bound","lat":"51.4356508685","lon":"-2.62602846602","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"010000048","CommonName":"Ashton Vale","Indicator":"NE-bound","lat":"51.4356953625","lon":"-2.62611539113","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"010000049","CommonName":"Ashton Gate","Street":"Guided Busway","Indicator":"N-bound","lat":"51.44334648137","lon":"-2.62457976753","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"010000050","CommonName":"Ashton Gate","Street":"Guided Busway","Indicator":"S-bound","lat":"51.44322998154","lon":"-2.62450623526","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"010000051","CommonName":"Cumberland Basin","Street":"Avon Crescent","Indicator":"SE-bound","lat":"51.44670690139","lon":"-2.61996341233","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"010000052","CommonName":"Cumberland Basin","Street":"Guided Busway","Indicator":"N-bound","lat":"51.44663078422","lon":"-2.62075380591","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"010000053","CommonName":"Temple Meads","Street":"Temple Gate","Indicator":"NE-bound","lat":"51.45584066923","lon":"-2.58712852894","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"010000054","CommonName":"Nisbets","Street":"Avonmouth Way","Indicator":"NE-bound","lat":"51.50331926327","lon":"-2.67823161718","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000055","CommonName":"Nisbets","Street":"Avonmouth Way","Indicator":"SW-bound","lat":"51.50344330113","lon":"-2.67855042354","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000056","CommonName":"Recliffe Way (Temp)","Street":"West Street","Indicator":"E-bound","lat":"51.44893860683","lon":"-2.58821995988","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"010000057","CommonName":"Nelson Street","Street":"Nelson Street","Indicator":"Hd","lat":"51.45662674301","lon":"-2.59351456993","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"010000058","CommonName":"Third Way","Street":"Saint Andrews Road","Indicator":"N-bound","lat":"51.50816764252","lon":"-2.69631483397","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000059","CommonName":"Third Way","Street":"Saint Andrews Road","Indicator":"S-bound","lat":"51.50693547696","lon":"-2.69636808762","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000060","CommonName":"St Andrews Road Station","Street":"Saint Andrews Road","Indicator":"S-bound","lat":"51.51023285893","lon":"-2.69528001752","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000061","CommonName":"St Andrews Road Station","Street":"Saint Andrews Road","Indicator":"N-bound","lat":"51.51169047637","lon":"-2.69511488401","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000062","CommonName":"Redcliff Hill","Street":"Prewett Street","Indicator":"R1","lat":"51.44674111202","lon":"-2.59070988445","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"010000063","CommonName":"Cantocks Close","Street":"Woodland Road","Indicator":"SE-bound","lat":"51.45628110921","lon":"-2.60309553256","node":"E0035664","stoptype":"BCT"},{"AtcoCode":"010000064","CommonName":"Prince Street","Street":"Prince Street","Indicator":"B","lat":"51.45074017252","lon":"-2.59647466872","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"010000065","CommonName":"St Michaels Hospital","Indicator":"S-bound","lat":"51.45896710662","lon":"-2.60007954456","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"010000066","CommonName":"Access 18","Street":"Kings Weston Lane","Indicator":"NW-bound","lat":"51.51220944451","lon":"-2.68176449429","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000067","CommonName":"Access 18","Street":"Kings Weston Lane","Indicator":"SE-bound","lat":"51.51235514005","lon":"-2.68144964383","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000068","CommonName":"Yankee Candle","Street":"Poplar Way East","Indicator":"NW-bound","lat":"51.51853134003","lon":"-2.67384571916","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000069","CommonName":"Yankee Candle","Street":"Poplar Way East","Indicator":"SE-bound","lat":"51.51870257948","lon":"-2.67377618581","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000070","CommonName":"Cabot Park","Street":"Poplar Way West","Indicator":"NW-bound","lat":"51.52362760301","lon":"-2.68350616775","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"010000071","CommonName":"Cabot Park","Street":"Poplar Way West","Indicator":"SE-bound","lat":"51.52378187416","lon":"-2.68326344224","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"01000053203","CommonName":"Bus Station","Indicator":"Bay 19","lat":"51.45941993773","lon":"-2.59237054308","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053204","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 18","lat":"51.45937461878","lon":"-2.59244192381","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053205","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 17","lat":"51.45934742738","lon":"-2.59248475218","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053206","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 16","lat":"51.45931117217","lon":"-2.5925418566","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053207","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 15","lat":"51.45928390797","lon":"-2.59259907742","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053208","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 14","lat":"51.45921176129","lon":"-2.59264132313","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053209","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 13","lat":"51.45918456982","lon":"-2.59268415123","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053210","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 12","lat":"51.45915730555","lon":"-2.59274137181","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053211","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 11","lat":"51.45913004126","lon":"-2.59279859231","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053212","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 10","lat":"51.45911169517","lon":"-2.59287032179","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053214","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 9","lat":"51.45909334905","lon":"-2.59294205122","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053216","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 8","lat":"51.45906615747","lon":"-2.59298487903","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053217","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 7","lat":"51.4590387474","lon":"-2.59307088424","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053218","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 6","lat":"51.45901141011","lon":"-2.59314249687","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053219","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 5","lat":"51.45899306382","lon":"-2.59321422603","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053220","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 4","lat":"51.45896572643","lon":"-2.59328583851","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053221","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 3","lat":"51.45894745292","lon":"-2.59334317508","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053222","CommonName":"Bus Station","Street":"Bus Station","Indicator":"Bay 2","lat":"51.45892018833","lon":"-2.59340039496","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053223","CommonName":"Bus Station","Indicator":"Bay 1","lat":"51.45889270507","lon":"-2.59350079208","node":"E0057160","stoptype":"BCS"},{"AtcoCode":"01000053227","CommonName":"Anchor Road","Street":"Anchor Road","Indicator":"W-bound","lat":"51.45079255728","lon":"-2.60030331438","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"01000053228","CommonName":"Anchor Road","Street":"Anchor Road","Indicator":"E-bound","lat":"51.45092727553","lon":"-2.6003338637","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"01000053287","CommonName":"Akeman Way","Street":"Portway","Indicator":"N-bound","lat":"51.49658780754","lon":"-2.69000164211","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"01000053288","CommonName":"Burnham Road","Street":"Portway","Indicator":"NW-bound","lat":"51.48645739098","lon":"-2.68332450757","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"01000053305","CommonName":"Westbury Road","Street":"North View","Indicator":"D","lat":"51.47947805539","lon":"-2.61548305716","node":"E0035669","stoptype":"BCT"},{"AtcoCode":"01000053310","CommonName":"Apsley Road","Indicator":"SE-bound","lat":"51.46814387816","lon":"-2.61295509183","node":"N0077028","stoptype":"BCT"},{"AtcoCode":"01000053312","CommonName":"Airport Road","Street":"Creswicke Road","Indicator":"B","lat":"51.42175415738","lon":"-2.58154281231","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100053233","CommonName":"Gasferry Road","Street":"Anchor Road","Indicator":"W-bound","lat":"51.45048495504","lon":"-2.60591166848","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"0100053234","CommonName":"Gasferry Road","Street":"Anchor Road","Indicator":"E-bound","lat":"51.45054001699","lon":"-2.60569653622","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"0100053236","CommonName":"Leisure Centre","Street":"Cumberland Road","Indicator":"E-bound","lat":"51.4462675599","lon":"-2.61631693531","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100053239","CommonName":"Cumberland Road","Street":"Cumberland Road","Indicator":"E-bound","lat":"51.44666498783","lon":"-2.60213419545","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100053240","CommonName":"Wapping Wharf","Street":"Cumberland Road","Indicator":"NW-bound","lat":"51.44640131245","lon":"-2.6009507903","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100053241","CommonName":"Wapping Wharf","Street":"Cumberland Road","Indicator":"SE-bound","lat":"51.44617771018","lon":"-2.59896211839","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100053247","CommonName":"Park Row","Street":"B4051","Indicator":"U4","lat":"51.45551270649","lon":"-2.60039403766","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053248","CommonName":"Kingsdown Parade","Street":"Montague Place","Indicator":"N-bound","lat":"51.46103613216","lon":"-2.59813470432","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100053249","CommonName":"Kingsdown Parade","Street":"Montague Place","Indicator":"S-bound","lat":"51.46122611885","lon":"-2.59790688305","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100053250","CommonName":"Myrtle Road","Street":"Saint Michael's Hill","Indicator":"N-bound","lat":"51.45974408996","lon":"-2.60111168773","node":"N0077029","stoptype":"BCT"},{"AtcoCode":"0100053252","CommonName":"Cotham Park","Street":"Cotham Grove","Indicator":"N-bound","lat":"51.46586666464","lon":"-2.59773722746","node":"E0035592","stoptype":"BCT"},{"AtcoCode":"0100053254","CommonName":"Redland Court Road","Street":"Redland Court Road","Indicator":"N-bound","lat":"51.47086539224","lon":"-2.60137307115","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053255","CommonName":"Harcourt Hill","Street":"Cranbrook Road","Indicator":"NW-bound","lat":"51.47730389718","lon":"-2.60476958595","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053256","CommonName":"Harcourt Hill","Street":"Cranbrook Road","Indicator":"SE-bound","lat":"51.47685032921","lon":"-2.60379884941","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053257","CommonName":"Clare Avenue","Street":"Cranbrook Road","Indicator":"A","lat":"51.47575384027","lon":"-2.60195573212","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053258","CommonName":"Clare Avenue","Street":"Cranbrook Road","Indicator":"B","lat":"51.47470323498","lon":"-2.59992612722","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053259","CommonName":"Kersteman Road","Street":"Cranbrook Road","Indicator":"NW-bound","lat":"51.47350535799","lon":"-2.59855699707","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053260","CommonName":"Kersteman Road","Street":"Cranbrook Road","Indicator":"SE-bound","lat":"51.47297944271","lon":"-2.59765744674","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100053261","CommonName":"Cranbrook Road","Street":"Cranbrook Road","Indicator":"NW-bound","lat":"51.47077199093","lon":"-2.59500831447","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100053262","CommonName":"Ikea Car Park","Street":"Eastgate Road","Indicator":"N-bound","lat":"51.45572104458","lon":"-2.58767390405","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053263","CommonName":"Shaldon Road","Street":"Muller Road","Indicator":"NW-bound","lat":"51.48011020416","lon":"-2.57602100164","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100053264","CommonName":"Alberton Road","Street":"Alberton Road","Indicator":"NE-bound","lat":"51.4889912765","lon":"-2.54070197849","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053265","CommonName":"Westover Road","Street":"Northover Road","Indicator":"NE-bound","lat":"51.50010138378","lon":"-2.62293530944","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100053266","CommonName":"Northover Road","Street":"Northover Road","Indicator":"W-bound","lat":"51.50143508808","lon":"-2.6172772229","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100053267","CommonName":"Knole Lane","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.50990552397","lon":"-2.60338573891","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100053281","CommonName":"Haslemere","Street":"Third Way","Indicator":"E-bound","lat":"51.50528675329","lon":"-2.69083906753","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100053283","CommonName":"Avonmouth Way","Street":"Third Way","Indicator":"N-bound","lat":"51.5033767516","lon":"-2.6868913474","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100053285","CommonName":"First Way","Street":"Avonmouth Way","Indicator":"W-bound","lat":"51.50268883062","lon":"-2.68920056571","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100053291","CommonName":"Hallen Road","Indicator":"E-bound","lat":"51.50877170537","lon":"-2.63422065793","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100053293","CommonName":"Lyppincourt Road","Street":"Wyck Beck Road","Indicator":"N-bound","lat":"51.51320988132","lon":"-2.6197709255","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100053294","CommonName":"Lyppincourt Road","Street":"Wyck Beck Road","Indicator":"S-bound","lat":"51.51261800368","lon":"-2.61947468376","node":"E0035579","stoptype":"BCT"},{"AtcoCode":"0100053295","CommonName":"Canford Park","Street":"Canford Lane","Indicator":"W-bound","lat":"51.49446355606","lon":"-2.62464459807","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053296","CommonName":"Canford Cemetery","Street":"Canford Lane","Indicator":"E-bound","lat":"51.49482188521","lon":"-2.62657972952","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053297","CommonName":"Canford Cemetery","Street":"Canford Lane","Indicator":"W-bound","lat":"51.49474649194","lon":"-2.62722690653","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053298","CommonName":"Sandyleaze","Street":"Canford Lane","Indicator":"W-bound","lat":"51.49484157331","lon":"-2.63129034389","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053299","CommonName":"Sandyleaze","Indicator":"E-bound","lat":"51.49475172426","lon":"-2.63294564233","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053300","CommonName":"Churchill Drive","Street":"Canford Lane","Indicator":"W-bound","lat":"51.49372962271","lon":"-2.63572592994","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053301","CommonName":"Churchill Drive","Street":"Canford Lane","Indicator":"E-bound","lat":"51.49351743848","lon":"-2.63671687463","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053303","CommonName":"Lampeter Road","Street":"Falcondale Road","Indicator":"S-bound","lat":"51.49214099436","lon":"-2.62177528033","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053304","CommonName":"Lampeter Road","Street":"Falcondale Road","Indicator":"N-bound","lat":"51.49203210985","lon":"-2.62196104827","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100053306","CommonName":"Risdale Road","Street":"Risdale Road","Indicator":"SW-bound","lat":"51.45574736822","lon":"-2.58780377372","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053308","CommonName":"Counterslip","Street":"Counterslip","Indicator":"SW-bound","lat":"51.45570306246","lon":"-2.58767367303","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053309","CommonName":"Northcote Road","Street":"Guthrie Road","Indicator":"NE-bound","lat":"51.45579347813","lon":"-2.58757408776","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053311","CommonName":"Airport Road","Street":"Creswicke Road","Indicator":"A","lat":"51.42224709824","lon":"-2.58186547232","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100053313","CommonName":"Willinton Road","Street":"Throgmorton Road","Indicator":"E-bound","lat":"51.42465491727","lon":"-2.57680461899","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100053315","CommonName":"Willinton Road","Street":"Throgmorton Road","Indicator":"W-bound","lat":"51.42472075637","lon":"-2.57621576025","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100053316","CommonName":"Broad Walk Shops","Indicator":"Stop B","lat":"51.45583821697","lon":"-2.58761783966","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053320","CommonName":"Beryl Grove","Street":"West Town Lane","Indicator":"W-bound","lat":"51.42606485875","lon":"-2.56236741084","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100053321","CommonName":"Dangerfield Avenue","Street":"Cutler Road","Indicator":"SE-bound","lat":"51.41447863116","lon":"-2.6237403694","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100053324","CommonName":"Swiss Road","Street":"South Liberty Lane","Indicator":"SW-bound","lat":"51.45572140537","lon":"-2.58760194678","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053325","CommonName":"Swiss Road","Street":"South Liberty Lane","Indicator":"NE-bound","lat":"51.45573945964","lon":"-2.5875877863","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053328","CommonName":"Ilchester Crescent","Street":"Ilchester Crescent","Indicator":"A","lat":"51.4558733152","lon":"-2.58779099966","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053329","CommonName":"Ilchester Crescent","Street":"Ilchester Crescent","Indicator":"Stop B","lat":"51.45581052215","lon":"-2.587761408","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053330","CommonName":"Ilchester Crescent","Street":"Ilchester Crescent","Indicator":"Stop C","lat":"51.45583814481","lon":"-2.58763223115","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053331","CommonName":"Ilchester Crescent","Street":"Ilchester Crescent","Indicator":"Stop D","lat":"51.45581987405","lon":"-2.5876895661","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053332","CommonName":"Brooklyn Road","Street":"Brooklyn Road","Indicator":"Stop A","lat":"51.45582088418","lon":"-2.5874880853","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053333","CommonName":"Brooklyn Road","Street":"Brooklyn Road","Indicator":"S-bound","lat":"51.45583023591","lon":"-2.58741624333","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053334","CommonName":"Lewis Road","Street":"Lewis Road","Indicator":"N-bound","lat":"51.45576599987","lon":"-2.58767448157","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053335","CommonName":"Lewis Road","Street":"Lewis Road","Indicator":"N-bound","lat":"51.4557033511","lon":"-2.58761610724","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053337","CommonName":"Bedminster Road","Street":"Bedminster Road","Indicator":"NE-bound","lat":"51.43332125611","lon":"-2.60390070263","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100053338","CommonName":"Bedminster Road","Street":"Bedminster Road","Indicator":"SW-bound","lat":"51.4557930452","lon":"-2.58766043662","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053339","CommonName":"Greenway Bush Lane","Street":"North Street","Indicator":"W-bound","lat":"51.44241184166","lon":"-2.61427943862","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100053340","CommonName":"Porlock Road","Street":"Quantock Road","Indicator":"SW-bound","lat":"51.43756571119","lon":"-2.59503695463","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100053342","CommonName":"Henry St Green Street","Street":"Henry Street","Indicator":"N-bound","lat":"51.45578398198","lon":"-2.58767471259","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053343","CommonName":"Winterstoke Road","Indicator":"W-bound","lat":"51.44065433128","lon":"-2.62526241357","node":"E0035577","stoptype":"BCT"},{"AtcoCode":"0100053344","CommonName":"Ashton Park School","Indicator":"NW-bound","lat":"51.45576614419","lon":"-2.58764569864","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100053345","CommonName":"Clanage Road","Street":"Clanage Road","Indicator":"N-bound","lat":"51.44355948","lon":"-2.6284675911","node":"E0035577","stoptype":"BCT"},{"AtcoCode":"0100053346","CommonName":"Clanage Road","Street":"Clanage Road","Indicator":"S-bound","lat":"51.44354234659","lon":"-2.62830908148","node":"E0035577","stoptype":"BCT"},{"AtcoCode":"0100ARN0","CommonName":"Arnolfini Ferry Landing","Indicator":"Entrance","lat":"51.44895124594","lon":"-2.59639378717","node":"N0077031","stoptype":"FTD"},{"AtcoCode":"0100AVONMTH0","CommonName":"Avonmouth Rail Station","Indicator":"Entrance","lat":"51.49989781224","lon":"-2.69892596191","node":"E0035565","stoptype":"RSE"},{"AtcoCode":"0100BAC30684","CommonName":"Hicks Gate","Street":"Bath Road","Indicator":"W-bound","lat":"51.4264836041","lon":"-2.5264290117","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BAC30685","CommonName":"Hicks Gate","Street":"Bath Road","Indicator":"E-bound","lat":"51.42660320213","lon":"-2.52582629233","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BAC30742","CommonName":"Lacey Road","Street":"Stockwood Lane","Indicator":"S-bound","lat":"51.41598139174","lon":"-2.53436103638","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BAC30743","CommonName":"Lacey Road","Street":"Stockwood Lane","Indicator":"N-bound","lat":"51.41592691982","lon":"-2.53447543977","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BAC30946","CommonName":"Gilda Parade","Street":"Wells Road","Indicator":"S-bound","lat":"51.41307638449","lon":"-2.55954785411","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BAZ02458","CommonName":"Avon Street","Street":"Feeder Road","Indicator":"E-bound","lat":"51.44896897516","lon":"-2.57485180398","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BAZ02459","CommonName":"Avon Street","Street":"Feeder Road","Indicator":"W-bound","lat":"51.4488703555","lon":"-2.5747930041","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BCC0","CommonName":"Bristol City Centre Ferry Landing","Indicator":"Entrance","lat":"51.45218216017","lon":"-2.59758720507","node":"N0076879","stoptype":"FTD"},{"AtcoCode":"0100BDMNSTR0","CommonName":"Bedminster Rail Station","Indicator":"Entrance","lat":"51.44026675625","lon":"-2.59433830479","node":"E0035570","stoptype":"RSE"},{"AtcoCode":"0100BHB0","CommonName":"Bathurst Basin Ferry Landing","Indicator":"Entrance","lat":"51.44860049975","lon":"-2.59286362977","node":"N0077026","stoptype":"FTD"},{"AtcoCode":"0100BRA0","CommonName":"Bristol Bridge Ferry Landing","Indicator":"Entrance","lat":"51.45387667578","lon":"-2.59146403872","node":"N0076879","stoptype":"FTD"},{"AtcoCode":"0100BRA01797","CommonName":"Cabot Circus","Street":"Bond Street South","Indicator":"Coach","lat":"51.45821948687","lon":"-2.58432360923","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA01798","CommonName":"Cabot Circus","Street":"Bond Street","Indicator":"Sr","lat":"51.45948146992","lon":"-2.58729041157","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA01799","CommonName":"Monks Park Way","Indicator":"NE-bound","lat":"51.4982199497","lon":"-2.59212450936","node":"E0035644","stoptype":"BCT"},{"AtcoCode":"0100BRA10006","CommonName":"Langley Crescent","Street":"Langley Crescent","Indicator":"SE-bound","lat":"51.42986623458","lon":"-2.6282652433","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10008","CommonName":"Risdale Road","Indicator":"S-bound","lat":"51.43196853985","lon":"-2.62691313656","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10009","CommonName":"Risdale Road","Street":"Ashton Drive","Indicator":"E-bound","lat":"51.43237505945","lon":"-2.62655907623","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10010","CommonName":"Swiss Drive","Street":"Ashton Drive","Indicator":"W-bound","lat":"51.43294107866","lon":"-2.62327260157","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10011","CommonName":"Swiss Drive","Street":"Ashton Drive","Indicator":"NE-bound","lat":"51.43324015368","lon":"-2.62283072764","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10012","CommonName":"Ashton Drive","Street":"Ashton Drive","Indicator":"NE-bound","lat":"51.43487828301","lon":"-2.61912707878","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10013","CommonName":"Ashton Drive","Indicator":"SW-bound","lat":"51.43475294044","lon":"-2.619024683","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10014","CommonName":"Hendre Road","Indicator":"NW-bound","lat":"51.43545234109","lon":"-2.61939379094","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10015","CommonName":"Smyth Road","Indicator":"NW-bound","lat":"51.43741239285","lon":"-2.62111793612","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10016","CommonName":"Smyth Road","Street":"Winterstoke Road","Indicator":"SE-bound","lat":"51.43746740633","lon":"-2.6209172693","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10021","CommonName":"Frayne Road","Indicator":"SW-bound","lat":"51.44275462165","lon":"-2.61749263496","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA10022","CommonName":"Frayne Road","Street":"North Street","Indicator":"E-bound","lat":"51.44307566939","lon":"-2.6162883391","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA10023","CommonName":"Greenway Bush Lane","Street":"North Street","Indicator":"SE-bound","lat":"51.44257352945","lon":"-2.61431038528","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA10033","CommonName":"Dean Street","Street":"North Street","Indicator":"NE-bound","lat":"51.44143300827","lon":"-2.6019070943","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10034","CommonName":"Dean Street","Street":"Dean Lane","Indicator":"SW-bound","lat":"51.44186245259","lon":"-2.60057465501","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10035","CommonName":"Catherine Mead Street","Street":"Catherine Mead Street","Indicator":"E-bound","lat":"51.44279791877","lon":"-2.59698984948","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10036","CommonName":"Catherine Mead Street","Street":"Catherine Mead Street","Indicator":"W-bound","lat":"51.4427561134","lon":"-2.59637060682","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10037","CommonName":"Southville Place","Indicator":"S-bound","lat":"51.4443834225","lon":"-2.59640620162","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10038","CommonName":"Southville Place","Street":"Saint Johns Road","Indicator":"N-bound","lat":"51.44501469998","lon":"-2.59604031421","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10039","CommonName":"New Charlotte Street","Street":"Coronation Road","Indicator":"E-bound","lat":"51.44567072311","lon":"-2.59256666635","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10040","CommonName":"New Charlotte Street","Street":"Coronation Road","Indicator":"W-bound","lat":"51.44563075478","lon":"-2.59335755544","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10041","CommonName":"Dean Lane","Indicator":"NW-bound","lat":"51.44542106407","lon":"-2.59922560877","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA10042","CommonName":"Dean Lane","Street":"Coronation Road","Indicator":"SE-bound","lat":"51.44574754695","lon":"-2.60043858107","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA10047","CommonName":"Hendre Road","Street":"Winterstoke Road","Indicator":"E-bound","lat":"51.43490666064","lon":"-2.61715660019","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10048","CommonName":"Marsh Lane","Street":"Winterstoke Road","Indicator":"W-bound","lat":"51.43425234618","lon":"-2.6133355825","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10049","CommonName":"Marsh Lane","Street":"Luckwell Road","Indicator":"N-bound","lat":"51.43390292714","lon":"-2.61137446816","node":"E0035563","stoptype":"BCT"},{"AtcoCode":"0100BRA10050","CommonName":"Luckwell Road","Street":"Luckwell Road","Indicator":"S-bound","lat":"51.43596195288","lon":"-2.61138758019","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10051","CommonName":"Luckwell Road","Street":"Luckwell Road","Indicator":"NW-bound","lat":"51.43637223708","lon":"-2.61202605757","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10054","CommonName":"Smyth Road","Street":"Luckwell Road","Indicator":"SW-bound","lat":"51.44005513001","lon":"-2.61101062875","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10055","CommonName":"Greville Road","Street":"North Street","Indicator":"E-bound","lat":"51.44035685622","lon":"-2.61005068976","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10056","CommonName":"Sion Road","Street":"North Street","Indicator":"W-bound","lat":"51.44045897404","lon":"-2.60596597384","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10057","CommonName":"Sion Road","Street":"North Street","Indicator":"E-bound","lat":"51.44064199229","lon":"-2.60534972787","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10059","CommonName":"Durnford Street","Street":"Duckmoor Road","Indicator":"NW-bound","lat":"51.4405179011","lon":"-2.61707399326","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA10062","CommonName":"Counterslip Gardens","Street":"Wells Road","Indicator":"N-bound","lat":"51.41747765596","lon":"-2.56052195794","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10064","CommonName":"Bellevue Road","Street":"Wells Road","Indicator":"S-bound","lat":"51.4432422179","lon":"-2.57831942685","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10065","CommonName":"Bedminster Parade","Street":"Bedminster Parade","Indicator":"SW-bound","lat":"51.44431001503","lon":"-2.59315337672","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10066","CommonName":"Bedminster Parade","Indicator":"DelD","lat":"51.4440696861","lon":"-2.59444524673","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10067","CommonName":"Bedminster Parade","Street":"Bedminster Parade","Indicator":"DelA","lat":"51.44408766823","lon":"-2.5944454803","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10068","CommonName":"Bedminster Parade","Street":"Bedminster Parade","Indicator":"NE-bound","lat":"51.44345792873","lon":"-2.59450924324","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10069","CommonName":"Dalby Avenue","Indicator":"Stop A","lat":"51.44416873378","lon":"-2.59441775578","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10070","CommonName":"Dalby Avenue","Street":"Dalby Avenue","Indicator":"S-bound","lat":"51.44129678651","lon":"-2.59512862422","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10071","CommonName":"Wesley Street","Street":"Sheene Road","Indicator":"N-bound","lat":"51.43896755225","lon":"-2.60049350963","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10072","CommonName":"Wesley Street","Street":"Sheene Road","Indicator":"S-bound","lat":"51.43916557678","lon":"-2.60045294597","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10073","CommonName":"West Street","Street":"West Street","Indicator":"SW-bound","lat":"51.43935622156","lon":"-2.60185100961","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10074","CommonName":"Victor Road","Street":"West Street","Indicator":"NE-bound","lat":"51.43851310008","lon":"-2.6031923","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10075","CommonName":"United Reform Church","Street":"West Street","Indicator":"SW-bound","lat":"51.43662358491","lon":"-2.60518149619","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10076","CommonName":"Chessel Street","Street":"West Street","Indicator":"NE-bound","lat":"51.4359241334","lon":"-2.60655332169","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10077","CommonName":"Parson Street Station","Street":"West Street","Indicator":"S-bound","lat":"51.43450590368","lon":"-2.60781486058","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10078","CommonName":"Parson Street","Indicator":"W-bound","lat":"51.43167157516","lon":"-2.60992057346","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10079","CommonName":"Bedminster Down","Street":"Bishopsworth Road","Indicator":"C","lat":"51.42772371176","lon":"-2.61346388781","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10080","CommonName":"Lulsgate Road","Street":"Bishopsworth Road","Indicator":"N-bound","lat":"51.4265971929","lon":"-2.61395221009","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10081","CommonName":"Cheddar Grove","Street":"Bishopsworth Road","Indicator":"S-bound","lat":"51.42424660523","lon":"-2.61466858841","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10082","CommonName":"Cheddar Grove","Street":"Bishopsworth Road","Indicator":"N-bound","lat":"51.42389436914","lon":"-2.61496589127","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10083","CommonName":"Wrington Crescent","Street":"Bishopsworth Road","Indicator":"S-bound","lat":"51.42191127447","lon":"-2.61590284317","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10084","CommonName":"Wrington Crescent","Street":"Bishopsworth Road","Indicator":"N-bound","lat":"51.42118873735","lon":"-2.6165115338","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10086","CommonName":"Vicarage Road","Street":"Roman Road","Indicator":"S-bound","lat":"51.41817226339","lon":"-2.61731939054","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10087","CommonName":"Vicarage Road","Street":"Roman Road","Indicator":"N-bound","lat":"51.41771174859","lon":"-2.61768707646","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10088","CommonName":"St Peter's Church","Street":"Church Road","Indicator":"SW-bound","lat":"51.4155074204","lon":"-2.61794495016","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10089","CommonName":"St Peter's Church","Street":"Church Road","Indicator":"NE-bound","lat":"51.41520768028","lon":"-2.61851609398","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10090","CommonName":"Church Road","Street":"Church Road","Indicator":"N-bound","lat":"51.41317404604","lon":"-2.62050170434","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10091","CommonName":"Church Road","Street":"Highridge Road","Indicator":"SW-bound","lat":"51.41246055189","lon":"-2.62109595153","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10092","CommonName":"Highridge Green","Street":"Highridge Road","Indicator":"W-bound","lat":"51.41208902698","lon":"-2.62501629945","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10093","CommonName":"Highridge Green","Street":"Highridge Road","Indicator":"E-bound","lat":"51.41206421164","lon":"-2.6262956644","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10094","CommonName":"Shuter Road","Street":"Four Acres","Indicator":"N-bound","lat":"51.41049322802","lon":"-2.62749633809","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10095","CommonName":"Shuter Road","Street":"Four Acres","Indicator":"S-bound","lat":"51.41020489799","lon":"-2.62760741441","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10096","CommonName":"Turtlegate Avenue","Street":"Four Acres","Indicator":"N-bound","lat":"51.40731082537","lon":"-2.62904862948","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10097","CommonName":"Turtlegate Avenue","Street":"Four Acres","Indicator":"S-bound","lat":"51.40748227304","lon":"-2.6289359649","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10098","CommonName":"Sherrin Way","Street":"Four Acres","Indicator":"W-bound","lat":"51.40603158048","lon":"-2.62782341875","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10099","CommonName":"Sherrin Way","Street":"Four Acres","Indicator":"NE-bound","lat":"51.40636433713","lon":"-2.6261315028","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10100","CommonName":"Queen's Road","Street":"Four Acres","Indicator":"W-bound","lat":"51.40697506665","lon":"-2.62289062408","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10101","CommonName":"Queen's Road","Street":"Broad Oak Road","Indicator":"E-bound","lat":"51.4071038528","lon":"-2.62064954194","node":"E0035677","stoptype":"BCT"},{"AtcoCode":"0100BRA10102","CommonName":"Newland Drive","Street":"Bishport Avenue","Indicator":"SE-bound","lat":"51.40587277357","lon":"-2.61709619005","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10103","CommonName":"Newland Drive","Street":"Bishport Avenue","Indicator":"NW-bound","lat":"51.40574962318","lon":"-2.61657697039","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10104","CommonName":"Fair Furlong","Street":"Bishport Avenue","Indicator":"E-bound","lat":"51.40545040769","lon":"-2.6136257397","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10105","CommonName":"Fair Furlong","Street":"Bishport Avenue","Indicator":"W-bound","lat":"51.4054024791","lon":"-2.61247497045","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10106","CommonName":"Crosscombe Drive","Street":"Bishport Avenue","Indicator":"W-bound","lat":"51.40537733614","lon":"-2.60693964965","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10107","CommonName":"Crosscombe Drive","Street":"Bishport Avenue","Indicator":"E-bound","lat":"51.40534412609","lon":"-2.60640727667","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10108","CommonName":"Bishport Avenue Lay-by","Indicator":"E-bound","lat":"51.40421234697","lon":"-2.60094371583","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10109","CommonName":"Bishport Avenue Lay-by","Indicator":"W-bound","lat":"51.40400496135","lon":"-2.60105600571","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10110","CommonName":"Bedminster Down","Street":"Bedminster Down Road","Indicator":"A","lat":"51.42992674662","lon":"-2.61345025047","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10111","CommonName":"Bedminster Down Road","Street":"Bedminster Down Road","Indicator":"NE-bound","lat":"51.43349300546","lon":"-2.60893786013","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10112","CommonName":"East Street","Street":"East Street","Indicator":"E-bound","lat":"51.44108457743","lon":"-2.59971556844","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10114","CommonName":"Highbury Road","Street":"Hartcliffe Way","Indicator":"S-bound","lat":"51.43061911391","lon":"-2.60480005488","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10115","CommonName":"Highbury Road","Street":"Hartcliff Way","Indicator":"N-bound","lat":"51.42977439878","lon":"-2.60470259184","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10116","CommonName":"Vale Lane","Street":"Hartcliffe Way","Indicator":"N-bound","lat":"51.42874012503","lon":"-2.60648692215","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10117","CommonName":"Vale Lane","Street":"Hartcliffe Way","Indicator":"SW-bound","lat":"51.42805962662","lon":"-2.60419090103","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10119","CommonName":"Crantock Avenue","Street":"Headley Lane","Indicator":"N-bound","lat":"51.42361804061","lon":"-2.60587256263","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10120","CommonName":"Crantock Avenue","Street":"St Peter's Rise","Indicator":"SW-bound","lat":"51.42307604661","lon":"-2.6063543852","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10121","CommonName":"Headley Park Avenue","Street":"Saint Peter's Rise","Indicator":"E-bound","lat":"51.42156126217","lon":"-2.60889426671","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10122","CommonName":"Headley Park Avenue","Street":"Saint Peter's Rise","Indicator":"W-bound","lat":"51.42116041936","lon":"-2.60989564539","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10123","CommonName":"St. Peters Rise","Street":"Saint Peter's Rise","Indicator":"NE-bound","lat":"51.42055200264","lon":"-2.61276381307","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10124","CommonName":"St Peters Rise","Street":"Saint Peter's Rise","Indicator":"S-bound","lat":"51.41985344218","lon":"-2.61394810143","node":"E0035608","stoptype":"BCT"},{"AtcoCode":"0100BRA10125","CommonName":"Perrycroft Road","Street":"Whitchurch Road","Indicator":"NW-bound","lat":"51.41485691071","lon":"-2.61511778176","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10126","CommonName":"Perrycroft Road","Street":"Whitchurch Road","Indicator":"SE-bound","lat":"51.41476911292","lon":"-2.614713976","node":"E0035575","stoptype":"BCT"},{"AtcoCode":"0100BRA10127","CommonName":"Hareclive Road","Street":"Hareclive Road","Indicator":"A","lat":"51.41373318464","lon":"-2.61163730543","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10128","CommonName":"Hareclive Road","Street":"Hareclive Road","Indicator":"B","lat":"51.41370688686","lon":"-2.61150754157","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10129","CommonName":"Gatcombe Road","Street":"Hareclive Road","Indicator":"N-bound","lat":"51.4110644809","lon":"-2.60955995209","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10130","CommonName":"Gatcombe Road","Street":"Hareclive Road","Indicator":"S-bound","lat":"51.41082336665","lon":"-2.609240422","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10131","CommonName":"Lenover Gardens","Street":"Hareclive Road","Indicator":"SE-bound","lat":"51.40857587359","lon":"-2.60568803157","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10132","CommonName":"Lenover Gardens","Street":"Hareclive Road","Indicator":"NW-bound","lat":"51.40864586935","lon":"-2.60606277455","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10133","CommonName":"Symes Avenue","Street":"Hareclive Road","Indicator":"E-bound","lat":"51.40710519803","lon":"-2.59967333334","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10134","CommonName":"Symes Avenue","Street":"Hareclive Road","Indicator":"W-bound","lat":"51.40688882257","lon":"-2.59978551827","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10135","CommonName":"Urmston House","Street":"Hareclive Road","Indicator":"E-bound","lat":"51.40656806417","lon":"-2.59568388927","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10136","CommonName":"Oak House","Street":"Bishport Avenue","Indicator":"W-bound","lat":"51.40677644926","lon":"-2.59360193104","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10137","CommonName":"Lampton Avenue","Street":"Bishport Avenue","Indicator":"N-bound","lat":"51.40577026925","lon":"-2.59164804377","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10138","CommonName":"Lampton Avenue","Street":"Bishport Avenue","Indicator":"S-bound","lat":"51.4046107765","lon":"-2.5915611931","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10139","CommonName":"Hollisters Drive","Street":"Bishport Avenue","Indicator":"E-bound","lat":"51.40363008572","lon":"-2.59522879752","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10140","CommonName":"Hollisters Drive","Street":"Bishport Avenue","Indicator":"W-bound","lat":"51.40356268931","lon":"-2.59610485861","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10143","CommonName":"Whitland Avenue","Street":"Whitland Road","Indicator":"E-bound","lat":"51.41350801563","lon":"-2.60825520285","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10144","CommonName":"Stillingfleet Road","Street":"Whitland Road","Indicator":"W-bound","lat":"51.41276116897","lon":"-2.60314077909","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10145","CommonName":"Maynard Road","Street":"Whitchurch Lane","Indicator":"E-bound","lat":"51.41274343289","lon":"-2.59958895994","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10147","CommonName":"Hawkfield Road","Street":"Hawkfield Road","Indicator":"N-bound","lat":"51.40794587794","lon":"-2.59350206068","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10148","CommonName":"Hawkfield Road","Street":"Hawkfield Road","Indicator":"S-bound","lat":"51.40766802697","lon":"-2.59332593451","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10149","CommonName":"Fulford Road","Street":"Hawkfield Road","Indicator":"S-bound","lat":"51.41046691507","lon":"-2.59461307796","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10150","CommonName":"Fulford Road","Street":"Hawkfield Road","Indicator":"N-bound","lat":"51.41097824094","lon":"-2.59484976697","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10151","CommonName":"Wills Way","Indicator":"NW-bound","lat":"51.41670345135","lon":"-2.59710988727","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10152","CommonName":"Wills Way","Street":"Hartcliffe Way","Indicator":"SE-bound","lat":"51.41604557501","lon":"-2.59563456015","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10153","CommonName":"Hartcliffe Way","Street":"Hartcliffe Way","Indicator":"SE-bound","lat":"51.41823013778","lon":"-2.59924373749","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10154","CommonName":"Novers Lane","Street":"Novers Lane","Indicator":"NE-bound","lat":"51.41992355125","lon":"-2.59866188377","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10155","CommonName":"Hartcliffe Way","Indicator":"NW-bound","lat":"51.41955698705","lon":"-2.60176339456","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10156","CommonName":"Novers Lane","Street":"Novers Lane","Indicator":"SW-bound","lat":"51.4204302104","lon":"-2.59805011003","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10157","CommonName":"Hurston Road","Street":"Leinster Avenue","Indicator":"NE-bound","lat":"51.42226156229","lon":"-2.59686594569","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10158","CommonName":"Hurston Road","Street":"Leinster Avenue","Indicator":"SW-bound","lat":"51.42246156329","lon":"-2.59643709402","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10159","CommonName":"Broadbury Road","Street":"Leinster Avenue","Indicator":"NE-bound","lat":"51.42557347471","lon":"-2.59273806592","node":"E0035630","stoptype":"BCT"},{"AtcoCode":"0100BRA10160","CommonName":"Broadbury Road","Street":"Leinster Avenue","Indicator":"SW-bound","lat":"51.42548407298","lon":"-2.59263622859","node":"E0035630","stoptype":"BCT"},{"AtcoCode":"0100BRA10161","CommonName":"Melvin Square","Street":"Melvin Square","Indicator":"B","lat":"51.42844650444","lon":"-2.58644637882","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10162","CommonName":"Melvin Square","Street":"Melvin Square","Indicator":"D","lat":"51.42804176086","lon":"-2.58646996255","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10163","CommonName":"St Barnabas Close","Street":"Daventry Road","Indicator":"NE-bound","lat":"51.43030170605","lon":"-2.58225551386","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10164","CommonName":"St Barnabas Close","Street":"Daventry Road","Indicator":"SW-bound","lat":"51.43036600145","lon":"-2.5819830277","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10165","CommonName":"Broad Walk Square","Indicator":"A","lat":"51.43178883232","lon":"-2.57791581488","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10166","CommonName":"Broad Walk Square","Street":"Broad Walk","Indicator":"C","lat":"51.43227202194","lon":"-2.57656972359","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10167","CommonName":"Greenwood Road","Street":"Broad Walk","Indicator":"E-bound","lat":"51.43267627897","lon":"-2.57297853189","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10168","CommonName":"Greenwood Road","Street":"Broad Walk","Indicator":"W-bound","lat":"51.43253023983","lon":"-2.5734226418","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10169","CommonName":"Broad Walk Shops","Indicator":"E-bound","lat":"51.43405335879","lon":"-2.56715522934","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10170","CommonName":"Broad Walk Shops","Street":"Broad Walk","Indicator":"W-bound","lat":"51.43381826642","lon":"-2.5674256411","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10171","CommonName":"Greenleaze","Street":"Wells Road","Indicator":"N-bound","lat":"51.43122327893","lon":"-2.56481862399","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10172","CommonName":"Greenleaze","Street":"Wells Road","Indicator":"S-bound","lat":"51.43102651383","lon":"-2.56460042752","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10173","CommonName":"Wootton Park","Street":"Wells Road","Indicator":"S-bound","lat":"51.42704766457","lon":"-2.5636739828","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10174","CommonName":"Wootton Park","Street":"Wells Road","Indicator":"N-bound","lat":"51.42690304515","lon":"-2.56383041903","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10175","CommonName":"Sturminster Road","Street":"West Town Lane","Indicator":"B","lat":"51.42635570174","lon":"-2.55795535919","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10176","CommonName":"Sturminster Road","Street":"West Town Lane","Indicator":"A","lat":"51.42621170636","lon":"-2.55798237087","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10177","CommonName":"West Town Park","Street":"West Town Lane","Indicator":"NE-bound","lat":"51.42824047743","lon":"-2.55490020765","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10178","CommonName":"West Town Park","Street":"West Town Lane","Indicator":"W-bound","lat":"51.4286718337","lon":"-2.55304991694","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10179","CommonName":"West Town Lane","Street":"West Town Lane","Indicator":"NE-bound","lat":"51.4295455537","lon":"-2.55081654524","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10180","CommonName":"West Town Lane","Street":"West Town Lane","Indicator":"SW-bound","lat":"51.43032682687","lon":"-2.549114203","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10181","CommonName":"Hungerford Crescent","Street":"Hungerford Road","Indicator":"SE-bound","lat":"51.42899837596","lon":"-2.54669614971","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10182","CommonName":"Hungerford Crescent","Street":"Hungerford Road","Indicator":"N-bound","lat":"51.42884545908","lon":"-2.54670870783","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10183","CommonName":"Hungerford Gardens","Street":"Hungerford Road","Indicator":"E-bound","lat":"51.4265908005","lon":"-2.544294177","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10184","CommonName":"Hungerford Gardens","Street":"Hungerford Road","Indicator":"W-bound","lat":"51.4262087192","lon":"-2.54331158583","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10187","CommonName":"Stockwood Road","Indicator":"N-bound","lat":"51.42890814986","lon":"-2.53899966971","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10188","CommonName":"Stockwood Road","Street":"Stockwood Road","Indicator":"S-bound","lat":"51.42884633617","lon":"-2.5387544156","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10189","CommonName":"Emery Road","Street":"Bath Road","Indicator":"E-bound","lat":"51.42965110682","lon":"-2.5397276239","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10190","CommonName":"Flowers Hill","Street":"Bath Road","Indicator":"E-bound","lat":"51.43055192064","lon":"-2.54326243217","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10191","CommonName":"Flowers Hill","Street":"Bath Road","Indicator":"W-bound","lat":"51.43077229447","lon":"-2.5442144251","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10193","CommonName":"Eagle Road","Street":"A4","Indicator":"E-bound","lat":"51.43591598154","lon":"-2.55371287839","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10195","CommonName":"Allison Road","Street":"Wick Road","Indicator":"S-bound","lat":"51.4390717709","lon":"-2.55186634057","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10196","CommonName":"Allison Road","Street":"Wick Road","Indicator":"N-bound","lat":"51.44010575186","lon":"-2.55187880771","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10197","CommonName":"Sunnydene","Street":"Wick Road","Indicator":"N-bound","lat":"51.44299258711","lon":"-2.5498560841","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10198","CommonName":"Sunnydene","Street":"Wick Road","Indicator":"S-bound","lat":"51.44307499211","lon":"-2.54954052973","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10199","CommonName":"Collin Road","Street":"Wick Road","Indicator":"N-bound","lat":"51.44455183147","lon":"-2.54906904353","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10200","CommonName":"Collin Road","Street":"Wick Road","Indicator":"SW-bound","lat":"51.44486800389","lon":"-2.54875628026","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10201","CommonName":"First Avenue","Street":"St Anne's Park Road","Indicator":"SW-bound","lat":"51.44796895387","lon":"-2.54515281905","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10202","CommonName":"First Avenue","Street":"St Anne's Park Road","Indicator":"NE-bound","lat":"51.4481764862","lon":"-2.54499700182","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10203","CommonName":"Ripon Road","Street":"Guildford Road","Indicator":"S-bound","lat":"51.44976501383","lon":"-2.54176367422","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10204","CommonName":"Ripon Road","Street":"Guildford Road","Indicator":"N-bound","lat":"51.45028663287","lon":"-2.5417410695","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10205","CommonName":"Wootton Crescent","Street":"Wootton Road","Indicator":"W-bound","lat":"51.45331245069","lon":"-2.54268357115","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10206","CommonName":"Wootton Crescent","Street":"Wootton Road","Indicator":"E-bound","lat":"51.45343659334","lon":"-2.5430592264","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10207","CommonName":"Chapel Way","Street":"Saint Anne's Road","Indicator":"NE-bound","lat":"51.45365296495","lon":"-2.54680363873","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10208","CommonName":"Chapel Way","Street":"Saint Anne's Road","Indicator":"SW-bound","lat":"51.45336316666","lon":"-2.547246315","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10209","CommonName":"Arlington Road","Street":"St Anne's Road","Indicator":"NE-bound","lat":"51.45161007861","lon":"-2.55102458673","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10210","CommonName":"Arlington Road","Street":"Newbridge Road","Indicator":"W-bound","lat":"51.45103862633","lon":"-2.55208262997","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10211","CommonName":"Netham Road","Street":"Netham Bridge","Indicator":"N-bound","lat":"51.45359648099","lon":"-2.55309213294","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10212","CommonName":"Netham Road","Street":"Fireclay Road","Indicator":"SW-bound","lat":"51.45440907499","lon":"-2.5523823601","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10213","CommonName":"Terrell Gardens","Street":"Netham Road","Indicator":"W-bound","lat":"51.45747506568","lon":"-2.55431924973","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10214","CommonName":"Terrell Gardens","Street":"Pile Marsh","Indicator":"E-bound","lat":"51.45764630511","lon":"-2.55423496712","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10215","CommonName":"Orchard Square","Street":"Avonvale Road","Indicator":"SW-bound","lat":"51.45673363937","lon":"-2.55518821839","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10216","CommonName":"Beam Street","Street":"Avonvale Road","Indicator":"E-bound","lat":"51.45490656083","lon":"-2.56122512135","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10217","CommonName":"Beam Street","Street":"Avonvale Road","Indicator":"W-bound","lat":"51.4545041903","lon":"-2.56263059937","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10218","CommonName":"Church Street","Street":"Queen Ann Road","Indicator":"S-bound","lat":"51.45460211656","lon":"-2.564704254","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10219","CommonName":"Church Street","Street":"Queen Ann Road","Indicator":"N-bound","lat":"51.4548256455","lon":"-2.56496607089","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10220","CommonName":"Morley Street","Indicator":"NW-bound","lat":"51.45616975508","lon":"-2.56406155088","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10221","CommonName":"Morley Street","Street":"Barton Hill Road","Indicator":"S-bound","lat":"51.45565663923","lon":"-2.56418475489","node":"E0035567","stoptype":"BCT"},{"AtcoCode":"0100BRA10225","CommonName":"Easton Road","Street":"Lawrence Hill","Indicator":"W-bound","lat":"51.45812220965","lon":"-2.57306693809","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10229","CommonName":"Brislington Square","Street":"Brislington Hill","Indicator":"E-bound","lat":"51.43398316123","lon":"-2.54789213235","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10230","CommonName":"Brislington Lidl","Street":"West Town Lane","Indicator":"W-bound","lat":"51.43159977279","lon":"-2.54609428207","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10231","CommonName":"Brislington Lidl","Street":"West Town Lane","Indicator":"E-bound","lat":"51.4317323599","lon":"-2.54658494739","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10233","CommonName":"Lakeshore Drive","Street":"Lakeshore Drive","Indicator":"opp","lat":"51.41334396154","lon":"-2.60346479106","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA10235","CommonName":"Belland Drive","Street":"Court Farm Road","Indicator":"A","lat":"51.40718060111","lon":"-2.57567887907","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10236","CommonName":"Rookery Way","Street":"Court Farm Road","Indicator":"W-bound","lat":"51.4045676401","lon":"-2.57859319952","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10237","CommonName":"Rookery Way","Street":"Court Farm Road","Indicator":"E-bound","lat":"51.40462972606","lon":"-2.57876649934","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10238","CommonName":"Hennessy Close","Street":"Court Farm Road","Indicator":"E-bound","lat":"51.40443245056","lon":"-2.58228619432","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10239","CommonName":"Hennessy Close","Street":"Tanorth Road","Indicator":"N-bound","lat":"51.40390233016","lon":"-2.58220757841","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10240","CommonName":"Edgefield Road","Street":"Tanorth Road","Indicator":"E-bound","lat":"51.40303568516","lon":"-2.57745254446","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10241","CommonName":"Edgefield Road","Street":"Tanorth Road","Indicator":"W-bound","lat":"51.40292177453","lon":"-2.57684732585","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10242","CommonName":"Longacre Road","Street":"Longacre Road","Indicator":"NW-bound","lat":"51.40163189542","lon":"-2.5740135153","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10243","CommonName":"Longacre Road","Street":"Oldacre Road","Indicator":"SE-bound","lat":"51.40136497641","lon":"-2.57343516026","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10244","CommonName":"Holbeach Way","Indicator":"E-bound","lat":"51.40109451468","lon":"-2.56989547256","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10245","CommonName":"Holbeach Way","Street":"Stoneberry Road","Indicator":"W-bound","lat":"51.4009774896","lon":"-2.56992276786","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10246","CommonName":"Church Lane","Street":"Stoneberry Road","Indicator":"SE-bound","lat":"51.4039090449","lon":"-2.56801844943","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10247","CommonName":"Church Lane","Street":"Halfacre Lane","Indicator":"NW-bound","lat":"51.40448851761","lon":"-2.56904634762","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10248","CommonName":"Charnwood Road","Street":"Whitchurch Lane","Indicator":"W-bound","lat":"51.40683528378","lon":"-2.56720647669","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10249","CommonName":"Charnwood Road","Street":"Whitchurch Lane","Indicator":"E-bound","lat":"51.40705614814","lon":"-2.56615968324","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10250","CommonName":"Eastcote Park","Street":"Ridgeway Lane","Indicator":"NE-bound","lat":"51.40906535629","lon":"-2.56345274259","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10251","CommonName":"Eastcote Park","Street":"Ridgeway Lane","Indicator":"SW-bound","lat":"51.40967135776","lon":"-2.5627125436","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10252","CommonName":"Timberscombe Walk","Street":"Ridgeway Lane","Indicator":"N-bound","lat":"51.41145643866","lon":"-2.56172797477","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10253","CommonName":"Timberscombe Walk","Street":"Ridgeway Lane","Indicator":"S-bound","lat":"51.4119257022","lon":"-2.56137426288","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10254","CommonName":"Gilda Square West","Street":"Wharnecliffe Gardens","Indicator":"W-bound","lat":"51.4125081983","lon":"-2.56178400639","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10255","CommonName":"Gilda Square West","Street":"Wharnecliffe Gardens","Indicator":"E-bound","lat":"51.41259500569","lon":"-2.56243211775","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10256","CommonName":"Wharnecliffe Gardens","Street":"Wharnecliffe Gardens","Indicator":"W-bound","lat":"51.4122795969","lon":"-2.56631050098","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10257","CommonName":"Wharnecliffe Gardens","Street":"Wharnecliffe Gardens","Indicator":"E-bound","lat":"51.41228030523","lon":"-2.56802157798","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10258","CommonName":"Oatlands Avenue","Street":"Fortfield Road","Indicator":"N-bound","lat":"51.41456545236","lon":"-2.5677623221","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10259","CommonName":"Oatlands Avenue","Street":"Fortfield Road","Indicator":"S-bound","lat":"51.41355663095","lon":"-2.56812367711","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10260","CommonName":"Fortfield Road","Street":"Fortfield Road","Indicator":"SW-bound","lat":"51.41644132001","lon":"-2.56660640906","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10261","CommonName":"Fortfield Road","Street":"Fortfield Road","Indicator":"N-bound","lat":"51.41687324297","lon":"-2.56653985071","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10262","CommonName":"Loxton Square","Street":"New Fosseway Road","Indicator":"E-bound","lat":"51.41729902888","lon":"-2.56959374031","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10263","CommonName":"Loxton Square","Street":"Walsh Avenue","Indicator":"N-bound","lat":"51.41778850398","lon":"-2.57063521949","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10264","CommonName":"Clatworthy Drive","Street":"Walsh Avenue","Indicator":"S-bound","lat":"51.42090506589","lon":"-2.57136435609","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10265","CommonName":"Clatworthy Drive","Street":"Walsh Avenue","Indicator":"N-bound","lat":"51.42127229961","lon":"-2.57165656825","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10266","CommonName":"Cadogan Road","Street":"Hengrove Lane","Indicator":"SW-bound","lat":"51.42385927337","lon":"-2.57035129986","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10267","CommonName":"Cadogan Road","Street":"Hengrove Lane","Indicator":"NE-bound","lat":"51.4245209416","lon":"-2.56926646527","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10269","CommonName":"Paddock Gardens","Street":"Bamfield","Indicator":"N-bound","lat":"51.40823808717","lon":"-2.5782225977","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10270","CommonName":"Paddock Gardens","Street":"Bamfield","Indicator":"S-bound","lat":"51.40859115338","lon":"-2.57773821547","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10272","CommonName":"Briery Leaze Road","Indicator":"SW-bound","lat":"51.41118483995","lon":"-2.57508216157","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10273","CommonName":"Briery Leaze Road","Street":"Bamfield","Indicator":"N-bound","lat":"51.4119799398","lon":"-2.57430131658","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10274","CommonName":"Thurlestone","Street":"Bamfield","Indicator":"N-bound","lat":"51.41533648867","lon":"-2.57559442718","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10275","CommonName":"Thurlestone","Street":"Bamfield","Indicator":"S-bound","lat":"51.41579482484","lon":"-2.57564332554","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10276","CommonName":"Swainswick","Street":"Bamfield","Indicator":"N-bound","lat":"51.4181622607","lon":"-2.57693856694","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA10277","CommonName":"Swainswick","Street":"Bamfield","Indicator":"NW-bound","lat":"51.41857316079","lon":"-2.57749020912","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA10278","CommonName":"Alverstoke","Street":"Bamfield","Indicator":"S-bound","lat":"51.41962950337","lon":"-2.57843829461","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA10279","CommonName":"Alverstoke","Street":"Bamfield","Indicator":"N-bound","lat":"51.41989632497","lon":"-2.57903129015","node":"N0073244","stoptype":"BCT"},{"AtcoCode":"0100BRA10280","CommonName":"Dakota Drive","Street":"Whitchurch Lane","Indicator":"E-bound","lat":"51.40758873292","lon":"-2.57496514349","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10281","CommonName":"Heathfield Crescent","Street":"Fortfield Road","Indicator":"S-bound","lat":"51.40742656369","lon":"-2.57135443011","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10282","CommonName":"Heathfield Crescent","Street":"Fortfield Road","Indicator":"N-bound","lat":"51.4080299527","lon":"-2.57116067007","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10283","CommonName":"Priddy Drive","Street":"Fortfield Road","Indicator":"S-bound","lat":"51.41096918877","lon":"-2.56952942477","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10284","CommonName":"Priddy Drive","Street":"Fortfield Road","Indicator":"N-bound","lat":"51.41170786102","lon":"-2.56925103592","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10285","CommonName":"Asda Oatlands Avenue","Street":"Oatlands Avenue","Indicator":"W-bound","lat":"51.41453125709","lon":"-2.57109792656","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10286","CommonName":"Asda Oatlands Avenue","Street":"Oatlands Avenue","Indicator":"E-bound","lat":"51.41461301835","lon":"-2.5709263923","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10287","CommonName":"Airport Road","Street":"Salcombe Road","Indicator":"Stop C","lat":"51.42505509643","lon":"-2.57404817362","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10288","CommonName":"Airport Road","Street":"Salcombe Road","Indicator":"Stop D","lat":"51.42504483673","lon":"-2.57430693423","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10289","CommonName":"Salcombe Green","Street":"Salcombe Road","Indicator":"S-bound","lat":"51.42741680121","lon":"-2.57468188613","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10290","CommonName":"Salcombe Green","Street":"Salcombe Road","Indicator":"N-bound","lat":"51.42778409661","lon":"-2.57495978406","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10291","CommonName":"Teignmouth Road","Street":"Salcombe Road","Indicator":"N-bound","lat":"51.4295595349","lon":"-2.57596020051","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10292","CommonName":"Teignmouth Road","Street":"Salcombe Road","Indicator":"S-bound","lat":"51.43004441882","lon":"-2.57609575867","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10293","CommonName":"Broad Walk Square","Street":"Salcombe Road","Indicator":"D","lat":"51.43170260776","lon":"-2.57716671551","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10294","CommonName":"Broad Walk Square","Street":"Axbridge Road","Indicator":"B","lat":"51.43255336042","lon":"-2.57786792508","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10295","CommonName":"Stockwood Crescent","Street":"Redcatch Road","Indicator":"S-bound","lat":"51.4345786745","lon":"-2.57924574866","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10296","CommonName":"Stockwood Crescent","Street":"Redcatch Road","Indicator":"N-bound","lat":"51.43461321642","lon":"-2.57953390056","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10297","CommonName":"Park Avenue","Street":"Redcatch Road","Indicator":"B","lat":"51.43725265646","lon":"-2.58398399419","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10298","CommonName":"Park Avenue","Street":"Saint Johns Lane","Indicator":"A","lat":"51.43771997816","lon":"-2.58403311635","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10299","CommonName":"Monmouth Street","Street":"Saint John's Lane","Indicator":"S-bound","lat":"51.43924000203","lon":"-2.58213901379","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10300","CommonName":"Monmouth Street","Street":"Saint John's Lane","Indicator":"N-bound","lat":"51.44022902209","lon":"-2.58215159276","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10301","CommonName":"Windsor Terrace","Street":"St Luke's Road","Indicator":"SE-bound","lat":"51.44127263169","lon":"-2.58203537629","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRA10302","CommonName":"Windsor Terrace","Street":"St Luke's Road","Indicator":"NW-bound","lat":"51.44134539402","lon":"-2.58367651753","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRA10303","CommonName":"Mead Street","Street":"St Luke's Road","Indicator":"N-bound","lat":"51.44440508463","lon":"-2.58316876539","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRA10304","CommonName":"Mead Street","Street":"St Luke's Road","Indicator":"S-bound","lat":"51.4443691919","lon":"-2.58315391919","node":"E0035676","stoptype":"BCT"},{"AtcoCode":"0100BRA10305","CommonName":"Spring Street","Street":"York Road","Indicator":"E-bound","lat":"51.44487911663","lon":"-2.58727566281","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10306","CommonName":"Spring Street","Street":"York Road","Indicator":"W-bound","lat":"51.4448058899","lon":"-2.58753372417","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10308","CommonName":"The Malago","Street":"Saint Johns Lane","Indicator":"N-bound","lat":"51.43596680247","lon":"-2.59825306097","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10309","CommonName":"The Malago","Street":"Saint Johns Lane","Indicator":"S-bound","lat":"51.43602155664","lon":"-2.59809552839","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10311","CommonName":"Littleton Road","Street":"St John's Lane","Indicator":"W-bound","lat":"51.43568401883","lon":"-2.59551600862","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10312","CommonName":"Littleton Road","Street":"St John's Lane","Indicator":"E-bound","lat":"51.4360684352","lon":"-2.59418309211","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10313","CommonName":"Knowle Health Centre","Street":"St John's Lane","Indicator":"W-bound","lat":"51.43637657673","lon":"-2.59014454057","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10315","CommonName":"Weymouth Road","Street":"Wedmore Vale","Indicator":"S-bound","lat":"51.43586965795","lon":"-2.58903027263","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10316","CommonName":"Wedmore Vale","Street":"Wedmore Vale","Indicator":"N-bound","lat":"51.4344343359","lon":"-2.58836444873","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10317","CommonName":"Wedmore Vale","Indicator":"SW-bound","lat":"51.4330902188","lon":"-2.58744090291","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10318","CommonName":"Cavan Walk","Street":"Glyn Vale","Indicator":"S-bound","lat":"51.43059094081","lon":"-2.59271671134","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10319","CommonName":"Cavan Walk","Street":"Glyn Vale","Indicator":"N-bound","lat":"51.4306172592","lon":"-2.59284651249","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10320","CommonName":"Donegal Road","Street":"Donegal Road","Indicator":"NW-bound","lat":"51.42885153975","lon":"-2.59173047155","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10321","CommonName":"Donegal Road","Street":"Donegal Road","Indicator":"E-bound","lat":"51.42881739066","lon":"-2.59137043202","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10323","CommonName":"Melvin Square","Street":"Galway Road","Indicator":"A","lat":"51.42852079429","lon":"-2.58777064291","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10324","CommonName":"Inns Court","Street":"Inns Court Avenue","Indicator":"E-bound","lat":"51.42105734545","lon":"-2.59496627713","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10325","CommonName":"Inns Court","Street":"Inns Court Avenue","Indicator":"W-bound","lat":"51.42099535689","lon":"-2.59477851273","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10326","CommonName":"Carisbrooke Road","Indicator":"NE-bound","lat":"51.42184406919","lon":"-2.59053253912","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10327","CommonName":"Carisbrooke Road","Street":"Creswicke Road","Indicator":"SW-bound","lat":"51.42174560187","lon":"-2.59044497929","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10328","CommonName":"Filwood Broadway","Street":"Creswicke Road","Indicator":"W-bound","lat":"51.42312470505","lon":"-2.58619126332","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10329","CommonName":"Filwood Broadway","Street":"Creswicke Road","Indicator":"E-bound","lat":"51.42332091971","lon":"-2.5847124082","node":"N0077033","stoptype":"BCT"},{"AtcoCode":"0100BRA10330","CommonName":"Bideford Crescent","Street":"Throgmorton Road","Indicator":"W-bound","lat":"51.42309083463","lon":"-2.58216383436","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10331","CommonName":"Bideford Crescent","Street":"Throgmorton Road","Indicator":"E-bound","lat":"51.42356458262","lon":"-2.58091859863","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10332","CommonName":"Dunster Road","Street":"Newquay Road","Indicator":"S-bound","lat":"51.42495690534","lon":"-2.57938292751","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10333","CommonName":"Dunster Road","Street":"Newquay Road","Indicator":"N-bound","lat":"51.42500193205","lon":"-2.57936911444","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10334","CommonName":"Ilminster Avenue","Street":"Ilminster Avenue","Indicator":"E-bound","lat":"51.42669192173","lon":"-2.58127470243","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10335","CommonName":"Ilminster Avenue","Street":"Ilminster Avenue","Indicator":"W-bound","lat":"51.42694637846","lon":"-2.58254366598","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10336","CommonName":"Melvin Square","Street":"Ilminster Avenue","Indicator":"C","lat":"51.42761297878","lon":"-2.58410556922","node":"E0035603","stoptype":"BCT"},{"AtcoCode":"0100BRA10337","CommonName":"Highgrove Street","Street":"Wells Road","Indicator":"E-bound","lat":"51.44152301887","lon":"-2.57685891183","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10339","CommonName":"Beaconsfield Road","Street":"Wells Road","Indicator":"S-bound","lat":"51.43714399234","lon":"-2.56952413973","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10340","CommonName":"Greenmore Road","Street":"Wells Road","Indicator":"S-bound","lat":"51.43496229761","lon":"-2.56699386009","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10342","CommonName":"Clive Road","Street":"Wells Road","Indicator":"S-bound","lat":"51.42286435581","lon":"-2.5622562","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10343","CommonName":"Counterslip Gardens","Street":"Wells Road","Indicator":"S-bound","lat":"51.41716509709","lon":"-2.56007234546","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10344","CommonName":"Whitecross Avenue","Street":"Wells Road","Indicator":"S-bound","lat":"51.41546672953","lon":"-2.55985026506","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10352","CommonName":"Gilda Parade","Street":"Bristol Road","Indicator":"N-bound","lat":"51.41338077914","lon":"-2.55982477409","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10353","CommonName":"Whitecross Avenue","Street":"Wells Road","Indicator":"N-bound","lat":"51.41539390685","lon":"-2.56003631116","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10354","CommonName":"Clive Road","Street":"Wells Road","Indicator":"N-bound","lat":"51.42252227805","lon":"-2.56233829203","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA10355","CommonName":"Greenmore Road","Street":"Wells Road","Indicator":"NW-bound","lat":"51.43548845489","lon":"-2.56789230959","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10356","CommonName":"Beaconsfield Road","Street":"Wells Road","Indicator":"NW-bound","lat":"51.43792715811","lon":"-2.57118836342","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10357","CommonName":"Brecknock Road","Street":"Wells Road","Indicator":"N-bound","lat":"51.43945452161","lon":"-2.57327918877","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10358","CommonName":"Highgrove Street","Street":"Wells Road","Indicator":"NW-bound","lat":"51.44132620605","lon":"-2.57665500132","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10359","CommonName":"Bellevue Road","Indicator":"N-bound","lat":"51.44345672578","lon":"-2.57858113089","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10360","CommonName":"Bedminster Down","Street":"Bridgwater Road","Indicator":"B","lat":"51.42840848438","lon":"-2.61491144312","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10361","CommonName":"Winford Grove","Street":"Bridgwater Road","Indicator":"NE-bound","lat":"51.42636551069","lon":"-2.61868116799","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10362","CommonName":"Winford Grove","Street":"Bridgwater Road","Indicator":"SW-bound","lat":"51.42583962241","lon":"-2.61950827789","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10363","CommonName":"Langford Road","Street":"Bridgwater Road","Indicator":"NE-bound","lat":"51.42488314471","lon":"-2.62183972097","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10364","CommonName":"Langford Road","Street":"Bridgwater Road","Indicator":"SW-bound","lat":"51.42443015598","lon":"-2.62248078586","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10365","CommonName":"Marguerite Road","Street":"Bridgwater Road","Indicator":"NE-bound","lat":"51.42371944369","lon":"-2.62424015469","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10366","CommonName":"Marguerite Road","Street":"Bridgwater Road","Indicator":"SW-bound","lat":"51.42331101361","lon":"-2.62495369878","node":"E0035571","stoptype":"BCT"},{"AtcoCode":"0100BRA10367","CommonName":"Bridgwater Road","Street":"Bridgwater Road","Indicator":"NE-bound","lat":"51.42215400646","lon":"-2.62777113727","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10368","CommonName":"Bridgwater Road","Street":"Bridgwater Road","Indicator":"SW-bound","lat":"51.42188196296","lon":"-2.62819886174","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10369","CommonName":"Kings Head Lane","Street":"Kings Head Lane","Indicator":"B","lat":"51.42106439475","lon":"-2.62807259643","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10370","CommonName":"Kings Head Lane","Street":"Highridge Green","Indicator":"C","lat":"51.42088780981","lon":"-2.62746615368","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10371","CommonName":"Dancey Mead","Street":"Highridge Green","Indicator":"SW-bound","lat":"51.41884707314","lon":"-2.62739505656","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10372","CommonName":"Dancey Mead","Street":"Highridge Green","Indicator":"N-bound","lat":"51.41810765052","lon":"-2.62778758569","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10373","CommonName":"Sandburrows Road","Street":"Highridge Green","Indicator":"N-bound","lat":"51.41483035947","lon":"-2.62859106944","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10375","CommonName":"Dangerfield Avenue","Street":"Cutler Road","Indicator":"NW-bound","lat":"51.41411168117","lon":"-2.62341902825","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10376","CommonName":"Lakemead Grove Term","Street":"Lakemead Grove","Indicator":"NE-bound","lat":"51.41568629482","lon":"-2.62490719803","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10377","CommonName":"Lakemead Grove","Street":"Cutler Road","Indicator":"SE-bound","lat":"51.41553929215","lon":"-2.62549476382","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA10381","CommonName":"Battson Road","Street":"Stockwood Lane","Indicator":"SW-bound","lat":"51.40942542876","lon":"-2.54434904495","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10382","CommonName":"Battson Road","Street":"Stockwood Lane","Indicator":"NE-bound","lat":"51.40947005071","lon":"-2.54442146422","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10383","CommonName":"Bifield Gardens","Street":"Stockwood Lane","Indicator":"N-bound","lat":"51.4108740876","lon":"-2.54219513719","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10384","CommonName":"Bifield Gardens","Street":"Stockwood Lane","Indicator":"S-bound","lat":"51.41072989572","lon":"-2.54226532198","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10385","CommonName":"Swane Road","Street":"Stockwood Lane","Indicator":"W-bound","lat":"51.4140318703","lon":"-2.53596315237","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10386","CommonName":"Swane Road","Street":"Stockwood Lane","Indicator":"E-bound","lat":"51.41411351457","lon":"-2.53580593543","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10392","CommonName":"Stockwood Lane","Street":"Stockwood Road","Indicator":"S-bound","lat":"51.40985051878","lon":"-2.54767540189","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10393","CommonName":"Stockwood Lane","Street":"Stockwood Road","Indicator":"N-bound","lat":"51.40973316278","lon":"-2.54777464454","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10394","CommonName":"Hollway Road Shops","Street":"Stockwood Road","Indicator":"N-bound","lat":"51.41138807945","lon":"-2.5476794027","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10395","CommonName":"Stockwood Library","Street":"Stockwood Road","Indicator":"S-bound","lat":"51.41269294407","lon":"-2.54745056095","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10396","CommonName":"Ladman Road","Street":"Stockwood Road","Indicator":"NE-bound","lat":"51.41427002723","lon":"-2.54669292259","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10397","CommonName":"Meardon Road","Street":"Stockwood Road","Indicator":"NE-bound","lat":"51.41543167864","lon":"-2.54439165357","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10398","CommonName":"The Coots","Street":"The Coots","Indicator":"SE-bound","lat":"51.41760009844","lon":"-2.5421453239","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10399","CommonName":"Meardon Road","Street":"Stockwood Road","Indicator":"SW-bound","lat":"51.41509586257","lon":"-2.54506350387","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10400","CommonName":"Ladman Road","Street":"Ladman Road","Indicator":"NW-bound","lat":"51.41430242964","lon":"-2.54552858209","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10401","CommonName":"Pynne Road","Street":"Ladman Road","Indicator":"SE-bound","lat":"51.41287558382","lon":"-2.54103975438","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10403","CommonName":"Pynne Road","Street":"Ladman Road","Indicator":"NW-bound","lat":"51.41296476528","lon":"-2.54119897575","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10404","CommonName":"Hollway Road Shops","Street":"Hollway Road","Indicator":"W-bound","lat":"51.41176953766","lon":"-2.54686438504","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10405","CommonName":"Showering Road","Street":"Craydon Road","Indicator":"E-bound","lat":"51.41042464208","lon":"-2.54988211878","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10406","CommonName":"Showering Road","Street":"Craydon Road","Indicator":"W-bound","lat":"51.41027327607","lon":"-2.54956398431","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10407","CommonName":"Craydon Road","Street":"Sturminster Road","Indicator":"S-bound","lat":"51.41176402588","lon":"-2.55378040354","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10408","CommonName":"Craydon Road","Street":"Craydon Road","Indicator":"NW-bound","lat":"51.41067724818","lon":"-2.55352283843","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10409","CommonName":"Sturminster Close","Street":"Sturminster Road","Indicator":"S-bound","lat":"51.41448821649","lon":"-2.55384209224","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10410","CommonName":"Sturminster Close","Street":"Sturminster Road","Indicator":"N-bound","lat":"51.41493627938","lon":"-2.5541638593","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA10411","CommonName":"Longreach Grove","Street":"Sturminster Road","Indicator":"S-bound","lat":"51.41742785392","lon":"-2.55397829641","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10412","CommonName":"Longreach Grove","Street":"Sturminster Road","Indicator":"N-bound","lat":"51.41754439915","lon":"-2.55405160773","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10413","CommonName":"Morden Walk","Street":"Sturminster Road","Indicator":"S-bound","lat":"51.42091465817","lon":"-2.55439438638","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10414","CommonName":"Morden Walk","Street":"Sturminster Road","Indicator":"N-bound","lat":"51.42124617419","lon":"-2.55464288524","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10415","CommonName":"Manston Close","Street":"Sturminster Road","Indicator":"N-bound","lat":"51.42287622655","lon":"-2.55600015602","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10417","CommonName":"Manston Close","Street":"Sturminster Road","Indicator":"S-bound","lat":"51.42274258727","lon":"-2.55573965759","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10418","CommonName":"Sturminster Road","Street":"Sturminster Road","Indicator":"C","lat":"51.42582926146","lon":"-2.55710034958","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10419","CommonName":"David's Road","Street":"Hazlebury Road","Indicator":"N-bound","lat":"51.41901690222","lon":"-2.55639911381","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10421","CommonName":"Hazelbury Road","Street":"Hazelbury Road","Indicator":"N-bound","lat":"51.42136787006","lon":"-2.55742000202","node":"E0035652","stoptype":"BCT"},{"AtcoCode":"0100BRA10423","CommonName":"Hazelbury Road","Street":"Hazelbury Road","Indicator":"N-bound","lat":"51.4247334567","lon":"-2.55874102108","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10425","CommonName":"St Brendan's College","Street":"Broomhill Road","Indicator":"SW-bound","lat":"51.43067712663","lon":"-2.53559698782","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10426","CommonName":"St Brendan's College","Street":"Broomhill Road","Indicator":"NE-bound","lat":"51.43073127092","lon":"-2.53555446772","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10427","CommonName":"Longwood","Street":"Broomhill Road","Indicator":"SW-bound","lat":"51.43608261822","lon":"-2.53131560641","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10428","CommonName":"Longwood","Street":"Broomhill Road","Indicator":"N-bound","lat":"51.43593458127","lon":"-2.53223460056","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10429","CommonName":"Condover Road","Street":"Broomhill Road","Indicator":"S-bound","lat":"51.43752505729","lon":"-2.53443986193","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10430","CommonName":"Wyndham Crescent","Street":"Broomhill Road","Indicator":"NW-bound","lat":"51.43886421618","lon":"-2.53457059476","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10431","CommonName":"Fermaine Avenue","Street":"Broomhill Road","Indicator":"W-bound","lat":"51.44067441216","lon":"-2.5378721156","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10432","CommonName":"Guernsey Avenue","Street":"Broomhill Road","Indicator":"W-bound","lat":"51.44115129745","lon":"-2.5417048681","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10433","CommonName":"Allison Avenue","Street":"Allison Road","Indicator":"W-bound","lat":"51.43967767971","lon":"-2.54342829192","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10434","CommonName":"Sherwell Road","Street":"Allison Road","Indicator":"W-bound","lat":"51.43952547359","lon":"-2.54715278681","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10435","CommonName":"Wick Crescent","Street":"Allison Road","Indicator":"W-bound","lat":"51.43923719981","lon":"-2.55110581467","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10436","CommonName":"Winchester Road","Street":"Sandy Park Road","Indicator":"NW-bound","lat":"51.44029364587","lon":"-2.55398165005","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10437","CommonName":"Repton Road","Street":"Sandy Park Road","Indicator":"NW-bound","lat":"51.44093071725","lon":"-2.55616190588","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10438","CommonName":"Arnos Court","Street":"Sandy Park Road","Indicator":"A","lat":"51.44144729629","lon":"-2.55908892231","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10439","CommonName":"Arnos Court","Street":"Bath Road","Indicator":"D","lat":"51.44199969747","lon":"-2.5620308331","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10440","CommonName":"Paintworks","Street":"Bath Road","Indicator":"W-bound","lat":"51.44276414893","lon":"-2.5675941028","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10441","CommonName":"Totterdown Bridge","Street":"Bath Road","Indicator":"W-bound","lat":"51.44247686946","lon":"-2.57304367058","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10442","CommonName":"Totterdown Bridge","Indicator":"E-bound","lat":"51.44272974574","lon":"-2.57281662427","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA10443","CommonName":"Paintworks","Street":"Bath Road","Indicator":"E-bound","lat":"51.44271869072","lon":"-2.56583816867","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10445","CommonName":"Arnos Court","Street":"Bath Road","Indicator":"C","lat":"51.44210163417","lon":"-2.56139900919","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10446","CommonName":"Repton Road","Street":"Sandy Park Road","Indicator":"E-bound","lat":"51.44072883286","lon":"-2.55512354185","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10447","CommonName":"Winchester Road","Street":"Sandy Park Road","Indicator":"E-bound","lat":"51.44022457176","lon":"-2.55337653939","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10448","CommonName":"Wick Crescent","Street":"Allison Road","Indicator":"E-bound","lat":"51.43942506635","lon":"-2.55130949802","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10449","CommonName":"Sherwell Road","Street":"Allison Road","Indicator":"E-bound","lat":"51.43968979846","lon":"-2.5466224204","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10450","CommonName":"Broomhill Road","Street":"School Road","Indicator":"N-bound","lat":"51.44084287005","lon":"-2.5422911124","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10451","CommonName":"Fermaine Avenue","Street":"Broomhill Road","Indicator":"SE-bound","lat":"51.44029313542","lon":"-2.53670224706","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10452","CommonName":"Wyndham Crescent","Street":"Whitmore Avenue","Indicator":"E-bound","lat":"51.43832217813","lon":"-2.53315434978","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10453","CommonName":"Whitmore Avenue","Street":"Whitemore Avenue","Indicator":"W-bound","lat":"51.43679851785","lon":"-2.53207200898","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10454","CommonName":"Lawrence Hill Station","Street":"Church Road","Indicator":"E-bound","lat":"51.45801845459","lon":"-2.56480400285","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA10456","CommonName":"Lawrence Hill Station","Street":"Church Road","Indicator":"W-bound","lat":"51.45791941387","lon":"-2.56483156602","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA10457","CommonName":"Heber Street","Street":"Church Road","Indicator":"W-bound","lat":"51.45793835241","lon":"-2.56088810025","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10458","CommonName":"Edward Street","Street":"Church Road","Indicator":"E-bound","lat":"51.45864317344","lon":"-2.55827716548","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10459","CommonName":"Edward Street","Street":"Church Road","Indicator":"W-bound","lat":"51.45858181208","lon":"-2.55794537145","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10460","CommonName":"Gilbert Road","Street":"Church Road","Indicator":"E-bound","lat":"51.45908576115","lon":"-2.55596522665","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10461","CommonName":"Blackswarth Road","Street":"Church Road","Indicator":"W-bound","lat":"51.45955402501","lon":"-2.55201268749","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10464","CommonName":"Northcote Road","Street":"Church Road","Indicator":"E-bound","lat":"51.45986636599","lon":"-2.54676277003","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10465","CommonName":"Seneca Street","Street":"Church Road","Indicator":"W-bound","lat":"51.4594159121","lon":"-2.54887323272","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10466","CommonName":"Northcote Road","Street":"Church Road","Indicator":"W-bound","lat":"51.45996358545","lon":"-2.54519501979","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA10467","CommonName":"Glebe Road","Street":"Summerhill Road","Indicator":"E-bound","lat":"51.46052633125","lon":"-2.54212144024","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10468","CommonName":"The Avenue","Indicator":"E-bound","lat":"51.46024647732","lon":"-2.53846210338","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10469","CommonName":"The Avenue","Street":"Summerhill Road","Indicator":"W-bound","lat":"51.46017210043","lon":"-2.53899379662","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10470","CommonName":"Marling Road","Street":"Summerhill Road","Indicator":"E-bound","lat":"51.45911070895","lon":"-2.53515263912","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10471","CommonName":"Marling Road","Street":"Summerhill Road","Indicator":"W-bound","lat":"51.45878315766","lon":"-2.53402612808","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10472","CommonName":"Troopers Hill Road","Street":"Air Balloon Road","Indicator":"SE-bound","lat":"51.45752216914","lon":"-2.53054271265","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10473","CommonName":"Troopers Hill Road","Street":"Air Balloon Road","Indicator":"NW-bound","lat":"51.45753878285","lon":"-2.5308451567","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10474","CommonName":"Harcourt Avenue","Street":"Nags Head Hill","Indicator":"SE-bound","lat":"51.45464480392","lon":"-2.52656592986","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10475","CommonName":"Harcourt Avenue","Indicator":"NW-bound","lat":"51.45458044287","lon":"-2.52688181277","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10476","CommonName":"Bryants Hill","Street":"Bryants Hill","Indicator":"SE-bound","lat":"51.45390435037","lon":"-2.52526214686","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10477","CommonName":"Bryants Hill","Street":"Bryants Hill","Indicator":"N-bound","lat":"51.45309888423","lon":"-2.52441819028","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10478","CommonName":"Furber Road","Street":"Bryants Hill","Indicator":"SE-bound","lat":"51.45185740512","lon":"-2.52254750329","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10479","CommonName":"Grantham Road","Street":"Twomile Hill Road","Indicator":"W-bound","lat":"51.46314334645","lon":"-2.51408283068","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10480","CommonName":"Grantham Road","Street":"Twomile Hill Road","Indicator":"E-bound","lat":"51.46325193474","lon":"-2.51392570959","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10481","CommonName":"Two Mile Court","Street":"Two Mile Hill Road","Indicator":"W-bound","lat":"51.4625375443","lon":"-2.51892696261","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10482","CommonName":"Two Mile Court","Street":"Two Mile Hill Road","Indicator":"E-bound","lat":"51.46255329495","lon":"-2.5194309486","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10483","CommonName":"Rodney Road","Street":"Twomile Hill Road","Indicator":"E-bound","lat":"51.46182671441","lon":"-2.52509403686","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10484","CommonName":"Rodney Road","Street":"Bell Hill Road","Indicator":"SW-bound","lat":"51.46167581657","lon":"-2.52666127431","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10485","CommonName":"Glen Park","Street":"Bell Hill Road","Indicator":"W-bound","lat":"51.4609174294","lon":"-2.53133058555","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10486","CommonName":"Glen Park","Street":"Bell Hill Road","Indicator":"E-bound","lat":"51.46101783223","lon":"-2.53100068963","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10487","CommonName":"Whiteway Road","Street":"Bell Hill Road","Indicator":"E-bound","lat":"51.46139570487","lon":"-2.53490588782","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10488","CommonName":"Whiteway Road","Street":"Clouds Hill Road","Indicator":"W-bound","lat":"51.46142291687","lon":"-2.53682062751","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10489","CommonName":"Orchard Road","Street":"Clouds Hill Road","Indicator":"W-bound","lat":"51.46108793724","lon":"-2.53927807673","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10490","CommonName":"Orchard Road","Street":"Clouds Hill Road","Indicator":"E-bound","lat":"51.46126015899","lon":"-2.53897783146","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10491","CommonName":"Clouds Hill Avenue","Street":"Clouds Hill Road","Indicator":"E-bound","lat":"51.46072180466","lon":"-2.54262754478","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10492","CommonName":"Russell Town Avenue","Street":"Russell Town Avenue","Indicator":"N-bound","lat":"51.46004049267","lon":"-2.5631593002","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10493","CommonName":"Russell Town Avenue","Indicator":"S-bound","lat":"51.45917056895","lon":"-2.56268799867","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10494","CommonName":"Devon Road","Street":"Whitehall Road","Indicator":"E-bound","lat":"51.46186967425","lon":"-2.55859004233","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10495","CommonName":"Devon Road","Street":"Whitehall Road","Indicator":"W-bound","lat":"51.4617774986","lon":"-2.55906392741","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10496","CommonName":"Lyppiat Road","Street":"Whitehall Road","Indicator":"E-bound","lat":"51.46181470353","lon":"-2.55501958938","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10497","CommonName":"Lyppiat Road","Street":"Whitehall Road","Indicator":"W-bound","lat":"51.46166941419","lon":"-2.55532010509","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10498","CommonName":"Gordon Road","Street":"Whitehall Road","Indicator":"W-bound","lat":"51.46358468267","lon":"-2.55149994114","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10499","CommonName":"Gordon Road","Street":"Whitehall Road","Indicator":"E-bound","lat":"51.46403255129","lon":"-2.54995068507","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10500","CommonName":"Embassy Road","Street":"Whitehall Road","Indicator":"W-bound","lat":"51.46436138452","lon":"-2.54693167345","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10501","CommonName":"Embassy Road","Street":"Whitehall Road","Indicator":"E-bound","lat":"51.46467017015","lon":"-2.54627318864","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10502","CommonName":"Crofts End","Street":"Whitehall Road","Indicator":"A","lat":"51.46572838961","lon":"-2.5430036552","node":"E0035594","stoptype":"BCT"},{"AtcoCode":"0100BRA10503","CommonName":"Crofts End","Street":"Brook Road","Indicator":"B","lat":"51.4661273974","lon":"-2.5422742163","node":"E0035594","stoptype":"BCT"},{"AtcoCode":"0100BRA10504","CommonName":"Crofts End","Street":"Speedwell Road","Indicator":"C","lat":"51.46596208791","lon":"-2.54107742298","node":"E0035594","stoptype":"BCT"},{"AtcoCode":"0100BRA10505","CommonName":"Ventnor Road","Street":"Speedwell Road","Indicator":"W-bound","lat":"51.46627878298","lon":"-2.53673367644","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10506","CommonName":"Ventnor Road","Street":"Speedwell Road","Indicator":"E-bound","lat":"51.46645192039","lon":"-2.53623185825","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10507","CommonName":"Harewood Road","Street":"Speedwell Road","Indicator":"W-bound","lat":"51.46657648488","lon":"-2.53257679428","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10508","CommonName":"Harewood Road","Street":"Speedwell Road","Indicator":"E-bound","lat":"51.46685945771","lon":"-2.53164435963","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10509","CommonName":"Whiteway Road","Street":"Speedwell Road","Indicator":"W-bound","lat":"51.46691079267","lon":"-2.52624650559","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10510","CommonName":"Whiteway Road","Street":"Speedwell Road","Indicator":"E-bound","lat":"51.46694196348","lon":"-2.52531113231","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10511","CommonName":"Charlton Road","Street":"Speedwell Road","Indicator":"E-bound","lat":"51.46674103264","lon":"-2.52198339111","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10512","CommonName":"Charlton Road","Street":"Speedwell Road","Indicator":"W-bound","lat":"51.46672947571","lon":"-2.52255909152","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10513","CommonName":"Dalkeith Avenue","Street":"Ingleside Road","Indicator":"E-bound","lat":"51.46669623536","lon":"-2.51992428067","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10514","CommonName":"Dalkeith Avenue","Street":"Ingleside Road","Indicator":"W-bound","lat":"51.46658088253","lon":"-2.51957747077","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10515","CommonName":"Lodgeside Avenue","Street":"Ingleside Road","Indicator":"E-bound","lat":"51.46679173253","lon":"-2.51662872235","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10516","CommonName":"Lodgeside Avenue","Street":"Ingleside Road","Indicator":"W-bound","lat":"51.46686296766","lon":"-2.51474367123","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10519","CommonName":"Uplands","Street":"Uplands Road","Indicator":"N-bound","lat":"51.47524123616","lon":"-2.51312459361","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0100BRA10520","CommonName":"Uplands","Street":"Uplands Road","Indicator":"S-bound","lat":"51.47529524603","lon":"-2.5131108014","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0100BRA10521","CommonName":"Rose Walk","Street":"Briar Way","Indicator":"E-bound","lat":"51.47631796571","lon":"-2.51364063967","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10522","CommonName":"Rose Walk","Street":"Briar Way","Indicator":"W-bound","lat":"51.47629884746","lon":"-2.51389960354","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10523","CommonName":"Briar Way","Street":"Briar Way","Indicator":"E-bound","lat":"51.47701243652","lon":"-2.51724820432","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10524","CommonName":"Briar Way","Street":"Thicket Avenue","Indicator":"SW-bound","lat":"51.47647029852","lon":"-2.51784682197","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10525","CommonName":"Quadrant West","Street":"Thicket Avenue","Indicator":"N-bound","lat":"51.47418974636","lon":"-2.51913121863","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10527","CommonName":"Quadrant West","Street":"Thicket Avenue","Indicator":"SW-bound","lat":"51.47330721198","lon":"-2.51943794969","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10528","CommonName":"Heathcote Road","Street":"Thicket Avenue","Indicator":"N-bound","lat":"51.47128101428","lon":"-2.52013478968","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10529","CommonName":"Worcester Close","Street":"Lodge Causeway","Indicator":"NW-bound","lat":"51.47090732519","lon":"-2.52126791087","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10530","CommonName":"Worcester Close","Street":"Lodge Causeway","Indicator":"SE-bound","lat":"51.47109543464","lon":"-2.52142842468","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10531","CommonName":"Forest Road","Street":"Lodge Causeway","Indicator":"SE-bound","lat":"51.47240183781","lon":"-2.52486995283","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10532","CommonName":"Forest Road","Street":"Lodge Causeway","Indicator":"NW-bound","lat":"51.4724366416","lon":"-2.52512950934","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10533","CommonName":"Mayfield Park","Street":"Berkeley Road","Indicator":"N-bound","lat":"51.47123248657","lon":"-2.52697292016","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10534","CommonName":"Mayfield Park","Street":"Whitefield Road","Indicator":"SW-bound","lat":"51.47032929272","lon":"-2.52786951705","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10535","CommonName":"Duncombe Lane","Street":"Whitefield Road","Indicator":"NE-bound","lat":"51.46995663338","lon":"-2.52875781768","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10536","CommonName":"Duncombe Lane","Street":"Whitefield Road","Indicator":"W-bound","lat":"51.46946682248","lon":"-2.52970233345","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10537","CommonName":"Whitefield Avenue","Street":"Whitefield Road","Indicator":"SW-bound","lat":"51.46855204521","lon":"-2.53314686828","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10538","CommonName":"Whitefield Avenue","Street":"Whitefield Road","Indicator":"NE-bound","lat":"51.46832379418","lon":"-2.53390721151","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10539","CommonName":"Whitewood Road","Street":"Whitefield Road","Indicator":"E-bound","lat":"51.46755314755","lon":"-2.53726689426","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10540","CommonName":"Whitewood Road","Street":"Whitefield Road","Indicator":"W-bound","lat":"51.4673973274","lon":"-2.53791288455","node":"E0035646","stoptype":"BCT"},{"AtcoCode":"0100BRA10543","CommonName":"The Chine","Street":"Park Road","Indicator":"SW-bound","lat":"51.48333151781","lon":"-2.55313511943","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRA10544","CommonName":"The Chine","Street":"Park Road","Indicator":"N-bound","lat":"51.48402871797","lon":"-2.55210666698","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRA10545","CommonName":"Brinkworthy Road","Street":"Park Road","Indicator":"SW-bound","lat":"51.48617076873","lon":"-2.54975622748","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRA10546","CommonName":"Brinkworthy Road","Street":"Park Road","Indicator":"NE-bound","lat":"51.48651344225","lon":"-2.54954431955","node":"E0035651","stoptype":"BCT"},{"AtcoCode":"0100BRA10547","CommonName":"Broom Hill","Street":"Broom Hill","Indicator":"S-bound","lat":"51.48696720304","lon":"-2.5467269468","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10548","CommonName":"River View","Street":"Broom Hill","Indicator":"S-bound","lat":"51.48571690635","lon":"-2.54682720145","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10549","CommonName":"River View","Street":"Broom Hill","Indicator":"N-bound","lat":"51.48577944078","lon":"-2.54691436072","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10550","CommonName":"Small Lane","Street":"Small Lane","Indicator":"SW-bound","lat":"51.48347893412","lon":"-2.54662760812","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10551","CommonName":"Small Lane","Street":"Small Lane","Indicator":"N-bound","lat":"51.48360433913","lon":"-2.54672991613","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10553","CommonName":"Trendlewood Park","Street":"Small Lane","Indicator":"W-bound","lat":"51.48215462525","lon":"-2.54524370337","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10554","CommonName":"Trendlewood Park","Street":"Small Lane","Indicator":"E-bound","lat":"51.48249186189","lon":"-2.54619817865","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10555","CommonName":"Blackberry Hospital","Street":"Snowdon Road","Indicator":"B","lat":"51.48226252653","lon":"-2.53941270344","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10556","CommonName":"Snowdon Road","Street":"Snowdon Road","Indicator":"SE-bound","lat":"51.48164537822","lon":"-2.53674132427","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10557","CommonName":"Snowdon Road","Street":"Snowdon Road","Indicator":"NW-bound","lat":"51.48134985855","lon":"-2.53647864597","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10558","CommonName":"Channons Hill","Street":"Channons Hill","Indicator":"A","lat":"51.47901304626","lon":"-2.53429126404","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10559","CommonName":"College Road","Street":"Manor Road","Indicator":"E-bound","lat":"51.48178972278","lon":"-2.52872191021","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10560","CommonName":"College Road","Street":"Manor Road","Indicator":"W-bound","lat":"51.48201020989","lon":"-2.52967490224","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10561","CommonName":"Eastbury Road","Street":"Manor Road","Indicator":"E-bound","lat":"51.48256045819","lon":"-2.53325267766","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10562","CommonName":"Eastbury Road","Street":"Manor Road","Indicator":"W-bound","lat":"51.48253119106","lon":"-2.53375636377","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10563","CommonName":"Blackberry Hospital","Street":"Manor Road","Indicator":"A","lat":"51.48268365933","lon":"-2.53777597853","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10564","CommonName":"Blackberry Hospital","Street":"Manor Road","Indicator":"C","lat":"51.4825189573","lon":"-2.54035178149","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10565","CommonName":"Quarry Way","Street":"Blackberry Hill","Indicator":"W-bound","lat":"51.48359226044","lon":"-2.54546247216","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10566","CommonName":"Quarry Way","Street":"Blackberry Hill","Indicator":"E-bound","lat":"51.48368217124","lon":"-2.54546354536","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10567","CommonName":"Sheldrake Drive","Street":"Frenchay Park Road","Indicator":"E-bound","lat":"51.48853197795","lon":"-2.5447436974","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10570","CommonName":"Stoke Lane","Street":"Frenchay Park Road","Indicator":"W-bound","lat":"51.49032945144","lon":"-2.53909024848","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10571","CommonName":"Five Acre Drive","Street":"Frenchay Park Road","Indicator":"N-bound","lat":"51.49300266191","lon":"-2.53457010159","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10572","CommonName":"Begbrook Park","Indicator":"SW-bound","lat":"51.49582066269","lon":"-2.52980622343","node":"E0035581","stoptype":"BCT"},{"AtcoCode":"0100BRA10574","CommonName":"Blaise Castle","Street":"Henbury Road","Indicator":"W-bound","lat":"51.50629333255","lon":"-2.6336099015","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRA10575","CommonName":"Blaise Castle","Street":"Kings Weston Road","Indicator":"E-bound","lat":"51.50604411024","lon":"-2.63480232882","node":"E0035609","stoptype":"BCT"},{"AtcoCode":"0100BRA10576","CommonName":"De Clifford Road","Street":"Long Cross","Indicator":"N-bound","lat":"51.50432122533","lon":"-2.64241446932","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10577","CommonName":"De Clifford Road","Street":"Long Cross","Indicator":"SE-bound","lat":"51.50517156892","lon":"-2.64311801525","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10578","CommonName":"Musgrove Close","Street":"Long Cross","Indicator":"W-bound","lat":"51.50528350627","lon":"-2.64565540407","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10579","CommonName":"Chapel Lane","Street":"Long Cross","Indicator":"W-bound","lat":"51.5055129072","lon":"-2.64807920816","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10580","CommonName":"Chapel Lane","Street":"Long Cross","Indicator":"E-bound","lat":"51.5056886613","lon":"-2.6488165184","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10583","CommonName":"Lawrence Weston Road","Street":"Long Cross","Indicator":"W-bound","lat":"51.50500848454","lon":"-2.65471411095","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10584","CommonName":"Lawrence Weston Road","Street":"Long Cross","Indicator":"E-bound","lat":"51.50478626254","lon":"-2.65586355495","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10585","CommonName":"Long Cross Lay-by","Street":"Long Cross","Indicator":"SW-bound","lat":"51.5020794943","lon":"-2.65912389123","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10586","CommonName":"Long Cross Lay-by","Street":"Long Cross","Indicator":"NE-bound","lat":"51.50224910577","lon":"-2.65934244525","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10587","CommonName":"Moor Grove","Street":"Long Cross","Indicator":"NE-bound","lat":"51.49963364355","lon":"-2.66392909634","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10588","CommonName":"Moor Grove","Street":"Long Cross","Indicator":"SW-bound","lat":"51.49855303072","lon":"-2.66580056398","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10589","CommonName":"Badenham Grove","Street":"Long Cross","Indicator":"NE-bound","lat":"51.49699747412","lon":"-2.66896148991","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10590","CommonName":"Badenham Grove","Street":"Long Cross","Indicator":"SW-bound","lat":"51.49643494234","lon":"-2.66984637745","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10591","CommonName":"Mancroft Avenue","Street":"Long Cross","Indicator":"W-bound","lat":"51.49503121204","lon":"-2.67316771007","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10592","CommonName":"Mancroft Avenue","Street":"Long Cross","Indicator":"E-bound","lat":"51.4951395984","lon":"-2.67308287816","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10593","CommonName":"Kings Weston Avenue","Street":"Kings Weston Avenue","Indicator":"E-bound","lat":"51.49500565667","lon":"-2.67760401318","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10594","CommonName":"Kings Weston Avenue","Street":"Kings Weston Avenue","Indicator":"W-bound","lat":"51.49476814703","lon":"-2.67824870315","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10595","CommonName":"The Bean Acre","Street":"Kings Weston Avenue","Indicator":"E-bound","lat":"51.49441481264","lon":"-2.68026010419","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10596","CommonName":"The Bean Acre","Street":"Kings Weston Avenue","Indicator":"W-bound","lat":"51.49452696246","lon":"-2.67952713671","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10598","CommonName":"Meadow Grove","Street":"Lower High Street","Indicator":"SE-bound","lat":"51.49294529281","lon":"-2.68092962261","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10599","CommonName":"Priory Gardens","Street":"High Street","Indicator":"N-bound","lat":"51.49100205188","lon":"-2.67956113144","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10600","CommonName":"Priory Gardens","Street":"High Street","Indicator":"E-bound","lat":"51.49018181674","lon":"-2.67835345918","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10601","CommonName":"Shirehampton Green","Street":"High Street","Indicator":"C","lat":"51.48893488366","lon":"-2.67473422413","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10602","CommonName":"Shirehampton Green","Street":"Park Hill","Indicator":"A","lat":"51.4887762794","lon":"-2.67417017129","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10603","CommonName":"Shirehampton Green","Street":"High Street","Indicator":"B","lat":"51.48871127246","lon":"-2.67452928265","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10604","CommonName":"Penpole Lane","Street":"Shirehampton Road","Indicator":"E-bound","lat":"51.49090736259","lon":"-2.66470970392","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10605","CommonName":"Penpole Lane","Street":"Shirehampton Road","Indicator":"W-bound","lat":"51.49085505013","lon":"-2.66442087307","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10606","CommonName":"Westbury Lane","Street":"Shirehampton Road","Indicator":"W-bound","lat":"51.49166091414","lon":"-2.65704347356","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10607","CommonName":"Westbury Lane","Street":"Shirehampton Road","Indicator":"NW-bound","lat":"51.49168373568","lon":"-2.65617957707","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10608","CommonName":"High Grove","Street":"Shirehampton Road","Indicator":"NW-bound","lat":"51.48963352169","lon":"-2.65298145162","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10609","CommonName":"High Grove","Street":"Shirehampton Road","Indicator":"SE-bound","lat":"51.4894406118","lon":"-2.65210010955","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10614","CommonName":"Sea Mills Square","Street":"Shirehampton Road","Indicator":"A","lat":"51.48816453852","lon":"-2.64872608503","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10616","CommonName":"Sea Mills Square","Street":"Shirehampton Road","Indicator":"C","lat":"51.48842304268","lon":"-2.6491330311","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10617","CommonName":"Sea Mills Square","Street":"Shirehampton Road","Indicator":"B","lat":"51.48790134002","lon":"-2.64754133943","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10618","CommonName":"Sea Mills Lane","Street":"Shirehampton Road","Indicator":"SE-bound","lat":"51.48629982134","lon":"-2.64118174697","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10619","CommonName":"Sea Mills Lane","Street":"Shirehampton Road","Indicator":"W-bound","lat":"51.48614768448","lon":"-2.64104999437","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10620","CommonName":"Cedar Park","Street":"Shirehampton Road","Indicator":"E-bound","lat":"51.48525586341","lon":"-2.63805633014","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10621","CommonName":"Cedar Park","Street":"Shirehampton Road","Indicator":"W-bound","lat":"51.48522685222","lon":"-2.63843036924","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10622","CommonName":"Druid Hill Top","Street":"Shirehampton Road","Indicator":"SE-bound","lat":"51.48408930046","lon":"-2.63431009574","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10623","CommonName":"Druid Hill Top","Street":"Shirehampton Road","Indicator":"NW-bound","lat":"51.48443316146","lon":"-2.63556779442","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10624","CommonName":"Hollybush Lane","Street":"Druid Hill","Indicator":"S-bound","lat":"51.4832760303","lon":"-2.63339153971","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10625","CommonName":"Old Sneed Road","Street":"Stoke Hill","Indicator":"N-bound","lat":"51.48017644968","lon":"-2.63458699403","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10626","CommonName":"Old Sneed Road","Street":"Stoke Hill","Indicator":"S-bound","lat":"51.47952244845","lon":"-2.63414591702","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10627","CommonName":"Church Avenue","Street":"Stoke Hill","Indicator":"SE-bound","lat":"51.47687255844","lon":"-2.63199249254","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10628","CommonName":"Church Avenue","Street":"Stoke Hill","Indicator":"N-bound","lat":"51.47678218315","lon":"-2.63207763725","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10629","CommonName":"Stoke Hill","Street":"Church Road","Indicator":"SW-bound","lat":"51.47634875378","lon":"-2.63241721765","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10630","CommonName":"The Avenue","Street":"Julian Road","Indicator":"N-bound","lat":"51.47440484339","lon":"-2.63273588459","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10631","CommonName":"The Avenue","Street":"Julian Road","Indicator":"E-bound","lat":"51.47379137683","lon":"-2.6314459636","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10632","CommonName":"Rockleaze Road","Street":"Julian Road","Indicator":"SE-bound","lat":"51.47332018208","lon":"-2.62877583583","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10633","CommonName":"Rockleaze Road","Street":"Julian Road","Indicator":"NW-bound","lat":"51.47265210919","lon":"-2.62760043129","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10634","CommonName":"Downleaze","Street":"Downleaze","Indicator":"S-bound","lat":"51.47389664285","lon":"-2.62522742788","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10635","CommonName":"Wills Hall","Street":"Parry's Lane","Indicator":"SE-bound","lat":"51.48012085155","lon":"-2.62146774559","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10636","CommonName":"Wills Hall","Street":"Parry's Lane","Indicator":"NW-bound","lat":"51.48032428323","lon":"-2.62210411804","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10637","CommonName":"Rylestone Grove","Street":"Parry's Lane","Indicator":"NW-bound","lat":"51.48230418963","lon":"-2.62515522983","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10638","CommonName":"Rylestone Grove","Street":"Parry's Lane","Indicator":"SE-bound","lat":"51.48248362475","lon":"-2.62522968844","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10639","CommonName":"Stoke Lane","Street":"Parry's Lane","Indicator":"S-bound","lat":"51.48429604986","lon":"-2.62931567914","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10640","CommonName":"Stoke Lane","Street":"Parry's Lane","Indicator":"N-bound","lat":"51.48443820386","lon":"-2.62963446851","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10641","CommonName":"Shirehampton Park","Street":"Shirehampton Road","Indicator":"N-bound","lat":"51.49092506808","lon":"-2.65517483925","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10642","CommonName":"Barracks Lane","Street":"Lower High Street","Indicator":"NW-bound","lat":"51.49489331428","lon":"-2.68301854112","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10643","CommonName":"Barracks Lane","Street":"Avonmouth Road","Indicator":"S-bound","lat":"51.49526051162","lon":"-2.68326891437","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10644","CommonName":"Akeman Way","Street":"Avonmouth Road","Indicator":"W-bound","lat":"51.49747585269","lon":"-2.68883379781","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10645","CommonName":"Akeman Way","Street":"Avonmouth Road","Indicator":"E-bound","lat":"51.49753360398","lon":"-2.68818641625","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10647","CommonName":"Farr Street","Street":"Avonmouth Road","Indicator":"E-bound","lat":"51.49885013986","lon":"-2.69365172972","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10648","CommonName":"Farr Street","Street":"Avonmouth Road","Indicator":"NW-bound","lat":"51.4991218608","lon":"-2.69483715753","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10649","CommonName":"McLaren Road","Street":"Mclaren Road","Indicator":"W-bound","lat":"51.50128393969","lon":"-2.69868785107","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10650","CommonName":"Napier Road","Street":"Avonmouth Road","Indicator":"E-bound","lat":"51.50013920821","lon":"-2.69764748281","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10651","CommonName":"Woodleaze","Street":"Sylvan Way","Indicator":"E-bound","lat":"51.48714432619","lon":"-2.65432850245","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10652","CommonName":"Woodleaze","Street":"Sylvan Way","Indicator":"W-bound","lat":"51.48699003389","lon":"-2.65458553384","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10653","CommonName":"Sunny Hill","Street":"Sylvan Way","Indicator":"SW-bound","lat":"51.49109533347","lon":"-2.64881090889","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10654","CommonName":"Sunny Hill","Indicator":"E-bound","lat":"51.4915387558","lon":"-2.64829867292","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10655","CommonName":"Coombe Dale","Indicator":"E-bound","lat":"51.4557667214","lon":"-2.58753056689","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRA10656","CommonName":"Coombe Dale","Street":"Sylvan Way","Indicator":"W-bound","lat":"51.49213034061","lon":"-2.64374103792","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10657","CommonName":"Rayleigh Road","Street":"Coombe Lane","Indicator":"NW-bound","lat":"51.49041862017","lon":"-2.6361119592","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10658","CommonName":"Rayleigh Road","Street":"Coombe Lane","Indicator":"SE-bound","lat":"51.4901160531","lon":"-2.63553161723","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10659","CommonName":"Red House Lane","Street":"Coombe Lane","Indicator":"NW-bound","lat":"51.4877226843","lon":"-2.63250261214","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10660","CommonName":"Red House Lane","Street":"Coombe Lane","Indicator":"SE-bound","lat":"51.48736654154","lon":"-2.63184957577","node":"E0035653","stoptype":"BCT"},{"AtcoCode":"0100BRA10661","CommonName":"The Dingle","Street":"Westbury Lane","Indicator":"NW-bound","lat":"51.49249068857","lon":"-2.64361647948","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10662","CommonName":"The Dingle","Street":"Dingle Road","Indicator":"SE-bound","lat":"51.49218035284","lon":"-2.64281989346","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10663","CommonName":"Aldercombe Road","Street":"Westbury Lane","Indicator":"E-bound","lat":"51.49370986067","lon":"-2.64755164592","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10665","CommonName":"Aldercombe Road","Street":"Westbury Lane","Indicator":"W-bound","lat":"51.49341498511","lon":"-2.6488438519","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10666","CommonName":"Haig Close","Street":"Westbury Lane","Indicator":"NE-bound","lat":"51.49302347118","lon":"-2.65134461577","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10667","CommonName":"Haig Close","Street":"Westbury Lane","Indicator":"W-bound","lat":"51.49293404233","lon":"-2.65125691596","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10668","CommonName":"Elberton Road","Street":"Westbury Lane","Indicator":"W-bound","lat":"51.49201907752","lon":"-2.6540958352","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10669","CommonName":"Elberton Road","Street":"Westbury Lane","Indicator":"E-bound","lat":"51.49204683572","lon":"-2.65556542614","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10671","CommonName":"Napier Miles Road","Street":"Kings Weston Lane","Indicator":"NW-bound","lat":"51.4947111109","lon":"-2.6598818547","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10672","CommonName":"Napier Miles Road","Street":"Kings Weston Lane","Indicator":"SE-bound","lat":"51.49472998429","lon":"-2.65972367554","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10673","CommonName":"Tufton Avenue","Street":"Kings Weston Lane","Indicator":"N-bound","lat":"51.49670348785","lon":"-2.66214346211","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10674","CommonName":"Tufton Avenue","Street":"Kings Weston Lane","Indicator":"S-bound","lat":"51.49658831448","lon":"-2.66183928146","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10675","CommonName":"Broadlands Drive","Street":"Kings Weston Lane","Indicator":"SE-bound","lat":"51.49865977472","lon":"-2.66441914879","node":"E0035621","stoptype":"BCT"},{"AtcoCode":"0100BRA10676","CommonName":"Pembroke Avenue","Street":"Station Road","Indicator":"SW-bound","lat":"51.48699629242","lon":"-2.67567055167","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10677","CommonName":"Pembroke Avenue","Street":"Station Road","Indicator":"NE-bound","lat":"51.48724953011","lon":"-2.67541505366","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10678","CommonName":"Hung Road","Street":"Hung Road","Indicator":"SE-bound","lat":"51.48599649377","lon":"-2.67752802436","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10679","CommonName":"Hung Road","Street":"Hung Road","Indicator":"NW-bound","lat":"51.48595095688","lon":"-2.67762816288","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10680","CommonName":"Dursley Road","Street":"Dursley Road","Indicator":"E-bound","lat":"51.48481300727","lon":"-2.67537904239","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10681","CommonName":"Dursley Road","Street":"Dursley Road","Indicator":"W-bound","lat":"51.48471427371","lon":"-2.67534878012","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10682","CommonName":"Coaley Road","Street":"Coaley Road","Indicator":"N-bound","lat":"51.48290669651","lon":"-2.68005999587","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10683","CommonName":"Coaley Road","Street":"Coaley Road","Indicator":"S-bound","lat":"51.48291660611","lon":"-2.67990173235","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10684","CommonName":"Nibley Road Coaley Road","Street":"Nibley Road","Indicator":"E-bound","lat":"51.48267527246","lon":"-2.67965332646","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10685","CommonName":"Nibley Road Coaley Road","Street":"Nibley Road","Indicator":"W-bound","lat":"51.48263015121","lon":"-2.67968145728","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10686","CommonName":"Nibley Road","Street":"Nibley Road","Indicator":"W-bound","lat":"51.48337704008","lon":"-2.67491138616","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10687","CommonName":"Nibley Road","Street":"Nibley Road","Indicator":"E-bound","lat":"51.48344855246","lon":"-2.67498444805","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10691","CommonName":"Stroud Road","Street":"Nibley Road","Indicator":"W-bound","lat":"51.4836937397","lon":"-2.6730006984","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10692","CommonName":"Stroud Road","Street":"Stroud Road","Indicator":"N-bound","lat":"51.4843202221","lon":"-2.67194421803","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10693","CommonName":"Dursley Road","Street":"Dursley Road","Indicator":"E-bound","lat":"51.48524849967","lon":"-2.66999923237","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10696","CommonName":"Riverleaze","Street":"Portway","Indicator":"NW-bound","lat":"51.48224006505","lon":"-2.65016846839","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10697","CommonName":"Sylvan Way","Street":"Portway","Indicator":"NW-bound","lat":"51.4869623903","lon":"-2.65631340862","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10698","CommonName":"Park Road","Street":"Portway","Indicator":"W-bound","lat":"51.48694867915","lon":"-2.66986573552","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10699","CommonName":"Woodwell Road","Street":"Portway","Indicator":"W-bound","lat":"51.48562073606","lon":"-2.67408041187","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10700","CommonName":"Station Road","Street":"Portway","Indicator":"W-bound","lat":"51.48517803949","lon":"-2.68066986435","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10701","CommonName":"Portway Burnham Road","Street":"Portway","Indicator":"SE-bound","lat":"51.48649503275","lon":"-2.68303702789","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10702","CommonName":"Grove Leaze","Street":"Portway","Indicator":"N-bound","lat":"51.48990216943","lon":"-2.68776900072","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10703","CommonName":"Portview Road","Street":"Portway","Indicator":"N-bound","lat":"51.49342642854","lon":"-2.68937772118","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10704","CommonName":"Akeman Way","Street":"Portway","Indicator":"S-bound","lat":"51.49662546582","lon":"-2.68971410444","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10706","CommonName":"Portview Road","Street":"Portway","Indicator":"S-bound","lat":"51.49172121963","lon":"-2.68883345546","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10707","CommonName":"Barrow Hill Road","Street":"Portway","Indicator":"SE-bound","lat":"51.48863542808","lon":"-2.68605040286","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10708","CommonName":"Station Road","Street":"A4","Indicator":"E-bound","lat":"51.4851667409","lon":"-2.67951755952","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10709","CommonName":"Woodwell Road","Street":"Portway","Indicator":"E-bound","lat":"51.48603721271","lon":"-2.6735824861","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10710","CommonName":"Park Road","Street":"Portway","Indicator":"E-bound","lat":"51.48722731377","lon":"-2.66988422248","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10711","CommonName":"Sylvan Way","Indicator":"SE-bound","lat":"51.48638619623","lon":"-2.65483612137","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10712","CommonName":"Riverleaze","Street":"Portway","Indicator":"SE-bound","lat":"51.4820994035","lon":"-2.64959043852","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10713","CommonName":"Roman Way","Street":"Portway","Indicator":"SW-bound","lat":"51.4787373714","lon":"-2.64781469854","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10715","CommonName":"Roman Way","Street":"Portway","Indicator":"N-bound","lat":"51.47878153023","lon":"-2.64795932114","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10716","CommonName":"Avon Way","Street":"Sea Mills Lane","Indicator":"SW-bound","lat":"51.48459041691","lon":"-2.64464292607","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10717","CommonName":"Avon Way","Street":"Sea Mills Lane","Indicator":"N-bound","lat":"51.48478885051","lon":"-2.64453051272","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10718","CommonName":"Newlyn Avenue","Street":"Sea Mills Lane","Indicator":"SW-bound","lat":"51.48505156586","lon":"-2.64417417688","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10719","CommonName":"Newlyn Avenue","Street":"Sea Mills Lane","Indicator":"N-bound","lat":"51.48523918799","lon":"-2.64439284725","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10720","CommonName":"St Mary's Walk","Street":"St Mary's Road","Indicator":"SE-bound","lat":"51.48965317472","lon":"-2.67958427901","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10721","CommonName":"St Mary's Walk","Street":"St Mary's Road","Indicator":"NW-bound","lat":"51.48976746693","lon":"-2.68003247677","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10722","CommonName":"St Mary's Road","Street":"St Mary's Road","Indicator":"NW-bound","lat":"51.49045511248","lon":"-2.68239046126","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10723","CommonName":"St Mary's Road","Street":"St Mary's Road","Indicator":"SE-bound","lat":"51.49053644915","lon":"-2.68231965904","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10724","CommonName":"Ermine Way","Street":"St Mary's Road","Indicator":"SE-bound","lat":"51.49240406924","lon":"-2.68738894758","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10725","CommonName":"Ermine Way","Street":"St Mary's Road","Indicator":"W-bound","lat":"51.4923229829","lon":"-2.68741653553","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10728","CommonName":"Watling Way","Street":"West Town Road","Indicator":"SW-bound","lat":"51.4946778732","lon":"-2.68449900479","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10729","CommonName":"Watling Way","Street":"West Town Road","Indicator":"NE-bound","lat":"51.49472215456","lon":"-2.68461490605","node":"E0035642","stoptype":"BCT"},{"AtcoCode":"0100BRA10730","CommonName":"Avonmouth Station","Street":"Portview Road","Indicator":"SE-bound","lat":"51.50030145326","lon":"-2.69909060993","node":"E0035565","stoptype":"BCT"},{"AtcoCode":"0100BRA10736","CommonName":"Parry's Lane","Street":"Stoke Lane","Indicator":"N-bound","lat":"51.48497531456","lon":"-2.62840333009","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA10737","CommonName":"Parry's Lane","Street":"Stoke Lane","Indicator":"S-bound","lat":"51.48502941461","lon":"-2.62837527077","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA10738","CommonName":"Stoke Lane Shops","Street":"Stoke Lane","Indicator":"NE-bound","lat":"51.48868030867","lon":"-2.62495440824","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA10739","CommonName":"Stoke Lane Shops","Street":"Stoke Lane","Indicator":"SW-bound","lat":"51.48811257374","lon":"-2.62519148732","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA10740","CommonName":"Upper Belgrave Road","Street":"Upper Belgrave Road","Indicator":"NE-bound","lat":"51.46887299278","lon":"-2.61964485844","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA10741","CommonName":"Upper Belgrave Road","Street":"Upper Belgrave Road","Indicator":"SW-bound","lat":"51.46866597182","lon":"-2.61968524238","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA10744","CommonName":"Baltic Wharf","Street":"Cumberland Road","Indicator":"E-bound","lat":"51.44647261847","lon":"-2.61493830608","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10745","CommonName":"Baltic Wharf","Street":"Cumberland Road","Indicator":"W-bound","lat":"51.44640091674","lon":"-2.61489417415","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10746","CommonName":"Smeaton Road","Street":"Smeaton Road","Indicator":"NW-bound","lat":"51.4470756064","lon":"-2.62165200039","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10747","CommonName":"Mardyke Ferry Road","Street":"Cumberland Road","Indicator":"W-bound","lat":"51.44666114157","lon":"-2.61155929585","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10751","CommonName":"Maritime Museum","Street":"Gasferry Road","Indicator":"SW-bound","lat":"51.44850914099","lon":"-2.60719500602","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10752","CommonName":"Cumberland Road","Street":"Cumberland Road","Indicator":"W-bound","lat":"51.44683555397","lon":"-2.60393513936","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA10753","CommonName":"General Hospital","Street":"Commercial Road","Indicator":"E-bound","lat":"51.4463879933","lon":"-2.5947487614","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10754","CommonName":"General Hospital","Street":"Commercial Road","Indicator":"W-bound","lat":"51.4462636515","lon":"-2.5944449677","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10755","CommonName":"Ship Lane","Street":"Clarence Road","Indicator":"E-bound","lat":"51.44564978079","lon":"-2.58958782737","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10756","CommonName":"Ship Lane","Street":"Clarence Road","Indicator":"W-bound","lat":"51.44544987741","lon":"-2.58641963845","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10757","CommonName":"Somerset Street","Street":"Clarence Road","Indicator":"W-bound","lat":"51.44544139027","lon":"-2.58631880565","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10758","CommonName":"Somerset Street","Street":"Clarence Road","Indicator":"NE-bound","lat":"51.44614794454","lon":"-2.58527743447","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10760","CommonName":"Hengrove Road","Street":"Redcatch Road","Indicator":"E-bound","lat":"51.43543388381","lon":"-2.57171830712","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10761","CommonName":"Hengrove Road","Street":"Redcatch Road","Indicator":"W-bound","lat":"51.43524899793","lon":"-2.57091038562","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10762","CommonName":"St Peter's Hospice","Street":"Redcatch Road","Indicator":"NE-bound","lat":"51.43506400686","lon":"-2.57746804014","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10763","CommonName":"St Peter's Hospice","Street":"Redcatch Road","Indicator":"SW-bound","lat":"51.43469288932","lon":"-2.5779668606","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10764","CommonName":"Martock Road","Street":"Marksbury Road","Indicator":"W-bound","lat":"51.4330820829","lon":"-2.60145205114","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10765","CommonName":"Martock Road","Street":"Marksbury Road","Indicator":"E-bound","lat":"51.43316322402","lon":"-2.60140996121","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10766","CommonName":"Lynton Road","Street":"Lynton Road","Indicator":"W-bound","lat":"51.43354350772","lon":"-2.59206443643","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10767","CommonName":"Lynton Road","Street":"Lynton Road","Indicator":"E-bound","lat":"51.43363349125","lon":"-2.59205121469","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10768","CommonName":"Torpoint Road","Street":"Lynton Road","Indicator":"SW-bound","lat":"51.4326923279","lon":"-2.59501676915","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10769","CommonName":"Torpoint Road","Street":"Lynton Road","Indicator":"NE-bound","lat":"51.43275497329","lon":"-2.59507512399","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA10771","CommonName":"Dowry Square","Street":"Hotwell Road","Indicator":"N-bound","lat":"51.45053288433","lon":"-2.62080674452","node":"E0035614","stoptype":"BCT"},{"AtcoCode":"0100BRA10772","CommonName":"Merchants Road","Street":"Merchants Road","Indicator":"S-bound","lat":"51.44953066697","lon":"-2.61818847459","node":"E0035614","stoptype":"BCT"},{"AtcoCode":"0100BRA10773","CommonName":"Hotwells","Street":"Hotwell Road","Indicator":"E-bound","lat":"51.45005088776","lon":"-2.61672766037","node":"E0035614","stoptype":"BCT"},{"AtcoCode":"0100BRA10774","CommonName":"Hotwell Road","Street":"Hotwell Road","Indicator":"W-bound","lat":"51.44947469889","lon":"-2.61343887543","node":"E0035614","stoptype":"BCT"},{"AtcoCode":"0100BRA10775","CommonName":"Hotwell Road","Street":"Hotwell Road","Indicator":"E-bound","lat":"51.44960012129","lon":"-2.61352689977","node":"E0035614","stoptype":"BCT"},{"AtcoCode":"0100BRA10776","CommonName":"Jacob's Wells Road","Street":"Jacob's Wells Road","Indicator":"SE-bound","lat":"51.45187570476","lon":"-2.60821828471","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"0100BRA10777","CommonName":"Jacob's Wells Road","Street":"Jacob's Wells Road","Indicator":"NW-bound","lat":"51.4523385299","lon":"-2.60913109127","node":"E0035583","stoptype":"BCT"},{"AtcoCode":"0100BRA10783","CommonName":"Nelson Street","Street":"Nelson Street","Indicator":"Hc","lat":"51.45676626944","lon":"-2.59259524665","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRA10784","CommonName":"Penn Street","Street":"Penn Street","Indicator":"C","lat":"51.45849490497","lon":"-2.58678837375","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA10785","CommonName":"Penn Street","Street":"Penn Street","Indicator":"B","lat":"51.45787653897","lon":"-2.58637743545","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA10786","CommonName":"Penn Street","Street":"Penn Street","Indicator":"A","lat":"51.45772426699","lon":"-2.58626033934","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA10787","CommonName":"Broad Weir","Street":"Broad Weir","Indicator":"Sa","lat":"51.45663310773","lon":"-2.58689402467","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA10789","CommonName":"Broad Weir","Street":"Broad Weir","Indicator":"Sb","lat":"51.45672222546","lon":"-2.58705348771","node":"N0080902","stoptype":"BCT"},{"AtcoCode":"0100BRA10792","CommonName":"Victoria Street","Street":"Victoria Street","Indicator":"R8","lat":"51.45290455616","lon":"-2.58988279767","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10793","CommonName":"Victoria Street","Street":"Victoria Street","Indicator":"R9","lat":"51.45312868067","lon":"-2.59001521158","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10794","CommonName":"Victoria Street","Street":"Victoria Street","Indicator":"R6","lat":"51.45130859717","lon":"-2.58718549594","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10795","CommonName":"Victoria Street","Street":"Victoria Street","Indicator":"R7","lat":"51.45079999706","lon":"-2.58640186367","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10796","CommonName":"Redcliffe Way","Street":"Redcliffe Way","Indicator":"R4","lat":"51.44877568408","lon":"-2.58843371839","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10797","CommonName":"Redcliffe Way","Street":"Redcliffe Way","Indicator":"R5","lat":"51.44895834895","lon":"-2.5896592392","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10799","CommonName":"Redcliff Hill","Street":"Redcliff Hill","Indicator":"R3","lat":"51.44659718242","lon":"-2.590722416","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10802","CommonName":"Redcliff Hill","Street":"Redcliff Hill","Indicator":"R2","lat":"51.4468029614","lon":"-2.59092652654","node":"N0077026","stoptype":"BCT"},{"AtcoCode":"0100BRA10807","CommonName":"The Centre","Street":"Broad Quay","Indicator":"C6","lat":"51.45229247317","lon":"-2.59711373277","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRA10809","CommonName":"The Centre","Street":"Broad Quay","Indicator":"C5","lat":"51.45215900016","lon":"-2.59683855671","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRA10811","CommonName":"The Centre","Street":"Broad Quay","Indicator":"C3","lat":"51.45267938148","lon":"-2.5970612168","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRA10812","CommonName":"Lawrence Hill Depot","Street":"Easton Road","Indicator":"SW-bound","lat":"51.46026255161","lon":"-2.56930818587","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA10813","CommonName":"Lawrence Hill Depot","Street":"Easton Road","Indicator":"NE-bound","lat":"51.46104367349","lon":"-2.56769138205","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA10814","CommonName":"Kilburn Street","Street":"Easton Road","Indicator":"W-bound","lat":"51.46161061141","lon":"-2.56386955643","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10815","CommonName":"Kilburn Street","Street":"Easton Road","Indicator":"E-bound","lat":"51.46164955172","lon":"-2.56325108455","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10816","CommonName":"Prospect Place","Street":"Devon Road","Indicator":"NE-bound","lat":"51.46279128957","lon":"-2.55765125631","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10817","CommonName":"Prospect Place","Street":"Devon Road","Indicator":"SW-bound","lat":"51.4628730311","lon":"-2.55747951768","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10818","CommonName":"Bruce Road","Street":"Devon Road","Indicator":"N-bound","lat":"51.46506548797","lon":"-2.55779415163","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10819","CommonName":"Bruce Road","Street":"Devon Road","Indicator":"S-bound","lat":"51.4654072179","lon":"-2.55778392465","node":"E0035673","stoptype":"BCT"},{"AtcoCode":"0100BRA10820","CommonName":"York Road","Street":"Belle Vue Road","Indicator":"N-bound","lat":"51.46584131428","lon":"-2.56102821822","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10821","CommonName":"Belle Vue Road","Street":"Belle Vue Road","Indicator":"N-bound","lat":"51.46757480114","lon":"-2.5614237858","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10822","CommonName":"Belle Vue Road","Street":"Belle Vue Road","Indicator":"S-bound","lat":"51.46749436403","lon":"-2.56132202568","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA10823","CommonName":"Chester Street","Street":"Robertson Road","Indicator":"W-bound","lat":"51.46966018977","lon":"-2.56343614429","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRA10831","CommonName":"Horfield Health Centre","Street":"Lockleaze Road","Indicator":"E-bound","lat":"51.49058637503","lon":"-2.57765102269","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRA10832","CommonName":"Wessex Avenue","Street":"Wessex Avenue","Indicator":"SE-bound","lat":"51.49130248626","lon":"-2.58012308883","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRA10833","CommonName":"Wessex Avenue","Street":"Wessex Avenue","Indicator":"NW-bound","lat":"51.49138026778","lon":"-2.58075783503","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRA10834","CommonName":"Arbutus Drive","Street":"Arbutus Drive","Indicator":"N-bound","lat":"51.49522629311","lon":"-2.64649277743","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10835","CommonName":"Arbutus Drive","Street":"Arbutus Drive","Indicator":"S-bound","lat":"51.4951906472","lon":"-2.64643465359","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10836","CommonName":"Grove Road","Street":"Arbutus Drive","Indicator":"SW-bound","lat":"51.49677753015","lon":"-2.64400820201","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10837","CommonName":"Grove Road","Street":"Arbutus Drive","Indicator":"NE-bound","lat":"51.49681317725","lon":"-2.644066326","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10838","CommonName":"Southwood Avenue","Street":"Southwood Avenue","Indicator":"Stop C","lat":"51.49701125308","lon":"-2.64565371468","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10839","CommonName":"Southwood Avenue","Street":"Southwood Avenue","Indicator":"Stop D","lat":"51.49695762499","lon":"-2.64559533507","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10840","CommonName":"Southwood Avenue","Street":"Southwood Avenue","Indicator":"Stop A","lat":"51.49572031916","lon":"-2.64821396539","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10841","CommonName":"Southwood Avenue","Street":"Southwood Avenue","Indicator":"Stop B","lat":"51.49568483337","lon":"-2.64812703185","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10842","CommonName":"Southwood Drive","Street":"Southwood Drive","Indicator":"W-bound","lat":"51.49645930888","lon":"-2.64953532923","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10843","CommonName":"Southwood Drive","Street":"Southwood Drive","Indicator":"E-bound","lat":"51.4965220057","lon":"-2.64957943654","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10844","CommonName":"Southside Close","Street":"Southwood Drive","Indicator":"N-bound","lat":"51.49499503606","lon":"-2.65091177321","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10845","CommonName":"Southside Close","Street":"Southwood Drive","Indicator":"S-bound","lat":"51.494977614","lon":"-2.65081069151","node":"N0073243","stoptype":"BCT"},{"AtcoCode":"0100BRA10846","CommonName":"The Pentagon","Street":"The Pentagon","Indicator":"NE-bound","lat":"51.48538704274","lon":"-2.65018443762","node":"E0035641","stoptype":"BCT"},{"AtcoCode":"0100BRA10847","CommonName":"Kingsway Shops","Street":"Kingsway","Indicator":"NE-bound","lat":"51.45471355435","lon":"-2.5252714385","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10848","CommonName":"Kingsway Shops","Street":"Kingsway","Indicator":"SW-bound","lat":"51.45463321441","lon":"-2.52514098794","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10849","CommonName":"Thatchers Close","Street":"Kingsway","Indicator":"S-bound","lat":"51.4569604568","lon":"-2.52146877297","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10850","CommonName":"Thatchers Close","Street":"Kingsway","Indicator":"N-bound","lat":"51.45785115754","lon":"-2.52134939057","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10851","CommonName":"Kingsway","Street":"Kingsway","Indicator":"S-bound","lat":"51.45859953527","lon":"-2.52088294373","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10852","CommonName":"Kingsway","Street":"Kingsway","Indicator":"N-bound","lat":"51.459473212","lon":"-2.52054744918","node":"E0035649","stoptype":"BCT"},{"AtcoCode":"0100BRA10853","CommonName":"Salisbury Avenue","Street":"Kingsway","Indicator":"S-bound","lat":"51.4619200198","lon":"-2.52030180774","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10854","CommonName":"Salisbury Avenue","Street":"Kingsway","Indicator":"N-bound","lat":"51.46156923712","lon":"-2.52032660527","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10855","CommonName":"New Queen Street","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.46560280885","lon":"-2.52114985694","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10856","CommonName":"New Queen Street","Street":"Charlton Road","Indicator":"N-bound","lat":"51.46586297589","lon":"-2.52128238193","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10857","CommonName":"Argyle Road","Street":"Charlton Road","Indicator":"N-bound","lat":"51.46911904907","lon":"-2.52103157383","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10858","CommonName":"Argyle Road","Street":"Charlton Road","Indicator":"S-bound","lat":"51.47032712308","lon":"-2.52031109754","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10859","CommonName":"Soundwell Road","Street":"Soundwell Road","Indicator":"N-bound","lat":"51.46350052905","lon":"-2.5146482428","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10860","CommonName":"Lodge Road","Street":"Lodge Road","Indicator":"S-bound","lat":"51.46517509515","lon":"-2.51416325347","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10861","CommonName":"Lodge Road","Street":"Lodge Road","Indicator":"N-bound","lat":"51.46616361679","lon":"-2.51428953396","node":"E0035663","stoptype":"BCT"},{"AtcoCode":"0100BRA10862","CommonName":"Cossham Hospital","Street":"Lodge Road","Indicator":"N-bound","lat":"51.46867734561","lon":"-2.51518159394","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10863","CommonName":"Cossham Hospital","Street":"Lodge Road","Indicator":"SE-bound","lat":"51.46914393591","lon":"-2.51540279997","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10864","CommonName":"Woodland Way","Street":"Henshaw Road","Indicator":"S-bound","lat":"51.47112439224","lon":"-2.51487803363","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0100BRA10865","CommonName":"Woodland Way","Street":"Hillfields Avenue","Indicator":"N-bound","lat":"51.47166417706","lon":"-2.51481212612","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0100BRA10866","CommonName":"Market Square","Street":"Hillfields Avenue","Indicator":"N-bound","lat":"51.47344581399","lon":"-2.51451543601","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10867","CommonName":"Market Square","Street":"Hillfields Avenue","Indicator":"SW-bound","lat":"51.47358124982","lon":"-2.51438737873","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA10868","CommonName":"Mendip View Avenue","Street":"Lodge Causeway","Indicator":"NW-bound","lat":"51.47447233811","lon":"-2.53032186584","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10869","CommonName":"Mendip View Avenue","Street":"Lodge Causeway","Indicator":"SE-bound","lat":"51.47468675658","lon":"-2.53062671806","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10870","CommonName":"Parnall Road","Street":"Lodge Causeway","Indicator":"SE-bound","lat":"51.47564708378","lon":"-2.53299923967","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10871","CommonName":"Parnall Road","Street":"Lodge Causeway","Indicator":"NW-bound","lat":"51.47563665191","lon":"-2.53331588763","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10872","CommonName":"Goodneston Road","Street":"Goodneston Road","Indicator":"SW-bound","lat":"51.47654874851","lon":"-2.52847409894","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10873","CommonName":"Goodneston Road","Street":"Goodneston Road","Indicator":"NE-bound","lat":"51.4768741159","lon":"-2.52810348667","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10874","CommonName":"Hockeys Lane","Street":"Hockey's Lane","Indicator":"S-bound","lat":"51.47807494518","lon":"-2.53296995381","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA10878","CommonName":"Tyndall's Park Road","Street":"Tyndall's Park Road","Indicator":"W-bound","lat":"51.45977963643","lon":"-2.60816505189","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA10879","CommonName":"Kingsley Road","Street":"Zetland Road","Indicator":"SW-bound","lat":"51.46989013979","lon":"-2.59514080674","node":"E0035574","stoptype":"BCT"},{"AtcoCode":"0100BRA10880","CommonName":"Tilling Road","Street":"Bishopthorpe Road","Indicator":"W-bound","lat":"51.49212517363","lon":"-2.586456821","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10881","CommonName":"Tilling Road","Street":"Bishopthorpe Road","Indicator":"E-bound","lat":"51.4921791917","lon":"-2.58644311057","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10882","CommonName":"Maskelyne Road","Street":"Bishopthorpe Road","Indicator":"W-bound","lat":"51.49134373243","lon":"-2.59166089183","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10883","CommonName":"Maskelyne Road","Street":"Bishopthorpe Road","Indicator":"E-bound","lat":"51.49126889557","lon":"-2.59223606565","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10884","CommonName":"Rodbourne Road","Street":"Bishopthorpe Road","Indicator":"W-bound","lat":"51.49115599261","lon":"-2.59500008175","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10885","CommonName":"Rodbourne Road","Street":"Bishopthorpe Road","Indicator":"E-bound","lat":"51.49122792054","lon":"-2.5950010185","node":"E0035611","stoptype":"BCT"},{"AtcoCode":"0100BRA10888","CommonName":"Brislington House","Street":"Bath Road","Indicator":"E-bound","lat":"51.42775547988","lon":"-2.5315066477","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10889","CommonName":"Brislington House","Street":"Bath Road","Indicator":"NW-bound","lat":"51.42802813135","lon":"-2.53284749188","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10890","CommonName":"Emery Road","Indicator":"W-bound","lat":"51.4291300837","lon":"-2.5376645705","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10891","CommonName":"Brislington P&R","Indicator":"E-bound","lat":"51.42784553303","lon":"-2.53739058225","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10892","CommonName":"Priory Road","Street":"Priory Road","Indicator":"NE-bound","lat":"51.43438607544","lon":"-2.56528921509","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10893","CommonName":"Jubilee Road","Street":"Talbot Road","Indicator":"W-bound","lat":"51.43421027667","lon":"-2.56258255023","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10894","CommonName":"Jubilee Road","Street":"Talbot Road","Indicator":"E-bound","lat":"51.43429085151","lon":"-2.56265546857","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10895","CommonName":"Lodway Road","Street":"Talbot Road","Indicator":"E-bound","lat":"51.43412418706","lon":"-2.55802126413","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10896","CommonName":"Lodway Road","Street":"Talbot Road","Indicator":"W-bound","lat":"51.43403441268","lon":"-2.55799139875","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA10897","CommonName":"Hampstead Road","Street":"Hampstead Road","Indicator":"NW-bound","lat":"51.43571972545","lon":"-2.55717754888","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10898","CommonName":"Hampstead Road","Street":"Hampstead Road","Indicator":"SE-bound","lat":"51.43568478671","lon":"-2.55696133263","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10903","CommonName":"Buckingham Road","Street":"Bloomfield Road","Indicator":"NE-bound","lat":"51.44648506942","lon":"-2.55097725921","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10904","CommonName":"Buckingham Road","Street":"Bloomfield Road","Indicator":"SW-bound","lat":"51.44644951077","lon":"-2.55089049438","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10905","CommonName":"Salisbury Road","Street":"Salisbury Road","Indicator":"E-bound","lat":"51.44707406387","lon":"-2.54809203347","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10906","CommonName":"Salisbury Road","Street":"Salisbury Road","Indicator":"W-bound","lat":"51.44701105865","lon":"-2.54810566841","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10907","CommonName":"Wick Road","Street":"Newbridge Road","Indicator":"N-bound","lat":"51.44812503124","lon":"-2.54639221597","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10908","CommonName":"Wick Road","Street":"Newbridge Road","Indicator":"SW-bound","lat":"51.44836886504","lon":"-2.54616488696","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10909","CommonName":"Langton Court Road","Street":"Newbridge Road","Indicator":"N-bound","lat":"51.45062020103","lon":"-2.54735741296","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10910","CommonName":"Langton Court Road","Street":"Newbridge Road","Indicator":"SE-bound","lat":"51.45098762722","lon":"-2.54762084439","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10911","CommonName":"Arlington Road","Street":"Newbridge Road","Indicator":"E-bound","lat":"51.45130465109","lon":"-2.55096334428","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA10915","CommonName":"St Brelades Grove","Street":"Birchwood Road","Indicator":"N-bound","lat":"51.44766022223","lon":"-2.54192582062","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10916","CommonName":"St Brelades Grove","Street":"Birchwood Road","Indicator":"S-bound","lat":"51.44737370312","lon":"-2.54166341207","node":"E0035648","stoptype":"BCT"},{"AtcoCode":"0100BRA10917","CommonName":"Jersey Avenue","Street":"Birchwood Road","Indicator":"S-bound","lat":"51.44379022308","lon":"-2.54075767978","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10918","CommonName":"Jersey Avenue","Street":"Birchwood Road","Indicator":"N-bound","lat":"51.44345622236","lon":"-2.54104150309","node":"N0077027","stoptype":"BCT"},{"AtcoCode":"0100BRA10919","CommonName":"Broomhill Road","Street":"Birchwood Road","Indicator":"S-bound","lat":"51.44157255105","lon":"-2.54199761229","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10922","CommonName":"The Rock","Street":"School Road","Indicator":"N-bound","lat":"51.43857343529","lon":"-2.54305550744","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10923","CommonName":"The Rock","Street":"School Road","Indicator":"SW-bound","lat":"51.43854692848","lon":"-2.54295448425","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10924","CommonName":"Jean Road","Street":"School Road","Indicator":"NE-bound","lat":"51.43643976223","lon":"-2.54556218238","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10925","CommonName":"Jean Road","Street":"School Road","Indicator":"S-bound","lat":"51.43639520829","lon":"-2.54547533368","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10926","CommonName":"Church Parade","Street":"Church Hill","Indicator":"N-bound","lat":"51.43463904452","lon":"-2.54800068229","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10927","CommonName":"Callington Road","Street":"Callington Road","Indicator":"W-bound","lat":"51.43056431718","lon":"-2.55215217119","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10928","CommonName":"Callington Road","Street":"Callington Road","Indicator":"E-bound","lat":"51.43127192299","lon":"-2.55082292984","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10929","CommonName":"Tesco Brislington","Indicator":"S-bound","lat":"51.43177951356","lon":"-2.55567672696","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10930","CommonName":"Eagle Road","Street":"Eagle Road","Indicator":"NW-bound","lat":"51.43607292324","lon":"-2.5547505822","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA10931","CommonName":"Tramway Road","Street":"Bath Road","Indicator":"N-bound","lat":"51.43818014781","lon":"-2.55786929336","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10932","CommonName":"Tramway Road","Street":"Bath Road","Indicator":"SE-bound","lat":"51.43758205307","lon":"-2.55695564432","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10933","CommonName":"Arnos Court","Street":"A4","Indicator":"B","lat":"51.4406711064","lon":"-2.55969810898","node":"E0035560","stoptype":"BCT"},{"AtcoCode":"0100BRA10934","CommonName":"Oxford Street","Street":"Oxford Street","Indicator":"E-bound","lat":"51.45142708732","lon":"-2.57781845761","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA10935","CommonName":"Oxford Street","Street":"Oxford Street","Indicator":"W-bound","lat":"51.45135530057","lon":"-2.57778876898","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA10937","CommonName":"St Phillips Road","Street":"Midland Road","Indicator":"NW-bound","lat":"51.45417963415","lon":"-2.57759416942","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRA10941","CommonName":"Black Boy Hill","Street":"Stoke Road","Indicator":"A","lat":"51.471098445","lon":"-2.61708351648","node":"E0035635","stoptype":"BCT"},{"AtcoCode":"0100BRA10942","CommonName":"Ladies Mile","Street":"Stoke Road","Indicator":"SE-bound","lat":"51.4729533758","lon":"-2.61998811781","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10943","CommonName":"Sea Walls","Street":"Circular Road","Indicator":"N-bound","lat":"51.46981544561","lon":"-2.6350766452","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA10945","CommonName":"Knowle Health Centre","Street":"St John's Lane","Indicator":"E-bound","lat":"51.43648570107","lon":"-2.58990137967","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA10946","CommonName":"Oxford Street","Street":"Oxford Street","Indicator":"N-bound","lat":"51.44178097106","lon":"-2.57925056994","node":"E0035661","stoptype":"BCT"},{"AtcoCode":"0100BRA16901","CommonName":"Breach Road","Street":"Duckmoor Road","Indicator":"N-bound","lat":"51.43732306461","lon":"-2.61418237539","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA16902","CommonName":"Breach Road","Street":"Duckmoor Road","Indicator":"S-bound","lat":"51.43766397016","lon":"-2.61433081661","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA16903","CommonName":"Bath Street","Street":"Ashton Road","Indicator":"NE-bound","lat":"51.44196352068","lon":"-2.61916536629","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA16904","CommonName":"The Centre","Street":"Colston Street","Indicator":"Ce","lat":"51.45478948991","lon":"-2.59763565588","node":"N0076879","stoptype":"BCT"},{"AtcoCode":"0100BRA16905","CommonName":"Alma Vale","Street":"Pembroke Road","Indicator":"S-bound","lat":"51.46112358996","lon":"-2.61597012755","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA16906","CommonName":"Clifton Park","Street":"Pembroke Road","Indicator":"S-bound","lat":"51.45881146536","lon":"-2.61449965377","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA16907","CommonName":"Clifton Park","Street":"Pembroke Road","Indicator":"N-bound","lat":"51.45930287552","lon":"-2.61509639013","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA16908","CommonName":"Sunderland Place","Street":"Saint Pauls Road","Indicator":"SW-bound","lat":"51.45856630787","lon":"-2.61151694907","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA16910","CommonName":"Rupert Street","Street":"Rupert Street","Indicator":"Hf","lat":"51.45680123898","lon":"-2.59456750287","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRA16911","CommonName":"Rupert Street","Street":"Rupert Street","Indicator":"Hg","lat":"51.45673662198","lon":"-2.59489769519","node":"N0077024","stoptype":"BCT"},{"AtcoCode":"0100BRA16924","CommonName":"Croydon Street","Street":"Croydon Street","Indicator":"DEL","lat":"51.45858666687","lon":"-2.56816465123","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA16928","CommonName":"Mardyke Ferry Road","Street":"Cumberland Road","Indicator":"E-bound","lat":"51.44672685571","lon":"-2.61102776011","node":"N0077031","stoptype":"BCT"},{"AtcoCode":"0100BRA16931","CommonName":"Raymend Road","Street":"St John's Lane","Indicator":"E-bound","lat":"51.43655976989","lon":"-2.5876868349","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA16933","CommonName":"Weymouth Road","Street":"Wedmore Vale","Indicator":"N-bound","lat":"51.43531307813","lon":"-2.58885047951","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA16934","CommonName":"Marksbury Road","Street":"Marksbury Road","Indicator":"W-bound","lat":"51.43437337548","lon":"-2.59154289892","node":"N0073248","stoptype":"BCT"},{"AtcoCode":"0100BRA16936","CommonName":"Sandholme Road","Street":"Sandholme Road","Indicator":"A","lat":"51.44222415353","lon":"-2.55455176634","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA16938","CommonName":"Sandholme Road","Street":"Sandholme Road","Indicator":"C","lat":"51.44389906198","lon":"-2.55212599264","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA16939","CommonName":"Sandholme Road","Street":"Sandholme Road","Indicator":"B","lat":"51.44227748748","lon":"-2.55468190582","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA16940","CommonName":"Sandholme Road","Street":"Sandholme Road","Indicator":"D","lat":"51.44392562861","lon":"-2.55221264508","node":"E0035580","stoptype":"BCT"},{"AtcoCode":"0100BRA16942","CommonName":"St Bede's Road","Street":"Woodland Way","Indicator":"E-bound","lat":"51.47164257208","lon":"-2.51358810801","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA16943","CommonName":"St Bede's Road","Street":"Woodland Way","Indicator":"NE-bound","lat":"51.47171368101","lon":"-2.51377607271","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA16944","CommonName":"Woodland Avenue","Street":"Woodland Way","Indicator":"E-bound","lat":"51.47174349605","lon":"-2.51106970002","node":"E0035612","stoptype":"BCT"},{"AtcoCode":"0100BRA16946","CommonName":"Brecknock Road","Street":"Wells Road","Indicator":"SE-bound","lat":"51.44008178676","lon":"-2.57371866902","node":"E0035620","stoptype":"BCT"},{"AtcoCode":"0100BRA16947","CommonName":"Blackmoors Lane","Street":"Clanage Road","Indicator":"SE-bound","lat":"51.44153537185","lon":"-2.62697222694","node":"E0035577","stoptype":"BCT"},{"AtcoCode":"0100BRA46637","CommonName":"Belland Drive","Street":"Belland Drive","Indicator":"C","lat":"51.40712566719","lon":"-2.57770536191","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA46638","CommonName":"Victoria Square","Street":"Clifton Road","Indicator":"NW-bound","lat":"51.45557221046","lon":"-2.61493108786","node":"E0035590","stoptype":"BCT"},{"AtcoCode":"0100BRA46639","CommonName":"Eastgate Centre","Indicator":"A","lat":"51.47464117377","lon":"-2.56351193341","node":"E0035600","stoptype":"BCT"},{"AtcoCode":"0100BRA46640","CommonName":"Orpen Gardens","Street":"Romney Avenue","Indicator":"NE-bound","lat":"51.48341271634","lon":"-2.5699709672","node":"E0035622","stoptype":"BCT"},{"AtcoCode":"0100BRA46641","CommonName":"Belland Drive","Street":"Whitchurch Lane","Indicator":"C","lat":"51.40766244742","lon":"-2.57643255107","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA46642","CommonName":"Highridge Green","Street":"Highridge Road","Indicator":"E-bound","lat":"51.41215196443","lon":"-2.625017158","node":"N0073245","stoptype":"BCT"},{"AtcoCode":"0100BRA46645","CommonName":"Cadogan Road","Street":"Cadogan Road","Indicator":"NW-bound","lat":"51.42430855004","lon":"-2.5704144252","node":"E0035610","stoptype":"BCT"},{"AtcoCode":"0100BRA46646","CommonName":"Old Market Street","Street":"Old Market Street","Indicator":"E-bound","lat":"51.45593743703","lon":"-2.5821499842","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRA46647","CommonName":"Old Market Street","Street":"Old Market Street","Indicator":"W-bound","lat":"51.45604854485","lon":"-2.58150373655","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRA46648","CommonName":"Easton Road","Street":"Easton Road","Indicator":"NE-bound","lat":"51.45870670003","lon":"-2.57305986776","node":"E0035599","stoptype":"BCT"},{"AtcoCode":"0100BRA46649","CommonName":"Croydon Street","Street":"Lawrence Hill","Indicator":"E","lat":"51.45840586822","lon":"-2.56836391041","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA46650","CommonName":"Blackswarth Road","Street":"Church Road","Indicator":"E-bound","lat":"51.45961465691","lon":"-2.55250280118","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA46651","CommonName":"Croydon Street","Indicator":"W","lat":"51.45824004755","lon":"-2.5691822602","node":"N0077038","stoptype":"BCT"},{"AtcoCode":"0100BRA46653","CommonName":"Downleaze","Street":"Saville Road","Indicator":"SW-bound","lat":"51.47360969969","lon":"-2.62507952328","node":"E0035643","stoptype":"BCT"},{"AtcoCode":"0100BRA46654","CommonName":"Bower Ashton Campus","Indicator":"NE-bound","lat":"51.44320088237","lon":"-2.63161374174","node":"E0035577","stoptype":"BCT"},{"AtcoCode":"0100BRA46655","CommonName":"Coronation Road","Street":"Coronation Road","Indicator":"W-bound","lat":"51.44574150236","lon":"-2.61203624057","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA46656","CommonName":"Coronation Road","Street":"Coronation Road","Indicator":"E-bound","lat":"51.44594523583","lon":"-2.610902209","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA46657","CommonName":"Camden Road","Street":"Coronation Road","Indicator":"W-bound","lat":"51.44612442773","lon":"-2.60756626587","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA46658","CommonName":"Camden Road","Street":"Coronation Road","Indicator":"E-bound","lat":"51.4462432501","lon":"-2.60719371874","node":"E0035645","stoptype":"BCT"},{"AtcoCode":"0100BRA56546","CommonName":"Dorian Road","Street":"Dorian Road","Indicator":"E-bound","lat":"51.49324775738","lon":"-2.58492998317","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRA56547","CommonName":"Dorian Road","Street":"Dorian Road","Indicator":"W-bound","lat":"51.49307908335","lon":"-2.58449569925","node":"E0035613","stoptype":"BCT"},{"AtcoCode":"0100BRA56548","CommonName":"Blackswarth Road","Street":"Chalks Road","Indicator":"D","lat":"51.45990799778","lon":"-2.55131166946","node":"E0035634","stoptype":"BCT"},{"AtcoCode":"0100BRA56549","CommonName":"Downs Cote Avenue","Street":"Falcondale Road","Indicator":"NW-bound","lat":"51.48995300308","lon":"-2.62065086279","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA56550","CommonName":"Downs Cote Avenue","Street":"Falcondale Road","Indicator":"SE-bound","lat":"51.49005281835","lon":"-2.62047938019","node":"E0035670","stoptype":"BCT"},{"AtcoCode":"0100BRA56553","CommonName":"Avon Street","Street":"Avon Street","Indicator":"NW-bound","lat":"51.45309060712","lon":"-2.58325069059","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA56554","CommonName":"Avon Street","Street":"Avon Street","Indicator":"SE-bound","lat":"51.45317174159","lon":"-2.58320855023","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA56555","CommonName":"Day's Road","Street":"Day's Road","Indicator":"SW-bound","lat":"51.4531449474","lon":"-2.57222744444","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA56556","CommonName":"Day's Road","Street":"Day's Road","Indicator":"NE-bound","lat":"51.45327096314","lon":"-2.57220023746","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA56557","CommonName":"Hockeys Lane","Street":"Hockeys Lane","Indicator":"N-bound","lat":"51.47796665905","lon":"-2.53305508723","node":"E0035604","stoptype":"BCT"},{"AtcoCode":"0100BRA56560","CommonName":"Kingsland Road","Street":"Kingsland Road","Indicator":"SE-bound","lat":"51.45303266348","lon":"-2.57496043023","node":"E0035660","stoptype":"BCT"},{"AtcoCode":"0100BRA56561","CommonName":"St Phillips Road","Street":"Midland Road","Indicator":"SE-bound","lat":"51.45441255091","lon":"-2.57776981376","node":"N0077040","stoptype":"BCT"},{"AtcoCode":"0100BRA56563","CommonName":"St Dunstan's Road","Street":"Bedminster Road","Indicator":"NE-bound","lat":"51.43473754694","lon":"-2.60125801332","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA56564","CommonName":"St Dunstan's Road","Street":"Bedminster Road","Indicator":"SW-bound","lat":"51.43483844087","lon":"-2.60087092115","node":"E0035570","stoptype":"BCT"},{"AtcoCode":"0100BRA56565","CommonName":"Tanorth Road","Street":"East Dundry Road","Indicator":"SW-bound","lat":"51.40261965516","lon":"-2.57428464881","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA56566","CommonName":"Grass Meers Drive","Street":"East Dundry Road","Indicator":"N-bound","lat":"51.40616934336","lon":"-2.57102246524","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA56567","CommonName":"Grass Meers Drive","Street":"East Dundry Road","Indicator":"S-bound","lat":"51.40624204332","lon":"-2.57086522597","node":"N0077046","stoptype":"BCT"},{"AtcoCode":"0100BRA56568","CommonName":"Feeder Road","Street":"Feeder Road","Indicator":"W-bound","lat":"51.45183940576","lon":"-2.5557764254","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA56569","CommonName":"Feeder Road","Street":"Feeder Road","Indicator":"E-bound","lat":"51.45194886827","lon":"-2.55544675809","node":"N0077043","stoptype":"BCT"},{"AtcoCode":"0100BRA56570","CommonName":"Clift Road","Street":"Clift House Road","Indicator":"E-bound","lat":"51.44441871975","lon":"-2.61737119969","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA56571","CommonName":"Clift Road","Street":"Clift House Road","Indicator":"W-bound","lat":"51.44425501559","lon":"-2.61942658886","node":"E0035562","stoptype":"BCT"},{"AtcoCode":"0100BRA56572","CommonName":"Imperial Park","Street":"Wills Way","Indicator":"E-bound","lat":"51.41503645851","lon":"-2.59956145205","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0100BRA56573","CommonName":"Imperial Park","Street":"Wills Way","Indicator":"W-bound","lat":"51.41491168659","lon":"-2.59934412559","node":"E0035607","stoptype":"BCT"},{"AtcoCode":"0170SGP90963","CommonName":"Beechacres","Street":"Eastland Road","Indicator":"W-bound","lat":"51.61268184185","lon":"-2.51995933924","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90964","CommonName":"Eastland Road","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.61337369457","lon":"-2.52006834329","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90965","CommonName":"Eastland Road","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.61356493467","lon":"-2.51952172591","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90966","CommonName":"Dean Avenue","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.61445057965","lon":"-2.51850642516","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90967","CommonName":"The Anchor","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.61680259509","lon":"-2.51526906864","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90969","CommonName":"Squireleaze","Street":"Severn View Road","Indicator":"S-bound","lat":"51.61599341233","lon":"-2.51525990083","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90970","CommonName":"Severn View Road","Street":"Severn View Road","Indicator":"N-bound","lat":"51.61635152667","lon":"-2.51561059236","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90971","CommonName":"Falcon Way","Street":"Severn View Road","Indicator":"S-bound","lat":"51.61386946485","lon":"-2.51366162786","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90973","CommonName":"Church Road","Street":"Gloucester Road","Indicator":"NE-bound","lat":"51.61240544992","lon":"-2.52145813151","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90975","CommonName":"The Plain","Street":"High Street","Indicator":"S-bound","lat":"51.60888819989","lon":"-2.52585111714","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGP90976","CommonName":"Chapel Street","Street":"High Street","Indicator":"S-bound","lat":"51.60620689962","lon":"-2.52626776196","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGX38423","CommonName":"Nimlet","Indicator":"N-bound","lat":"51.43998320178","lon":"-2.36771899533","node":"N0064869","stoptype":"BCT"},{"AtcoCode":"0170SGX38424","CommonName":"Nimlet","Indicator":"S-bound","lat":"51.43998378866","lon":"-2.36753196473","node":"N0064869","stoptype":"BCT"},{"AtcoCode":"0170SGX38425","CommonName":"Westerleigh Crematorium","Indicator":"S-bound","lat":"51.50347529091","lon":"-2.42784767316","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGX38426","CommonName":"The Star","Street":"Castle Road","Indicator":"SE-bound","lat":"51.48739658988","lon":"-2.43080797074","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGX38427","CommonName":"The Star","Street":"Castle Road","Indicator":"NW-bound","lat":"51.48725273022","lon":"-2.43080661419","node":"E0053720","stoptype":"BCT"},{"AtcoCode":"0170SGX38428","CommonName":"Newhouse Farm","Indicator":"S-bound","lat":"51.52921394869","lon":"-2.3089310046","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"0170SGX38429","CommonName":"Limes Farm","Indicator":"E-bound","lat":"51.52762510098","lon":"-2.27540556989","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGX38430","CommonName":"Limes Farm","Street":"Luckington Road","Indicator":"W-bound","lat":"51.52755330591","lon":"-2.27534747678","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGX38431","CommonName":"Rail Bridge","Street":"Badminton Road","Indicator":"N-bound","lat":"51.53015616518","lon":"-2.27732372941","node":"E0053690","stoptype":"BCT"},{"AtcoCode":"0170SGX38432","CommonName":"The Swan","Street":"West Street","Indicator":"N-bound","lat":"51.59249496449","lon":"-2.4801609541","node":"E0053729","stoptype":"BCT"},{"AtcoCode":"0170SGX38433","CommonName":"Upton Cheyney","Street":"Brewery Hill","Indicator":"SW-bound","lat":"51.42724063132","lon":"-2.44346000651","node":"E0041944","stoptype":"BCT"},{"AtcoCode":"0170SGX38434","CommonName":"Upton Cheyney","Street":"Brewery Hill","Indicator":"NE-bound","lat":"51.42731212619","lon":"-2.44357576603","node":"E0041944","stoptype":"BCT"},{"AtcoCode":"0170SGX38435","CommonName":"Rose Cottage","Indicator":"N-bound","lat":"51.65012156996","lon":"-2.45738363186","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGX38436","CommonName":"The Gables Hotel","Street":"A38","Indicator":"N-bound","lat":"51.64442816465","lon":"-2.45556316761","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGX38437","CommonName":"Tortworth Road","Street":"B4509","Indicator":"NW-bound","lat":"51.63902724006","lon":"-2.45714189735","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGX38438","CommonName":"Tortworth Road","Street":"B4509","Indicator":"SE-bound","lat":"51.63909950542","lon":"-2.45705592263","node":"E0053704","stoptype":"BCT"},{"AtcoCode":"0170SGX38439","CommonName":"Leyhill Road","Indicator":"W-bound","lat":"51.6324188075","lon":"-2.43095314938","node":"E0053728","stoptype":"BCT"},{"AtcoCode":"0170SGX38440","CommonName":"Berkeley Close","Street":"Underhill Road","Indicator":"NW-bound","lat":"51.62593389515","lon":"-2.40113272471","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGX38441","CommonName":"Berkeley Close","Street":"Underhill Road","Indicator":"SE-bound","lat":"51.62588073874","lon":"-2.40090111857","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGX38442","CommonName":"Little Bristol Lane","Street":"Manor Lane","Indicator":"SW-bound","lat":"51.62643637949","lon":"-2.39879686757","node":"E0055152","stoptype":"BCT"},{"AtcoCode":"0170SGX38443","CommonName":"Turnpike Gate","Street":"Sation Road","Indicator":"NW-bound","lat":"51.59782605156","lon":"-2.3987626289","node":"E0053732","stoptype":"BCT"},{"AtcoCode":"0170SGX38444","CommonName":"Tanhouse Lane","Street":"North Road","Indicator":"N-bound","lat":"51.56270146145","lon":"-2.43776610347","node":"E0041810","stoptype":"BCT"},{"AtcoCode":"0170SGX38445","CommonName":"Brewery Hill","Street":"Brewery Hill","Indicator":"E-bound","lat":"51.42289425692","lon":"-2.45374418864","node":"E0053695","stoptype":"BCT"},{"AtcoCode":"0170SGX38446","CommonName":"Swineford Picnic Site","Indicator":"SW-bound","lat":"51.42030272667","lon":"-2.44723259829","node":"E0041944","stoptype":"BCT"},{"AtcoCode":"0170SGX38447","CommonName":"Keynsham Road","Street":"Keynsham Road","Indicator":"S-bound","lat":"51.43070453357","lon":"-2.48164113499","node":"E0041958","stoptype":"BCT"},{"AtcoCode":"0170SGX38450","CommonName":"Oaklodge Farm","Street":"Chesley Hill","Indicator":"SW-bound","lat":"51.45927418258","lon":"-2.45145664615","node":"E0041767","stoptype":"BCT"},{"AtcoCode":"0170SGX38451","CommonName":"Beach Farm Turn","Indicator":"NW-bound","lat":"51.43472783722","lon":"-2.40707916898","node":"E0041761","stoptype":"BCT"},{"AtcoCode":"0170SGX38452","CommonName":"Beach Farm Turn","Street":"Bath Road","Indicator":"S-bound","lat":"51.43497055332","lon":"-2.40709571343","node":"E0041761","stoptype":"BCT"},{"AtcoCode":"0170SGX38456","CommonName":"Dyrham Park House","Indicator":"NW-bound","lat":"51.48006106856","lon":"-2.3726350109","node":"N0064867","stoptype":"BCT"},{"AtcoCode":"0170SGX38458","CommonName":"Doynton Lane","Street":"Church Road","Indicator":"N-bound","lat":"51.46717897791","lon":"-2.4017248616","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGX38459","CommonName":"Doynton Lane","Street":"Church Road","Indicator":"SW-bound","lat":"51.46717043067","lon":"-2.40159522346","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGX38460","CommonName":"Doynton Church","Street":"Church Road","Indicator":"SW-bound","lat":"51.46482477908","lon":"-2.40387784484","node":"E0053702","stoptype":"BCT"},{"AtcoCode":"0170SGX38461","CommonName":"Severnside Works","Indicator":"SW-bound","lat":"51.54643588624","lon":"-2.66847517274","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGX38462","CommonName":"Severnside Works","Indicator":"NE-bound","lat":"51.54654204938","lon":"-2.66877957157","node":"E0041912","stoptype":"BCT"},{"AtcoCode":"0170SGX38464","CommonName":"Prospect Close","Street":"B4055","Indicator":"NW-bound","lat":"51.5410389742","lon":"-2.62141793971","node":"E0041806","stoptype":"BCT"},{"AtcoCode":"0170SGX38466","CommonName":"Over Court","Indicator":"SW-bound","lat":"51.53872695541","lon":"-2.59742278948","node":"E0041893","stoptype":"BCT"},{"AtcoCode":"0170SGX38467","CommonName":"Over Court","Street":"Over Lane","Indicator":"NE-bound","lat":"51.53882445974","lon":"-2.59769801979","node":"E0041893","stoptype":"BCT"},{"AtcoCode":"0170SGX38469","CommonName":"Asda Wal-Mart","Indicator":"Stop J","lat":"51.53012428439","lon":"-2.59875171668","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGX38470","CommonName":"Leisure Centre","Street":"Bradley Stoke Way","Indicator":"W-bound","lat":"51.53526268634","lon":"-2.54437889057","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGX38471","CommonName":"Webbs Wood Roundabout","Street":"Bradley Stoke Way","Indicator":"NW-bound","lat":"51.52837157816","lon":"-2.53932340169","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGX38473","CommonName":"Nupdown","Street":"Nupdown Road","Indicator":"NW-bound","lat":"51.66088671868","lon":"-2.53544550239","node":"E0041913","stoptype":"BCT"},{"AtcoCode":"0170SGX38474","CommonName":"Brick House Farm","Indicator":"SE-bound","lat":"51.65701502139","lon":"-2.55023174004","node":"E0041913","stoptype":"BCT"},{"AtcoCode":"0170SGX38475","CommonName":"Westend Lane","Street":"Camp Road","Indicator":"NW-bound","lat":"51.6322520004","lon":"-2.565550396","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGX38476","CommonName":"The Pound","Street":"Church Road","Indicator":"S-bound","lat":"51.63003098883","lon":"-2.5655805538","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGX38477","CommonName":"The Pound","Street":"Church Road","Indicator":"N-bound","lat":"51.63006646477","lon":"-2.56568212751","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGX38479","CommonName":"The Anchor Inn","Street":"Church Road","Indicator":"S-bound","lat":"51.62897446394","lon":"-2.56652091981","node":"E0053715","stoptype":"BCT"},{"AtcoCode":"0170SGX38480","CommonName":"Manor Walk","Indicator":"SE-bound","lat":"51.61843346871","lon":"-2.52262497559","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGX38481","CommonName":"Post Farm","Indicator":"SW-bound","lat":"51.62251005946","lon":"-2.51981171034","node":"E0041867","stoptype":"BCT"},{"AtcoCode":"0170SGX38482","CommonName":"Post Farm","Street":"Morton Street","Indicator":"NE-bound","lat":"51.6225724839","lon":"-2.51992798456","node":"E0041867","stoptype":"BCT"},{"AtcoCode":"0170SGX38484","CommonName":"Chapel Farm","Indicator":"N-bound","lat":"51.62788724955","lon":"-2.51360330017","node":"E0041880","stoptype":"BCT"},{"AtcoCode":"0170SGX38485","CommonName":"Rockhampton Cross Roads","Indicator":"NW-bound","lat":"51.63988752644","lon":"-2.50605122339","node":"E0053722","stoptype":"BCT"},{"AtcoCode":"0170SGX38486","CommonName":"Manor Farm","Street":"Glouscester Road","Indicator":"W-bound","lat":"51.62129254204","lon":"-2.51040876153","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGY38488","CommonName":"Station Road","Street":"Station Road","Indicator":"W-bound","lat":"51.50718203852","lon":"-2.56343796328","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGY38492","CommonName":"Teewell Hill","Indicator":"E-bound","lat":"51.48100183083","lon":"-2.50135222847","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGY38494","CommonName":"Charnell Road","Indicator":"S-bound","lat":"51.48010868159","lon":"-2.49994562956","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGY38496","CommonName":"Aspects Leisure Centre","Street":"Leisure Road","Indicator":"NE-bound","lat":"51.44854873437","lon":"-2.49981655148","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGY38497","CommonName":"Chipping Sodbury School","Indicator":"N-bound","lat":"51.53385370971","lon":"-2.39565125525","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGY38498","CommonName":"Hawkesbury Upton Pond","Indicator":"N-bound","lat":"51.58447370566","lon":"-2.32606251999","node":"E0041832","stoptype":"BCT"},{"AtcoCode":"0170SGY38503","CommonName":"Alveston Down Post Office","Indicator":"E-bound","lat":"51.58979821244","lon":"-2.53211174351","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGY38504","CommonName":"Alveston Down Post Office","Street":"Greenhill Down","Indicator":"W-bound","lat":"51.58959122451","lon":"-2.53215262793","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGY43140","CommonName":"Folly Farm","Indicator":"SW-bound","lat":"51.57936334171","lon":"-2.28596468596","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGY43141","CommonName":"Folly Farm","Indicator":"NE-bound","lat":"51.5795336822","lon":"-2.28616779462","node":"E0041804","stoptype":"BCT"},{"AtcoCode":"0170SGY43142","CommonName":"The Cross Hands","Indicator":"S-bound","lat":"51.5283746058","lon":"-2.34242615086","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGY43144","CommonName":"The Cross Hands","Indicator":"SW-bound","lat":"51.52803462066","lon":"-2.34184699618","node":"E0041889","stoptype":"BCT"},{"AtcoCode":"0170SGY43145","CommonName":"Woodside Farm","Street":"Abson Road","Indicator":"S-bound","lat":"51.46611206693","lon":"-2.42630311152","node":"N0064862","stoptype":"BCT"},{"AtcoCode":"0170SGY43146","CommonName":"Woodside Farm","Indicator":"N-bound","lat":"51.46622764374","lon":"-2.42666407932","node":"N0064862","stoptype":"BCT"},{"AtcoCode":"0170SGY43147","CommonName":"Tracy Park","Street":"Bath Road","Indicator":"S-bound","lat":"51.44792753041","lon":"-2.41729828015","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGY43148","CommonName":"Tracy Park","Street":"Bath Road","Indicator":"N-bound","lat":"51.44794469287","lon":"-2.41752867433","node":"E0055158","stoptype":"BCT"},{"AtcoCode":"0170SGY43154","CommonName":"Longford","Indicator":"SW-bound","lat":"51.53347797521","lon":"-2.42837413922","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGY43155","CommonName":"Longford","Indicator":"NE-bound","lat":"51.53367593871","lon":"-2.42833274789","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGY43156","CommonName":"Tockington Green","Street":"The Green","Indicator":"E-bound","lat":"51.57658274389","lon":"-2.56627306488","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGY43157","CommonName":"Tockington Green","Street":"The Green","Indicator":"W-bound","lat":"51.57652921633","lon":"-2.5661858164","node":"E0041936","stoptype":"BCT"},{"AtcoCode":"0170SGY43158","CommonName":"Station Road","Street":"High Street","Indicator":"W-bound","lat":"51.45974580401","lon":"-2.47544101124","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGY43248","CommonName":"Beck Close","Street":"Church Farm Road","Indicator":"NE-bound","lat":"51.49025133821","lon":"-2.47614730571","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43249","CommonName":"Beck Close","Street":"Church Farm Road","Indicator":"SW-bound","lat":"51.49019750821","lon":"-2.47611793831","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43250","CommonName":"Johnson Road","Street":"Johnson Road","Indicator":"NW-bound","lat":"51.48748199951","lon":"-2.47613284656","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43251","CommonName":"Johnson Road","Street":"Johnson Road","Indicator":"SE-bound","lat":"51.48717822911","lon":"-2.4756544075","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43252","CommonName":"Wheelers Patch","Street":"Johnson Road","Indicator":"NW-bound","lat":"51.48315478625","lon":"-2.47669259735","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGY43253","CommonName":"Wheelers Patch","Street":"Johnson Road","Indicator":"SE-bound","lat":"51.48316424587","lon":"-2.47657748835","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGY43254","CommonName":"Shackel Hendy Mews","Street":"Wheelers Reach","Indicator":"N-bound","lat":"51.48463296688","lon":"-2.47581513001","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43255","CommonName":"Shackel Hendy Mews","Street":"Wheelers Reach","Indicator":"S-bound","lat":"51.4846244433","lon":"-2.47569982989","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43256","CommonName":"Glevum Close","Street":"Church Farm Road","Indicator":"W-bound","lat":"51.49112126473","lon":"-2.4744855707","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43257","CommonName":"Glevum Close","Street":"Church Farm Road","Indicator":"E-bound","lat":"51.49119290256","lon":"-2.47455833222","node":"E0041809","stoptype":"BCT"},{"AtcoCode":"0170SGY43258","CommonName":"Westerleigh Hill Crossroads","Indicator":"E-bound","lat":"51.51132938706","lon":"-2.42907407109","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGY43259","CommonName":"Westerleigh Hill Crossroads","Indicator":"W-bound","lat":"51.51119467737","lon":"-2.42902957551","node":"E0053730","stoptype":"BCT"},{"AtcoCode":"0170SGY43260","CommonName":"Riding Barn Hill","Street":"Riding Barn Hill","Indicator":"E-bound","lat":"51.4531401838","lon":"-2.44956838498","node":"E0041840","stoptype":"BCT"},{"AtcoCode":"0170SGY43261","CommonName":"Riding Barn Hill","Street":"Riding Barn Hill","Indicator":"W-bound","lat":"51.45301403011","lon":"-2.44963910244","node":"E0041840","stoptype":"BCT"},{"AtcoCode":"0170SGY43262","CommonName":"Lyndale Road","Street":"Westerleigh Road","Indicator":"NE-bound","lat":"51.53890085581","lon":"-2.42063907723","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGY43263","CommonName":"Wellstead Avenue","Street":"Westerleigh Road","Indicator":"NE-bound","lat":"51.53669585232","lon":"-2.42371857104","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGY43264","CommonName":"Wellstead Avenue","Street":"Westerleigh Road","Indicator":"SW-bound","lat":"51.53726702898","lon":"-2.42241183953","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGY43265","CommonName":"Patchway Brook Roundabout","Street":"Bradley Stoke Way","Indicator":"E-bound","lat":"51.5423907347","lon":"-2.56012375897","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGY43266","CommonName":"Pear Tree Road","Street":"Pear Tree Road","Indicator":"N-bound","lat":"51.54443430633","lon":"-2.55771182466","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGY43267","CommonName":"Pear Tree Road","Street":"Pear Tree Road","Indicator":"S-bound","lat":"51.54341688658","lon":"-2.55800220132","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGY43268","CommonName":"Westbourne Road Shops","Street":"Westbourne Road","Indicator":"W-bound","lat":"51.49660093396","lon":"-2.49530038583","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGY43269","CommonName":"Westbourne Road Shops","Street":"Westbourne Road","Indicator":"E-bound","lat":"51.49670007984","lon":"-2.49524384005","node":"E0041766","stoptype":"BCT"},{"AtcoCode":"0170SGY43271","CommonName":"Boscombe Crescent","Street":"Westbourne Road","Indicator":"SE-bound","lat":"51.4976890696","lon":"-2.49738658486","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGY43272","CommonName":"Boscombe Crescent","Street":"Westbourne Road","Indicator":"NW-bound","lat":"51.49762564272","lon":"-2.49750113835","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGZ01452","CommonName":"Bowling Hill","Street":"Bowling Hill","Indicator":"SE-bound","lat":"51.53851970179","lon":"-2.40111305361","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGZ01453","CommonName":"Bowling Hill","Street":"Bowling Hill","Indicator":"NW-bound","lat":"51.5384031123","lon":"-2.40102551793","node":"E0041783","stoptype":"BCT"},{"AtcoCode":"0170SGZ01454","CommonName":"Pegasus Road","Street":"Pegasus Road","Indicator":"SE-bound","lat":"51.52879311213","lon":"-2.59883515517","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGZ01456","CommonName":"Marshfield Community Centre","Street":"Hay Street","Indicator":"W-bound","lat":"51.46288007655","lon":"-2.31366455905","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGZ01457","CommonName":"Marshfield Community Centre","Street":"Hay Street","Indicator":"E-bound","lat":"51.46296096048","lon":"-2.31367950855","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170SGZ01458","CommonName":"The Venue","Street":"The Venue","Indicator":"N-bound","lat":"51.52348306961","lon":"-2.60157615076","node":"E0041797","stoptype":"BCT"},{"AtcoCode":"0170SGZ01459","CommonName":"Railton Jones Close","Street":"Westfield Lane","Indicator":"S-bound","lat":"51.51209693168","lon":"-2.54515453729","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGZ01460","CommonName":"Railton Jones Close","Street":"Westfield Lane","Indicator":"N-bound","lat":"51.51266289796","lon":"-2.54526216811","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGZ01461","CommonName":"Great Stoke Way","Street":"Great Stoke Way","Indicator":"W-bound","lat":"51.50956661352","lon":"-2.54787650284","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGZ01462","CommonName":"Great Stoke Way","Street":"Great Stoke Way","Indicator":"E-bound","lat":"51.509683093","lon":"-2.54796435676","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGZ01463","CommonName":"Marshfield Road","Indicator":"S-bound","lat":"51.50421789936","lon":"-2.3318714954","node":"E0053727","stoptype":"BCT"},{"AtcoCode":"0170SGZ01465","CommonName":"Filton Lane","Street":"Filton Lane","Indicator":"E-bound","lat":"51.5052512742","lon":"-2.54966894269","node":"E0041831","stoptype":"BCT"},{"AtcoCode":"0170SGZ01466","CommonName":"International Academy","Indicator":"SE-bound","lat":"51.52303792459","lon":"-2.50538850282","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGZ01467","CommonName":"John Cabot Academy","Street":"Woodside Road","Indicator":"N-bound","lat":"51.4583019947","lon":"-2.51496396853","node":"E0057243","stoptype":"BCT"},{"AtcoCode":"0170SGZ01468","CommonName":"Marlwood School","Indicator":"SE-bound","lat":"51.59331428366","lon":"-2.53989043347","node":"E0041752","stoptype":"BCT"},{"AtcoCode":"0170SGZ01469","CommonName":"Patchway Community College","Indicator":"W-bound","lat":"51.53974123142","lon":"-2.56884346337","node":"E0041896","stoptype":"BCT"},{"AtcoCode":"0170SGZ01474","CommonName":"Brimsham Green School","Indicator":"E-bound","lat":"51.55201645656","lon":"-2.42394751508","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGZ01475","CommonName":"Cleeve Hill","Street":"Overndale Road","Indicator":"S-bound","lat":"51.49238404251","lon":"-2.50994661834","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGZ01476","CommonName":"Cleeve Hill","Street":"Overndale Road","Indicator":"N-bound","lat":"51.49187922376","lon":"-2.51024346133","node":"E0041802","stoptype":"BCT"},{"AtcoCode":"0170SGZ01480","CommonName":"Hunts Ground Road","Street":"Hunts Ground Road","Indicator":"W-bound","lat":"51.51683532245","lon":"-2.53147686776","node":"E0053725","stoptype":"BCT"},{"AtcoCode":"0170SGZ01481","CommonName":"Springfields","Street":"Gloucester Road North","Indicator":"S-bound","lat":"51.50734364228","lon":"-2.57643654181","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01482","CommonName":"Springfields","Street":"Gloucester Road North","Indicator":"N-bound","lat":"51.50745103836","lon":"-2.57653875832","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01483","CommonName":"Badminton Post Office","Street":"High Street","Indicator":"E-bound","lat":"51.54276172457","lon":"-2.28499959595","node":"E0053694","stoptype":"BCT"},{"AtcoCode":"0170SGZ01484","CommonName":"Victoria Street","Street":"Victoria Street","Indicator":"S-bound","lat":"51.48286824348","lon":"-2.50642741394","node":"E0041923","stoptype":"BCT"},{"AtcoCode":"0170SGZ01486","CommonName":"Serridge Lane","Indicator":"SE-bound","lat":"51.5159419712","lon":"-2.47124161415","node":"N0074111","stoptype":"BCT"},{"AtcoCode":"0170SGZ01488","CommonName":"Serridge Lane","Indicator":"NW-bound","lat":"51.51577142922","lon":"-2.47116779715","node":"N0074111","stoptype":"BCT"},{"AtcoCode":"0170SGZ01489","CommonName":"Mangotsfield School","Street":"Rodway Hill","Indicator":"S-bound","lat":"51.4790586573","lon":"-2.48448329217","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGZ01490","CommonName":"Mangotsfield School","Street":"Rodway Hill","Indicator":"W-bound","lat":"51.47901310618","lon":"-2.48462680586","node":"N0064870","stoptype":"BCT"},{"AtcoCode":"0170SGZ01491","CommonName":"Elizabeth Way","Street":"Carsons Road","Indicator":"S-bound","lat":"51.47471500115","lon":"-2.48029054086","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGZ01492","CommonName":"Elizabeth Way","Street":"Carsons Road","Indicator":"N-bound","lat":"51.47475037582","lon":"-2.48043489568","node":"E0041870","stoptype":"BCT"},{"AtcoCode":"0170SGZ01493","CommonName":"Henfield Cross Roads","Street":"Henfield Road","Indicator":"N-bound","lat":"51.50980927126","lon":"-2.46233096223","node":"E0041838","stoptype":"BCT"},{"AtcoCode":"0170SGZ01494","CommonName":"Henfield Cross Roads","Street":"Henfield Road","Indicator":"S-bound","lat":"51.50980966896","lon":"-2.46223010079","node":"E0041838","stoptype":"BCT"},{"AtcoCode":"0170SGZ01495","CommonName":"The Ring of Bells","Indicator":"S-bound","lat":"51.52256170014","lon":"-2.4707478529","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGZ01496","CommonName":"The Ring of Bells","Indicator":"N-bound","lat":"51.5225792773","lon":"-2.47084892794","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGZ01499","CommonName":"Northville Road","Street":"Gloucester Road North","Indicator":"N-bound","lat":"51.50204209412","lon":"-2.57938067747","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01500","CommonName":"Northville Road","Street":"Filton Road","Indicator":"S-bound","lat":"51.50113528416","lon":"-2.57910985324","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01501","CommonName":"Filton Police Station","Street":"Gloucester Road North","Indicator":"N-bound","lat":"51.50564936556","lon":"-2.57722200692","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01502","CommonName":"Filton Police Station","Street":"Gloucester Road North","Indicator":"S-bound","lat":"51.5053802739","lon":"-2.57708893323","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01503","CommonName":"King George VI","Street":"Filton Avenue","Indicator":"SW-bound","lat":"51.5075188462","lon":"-2.56445072724","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01504","CommonName":"King George VI","Street":"Filton Avenue","Indicator":"N-bound","lat":"51.50708464052","lon":"-2.56499288428","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01505","CommonName":"Wallscourt Road","Street":"Filton Avenue","Indicator":"o/s 606","lat":"51.50392790916","lon":"-2.56699969886","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01507","CommonName":"Wallscourt Road","Street":"Filton Avenue","Indicator":"o/s 613","lat":"51.50334098383","lon":"-2.56751107663","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01508","CommonName":"The Bulldog","Street":"Filton Avenue","Indicator":"NE-bound","lat":"51.5015585741","lon":"-2.56979401586","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01509","CommonName":"The Bulldog","Street":"Filton Avenue","Indicator":"S-bound","lat":"51.50117983103","lon":"-2.57001979748","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01510","CommonName":"Deerhurst","Indicator":"W-bound","lat":"51.5319595043","lon":"-2.42560635936","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGZ01511","CommonName":"Hardwicke","Street":"Barnwood Road","Indicator":"N-bound","lat":"51.53073640787","lon":"-2.42814656921","node":"E0053734","stoptype":"BCT"},{"AtcoCode":"0170SGZ01512","CommonName":"The Stream","Street":"Bristol Road","Indicator":"S-bound","lat":"51.50647764596","lon":"-2.51931092998","node":"E0041825","stoptype":"BCT"},{"AtcoCode":"0170SGZ01513","CommonName":"Ellan Hay Road","Street":"Baileys Court Road","Indicator":"SW-bound","lat":"51.52648705816","lon":"-2.53261272683","node":"E0053697","stoptype":"BCT"},{"AtcoCode":"0170SGZ01514","CommonName":"Blenheim Drive","Street":"Filton Avenue","Indicator":"SE-bound","lat":"51.5140709405","lon":"-2.56873968042","node":"E0053705","stoptype":"BCT"},{"AtcoCode":"0170SGZ01515","CommonName":"Gillingstool","Indicator":"W-bound","lat":"51.60721126262","lon":"-2.52082098545","node":"E0055157","stoptype":"BCT"},{"AtcoCode":"0170SGZ01516","CommonName":"Longwell Green Asda","Indicator":"NE-bound","lat":"51.44808864593","lon":"-2.49594063336","node":"E0041864","stoptype":"BCT"},{"AtcoCode":"0170SGZ01518","CommonName":"St Barnabas Church","Street":"St Barnabas Close","Indicator":"W-bound","lat":"51.45760196077","lon":"-2.46970473929","node":"E0041949","stoptype":"BCT"},{"AtcoCode":"0170SGZ01519","CommonName":"Greenacres Park","Street":"Ram Hill","Indicator":"S-bound","lat":"51.51833212588","lon":"-2.46488175778","node":"N0074111","stoptype":"BCT"},{"AtcoCode":"0170SGZ01520","CommonName":"The Rising Sun","Street":"Ryecroft Road","Indicator":"S-bound","lat":"51.53271986072","lon":"-2.47575432083","node":"E0053706","stoptype":"BCT"},{"AtcoCode":"0170SGZ01521","CommonName":"Oldlands Avenue","Street":"Woodend Road","Indicator":"N-bound","lat":"51.5278461625","lon":"-2.47137898022","node":"E0041785","stoptype":"BCT"},{"AtcoCode":"0170SGZ01522","CommonName":"Hicks Common Pond","Street":"Flaxpits Lane","Indicator":"E-bound","lat":"51.5214679516","lon":"-2.50036978657","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SGZ01523","CommonName":"Hicks Common Pond","Street":"Flaxpits Lane","Indicator":"W-bound","lat":"51.52140519849","lon":"-2.5003258594","node":"E0053733","stoptype":"BCT"},{"AtcoCode":"0170SVRNBCH0","CommonName":"Severn Beach Rail Station","Indicator":"Entrance","lat":"51.55990968147","lon":"-2.66451829242","node":"E0041912","stoptype":"RSE"},{"AtcoCode":"0170WIA10992","CommonName":"Ashwick Turn","Indicator":"N-bound","lat":"51.43398087862","lon":"-2.29293844297","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170WIA10994","CommonName":"Southernwood","Indicator":"N-bound","lat":"51.43106505426","lon":"-2.29395546346","node":"E0053714","stoptype":"BCT"},{"AtcoCode":"0170YATE0","CommonName":"Yate Rail Station","Indicator":"Entrance","lat":"51.54084478643","lon":"-2.43250954026","node":"E0053734","stoptype":"RSE"},{"AtcoCode":"0170ZZAVBIT0","CommonName":"Bitton (Avon Valley Railway)","lat":"51.43034906652","lon":"-2.47621449506","node":"E0053695","stoptype":"TMU"},{"AtcoCode":"0170ZZAVOLD0","CommonName":"Oldland (Avon Valley Railway)","lat":"51.44366541037","lon":"-2.46734584031","node":"E0053716","stoptype":"TMU"},{"AtcoCode":"018000001","CommonName":"Durnford Landrovers","Street":"Box Road","Indicator":"E-bound","lat":"51.40395485861","lon":"-2.30469285609","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"018000002","CommonName":"North Meadows","Indicator":"N-bound","lat":"51.31907972772","lon":"-2.41640002889","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"018000003","CommonName":"North Meadows","Indicator":"S-bound","lat":"51.31921490653","lon":"-2.41631515634","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"018000004","CommonName":"Manor Copse Road","Indicator":"NW-bound","lat":"51.29052167381","lon":"-2.42886162423","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"018000005","CommonName":"Manor Park","Indicator":"SE-bound","lat":"51.2893053448","lon":"-2.42952427746","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"018000006","CommonName":"Elm Place","Indicator":"S-bound","lat":"51.37213594829","lon":"-2.36652837528","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"018000007","CommonName":"Cross Street","Indicator":"NW-bound","lat":"51.42249050386","lon":"-2.49569213782","node":"E0035104","stoptype":"BCT"},{"AtcoCode":"018000008","CommonName":"Wheelers Road","Indicator":"E-bound","lat":"51.29101073754","lon":"-2.4633270208","node":"E0035143","stoptype":"BCT"},{"AtcoCode":"018000009","CommonName":"Hadrian Close","Indicator":"NE-bound","lat":"51.41930936549","lon":"-2.4952406629","node":"E0035104","stoptype":"BCT"},{"AtcoCode":"018000010","CommonName":"Lucklands Road","Indicator":"NW-bound","lat":"51.39445614522","lon":"-2.38797895098","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"018000011","CommonName":"Baptist Church","Indicator":"NE-bound","lat":"51.37682638503","lon":"-2.35294544849","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"018000012","CommonName":"Widcombe Parade","Indicator":"E-bound","lat":"51.37655395224","lon":"-2.35383413283","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAA01315","CommonName":"Ralph Allen School Grounds","Indicator":"W-bound","lat":"51.36376883888","lon":"-2.32878625439","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAA01316","CommonName":"Sainsburys","Street":"Bus Bay","Indicator":"NE-bound","lat":"51.38113114378","lon":"-2.37112646406","node":"E0035029","stoptype":"BCT"},{"AtcoCode":"0180BAA01317","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bk","lat":"51.37794943003","lon":"-2.35916101212","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01318","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bl","lat":"51.37796661946","lon":"-2.35941976855","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01319","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 1","lat":"51.37788538745","lon":"-2.35951970689","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01320","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 2","lat":"51.37788551978","lon":"-2.35947660437","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01321","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 3","lat":"51.37787666062","lon":"-2.35943343137","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01322","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 4","lat":"51.37787674882","lon":"-2.35940469637","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01323","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 5","lat":"51.3778768811","lon":"-2.35936159385","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01324","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 6","lat":"51.3778680219","lon":"-2.35931842089","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01325","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 7","lat":"51.37785916268","lon":"-2.35927524794","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01326","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 8","lat":"51.37785929492","lon":"-2.35923214545","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01327","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 9","lat":"51.37785043567","lon":"-2.35918897253","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01328","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 10","lat":"51.37785056787","lon":"-2.35914587003","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01329","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 11","lat":"51.37784170859","lon":"-2.35910269714","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01330","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 12","lat":"51.37784184077","lon":"-2.35905959466","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01331","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 13","lat":"51.37783298145","lon":"-2.35901642179","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01332","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 14","lat":"51.3778331136","lon":"-2.35897331931","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01333","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 15","lat":"51.37782425425","lon":"-2.35893014646","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01334","CommonName":"Bus Station","Street":"Bath Bus Station","Indicator":"Bay 16","lat":"51.37782438636","lon":"-2.358887044","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAA01335","CommonName":"Mount Road","Street":"The Hollow","Indicator":"SW-bound","lat":"51.37277541702","lon":"-2.39655897111","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAA01336","CommonName":"Kelston View","Street":"The Hollow","Indicator":"NE-bound","lat":"51.37398381731","lon":"-2.39552065281","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAA01337","CommonName":"Oak Street","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.37849628706","lon":"-2.36550160284","node":"E0035029","stoptype":"BCT"},{"AtcoCode":"0180BAA01338","CommonName":"Oak Street","Street":"Lower Bristol Road","Indicator":"NW-bound","lat":"51.37841451146","lon":"-2.3657739435","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAA01342","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bm","lat":"51.37806623106","lon":"-2.35919066267","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01343","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bn","lat":"51.3780487328","lon":"-2.35903247868","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01344","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bp","lat":"51.37807641184","lon":"-2.35880280877","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01345","CommonName":"CircleBath Hospital","Street":"Foxcote Avenue","Indicator":"SW-bound","lat":"51.31171348457","lon":"-2.41695023729","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAA01346","CommonName":"Manvers Street","Street":"Manvers Street","Indicator":"Bf","lat":"51.37850410622","lon":"-2.35713946165","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01347","CommonName":"Manvers Street","Street":"Manvers Street","Indicator":"Bg","lat":"51.37837822556","lon":"-2.35713848134","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAA01348","CommonName":"Quarry Road","Street":"North Road","Indicator":"E-bound","lat":"51.37849658246","lon":"-2.33535745474","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAA01349","CommonName":"Sainsbury's","Street":"Frome Road","Indicator":"NW-bound","lat":"51.35693280293","lon":"-2.37164882391","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAA01350","CommonName":"Tesco","Indicator":"S-bound","lat":"51.41683374005","lon":"-2.50016065687","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAA01351","CommonName":"Bath Racecourse","Indicator":"P&R","lat":"51.41913923412","lon":"-2.40625031123","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAA01352","CommonName":"Butchers Arms","Street":"Timsbury Road","Indicator":"Stop D","lat":"51.34366856862","lon":"-2.48291008201","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAA01353","CommonName":"Church Lane","Indicator":"W-bound","lat":"51.30745452434","lon":"-2.5030873634","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAA01354","CommonName":"Pope Court","Indicator":"N-bound","lat":"51.37782214839","lon":"-2.43634409107","node":"N0080954","stoptype":"BCT"},{"AtcoCode":"0180BAA01355","CommonName":"Western Riverside","Indicator":"SE-bound","lat":"51.38213858596","lon":"-2.37383602529","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAA01356","CommonName":"Arrivals Square","Indicator":"Stop B","lat":"51.37911855506","lon":"-2.32524676988","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAA01357","CommonName":"Arrivals Square","Indicator":"Stop C","lat":"51.37884968751","lon":"-2.3249287637","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAC01277","CommonName":"St James's Parade","Street":"James Street West","Indicator":"Wy","lat":"51.38017954605","lon":"-2.36202345567","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC01278","CommonName":"Bus Station","lat":"51.37765253507","lon":"-2.35921615811","node":"N0078123","stoptype":"BCS"},{"AtcoCode":"0180BAC01279","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bq","lat":"51.37799067146","lon":"-2.35743718885","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC01280","CommonName":"Recycling Centre","Street":"A367","Indicator":"NE-bound","lat":"51.35007190689","lon":"-2.39103558144","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC23422","CommonName":"King Edward's School","Street":"North Road","Indicator":"SE-bound","lat":"51.38614346081","lon":"-2.34330275607","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC23430","CommonName":"Northend","Street":"Northend","Indicator":"NE-bound","lat":"51.41352102329","lon":"-2.31856034244","node":"E0035061","stoptype":"BCT"},{"AtcoCode":"0180BAC23432","CommonName":"Ashcombe Farm","Street":"Tadwick Lane","Indicator":"S-bound","lat":"51.42411000244","lon":"-2.36580808736","node":"E0035122","stoptype":"BCT"},{"AtcoCode":"0180BAC23433","CommonName":"Ashcombe Farm","Street":"Tadwick Lane","Indicator":"N-bound","lat":"51.42401995373","lon":"-2.36585051486","node":"E0035122","stoptype":"BCT"},{"AtcoCode":"0180BAC23435","CommonName":"Windsor Villas","Street":"Upper Bristol Road","Indicator":"NE-bound","lat":"51.38442851924","lon":"-2.38309454645","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC23437","CommonName":"Belluton Farm","Street":"B3130","Indicator":"SW-bound","lat":"51.37812099454","lon":"-2.55483969212","node":"E0034974","stoptype":"BCT"},{"AtcoCode":"0180BAC23439","CommonName":"Entry Hill top","Street":"Entry Hill","Indicator":"N-bound","lat":"51.35879160765","lon":"-2.36385101293","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC23440","CommonName":"Burleigh Gardens","Street":"South Lea Road","Indicator":"W-bound","lat":"51.3911519507","lon":"-2.39729279822","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC23441","CommonName":"Freshford Rectory","Street":"Church Lane","Indicator":"SE-bound","lat":"51.34116938034","lon":"-2.30680274843","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC23442","CommonName":"Freshford Rectory","Street":"Crowe Lane","Indicator":"SW-bound","lat":"51.34128815017","lon":"-2.3060857225","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC23443","CommonName":"Freshford Church","Street":"High Street","Indicator":"NE-bound","lat":"51.33964053958","lon":"-2.30344761435","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC23444","CommonName":"Freshford Church","Street":"High Street","Indicator":"SW-bound","lat":"51.33964990326","lon":"-2.30330411745","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC23445","CommonName":"Tyning House","Street":"Freshford Lane","Indicator":"E-bound","lat":"51.33858676427","lon":"-2.31096295739","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC23446","CommonName":"Tyning House","Street":"Freshford Lane","Indicator":"SW-bound","lat":"51.3385150223","lon":"-2.31089069395","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC23447","CommonName":"Rushgrove Gardens","Street":"Wick Road","Indicator":"NE-bound","lat":"51.33298799247","lon":"-2.59752847933","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC23449","CommonName":"Woodcroft","Street":"Woodcroft","Indicator":"N-bound","lat":"51.33083494464","lon":"-2.6018208106","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC23450","CommonName":"Woodcroft","Street":"Woodcroft","Indicator":"S-bound","lat":"51.33083553476","lon":"-2.6017059923","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC23451","CommonName":"Smallcombe Road","Street":"Bath New Road","Indicator":"N-bound","lat":"51.29969786669","lon":"-2.45389045749","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC23452","CommonName":"St Marks School","Street":"Spring Lane","Indicator":"NW-bound","lat":"51.39909207069","lon":"-2.34917829976","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC23453","CommonName":"St Marks School","Street":"Spring Lane","Indicator":"SE-bound","lat":"51.3992178653","lon":"-2.34920800736","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC23454","CommonName":"North Parade","Street":"North Parade","Indicator":"Cd","lat":"51.38075451362","lon":"-2.35632360066","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC23455","CommonName":"Combe Hay Village","Street":"Unclassified Road","Indicator":"S-bound","lat":"51.33807919349","lon":"-2.38217666508","node":"E0052909","stoptype":"BCT"},{"AtcoCode":"0180BAC23456","CommonName":"Russet Way","Street":"Orchard Way","Indicator":"NW-bound","lat":"51.31259117327","lon":"-2.42044463306","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC23457","CommonName":"French Close","Street":"Orchard Way","Indicator":"NE-bound","lat":"51.31439934246","lon":"-2.42021725377","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC23458","CommonName":"Faulkland View","Street":"Orchard Way","Indicator":"NE-bound","lat":"51.31547193688","lon":"-2.41698432702","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC23459","CommonName":"Westbury View","Street":"Orchard Way","Indicator":"E-bound","lat":"51.31668571745","lon":"-2.41448430689","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC23460","CommonName":"The Beeches","Street":"Wellsway","Indicator":"NE-bound","lat":"51.35798598759","lon":"-2.37691370964","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC23461","CommonName":"The Beeches","Street":"Wellsway","Indicator":"SW-bound","lat":"51.35789639629","lon":"-2.37681244264","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC23463","CommonName":"Windsor Bridge Road","Street":"Windsor Bridge Road","Indicator":"N-bound","lat":"51.38309498375","lon":"-2.38118663223","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC23465","CommonName":"The Inn","Street":"The Hill","Indicator":"SW-bound","lat":"51.33867526969","lon":"-2.30118741054","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC23466","CommonName":"Royal Crescent","Street":"Brock Street","Indicator":"W-bound","lat":"51.38637806947","lon":"-2.36675718656","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC23467","CommonName":"Cameley Green","Street":"Shaws Way","Indicator":"E-bound","lat":"51.37874620632","lon":"-2.40695565576","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC23468","CommonName":"Garrick Road","Street":"Sheridan Road","Indicator":"N-bound","lat":"51.37618320071","lon":"-2.40706222134","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC23469","CommonName":"Sheridan Road","Street":"Poolemead Road","Indicator":"N-bound","lat":"51.37492278086","lon":"-2.40492472834","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC23470","CommonName":"Outside 23","Street":"Kelston View","Indicator":"E-bound","lat":"51.37613182705","lon":"-2.39847010815","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC23471","CommonName":"Highland Road","Street":"Shophouse Road","Indicator":"NW-bound","lat":"51.37835847353","lon":"-2.39144912659","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC23472","CommonName":"Teddington Close","Street":"Southdown Road","Indicator":"SW-bound","lat":"51.37331470705","lon":"-2.38857589586","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC23474","CommonName":"Broadlands Academy","Indicator":"E-bound","lat":"51.41639304512","lon":"-2.50853937466","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC23475","CommonName":"Ubley Church","Street":"The Street","Indicator":"NW-bound","lat":"51.32142638604","lon":"-2.67650594005","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC23477","CommonName":"Druids Arms","Indicator":"S-bound","lat":"51.3653308764","lon":"-2.57976461916","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC23479","CommonName":"Stanton Drew Po","Street":"Bromley Road","Indicator":"S-bound","lat":"51.35743215074","lon":"-2.57692180227","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC23480","CommonName":"High Street","Street":"High Street","Indicator":"NE-bound","lat":"51.3037924715","lon":"-2.61981393858","node":"E0052914","stoptype":"BCT"},{"AtcoCode":"0180BAC23481","CommonName":"St Gregory's School","Street":"Combe Hill Lane","Indicator":"S-bound","lat":"51.35387871301","lon":"-2.38186302399","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC23483","CommonName":"Unity Road","Street":"Unity Road","Indicator":"S-bound","lat":"51.41292169015","lon":"-2.48752203931","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC23484","CommonName":"Greenleigh Farm","Street":"Wells Road","Indicator":"N-bound","lat":"51.37992192787","lon":"-2.62232203135","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC23485","CommonName":"Sacred Heart","Street":"High Street","Indicator":"W-bound","lat":"51.36514950315","lon":"-2.61702248468","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC23486","CommonName":"Brook Copse","Street":"A368","Indicator":"E-bound","lat":"51.33813257019","lon":"-2.58301017748","node":"E0052940","stoptype":"BCT"},{"AtcoCode":"0180BAC23487","CommonName":"Broadcroft","Street":"Winford Road","Indicator":"E-bound","lat":"51.36549574074","lon":"-2.62126454842","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC23488","CommonName":"Portbridge Farm","Street":"Winford Road","Indicator":"SE-bound","lat":"51.36695929168","lon":"-2.63007547144","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC23489","CommonName":"Portbridge Farm","Street":"Winford Road","Indicator":"NW-bound","lat":"51.36692263167","lon":"-2.63020424907","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC23491","CommonName":"Bonhill Road","Street":"Bonhill Road","Indicator":"S-bound","lat":"51.33760222595","lon":"-2.59371254544","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC23493","CommonName":"Bsuc Student's Union","Street":"Corston Drive","Indicator":"W-bound","lat":"51.37331660179","lon":"-2.44132949263","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC23495","CommonName":"Downsway","Street":"Farrington Road","Indicator":"NE-bound","lat":"51.30541627021","lon":"-2.50865972265","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30005","CommonName":"Laura Place","Street":"Great Pulteney Street","Indicator":"NE-bound","lat":"51.3839392856","lon":"-2.35575919058","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30007","CommonName":"Holburne Museum","Street":"Great Pulteney Street","Indicator":"E-bound","lat":"51.38534382232","lon":"-2.35217754232","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30008","CommonName":"Forester Road","Street":"Beckford Road","Indicator":"NE-bound","lat":"51.38715662519","lon":"-2.35035201151","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30009","CommonName":"Darlington Road","Indicator":"NE-bound","lat":"51.38763666085","lon":"-2.34615937645","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30011","CommonName":"Minster Way","Street":"Warminster Road","Indicator":"NE-bound","lat":"51.38907611322","lon":"-2.34283609227","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30012","CommonName":"Trossachs Drive","Street":"Warminster Road","Indicator":"E-bound","lat":"51.39073284883","lon":"-2.33896807832","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30013","CommonName":"St George's Hill","Street":"Bathampton Lane","Indicator":"NE-bound","lat":"51.39215058601","lon":"-2.33373266861","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30014","CommonName":"Bathampton Lane","Street":"Bathampton Lane","Indicator":"NE-bound","lat":"51.3935031311","lon":"-2.32921510555","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30015","CommonName":"Down Lane Bottom","Street":"Down Lane","Indicator":"S-bound","lat":"51.39511744995","lon":"-2.32426793419","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30016","CommonName":"Holcombe Vale","Street":"Holcombe Vale","Indicator":"S-bound","lat":"51.3943353854","lon":"-2.32092786632","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30017","CommonName":"Methodist Church","Street":"Holcombe Lane","Indicator":"W-bound","lat":"51.39347728616","lon":"-2.32234475723","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30018","CommonName":"Methodist Church","Indicator":"E-bound","lat":"51.39354212355","lon":"-2.32165532152","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30020","CommonName":"Holcombe Lane","Street":"Down Lane","Indicator":"S-bound","lat":"51.39322076436","lon":"-2.32406767035","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30021","CommonName":"Down Lane Top","Street":"Warminster Road","Indicator":"W-bound","lat":"51.39187928139","lon":"-2.32469056328","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30022","CommonName":"Devonshire Road","Street":"Warminster Road","Indicator":"W-bound","lat":"51.39194897771","lon":"-2.32871528608","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30023","CommonName":"St George's Hill","Street":"Warminster Road","Indicator":"SW-bound","lat":"51.39159098221","lon":"-2.33447594522","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30024","CommonName":"Trossachs Drive","Street":"Warminster Road","Indicator":"W-bound","lat":"51.39068006409","lon":"-2.3385652761","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30025","CommonName":"Minster Way","Street":"Warminster Road","Indicator":"SW-bound","lat":"51.38894149353","lon":"-2.34274885762","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30027","CommonName":"Darlington Road","Street":"Beckford Road","Indicator":"W-bound","lat":"51.38738025887","lon":"-2.34772386","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30029","CommonName":"Forester Road","Street":"Beckford Road","Indicator":"SW-bound","lat":"51.38685883132","lon":"-2.35070900225","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30031","CommonName":"Holburne Museum","Street":"Great Pulteney Street","Indicator":"W-bound","lat":"51.38523631356","lon":"-2.35204738513","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30032","CommonName":"Laura Place","Street":"Great Pulteney Street","Indicator":"SW-bound","lat":"51.38383182444","lon":"-2.35561465964","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30033","CommonName":"St George's Hill","Street":"St Georges Hill","Indicator":"E-bound","lat":"51.39215189578","lon":"-2.33327276415","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30034","CommonName":"Down Lane Top","Street":"Warminster Road","Indicator":"E-bound","lat":"51.3920039659","lon":"-2.32512261445","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30035","CommonName":"Arrivals Square","Indicator":"Stop A","lat":"51.37891115159","lon":"-2.32546082125","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAC30037","CommonName":"The Avenue","Street":"Norwood Avenue","Indicator":"S-bound","lat":"51.37607274574","lon":"-2.32439186636","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAC30038","CommonName":"The Avenue","Street":"Norwood Avenue","Indicator":"NE-bound","lat":"51.37591901395","lon":"-2.32470685791","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAC30039","CommonName":"Oakley","Street":"Claverton Down Road","Indicator":"NW-bound","lat":"51.37441423004","lon":"-2.32906369776","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30040","CommonName":"Oakley","Street":"Claverton Down Road","Indicator":"SE-bound","lat":"51.37424585103","lon":"-2.32818612077","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30041","CommonName":"North Road","Street":"Bathwick Hill","Indicator":"NW-bound","lat":"51.37683333676","lon":"-2.33212696861","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30042","CommonName":"North Road","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.37661025928","lon":"-2.33152192038","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30043","CommonName":"Woodland Place","Street":"Bathwick Hill","Indicator":"W-bound","lat":"51.37751006559","lon":"-2.33445944144","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30044","CommonName":"Woodland Place","Street":"Bathwick Hill","Indicator":"E-bound","lat":"51.37743989667","lon":"-2.33384111837","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30045","CommonName":"Smallcombe House","Street":"Bathwick Hill","Indicator":"E-bound","lat":"51.37786981127","lon":"-2.33756551864","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30046","CommonName":"Smallcombe House","Street":"Bathwick Hill","Indicator":"W-bound","lat":"51.37779671884","lon":"-2.33796727951","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30047","CommonName":"Youth Hostel","Street":"Bathwick Hill","Indicator":"NW-bound","lat":"51.37867085154","lon":"-2.34040192932","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30048","CommonName":"Youth Hostel","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.37859109694","lon":"-2.33999903142","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30049","CommonName":"White Lodge","Street":"Bathwick Hill","Indicator":"NW-bound","lat":"51.37992004855","lon":"-2.34370158527","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30050","CommonName":"White Lodge","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.37976114964","lon":"-2.34269460387","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30051","CommonName":"Cleveland Walk","Street":"Bathwick Hill","Indicator":"N-bound","lat":"51.3809213852","lon":"-2.34564887852","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30052","CommonName":"Cleveland Walk","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.38099365632","lon":"-2.34553447273","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30053","CommonName":"Sydney Buildings","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.38269429153","lon":"-2.3481625109","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30054","CommonName":"Raby Gardens","Street":"Bathwick Hill","Indicator":"NW-bound","lat":"51.38328151561","lon":"-2.35025055304","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30055","CommonName":"St Mary's Church","Street":"Bathwick Hill","Indicator":"SE-bound","lat":"51.38393591432","lon":"-2.35091656023","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30056","CommonName":"Edward Street","Street":"Edward Street","Indicator":"N-bound","lat":"51.3846132203","lon":"-2.35293353811","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30057","CommonName":"Edward Street","Street":"Edward Street","Indicator":"S-bound","lat":"51.38469448995","lon":"-2.35281920384","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30058","CommonName":"Copseland","Street":"Widcombe Hill","Indicator":"W-bound","lat":"51.37490531666","lon":"-2.33346349594","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30059","CommonName":"Macaulay Buildings","Street":"Widcombe Hill","Indicator":"E-bound","lat":"51.37372435899","lon":"-2.34076748004","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30060","CommonName":"Macaulay Buildings","Street":"Widcombe Hill","Indicator":"W-bound","lat":"51.37360834714","lon":"-2.34046492146","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30061","CommonName":"The Tyning","Street":"Widcombe Hill","Indicator":"E-bound","lat":"51.37521920292","lon":"-2.34916892247","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30062","CommonName":"The Tyning","Street":"Widcombe Hill","Indicator":"NW-bound","lat":"51.37529819665","lon":"-2.34981604064","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30063","CommonName":"Widcombe Hall","Indicator":"E-bound","lat":"51.37459324159","lon":"-2.34496904617","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30064","CommonName":"Widcombe Hall","Street":"Widcombe Hill","Indicator":"W-bound","lat":"51.37450328433","lon":"-2.34498273636","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30065","CommonName":"Widcombe Parade","Street":"Claverton Street","Indicator":"W-bound","lat":"51.37653196769","lon":"-2.35515576655","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30067","CommonName":"Pulteney Gardens","Street":"Pulteney Road","Indicator":"S-bound","lat":"51.37956545358","lon":"-2.35108427218","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30068","CommonName":"Pulteney Gardens","Street":"Pulteney Road","Indicator":"N-bound","lat":"51.37999635511","lon":"-2.35131746738","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30069","CommonName":"Bathwick Street","Street":"Bathwick Street","Indicator":"SE-bound","lat":"51.38744531625","lon":"-2.35302719472","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30070","CommonName":"Henrietta Court","Street":"Bathwick Street","Indicator":"NW-bound","lat":"51.38836596444","lon":"-2.35484504715","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30072","CommonName":"St John's Road","Street":"Saint John's Road","Indicator":"NE-bound","lat":"51.3871733281","lon":"-2.35673275633","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30076","CommonName":"Rockliffe Road","Street":"Rockliffe Road","Indicator":"E-bound","lat":"51.38983164424","lon":"-2.35185272983","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30077","CommonName":"Forester Avenue","Street":"Forester Road","Indicator":"S-bound","lat":"51.38928803287","lon":"-2.35022458679","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30078","CommonName":"Powlett Road","Street":"Forester Road","Indicator":"S-bound","lat":"51.38780383894","lon":"-2.35041444151","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30079","CommonName":"Rainbow Wood Farm","Street":"Claverton Down Road","Indicator":"E-bound","lat":"51.37255346908","lon":"-2.32241317599","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30080","CommonName":"Rainbow Wood Farm","Street":"Claverton Down Road","Indicator":"W-bound","lat":"51.37321153231","lon":"-2.3250612155","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30081","CommonName":"Brassknocker Hill","Indicator":"W-bound","lat":"51.36595194747","lon":"-2.3197237842","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30082","CommonName":"Flatwoods Road","Street":"Claverton Down Road","Indicator":"E-bound","lat":"51.36546929517","lon":"-2.3219468335","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30083","CommonName":"Flatwoods Road","Street":"Claverton Down Road","Indicator":"W-bound","lat":"51.36538860838","lon":"-2.32186008371","node":"E0034992","stoptype":"BCT"},{"AtcoCode":"0180BAC30084","CommonName":"Ralph Allen School","Street":"Claverton Down Road","Indicator":"W-bound","lat":"51.36378954015","lon":"-2.33101273469","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30085","CommonName":"Ralph Allen School","Street":"Claverton Down Road","Indicator":"E-bound","lat":"51.36387038264","lon":"-2.33104204485","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30086","CommonName":"Shaft Road","Street":"North Road","Indicator":"E-bound","lat":"51.3631411845","lon":"-2.33764386972","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30087","CommonName":"Shaft Road","Street":"North Road","Indicator":"W-bound","lat":"51.36290325407","lon":"-2.33907843461","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30088","CommonName":"Tyning Road","Street":"North Road","Indicator":"W-bound","lat":"51.36256108003","lon":"-2.3423363186","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30091","CommonName":"The Firs","Street":"North Road","Indicator":"SW-bound","lat":"51.3611842853","lon":"-2.34878922697","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30092","CommonName":"Stonehouse Lane","Street":"North Road","Indicator":"NE-bound","lat":"51.36091128311","lon":"-2.34987870479","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30093","CommonName":"Mulberry Park","Street":"Bradford Road","Indicator":"E-bound","lat":"51.35990000984","lon":"-2.35426583459","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30094","CommonName":"Mulberry Park","Street":"Bradford Road","Indicator":"W-bound","lat":"51.36003005477","lon":"-2.35288806119","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30095","CommonName":"Hadley Arms","Street":"The Avenue","Indicator":"S-bound","lat":"51.36226555212","lon":"-2.34499126129","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30096","CommonName":"Hadley Arms","Street":"The Avenue","Indicator":"N-bound","lat":"51.36212105289","lon":"-2.34520561859","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30097","CommonName":"Co-op","Street":"The Avenue","Indicator":"NE-bound","lat":"51.36009380389","lon":"-2.34659787167","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30098","CommonName":"Combe Down School","Street":"Church Road","Indicator":"W-bound","lat":"51.359202027","lon":"-2.34713689239","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30099","CommonName":"Combe Down Nursery","Street":"Combe Road","Indicator":"SE-bound","lat":"51.35924557638","lon":"-2.35062719194","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30100","CommonName":"Combe Down Nursery","Street":"Combe Road","Indicator":"NW-bound","lat":"51.3592540086","lon":"-2.35081396263","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30101","CommonName":"Prior Park Cottages","Street":"Prior Park Road","Indicator":"SE-bound","lat":"51.3758377981","lon":"-2.35277980143","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30102","CommonName":"Bewdley Road","Street":"Prior Park Road","Indicator":"NW-bound","lat":"51.37367684909","lon":"-2.35076623255","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30103","CommonName":"Bewdley Road","Street":"Prior Park Road","Indicator":"SE-bound","lat":"51.37365933941","lon":"-2.35060806685","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30104","CommonName":"Perrymead","Street":"Ralph Allen Drive","Indicator":"S-bound","lat":"51.37227037933","lon":"-2.34901717994","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30105","CommonName":"Perrymead","Street":"Ralph Allen Drive","Indicator":"W-bound","lat":"51.37219968846","lon":"-2.34860002604","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC30106","CommonName":"Middle Hill Lodge","Street":"Ralph Allen Drive","Indicator":"S-bound","lat":"51.36976171348","lon":"-2.34598137867","node":"E0035077","stoptype":"BCT"},{"AtcoCode":"0180BAC30107","CommonName":"Middle Hill Lodge","Street":"Ralph Allen Drive","Indicator":"NW-bound","lat":"51.36983317845","lon":"-2.34613993628","node":"E0035077","stoptype":"BCT"},{"AtcoCode":"0180BAC30109","CommonName":"Prior Park Gardens","Indicator":"S-bound","lat":"51.36628234135","lon":"-2.34584022562","node":"E0035077","stoptype":"BCT"},{"AtcoCode":"0180BAC30110","CommonName":"Prior Park College","Street":"Ralph Allen Drive","Indicator":"N-bound","lat":"51.36496885986","lon":"-2.3460745095","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30111","CommonName":"Prior Park College","Street":"Ralph Allen Drive","Indicator":"S-bound","lat":"51.36468219246","lon":"-2.34571325431","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30113","CommonName":"Masons Arms","Street":"North Road","Indicator":"E-bound","lat":"51.36258135484","lon":"-2.34462019616","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC30114","CommonName":"Foxhill House","Street":"Fox Hill","Indicator":"N-bound","lat":"51.35964877534","lon":"-2.3570501513","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30115","CommonName":"Bradford Park","Street":"Fox Hill","Indicator":"N-bound","lat":"51.36179002269","lon":"-2.35665029052","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30116","CommonName":"Queen's Drive","Street":"Fox Hill","Indicator":"N-bound","lat":"51.36324703957","lon":"-2.35653234597","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30117","CommonName":"Meare Road","Street":"Queen's Drive","Indicator":"W-bound","lat":"51.3635655163","lon":"-2.35824406176","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30118","CommonName":"Kewstoke Road","Street":"Queen's Drive","Indicator":"S-bound","lat":"51.36188054066","lon":"-2.35939429729","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30119","CommonName":"Quantocks","Street":"Hawthorn Grove","Indicator":"E-bound","lat":"51.36026339229","lon":"-2.35895076203","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30120","CommonName":"Foxhill House","Street":"Bradford Road","Indicator":"W-bound","lat":"51.3591623139","lon":"-2.35734796834","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30121","CommonName":"Bradford Road Shops","Street":"Bradford Road","Indicator":"E-bound","lat":"51.35902146354","lon":"-2.35930009678","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30122","CommonName":"Bradford Road Shops","Street":"Bradford Road","Indicator":"W-bound","lat":"51.35891356549","lon":"-2.35929925202","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30123","CommonName":"Entry Hill","Street":"Bradford Road","Indicator":"W-bound","lat":"51.35837190445","lon":"-2.36291417178","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30124","CommonName":"Bradford Road","Street":"Southstoke Road","Indicator":"N-bound","lat":"51.35795646874","lon":"-2.36349971302","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30125","CommonName":"Cross Keys","Street":"Southstoke Road","Indicator":"N-bound","lat":"51.35571776279","lon":"-2.36342453905","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30126","CommonName":"Cross Keys","Street":"Midford Road","Indicator":"NW-bound","lat":"51.35531136057","lon":"-2.36399575282","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30127","CommonName":"St Martin's Court","Street":"Bradford Road","Indicator":"NE-bound","lat":"51.35727872454","lon":"-2.36745809362","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30128","CommonName":"Entry Hill","Street":"Bradford Road","Indicator":"E-bound","lat":"51.35819696297","lon":"-2.36423406425","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30130","CommonName":"Southstoke Village","Street":"Pack Horse Lane","Indicator":"SW-bound","lat":"51.35018329521","lon":"-2.36488843827","node":"E0052937","stoptype":"BCT"},{"AtcoCode":"0180BAC30131","CommonName":"Sainsbury's","Street":"Frome Road","Indicator":"SE-bound","lat":"51.35702326479","lon":"-2.37147722047","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30132","CommonName":"Fosseway School","Street":"Frome Road","Indicator":"SE-bound","lat":"51.35811855362","lon":"-2.37483235563","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30133","CommonName":"St Martin's Court","Street":"Midford Road","Indicator":"NW-bound","lat":"51.3573813822","lon":"-2.36912484266","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30134","CommonName":"St Martin's Court","Street":"Midford Road","Indicator":"SE-bound","lat":"51.35754327442","lon":"-2.36911178322","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30135","CommonName":"St Martin's Hospital","Street":"Midford Road","Indicator":"NW-bound","lat":"51.35848129851","lon":"-2.37104380669","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30136","CommonName":"St Martin's Hospital","Street":"Midford Road","Indicator":"SE-bound","lat":"51.35892010527","lon":"-2.3716074694","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30137","CommonName":"Odd Down Corner","Street":"Midford Road","Indicator":"N-bound","lat":"51.3596719668","lon":"-2.37269071939","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30138","CommonName":"Midford Road","Street":"Wellsway","Indicator":"SW-bound","lat":"51.35965192483","lon":"-2.37333685349","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30139","CommonName":"Odd Down Corner","Street":"Wellsway","Indicator":"SW-bound","lat":"51.36050991123","lon":"-2.37215175254","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30140","CommonName":"Wayside","Street":"Wellsway","Indicator":"NE-bound","lat":"51.36273822669","lon":"-2.36982863623","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30141","CommonName":"Wayside","Street":"Wellsway","Indicator":"SW-bound","lat":"51.36347065834","lon":"-2.36852747502","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30142","CommonName":"Wellsway","Street":"Wellsway","Indicator":"NE-bound","lat":"51.36552626484","lon":"-2.36677721501","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30143","CommonName":"Wellsway","Street":"Wellsway","Indicator":"S-bound","lat":"51.36621146111","lon":"-2.36619376025","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30144","CommonName":"Devonshire Bldgs","Street":"Wellsway","Indicator":"N-bound","lat":"51.36977271728","lon":"-2.36602107264","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30145","CommonName":"Devonshire Bldgs","Street":"Wellsway","Indicator":"S-bound","lat":"51.36952149454","lon":"-2.36584668538","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30146","CommonName":"Kipling Avenue","Street":"Wellsway","Indicator":"N-bound","lat":"51.37229837931","lon":"-2.3663429138","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"0180BAC30147","CommonName":"Bear Flat","Street":"Wellsway","Indicator":"Stop A","lat":"51.37396998432","lon":"-2.36661486391","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"0180BAC30148","CommonName":"Oldfield Road","Street":"Wells Road","Indicator":"N-bound","lat":"51.3752850994","lon":"-2.36873733093","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30149","CommonName":"Oldfield Road","Street":"Wells Road","Indicator":"S-bound","lat":"51.37505163783","lon":"-2.36863488526","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30150","CommonName":"St Mary's Buildings","Street":"Wells Road","Indicator":"E-bound","lat":"51.37720402408","lon":"-2.36468671614","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30151","CommonName":"St Mary's Buildings","Street":"Wells Road","Indicator":"W-bound","lat":"51.37699444268","lon":"-2.36557583932","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30152","CommonName":"Bear Flat","Street":"Wellsway","Indicator":"Stop B","lat":"51.37356617734","lon":"-2.36635303933","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"0180BAC30153","CommonName":"Bear Flat","Street":"Wellsway","Indicator":"Stop C","lat":"51.37317967876","lon":"-2.36630685325","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"0180BAC30155","CommonName":"Elm Place","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.37262135309","lon":"-2.36657535255","node":"N0078122","stoptype":"BCT"},{"AtcoCode":"0180BAC30156","CommonName":"St Luke's Road","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.36942676719","lon":"-2.3673830072","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30157","CommonName":"St Luke's Road","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.36948921165","lon":"-2.36754152478","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30158","CommonName":"Hatfield Road","Street":"Bloomfield Road","Indicator":"SW-bound","lat":"51.36756060768","lon":"-2.36893380741","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30159","CommonName":"Hatfield Road","Street":"Bloomfield Road","Indicator":"NE-bound","lat":"51.36821883999","lon":"-2.36835014262","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30160","CommonName":"Bloomfield Road","Street":"Bloomfield Road","Indicator":"o/s 227","lat":"51.36539826175","lon":"-2.37313942104","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30161","CommonName":"Bloomfield Road","Street":"Bloomfield Road","Indicator":"o/s 228","lat":"51.36541523725","lon":"-2.37345556611","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC30162","CommonName":"Bloomfield Crescent","Street":"Bloomfield Road","Indicator":"NE-bound","lat":"51.36452445907","lon":"-2.37645032445","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30163","CommonName":"Old Quarry","Street":"Bloomfield Drive","Indicator":"W-bound","lat":"51.36429666674","lon":"-2.37738209001","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30164","CommonName":"Bloomfield Rise Nth","Street":"Bloomfield Drive","Indicator":"W-bound","lat":"51.36389263383","lon":"-2.3799785571","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30165","CommonName":"Bloomfield Rise Nth","Street":"Bloomfield Drive","Indicator":"E-bound","lat":"51.36385461531","lon":"-2.38061023492","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30167","CommonName":"Frome Road","Street":"Bloomfield Drive","Indicator":"N-bound","lat":"51.36187883485","lon":"-2.3826333723","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30168","CommonName":"Frome Road","Street":"Bloomfield Drive","Indicator":"S-bound","lat":"51.36167221864","lon":"-2.38257419835","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30169","CommonName":"Bloomfield Drive","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.36368654175","lon":"-2.37697489646","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30170","CommonName":"Somerdale Avenue","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.362227932","lon":"-2.37758052102","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30171","CommonName":"Somerdale Avenue","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.36190321931","lon":"-2.37789383211","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30172","CommonName":"Noads Corner","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.36047992024","lon":"-2.3787007693","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30173","CommonName":"Noads Corner","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.36030926788","lon":"-2.37864191162","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30174","CommonName":"Odd Down Post Office","Street":"Frome Road","Indicator":"SE-bound","lat":"51.35954763629","lon":"-2.37781698676","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30176","CommonName":"Red Lion","Street":"Frome Road","Indicator":"SE-bound","lat":"51.35882450537","lon":"-2.37620250137","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30177","CommonName":"Red Lion","Street":"Frome Road","Indicator":"NW-bound","lat":"51.35884156508","lon":"-2.37648987922","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30178","CommonName":"Midford Road","Street":"Wellsway","Indicator":"NE-bound","lat":"51.35966899156","lon":"-2.37362423549","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30179","CommonName":"Oolite Grove","Street":"Wellsway","Indicator":"NE-bound","lat":"51.35710848503","lon":"-2.3785580596","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30180","CommonName":"Oolite Grove","Street":"Wellsway","Indicator":"SW-bound","lat":"51.35670266024","lon":"-2.37892810442","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30181","CommonName":"Banwell Road","Street":"Banwell Road","Indicator":"o/s 33","lat":"51.35559572977","lon":"-2.37643453271","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30182","CommonName":"Lympsham Green","Street":"Cranmore Place","Indicator":"SE-bound","lat":"51.35612221268","lon":"-2.37488785729","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30183","CommonName":"Cranmore Place","Street":"Cranmore Place","Indicator":"o/s 70","lat":"51.35502676689","lon":"-2.37440500684","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30185","CommonName":"Abingdon Gardens","Street":"Banwell Road","Indicator":"NW-bound","lat":"51.35573246224","lon":"-2.37864723708","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30186","CommonName":"Hawthorn Grove","Street":"Entry Hill","Indicator":"S-bound","lat":"51.35950193609","lon":"-2.36385664474","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC30187","CommonName":"Mendip Gardens","Street":"Wellsway","Indicator":"NE-bound","lat":"51.35497497178","lon":"-2.38208755447","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30188","CommonName":"Mendip Gardens","Street":"Wellsway","Indicator":"SW-bound","lat":"51.35539120186","lon":"-2.38128681321","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30189","CommonName":"Combe Hay Lane","Street":"Roman Road","Indicator":"SW-bound","lat":"51.35425326046","lon":"-2.38281393075","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30190","CommonName":"Colbourne Road","Street":"Upper Bloomfield Road","Indicator":"NE-bound","lat":"51.35665642647","lon":"-2.38208719076","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30191","CommonName":"Lodge Gardens","Street":"Upper Bloomfield Road","Indicator":"NE-bound","lat":"51.35903718848","lon":"-2.37995271688","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30192","CommonName":"Noads Corner","Street":"Frome Road","Indicator":"NW-bound","lat":"51.36033247445","lon":"-2.37980545486","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30193","CommonName":"Noads Corner","Street":"Frome Road","Indicator":"SE-bound","lat":"51.36035138883","lon":"-2.37951836393","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30194","CommonName":"Barrow Road","Street":"Frome Road","Indicator":"SE-bound","lat":"51.36118106166","lon":"-2.38153599407","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30195","CommonName":"Barrow Road","Street":"Frome Road","Indicator":"W-bound","lat":"51.3615357969","lon":"-2.38304703162","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30196","CommonName":"Somerdale View","Street":"Rush Hill","Indicator":"NW-bound","lat":"51.36220299512","lon":"-2.38523576995","node":"E0035093","stoptype":"BCT"},{"AtcoCode":"0180BAC30197","CommonName":"Somerdale View","Street":"Rush Hill","Indicator":"SE-bound","lat":"51.36253364597","lon":"-2.38585615728","node":"E0035093","stoptype":"BCT"},{"AtcoCode":"0180BAC30198","CommonName":"Bath Community Academy","Indicator":"NW-bound","lat":"51.36443749622","lon":"-2.39199108387","node":"E0035093","stoptype":"BCT"},{"AtcoCode":"0180BAC30199","CommonName":"Bath Community Academy","Street":"Rush Hill","Indicator":"E-bound","lat":"51.36456352094","lon":"-2.39194906939","node":"E0035093","stoptype":"BCT"},{"AtcoCode":"0180BAC30200","CommonName":"Padleigh Turn","Street":"Englishcombe Lane","Indicator":"NE-bound","lat":"51.36617895113","lon":"-2.39286781352","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30201","CommonName":"Padleigh Turn","Street":"Englishcombe Lane","Indicator":"SW-bound","lat":"51.36576244932","lon":"-2.39372609158","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30202","CommonName":"Southdown Road","Street":"Englishcombe Lane","Indicator":"NE-bound","lat":"51.36715805253","lon":"-2.3904773245","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30203","CommonName":"Sladebrook Court","Street":"Englishcombe Lane","Indicator":"SW-bound","lat":"51.36750713154","lon":"-2.38825377999","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30204","CommonName":"Stirtingale Avenue","Street":"Stirtingale Road","Indicator":"N-bound","lat":"51.36810790387","lon":"-2.38330300723","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30205","CommonName":"Stirtingale Avenue","Street":"Stirtingale Road","Indicator":"S-bound","lat":"51.36781132656","lon":"-2.38325743533","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30206","CommonName":"Stirtingale Road","Street":"Stirtingale Road","Indicator":"W-bound","lat":"51.36696273907","lon":"-2.38428458669","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30207","CommonName":"Ambleside Road","Street":"Stirtingale Road","Indicator":"W-bound","lat":"51.36668850873","lon":"-2.38564690383","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30208","CommonName":"Ambleside Road","Street":"Stirtingale Road","Indicator":"E-bound","lat":"51.36662386423","lon":"-2.38616347665","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30209","CommonName":"Georgian View","Street":"Ambleside Road","Indicator":"N-bound","lat":"51.36617891687","lon":"-2.38748123811","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30210","CommonName":"Georgian View","Street":"Ambleside Road","Indicator":"S-bound","lat":"51.3660264897","lon":"-2.38735067349","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30211","CommonName":"Edgeworth Road","Street":"Ambleside Road","Indicator":"W-bound","lat":"51.36459637146","lon":"-2.38748223772","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30212","CommonName":"Ambleside Road","Street":"Ambleside Road","Indicator":"NW-bound","lat":"51.36486996314","lon":"-2.38903583745","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30213","CommonName":"Marsden Road","Street":"Georgian View","Indicator":"SE-bound","lat":"51.36576877539","lon":"-2.38914400675","node":"N0060723","stoptype":"BCT"},{"AtcoCode":"0180BAC30214","CommonName":"Oak Avenue","Street":"Oak Avenue","Indicator":"N-bound","lat":"51.36890899037","lon":"-2.38305112924","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30215","CommonName":"Oak Avenue","Street":"Oak Avenue","Indicator":"S-bound","lat":"51.36891835771","lon":"-2.38293628702","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30216","CommonName":"Cedar Grove","Street":"The Oval","Indicator":"E-bound","lat":"51.36953338939","lon":"-2.38183529669","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30217","CommonName":"Cedar Grove","Street":"The Oval","Indicator":"W-bound","lat":"51.36947044914","lon":"-2.38183477284","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30218","CommonName":"The Oval","Street":"Moorfields Road","Indicator":"E-bound","lat":"51.37010466723","lon":"-2.38036041277","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30219","CommonName":"The Oval","Street":"Moorfields Road","Indicator":"W-bound","lat":"51.37001442589","lon":"-2.38046022234","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAC30220","CommonName":"Pitman House","Street":"Moorfields Road","Indicator":"W-bound","lat":"51.37019010841","lon":"-2.37896767238","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30221","CommonName":"Pitman House","Street":"Moorfields Road","Indicator":"E-bound","lat":"51.37027112459","lon":"-2.37893961069","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30222","CommonName":"Moorlands School","Street":"Moorfields Road","Indicator":"E-bound","lat":"51.37055045406","lon":"-2.3759682464","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30223","CommonName":"Moorlands School","Street":"Moorfields Road","Indicator":"W-bound","lat":"51.37047750714","lon":"-2.37628369044","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30224","CommonName":"Hensley Road","Street":"Chantry Mead Road","Indicator":"SW-bound","lat":"51.37006781016","lon":"-2.3722436494","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30225","CommonName":"Hensley Road","Street":"Chantry Mead Road","Indicator":"NE-bound","lat":"51.37011240214","lon":"-2.37235893463","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30226","CommonName":"Chantry Mead Road","Street":"Cotswold Road","Indicator":"SE-bound","lat":"51.37091332828","lon":"-2.37214995064","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30227","CommonName":"Willow Green","Street":"Cotswold Road","Indicator":"W-bound","lat":"51.37127405362","lon":"-2.37463815846","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30228","CommonName":"Willow Green","Street":"Cotswold Road","Indicator":"E-bound","lat":"51.37137272995","lon":"-2.37471079343","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30229","CommonName":"Hillside Hall","Street":"Hillside Road","Indicator":"NW-bound","lat":"51.37288060047","lon":"-2.37835778289","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30230","CommonName":"Hillside Hall","Street":"Hillside Road","Indicator":"SE-bound","lat":"51.37289918669","lon":"-2.37817117431","node":"E0035053","stoptype":"BCT"},{"AtcoCode":"0180BAC30231","CommonName":"Beckhampton Road","Street":"Beckhampton Road","Indicator":"N-bound","lat":"51.37510274422","lon":"-2.37798820436","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30233","CommonName":"Beckhampton Road","Street":"Beckhampton Road","Indicator":"S-bound","lat":"51.37564315896","lon":"-2.37770531481","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30234","CommonName":"Shaftesbury Road","Street":"Third Avenue","Indicator":"S-bound","lat":"51.37652612794","lon":"-2.37715225627","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30235","CommonName":"Shaftesbury Road","Street":"Third Avenue","Indicator":"N-bound","lat":"51.3765975042","lon":"-2.37732525268","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30236","CommonName":"Second Avenue","Street":"King Edward Road","Indicator":"SE-bound","lat":"51.37528107163","lon":"-2.37566221286","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30237","CommonName":"Second Avenue","Street":"King Edward Road","Indicator":"NW-bound","lat":"51.37531602307","lon":"-2.37597857432","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30238","CommonName":"Cedar Park","Street":"Oldfield Road","Indicator":"E-bound","lat":"51.37486637417","lon":"-2.37318770734","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30239","CommonName":"Cedar Park","Street":"Oldfield Road","Indicator":"W-bound","lat":"51.37485591664","lon":"-2.37364736336","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30240","CommonName":"Wells Road","Street":"Oldfield Road","Indicator":"E-bound","lat":"51.37442814686","lon":"-2.3696068149","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30241","CommonName":"Wells Road","Street":"Oldfield Road","Indicator":"W-bound","lat":"51.37433032851","lon":"-2.36926122482","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30244","CommonName":"Riverside Road","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.37872358905","lon":"-2.36757242338","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30245","CommonName":"Cheltenham Street","Street":"Westmoreland Road","Indicator":"S-bound","lat":"51.37838769832","lon":"-2.36858986016","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30246","CommonName":"Hayesfield School","Street":"Lower Oldfield Park","Indicator":"W-bound","lat":"51.37713920826","lon":"-2.37100795453","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30247","CommonName":"Hayesfield School","Street":"Lower Oldfield Park","Indicator":"E-bound","lat":"51.37724669607","lon":"-2.37113813297","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30248","CommonName":"Junction Road","Street":"Lower Oldfield Park","Indicator":"W-bound","lat":"51.37762441579","lon":"-2.37394290591","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30249","CommonName":"Junction Road","Street":"Lower Oldfield Park","Indicator":"E-bound","lat":"51.37763487453","lon":"-2.37348322225","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30250","CommonName":"Arlington Road","Street":"Livingstone Road","Indicator":"SW-bound","lat":"51.37813573766","lon":"-2.37712238913","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30251","CommonName":"Arlington Road","Street":"Livingstone Road","Indicator":"NE-bound","lat":"51.37820729909","lon":"-2.37723792126","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30252","CommonName":"Moorland Road","Street":"Livingstone Road","Indicator":"NE-bound","lat":"51.37743829517","lon":"-2.37869710334","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30253","CommonName":"Crandale Road","Street":"Triangle North","Indicator":"E-bound","lat":"51.37874154489","lon":"-2.37886591419","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30255","CommonName":"West Avenue","Street":"West Avenue","Indicator":"SW-bound","lat":"51.37873282142","lon":"-2.38155268161","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30256","CommonName":"Lyndhurst Road","Street":"Millmead Road","Indicator":"S-bound","lat":"51.3786737125","lon":"-2.38313268171","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30257","CommonName":"Lyndhurst Road","Street":"Millmead Road","Indicator":"N-bound","lat":"51.37871819958","lon":"-2.38327673458","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30258","CommonName":"Victoria Close","Street":"Dartmouth Avenue","Indicator":"NE-bound","lat":"51.37645658724","lon":"-2.38470894381","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30259","CommonName":"Victoria Close","Street":"Dartmouth Avenue","Indicator":"SW-bound","lat":"51.37615040582","lon":"-2.38485004884","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30260","CommonName":"Lymore Avenue","Street":"Dartmouth Avenue","Indicator":"NE-bound","lat":"51.37514667612","lon":"-2.38656566763","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30261","CommonName":"Lymore Avenue","Street":"Dartmouth Avenue","Indicator":"SW-bound","lat":"51.37498468772","lon":"-2.38660740329","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30262","CommonName":"Blackmore Drive","Street":"Lymore Avenue","Indicator":"SE-bound","lat":"51.37639011644","lon":"-2.38850137843","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30263","CommonName":"Blackmore Drive","Street":"Lymore Avenue","Indicator":"NW-bound","lat":"51.3763805052","lon":"-2.38868807312","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30264","CommonName":"Padfield Close","Street":"The Hollow","Indicator":"SW-bound","lat":"51.37568046341","lon":"-2.39099525572","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30265","CommonName":"Padfield Close","Street":"The Hollow","Indicator":"NE-bound","lat":"51.37591486445","lon":"-2.39081047968","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30266","CommonName":"Community Farm","Street":"Kelston View","Indicator":"NW-bound","lat":"51.37448018933","lon":"-2.39497899448","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30268","CommonName":"Community Farm","Street":"Kelston View","Indicator":"SE-bound","lat":"51.37502687316","lon":"-2.39551527994","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30269","CommonName":"East Close","Street":"East Way","Indicator":"NE-bound","lat":"51.37521958014","lon":"-2.39702547996","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30270","CommonName":"East Close","Street":"East Way","Indicator":"SW-bound","lat":"51.3748857761","lon":"-2.39735303","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30271","CommonName":"East Way","Indicator":"SE-bound","lat":"51.37431829126","lon":"-2.39764981584","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30272","CommonName":"East Way","Street":"Haycombe Drive","Indicator":"NW-bound","lat":"51.37452363004","lon":"-2.39808260038","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30273","CommonName":"The Beehive","Street":"Haycombe Drive","Indicator":"SE-bound","lat":"51.37274508163","lon":"-2.39754998064","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30275","CommonName":"Haycombe Cemetery","Indicator":"SW-bound","lat":"51.37025262226","lon":"-2.40070315223","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30276","CommonName":"Methodist Church","Street":"The Hollow","Indicator":"SW-bound","lat":"51.3714291082","lon":"-2.39848672214","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30277","CommonName":"Mount Road","Street":"The Hollow","Indicator":"NE-bound","lat":"51.37219718871","lon":"-2.39737283941","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30278","CommonName":"Mount Road Shops","Street":"Mount Road","Indicator":"SE-bound","lat":"51.37168784132","lon":"-2.39643464208","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30279","CommonName":"Mount Road Shops","Street":"Mount Road","Indicator":"NW-bound","lat":"51.37149906958","lon":"-2.3964186449","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30280","CommonName":"Wedmore Park","Street":"Mount Road","Indicator":"S-bound","lat":"51.36990242817","lon":"-2.39526998432","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30281","CommonName":"Wedmore Park","Street":"Mount Road","Indicator":"NW-bound","lat":"51.36905737728","lon":"-2.39521960835","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30282","CommonName":"Roundhill Grove","Street":"Mount Road","Indicator":"S-bound","lat":"51.36802578218","lon":"-2.39449248294","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30283","CommonName":"Padleigh Turn","Street":"Mount Road","Indicator":"N-bound","lat":"51.36666029031","lon":"-2.39412163363","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30284","CommonName":"Southdown Avenue","Street":"Southdown Road","Indicator":"N-bound","lat":"51.36929696512","lon":"-2.39081156297","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30285","CommonName":"Oriel Grove","Street":"Southdown Road","Indicator":"N-bound","lat":"51.37150183566","lon":"-2.39024134596","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30286","CommonName":"Langdon Road","Street":"Sladebrook Road","Indicator":"W-bound","lat":"51.37245166991","lon":"-2.39122632535","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30287","CommonName":"Lytton Gardens","Street":"Sladebrook Road","Indicator":"W-bound","lat":"51.3716570693","lon":"-2.39489722309","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30288","CommonName":"Sladebrook Court","Street":"Sladebrook Avenue","Indicator":"N-bound","lat":"51.36826493613","lon":"-2.38749885574","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30289","CommonName":"Trowbridge House","Street":"Coronation Avenue","Indicator":"S-bound","lat":"51.36993224843","lon":"-2.38633497804","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30290","CommonName":"Trowbridge House","Street":"Coronation Avenue","Indicator":"N-bound","lat":"51.37079694424","lon":"-2.38588255943","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30291","CommonName":"Happy Garden","Street":"Coronation Avenue","Indicator":"SW-bound","lat":"51.37231190432","lon":"-2.38455925435","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30292","CommonName":"Happy Garden","Street":"Coronation Avenue","Indicator":"NE-bound","lat":"51.37241048005","lon":"-2.38466064378","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAC30293","CommonName":"Ascension Church","Street":"Coronation Avenue","Indicator":"SW-bound","lat":"51.37350325082","lon":"-2.38320442553","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30294","CommonName":"Ascension Church","Street":"Claude Avenue","Indicator":"N-bound","lat":"51.37443939619","lon":"-2.38289617718","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30295","CommonName":"Bridge Road","Street":"Bridge Road","Indicator":"NE-bound","lat":"51.37581569937","lon":"-2.3827208928","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30296","CommonName":"Bridge Road","Street":"Bridge Road","Indicator":"SW-bound","lat":"51.37592448866","lon":"-2.38244882287","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30297","CommonName":"Mayfield Road","Street":"Cynthia Road","Indicator":"SE-bound","lat":"51.37597263259","lon":"-2.38147225049","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30298","CommonName":"Mayfield Road","Street":"Cynthia Road","Indicator":"NW-bound","lat":"51.37573098604","lon":"-2.38112542823","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30299","CommonName":"Moorland Road","Street":"Herbert Road","Indicator":"SW-bound","lat":"51.37703270354","lon":"-2.37899547383","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30300","CommonName":"Maybrick Road","Street":"Moorland Road","Indicator":"NW-bound","lat":"51.377553138","lon":"-2.37933023287","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30301","CommonName":"Lorne Road","Street":"Brougham Hayes","Indicator":"N-bound","lat":"51.38069692208","lon":"-2.3747726093","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30302","CommonName":"Lorne Road","Street":"Brougham Hayes","Indicator":"SW-bound","lat":"51.38038189923","lon":"-2.37487061527","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30303","CommonName":"Brougham Hayes","Street":"Lower Bristol Road","Indicator":"SE-bound","lat":"51.38105117027","lon":"-2.37365473418","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30304","CommonName":"Pines Way","Indicator":"SE-bound","lat":"51.3806460148","lon":"-2.37099321938","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30305","CommonName":"St James Cemetery","Street":"Lower Bristol Road","Indicator":"NW-bound","lat":"51.37999657956","lon":"-2.37163454876","node":"E0035068","stoptype":"BCT"},{"AtcoCode":"0180BAC30306","CommonName":"Brougham Hayes","Street":"Lower Bristol Road","Indicator":"W-bound","lat":"51.38132416064","lon":"-2.37545307547","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC30307","CommonName":"Dorset Close","Street":"Lower Bristol Road","Indicator":"W-bound","lat":"51.38162187381","lon":"-2.37794135503","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC30308","CommonName":"Dorset Close","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.38187061639","lon":"-2.37887739712","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC30310","CommonName":"Bellotts Road","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.38199160334","lon":"-2.3831460332","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC30311","CommonName":"Bellotts Road","Street":"Lower Bristol Road","Indicator":"W-bound","lat":"51.38185607335","lon":"-2.38334606827","node":"E0035004","stoptype":"BCT"},{"AtcoCode":"0180BAC30312","CommonName":"Burnham Road","Street":"Lower Bristol Road","Indicator":"SW-bound","lat":"51.38084568695","lon":"-2.38708787591","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30313","CommonName":"Burnham Road","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.38095367924","lon":"-2.38706004982","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30314","CommonName":"Shophouse Road","Street":"High Street","Indicator":"W-bound","lat":"51.38001982293","lon":"-2.39208115416","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30315","CommonName":"Twerton Parade","Street":"High Street","Indicator":"NW-bound","lat":"51.38030285569","lon":"-2.3961498941","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30316","CommonName":"Twerton Parade","Street":"High Street","Indicator":"SE-bound","lat":"51.38053595229","lon":"-2.39635306941","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30317","CommonName":"Walwyn Close","Street":"Newton Road","Indicator":"E-bound","lat":"51.38130599392","lon":"-2.39995195934","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30318","CommonName":"Walwyn Close","Street":"Newton Road","Indicator":"W-bound","lat":"51.38122345075","lon":"-2.40042541357","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30319","CommonName":"Twerton School","Street":"Newton Road","Indicator":"E-bound","lat":"51.38141831246","lon":"-2.40390440694","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30320","CommonName":"Twerton School","Street":"Newton Road","Indicator":"W-bound","lat":"51.38121876561","lon":"-2.40440556138","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30321","CommonName":"Redland Park","Street":"Newton Road","Indicator":"NE-bound","lat":"51.38035452197","lon":"-2.40730040619","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30322","CommonName":"Redland Park","Street":"Newton Road","Indicator":"SW-bound","lat":"51.38052690726","lon":"-2.40685650757","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30324","CommonName":"Cameley Green","Street":"Shaws Way","Indicator":"NE-bound","lat":"51.37898616101","lon":"-2.40517612633","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30325","CommonName":"Cameley Green","Street":"Shaws Way","Indicator":"SW-bound","lat":"51.37891442843","lon":"-2.40511801984","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30326","CommonName":"Pennard Green","Street":"Shaws Way","Indicator":"E-bound","lat":"51.37948926312","lon":"-2.40269484281","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30327","CommonName":"Pennard Green","Street":"Shaws Way","Indicator":"W-bound","lat":"51.37939885469","lon":"-2.4028377324","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30328","CommonName":"Linley Close","Street":"Poolemead Road","Indicator":"NE-bound","lat":"51.37819162907","lon":"-2.40351679116","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30329","CommonName":"Linley Close","Street":"Poolemead Road","Indicator":"SW-bound","lat":"51.37796629868","lon":"-2.40367285553","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30330","CommonName":"Wedgwood Road","Street":"Wedgwood Road","Indicator":"W-bound","lat":"51.37608292378","lon":"-2.40486313363","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30331","CommonName":"Wedgwood Road","Street":"Wedgwood Road","Indicator":"E-bound","lat":"51.37650770479","lon":"-2.40423471585","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30332","CommonName":"North Way","Street":"Kelston View","Indicator":"E-bound","lat":"51.37626592666","lon":"-2.40133037793","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30333","CommonName":"North Way","Street":"Kelston View","Indicator":"W-bound","lat":"51.37617586461","lon":"-2.40137269189","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30334","CommonName":"Whiteway Circle","Street":"Haycombe Drive","Indicator":"SE-bound","lat":"51.37506417279","lon":"-2.40041474304","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30335","CommonName":"Haycombe Drive","Street":"Haycombe Drive","Indicator":"SW-bound","lat":"51.37260801349","lon":"-2.39819527243","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30336","CommonName":"Rosewarn Close","Street":"Haycombe Drive","Indicator":"W-bound","lat":"51.37229441675","lon":"-2.4005054952","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30337","CommonName":"Kelston View","Street":"Haycombe Drive","Indicator":"SW-bound","lat":"51.37386561163","lon":"-2.40380916713","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30338","CommonName":"Wedgwood Road - Top","Street":"Wedgwood Road","Indicator":"E-bound","lat":"51.37611718061","lon":"-2.4027514406","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC30339","CommonName":"Midland Bridge Road","Street":"Midland Bridge Road","Indicator":"Gf","lat":"51.3813061669","lon":"-2.36694652272","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30340","CommonName":"Corn Street","Street":"Corn Street","Indicator":"Wi","lat":"51.37912478677","lon":"-2.36290596008","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30341","CommonName":"St James's Parade","Street":"Saint James's Parade","Indicator":"We","lat":"51.37922995393","lon":"-2.36088086558","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30342","CommonName":"Westgate Buildings","Street":"Westgate Buildings","Indicator":"Wa","lat":"51.38079875732","lon":"-2.36241630084","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30343","CommonName":"Westgate Buildings","Street":"Westgate Buildings","Indicator":"Wb","lat":"51.3809065215","lon":"-2.36246025893","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30344","CommonName":"Westgate Buildings","Street":"Westgate Buildings","Indicator":"Wc","lat":"51.38105020706","lon":"-2.36251887004","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30345","CommonName":"Westgate Buildings","Street":"Westgate Buildings","Indicator":"Wd","lat":"51.38116705164","lon":"-2.36253416265","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30346","CommonName":"Monmouth Place","Street":"Monmouth Place","Indicator":"Gd","lat":"51.38272173695","lon":"-2.36570771563","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30347","CommonName":"Nile Street","Street":"Upper Bristol Road","Indicator":"W-bound","lat":"51.38344085404","lon":"-2.36864484852","node":"E0035029","stoptype":"BCT"},{"AtcoCode":"0180BAC30348","CommonName":"James Street West","Street":"James Street West","Indicator":"Gc","lat":"51.38192738792","lon":"-2.36669284973","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30349","CommonName":"James Street West","Street":"James Street West","Indicator":"Ge","lat":"51.38135584214","lon":"-2.36543818133","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30350","CommonName":"James Street West","Street":"James Street West","Indicator":"Wf","lat":"51.38111616237","lon":"-2.36444481948","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30351","CommonName":"Nile Street","Street":"Upper Bristol Road","Indicator":"E-bound","lat":"51.38398193609","lon":"-2.37099147055","node":"E0035029","stoptype":"BCT"},{"AtcoCode":"0180BAC30352","CommonName":"Comfortable Place","Street":"Upper Bristol Road","Indicator":"W-bound","lat":"51.3844324608","lon":"-2.37352421954","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30353","CommonName":"Comfortable Place","Street":"Upper Bristol Road","Indicator":"E-bound","lat":"51.3844514974","lon":"-2.3731938666","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30355","CommonName":"Park Lane","Indicator":"E-bound","lat":"51.38558761203","lon":"-2.3778159708","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30356","CommonName":"Park Lane","Street":"Upper Bristol Road","Indicator":"W-bound","lat":"51.38547660461","lon":"-2.37877786193","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30357","CommonName":"Windsor Villas","Street":"Upper Bristol Road","Indicator":"SW-bound","lat":"51.38457562159","lon":"-2.38210424853","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30358","CommonName":"The Weston","Street":"Newbridge Road","Indicator":"E-bound","lat":"51.38442930479","lon":"-2.38559491751","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30359","CommonName":"The Weston","Street":"Newbridge Road","Indicator":"W-bound","lat":"51.38446933183","lon":"-2.38708972623","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30360","CommonName":"Clarence Place","Street":"Locksbrook Road","Indicator":"W-bound","lat":"51.38277012505","lon":"-2.38973371977","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC30362","CommonName":"Dolphin Inn","Street":"Locksbrook Road","Indicator":"W-bound","lat":"51.38256895706","lon":"-2.39342492808","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC30363","CommonName":"Osborne Road","Street":"Brassmill Lane","Indicator":"W-bound","lat":"51.38239430084","lon":"-2.39455860251","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC30364","CommonName":"Avon Park","Street":"Brassmill Lane","Indicator":"NW-bound","lat":"51.38350455597","lon":"-2.39860602058","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC30365","CommonName":"Brassmill Lane Trading Estate","Street":"Brassmill Lane","Indicator":"NW-bound","lat":"51.38493813666","lon":"-2.40009860071","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30366","CommonName":"Selbourne Close","Street":"Brassmill Lane","Indicator":"NW-bound","lat":"51.3871597357","lon":"-2.40253227686","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30367","CommonName":"Caravan Park","Street":"Brassmill Lane","Indicator":"N-bound","lat":"51.38841739715","lon":"-2.40287385573","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30368","CommonName":"Newbridge Gardens","Street":"Newbridge Road","Indicator":"SE-bound","lat":"51.3883865632","lon":"-2.40137898444","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30369","CommonName":"Newbridge Gardens","Street":"Newbridge Road","Indicator":"NW-bound","lat":"51.3877956393","lon":"-2.40064089159","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30371","CommonName":"Rudmore Park","Street":"Newbridge Road","Indicator":"S-bound","lat":"51.38677758055","lon":"-2.39859136297","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30372","CommonName":"Rudmore Park","Street":"Newbridge Road","Indicator":"NW-bound","lat":"51.38618649233","lon":"-2.39789644206","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30373","CommonName":"Charmouth Road","Street":"Newbridge Road","Indicator":"SE-bound","lat":"51.38508760789","lon":"-2.39580323842","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30374","CommonName":"Charmouth Road","Street":"Newbridge Road","Indicator":"NW-bound","lat":"51.38447895623","lon":"-2.39497889848","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30375","CommonName":"Horstmann Close","Street":"Newbridge Road","Indicator":"W-bound","lat":"51.3842060738","lon":"-2.39055063588","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30376","CommonName":"Horstmann Close","Street":"Newbridge Road","Indicator":"E-bound","lat":"51.38433372574","lon":"-2.39002003748","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30378","CommonName":"Chelsea Road","Street":"Newbridge Road","Indicator":"E-bound","lat":"51.38442004515","lon":"-2.38839697189","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30379","CommonName":"The Weston","Street":"Newbridge Hill","Indicator":"E-bound","lat":"51.38480168243","lon":"-2.38719312219","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30380","CommonName":"Chelsea Road","Street":"Newbridge Hill","Indicator":"NW-bound","lat":"51.38564245115","lon":"-2.38853665935","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30381","CommonName":"Chelsea Road","Street":"Newbridge Hill","Indicator":"SE-bound","lat":"51.38563431758","lon":"-2.38827792521","node":"E0035043","stoptype":"BCT"},{"AtcoCode":"0180BAC30382","CommonName":"Newbridge Court","Street":"Newbridge Hill","Indicator":"NW-bound","lat":"51.38700799299","lon":"-2.39159482416","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30383","CommonName":"Newbridge Court","Indicator":"SE-bound","lat":"51.38703597595","lon":"-2.39129327783","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30384","CommonName":"Evelyn Road","Street":"Newbridge Hill","Indicator":"W-bound","lat":"51.38767492908","lon":"-2.39381364391","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30385","CommonName":"Penn Lea Road","Street":"Newbridge Hill","Indicator":"E-bound","lat":"51.38794026702","lon":"-2.39512368539","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30386","CommonName":"Penn Lea Court","Street":"Penn Lea Road","Indicator":"NE-bound","lat":"51.38845146832","lon":"-2.39551611284","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30387","CommonName":"Manor Park","Street":"Penn Lea Road","Indicator":"S-bound","lat":"51.39013402813","lon":"-2.39518570808","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30388","CommonName":"Manor Park","Street":"Penn Lea Road","Indicator":"N-bound","lat":"51.39014248602","lon":"-2.39534386974","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30389","CommonName":"South Lea Road","Street":"South Lea Road","Indicator":"S-bound","lat":"51.39103832475","lon":"-2.39632889043","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30391","CommonName":"South Lea Road","Street":"South Lea Road","Indicator":"N-bound","lat":"51.39099283259","lon":"-2.39648658881","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30392","CommonName":"Meadow View Close","Street":"West Lea Road","Indicator":"S-bound","lat":"51.39158622618","lon":"-2.39915057032","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30393","CommonName":"Meadow View Close","Street":"West Lea Road","Indicator":"N-bound","lat":"51.39170296759","lon":"-2.39919470339","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30394","CommonName":"West Lea Road Top","Street":"West Lea Road","Indicator":"NE-bound","lat":"51.392936749","lon":"-2.39863054449","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30395","CommonName":"West Lea Road Top","Street":"West Lea Road","Indicator":"SW-bound","lat":"51.39314516478","lon":"-2.3981580596","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30396","CommonName":"Chandler Close","Street":"Penn Hill Road","Indicator":"E-bound","lat":"51.39458983572","lon":"-2.3963883443","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30397","CommonName":"Chandler Close","Street":"Penn Hill Road","Indicator":"W-bound","lat":"51.39451829353","lon":"-2.39627274101","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30398","CommonName":"Southlands","Street":"Penn Hill Road","Indicator":"SW-bound","lat":"51.39520301592","lon":"-2.39320277672","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30399","CommonName":"Southlands","Street":"Penn Hill Road","Indicator":"NE-bound","lat":"51.39551887296","lon":"-2.39286052504","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30400","CommonName":"Crown and Anchor","Street":"High Street","Indicator":"NW-bound","lat":"51.39650971098","lon":"-2.39233719115","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30401","CommonName":"Crown and Anchor","Street":"High Street","Indicator":"SE-bound","lat":"51.39642148097","lon":"-2.39183335741","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30402","CommonName":"Deanhill Lane","Indicator":"N-bound","lat":"51.39822348291","lon":"-2.3960891635","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30403","CommonName":"Deanhill Lane","Street":"Lansdown Lane","Indicator":"S-bound","lat":"51.39860238518","lon":"-2.39571870494","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30404","CommonName":"Haviland Grove","Street":"Lansdown Lane","Indicator":"S-bound","lat":"51.40187535283","lon":"-2.39571821738","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30405","CommonName":"Haviland Grove","Street":"Lansdown Lane","Indicator":"N-bound","lat":"51.40138024289","lon":"-2.39588644462","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30406","CommonName":"Greenacres","Street":"Lansdown Lane","Indicator":"NW-bound","lat":"51.40305201134","lon":"-2.39608777256","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30407","CommonName":"Beresford Gardens","Street":"Lansdown Lane","Indicator":"N-bound","lat":"51.40463328119","lon":"-2.39646084778","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30408","CommonName":"Napier Road","Street":"Napier Road","Indicator":"W-bound","lat":"51.40510587784","lon":"-2.39762942503","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30409","CommonName":"Falconer Road","Street":"Falconer Road","Indicator":"S-bound","lat":"51.40475278605","lon":"-2.40097603533","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30410","CommonName":"Heathfield Close","Street":"Leighton Road","Indicator":"E-bound","lat":"51.40339256587","lon":"-2.39642136106","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30411","CommonName":"Holcombe Green","Street":"Eastfield Avenue","Indicator":"N-bound","lat":"51.39868312597","lon":"-2.39310326483","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30412","CommonName":"The Weal","Street":"Eastfield Avenue","Indicator":"E-bound","lat":"51.39960540164","lon":"-2.3915730863","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30413","CommonName":"Eastfield Avenue","Street":"Eastfield Avenue","Indicator":"NW-bound","lat":"51.40053305355","lon":"-2.39112101408","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30414","CommonName":"Haviland Park","Indicator":"W-bound","lat":"51.40137958234","lon":"-2.39341390005","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30415","CommonName":"Lansdown Lane","Street":"Eastfield Avenue","Indicator":"W-bound","lat":"51.40122840901","lon":"-2.39558325417","node":"E0035137","stoptype":"BCT"},{"AtcoCode":"0180BAC30417","CommonName":"Southlands","Street":"Southlands","Indicator":"NW-bound","lat":"51.39557084326","lon":"-2.39345028008","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30418","CommonName":"Southlands Square","Street":"Southlands","Indicator":"W-bound","lat":"51.39686198383","lon":"-2.39719855446","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30421","CommonName":"Ascension Church","Street":"Lymore Avenue","Indicator":"W-bound","lat":"51.37408741339","lon":"-2.3832955058","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30422","CommonName":"Lymore Avenue","Street":"Lymore Avenue","Indicator":"SE-bound","lat":"51.37465389984","lon":"-2.38602994116","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30423","CommonName":"Lymore Avenue","Street":"Lymore Avenue","Indicator":"NW-bound","lat":"51.37484943644","lon":"-2.3867211986","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30424","CommonName":"The White Horse","Street":"The Hollow","Indicator":"S-bound","lat":"51.37708131334","lon":"-2.38885205594","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30425","CommonName":"The White Horse","Street":"The Hollow","Indicator":"N-bound","lat":"51.37716166372","lon":"-2.38902514881","node":"E0035107","stoptype":"BCT"},{"AtcoCode":"0180BAC30426","CommonName":"Shophouse Road","Street":"Shophouse Road","Indicator":"S-bound","lat":"51.37988668203","lon":"-2.39156275019","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30427","CommonName":"Pennard Court","Street":"Watery Lane","Indicator":"N-bound","lat":"51.38019296924","lon":"-2.39938187748","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30428","CommonName":"Pennard Court","Street":"Watery Lane","Indicator":"S-bound","lat":"51.38038257305","lon":"-2.39915363029","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30430","CommonName":"Poolemead Road","Street":"Shaws Way","Indicator":"E-bound","lat":"51.37949399807","lon":"-2.40131552066","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30431","CommonName":"Poolemead Road","Street":"Shaws Way","Indicator":"W-bound","lat":"51.37942167268","lon":"-2.40142983457","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC30433","CommonName":"Newton Park","Street":"Corston Drive","Indicator":"S-bound","lat":"51.37991473119","lon":"-2.43701058295","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30434","CommonName":"Newton Park","Street":"Corston Drive","Indicator":"N-bound","lat":"51.37994111548","lon":"-2.43716888815","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30436","CommonName":"Library","Indicator":"NE-bound","lat":"51.37566940073","lon":"-2.437343683","node":"N0080954","stoptype":"BCT"},{"AtcoCode":"0180BAC30438","CommonName":"St John's","Street":"Combe Park","Indicator":"S-bound","lat":"51.38850823575","lon":"-2.38930824783","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30440","CommonName":"St John's","Street":"Combe Park","Indicator":"N-bound","lat":"51.38852569301","lon":"-2.38946647922","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30441","CommonName":"RUH - A&E","Street":"Combe Park","Indicator":"S-bound","lat":"51.38987569673","lon":"-2.3890899144","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30442","CommonName":"RUH - A&E","Street":"Combe Park","Indicator":"N-bound","lat":"51.39027103294","lon":"-2.38917950024","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30443","CommonName":"RUH - Main Entrance","Street":"Combe Park","Indicator":"S-bound","lat":"51.39127993369","lon":"-2.38862755516","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30444","CommonName":"RUH - Reception","Indicator":"E-bound","lat":"51.39194032963","lon":"-2.39012786952","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30445","CommonName":"RUH - Main Entrance","Street":"Combe Park","Indicator":"N-bound","lat":"51.39199020845","lon":"-2.38864794904","node":"N0060728","stoptype":"BCT"},{"AtcoCode":"0180BAC30446","CommonName":"Crown Road","Street":"Crown Road","Indicator":"N-bound","lat":"51.39463034303","lon":"-2.38967645227","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30447","CommonName":"Crown Road","Street":"Crownhill Road","Indicator":"SE-bound","lat":"51.39533879858","lon":"-2.39024303527","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30448","CommonName":"Lucklands Road Bottom","Street":"Lucklands Road","Indicator":"E-bound","lat":"51.39460181594","lon":"-2.38743400626","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30449","CommonName":"Lucklands Road Top","Street":"Lucklands Road","Indicator":"NE-bound","lat":"51.39565240562","lon":"-2.38514313837","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30450","CommonName":"Lynfield Park","Indicator":"NW-bound","lat":"51.39656327588","lon":"-2.38704812277","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30451","CommonName":"Prospect Place","Street":"Purlewent Drive","Indicator":"NW-bound","lat":"51.39743981881","lon":"-2.38844980209","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC30452","CommonName":"Lucklands Road","Street":"Weston Park","Indicator":"SE-bound","lat":"51.39431337711","lon":"-2.38764716333","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30453","CommonName":"Weston Park West","Street":"Weston Park","Indicator":"NW-bound","lat":"51.39297069101","lon":"-2.38581048977","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30454","CommonName":"Weston Park West","Street":"Weston Park West","Indicator":"SE-bound","lat":"51.39256943394","lon":"-2.38478666778","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30455","CommonName":"Linden Gardens","Street":"Weston Road","Indicator":"E-bound","lat":"51.39051792906","lon":"-2.38246995694","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30456","CommonName":"Linden Gardens","Street":"Weston Road","Indicator":"NW-bound","lat":"51.39023236034","lon":"-2.38180647492","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30457","CommonName":"Cranhill Road","Street":"Weston Road","Indicator":"E-bound","lat":"51.38917589243","lon":"-2.37762997141","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30458","CommonName":"Cranhill Road","Street":"Weston Road","Indicator":"NW-bound","lat":"51.38905033662","lon":"-2.37752833768","node":"E0035149","stoptype":"BCT"},{"AtcoCode":"0180BAC30459","CommonName":"Marlborough Buildings","Street":"Weston Road","Indicator":"W-bound","lat":"51.38837276492","lon":"-2.37007850628","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30460","CommonName":"Park Place","Street":"Cavendish Road","Indicator":"N-bound","lat":"51.39021823471","lon":"-2.36938919032","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30461","CommonName":"Park Place","Street":"Cavendish Road","Indicator":"S-bound","lat":"51.39010193506","lon":"-2.36920142132","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30462","CommonName":"Sion Road","Street":"Sion Hill","Indicator":"E-bound","lat":"51.39301226788","lon":"-2.37297610987","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC30463","CommonName":"Sion Road","Street":"Sion Hill","Indicator":"W-bound","lat":"51.39299291106","lon":"-2.37340713005","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC30464","CommonName":"Summerhill Road","Street":"Summerhill Road","Indicator":"NW-bound","lat":"51.394069502","lon":"-2.37696601373","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC30465","CommonName":"Cavendish Crescent","Street":"Cavendish Road","Indicator":"S-bound","lat":"51.39211311514","lon":"-2.37013744797","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC30466","CommonName":"Cavendish Crescent","Street":"Cavendish Road","Indicator":"N-bound","lat":"51.39209476882","lon":"-2.37025227829","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC30469","CommonName":"Marlborough Buildings","Street":"Cavendish Road","Indicator":"N-bound","lat":"51.38885158014","lon":"-2.36936380701","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30470","CommonName":"Marlborough Buildings","Street":"Crescent Lane","Indicator":"E-bound","lat":"51.38831390485","lon":"-2.36878463014","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30471","CommonName":"Northampton Street","Street":"Julian Road","Indicator":"W-bound","lat":"51.3880881096","lon":"-2.36623913781","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30472","CommonName":"Northampton Street","Street":"Julian Road","Indicator":"E-bound","lat":"51.38816961677","lon":"-2.36605296496","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30473","CommonName":"Morford Street","Street":"Julian Road","Indicator":"E-bound","lat":"51.38784445459","lon":"-2.36363604512","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30474","CommonName":"Queen Square","Street":"Queen Square","Indicator":"Sb","lat":"51.38381619208","lon":"-2.36363283659","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30475","CommonName":"Queen Square","Street":"Queen Square","Indicator":"Sa","lat":"51.38334182885","lon":"-2.36292496606","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30476","CommonName":"Assembly Rooms","Street":"Bennett Street","Indicator":"W-bound","lat":"51.38640729313","lon":"-2.36315041896","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30477","CommonName":"Milsom Street","Street":"Milsom Street","Indicator":"Sc","lat":"51.38411041468","lon":"-2.36153717872","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30478","CommonName":"Broad Street","Street":"Broad Street","Indicator":"Sd","lat":"51.3834679427","lon":"-2.35993708713","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30479","CommonName":"Alfred Street","Street":"Lansdown Road","Indicator":"Ab","lat":"51.38589227581","lon":"-2.36104826691","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30480","CommonName":"Alfred Street","Street":"Lansdown Road","Indicator":"Aa","lat":"51.3863048635","lon":"-2.36138203731","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30481","CommonName":"Belvedere","Street":"Lansdown Road","Indicator":"N-bound","lat":"51.38847928744","lon":"-2.36188779768","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30482","CommonName":"Belvedere","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.38856065455","lon":"-2.36174472803","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30483","CommonName":"Ballance Street","Street":"Lansdown Road","Indicator":"NW-bound","lat":"51.3895893766","lon":"-2.36346305656","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30484","CommonName":"Ballance Street","Street":"Lansdown Road","Indicator":"SE-bound","lat":"51.39001985066","lon":"-2.36382576103","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30485","CommonName":"Lansdown Grove","Street":"Lansdown Road","Indicator":"N-bound","lat":"51.39139469391","lon":"-2.3641097427","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30486","CommonName":"St Stephen's Church","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.39289698047","lon":"-2.3638917153","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30487","CommonName":"St Stephen's Church","Street":"Lansdown Road","Indicator":"N-bound","lat":"51.39284249577","lon":"-2.36406375322","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30488","CommonName":"Sion Road","Street":"Lansdown Road","Indicator":"SE-bound","lat":"51.39557011621","lon":"-2.36593958723","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30490","CommonName":"Sion Road","Street":"Lansdown Road","Indicator":"NW-bound","lat":"51.39600013239","lon":"-2.36644609418","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30491","CommonName":"Hamilton Road","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.39739083318","lon":"-2.36740589565","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30492","CommonName":"Hamilton Road","Street":"Lansdown Road","Indicator":"N-bound","lat":"51.39771308104","lon":"-2.3678684492","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30493","CommonName":"Kingswood School","Street":"Lansdown Road","Indicator":"N-bound","lat":"51.40005391521","lon":"-2.36977033919","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30495","CommonName":"Kingswood School","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.39995573538","lon":"-2.36953955064","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAC30496","CommonName":"Lansdown Park","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.40239603935","lon":"-2.371255544","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30497","CommonName":"Lansdown Park","Street":"Lansdown Road","Indicator":"NW-bound","lat":"51.40247618729","lon":"-2.37150057791","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30498","CommonName":"Hamilton House","Street":"Lansdown Road","Indicator":"SE-bound","lat":"51.40418705621","lon":"-2.37355585547","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30499","CommonName":"Hamilton House","Street":"Lansdown Road","Indicator":"NW-bound","lat":"51.40412365769","lon":"-2.37369909938","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30500","CommonName":"Lansdown Cemetery","Street":"Lansdown Road","Indicator":"NW-bound","lat":"51.40659978986","lon":"-2.37823362883","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30501","CommonName":"Lansdown P&R","Street":"Lansdown Hill","Indicator":"NW-bound","lat":"51.41124619449","lon":"-2.38718654852","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAC30502","CommonName":"Blathwayt Arms","Street":"Lansdown Hill","Indicator":"SE-bound","lat":"51.4150741494","lon":"-2.39333020281","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAC30503","CommonName":"Blathwayt Arms","Street":"Lansdown Hill","Indicator":"NW-bound","lat":"51.41555542826","lon":"-2.39459974696","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAC30504","CommonName":"Langridge Turn","Street":"Lansdown Hill","Indicator":"S-bound","lat":"51.41957374316","lon":"-2.39753931877","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAC30505","CommonName":"MOD Ensleigh","Indicator":"S-bound","lat":"51.40544805371","lon":"-2.37287606492","node":"N0060725","stoptype":"BCT"},{"AtcoCode":"0180BAC30506","CommonName":"St Stephen's Road","Street":"Camden Crescent","Indicator":"SW-bound","lat":"51.38993825444","lon":"-2.36113761888","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30507","CommonName":"St Stephen's Road","Street":"Camden Crescent","Indicator":"NE-bound","lat":"51.39077623099","lon":"-2.360569345","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30508","CommonName":"Gay's Hill","Street":"Camden Road","Indicator":"SW-bound","lat":"51.39210247895","lon":"-2.35911380228","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30509","CommonName":"Gay's Hill","Street":"Camden Road","Indicator":"NE-bound","lat":"51.39255478065","lon":"-2.35822625417","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30510","CommonName":"Bennett Lane","Street":"Camden Road","Indicator":"SW-bound","lat":"51.39369397253","lon":"-2.35617984665","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30511","CommonName":"Bennett Lane","Street":"Camden Road","Indicator":"NE-bound","lat":"51.3937566504","lon":"-2.35626657066","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30512","CommonName":"Claremont Road","Street":"Claremont Road","Indicator":"E-bound","lat":"51.39499705897","lon":"-2.35344468998","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30513","CommonName":"Claremont Road","Street":"Claremont Road","Indicator":"SW-bound","lat":"51.39519686448","lon":"-2.35278506027","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30514","CommonName":"New Tynings Terrace","Street":"Fairfield Road","Indicator":"N-bound","lat":"51.3955833238","lon":"-2.35284552861","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30515","CommonName":"Midsummer Blds","Street":"Fairfield Road","Indicator":"NW-bound","lat":"51.39670326377","lon":"-2.35417653566","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30516","CommonName":"Marshfield Way","Street":"Marshfield Way","Indicator":"NW-bound","lat":"51.39590315587","lon":"-2.357088172","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30517","CommonName":"Ragland Lane","Street":"Solsbury Way","Indicator":"NW-bound","lat":"51.39672461275","lon":"-2.35897753416","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30519","CommonName":"Solsbury Way","Street":"Solsbury Way","Indicator":"NW-bound","lat":"51.39835407222","lon":"-2.3612614319","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30520","CommonName":"Blenheim Gardens","Street":"Fairfield Avenue","Indicator":"NE-bound","lat":"51.39910580223","lon":"-2.3594992944","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30521","CommonName":"Ullswater Drive","Street":"Fairfield Avenue","Indicator":"E-bound","lat":"51.39948078681","lon":"-2.35743229121","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30522","CommonName":"Whitewells Road","Street":"Fairfield Avenue","Indicator":"SE-bound","lat":"51.39958603524","lon":"-2.35534878791","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30523","CommonName":"Bay Tree Road","Street":"Bay Tree Road","Indicator":"W-bound","lat":"51.39932220703","lon":"-2.35339180103","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30524","CommonName":"St Mark's School","Street":"Bay Tree Road","Indicator":"SE-bound","lat":"51.39834793524","lon":"-2.35145813701","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30525","CommonName":"Croft Road","Street":"Bay Tree Road","Indicator":"S-bound","lat":"51.39696661074","lon":"-2.35032638511","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30526","CommonName":"Eastbourne Villas","Street":"Claremont Road","Indicator":"W-bound","lat":"51.39571434494","lon":"-2.35113609857","node":"E0035007","stoptype":"BCT"},{"AtcoCode":"0180BAC30527","CommonName":"Holland Road","Street":"Dowding Road","Indicator":"NE-bound","lat":"51.39559683455","lon":"-2.34833238579","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30528","CommonName":"Holland Road","Street":"Dowding Road","Indicator":"SW-bound","lat":"51.39556125341","lon":"-2.34820275489","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30529","CommonName":"St Saviour's Church","Street":"Holland Road","Indicator":"NW-bound","lat":"51.39536762088","lon":"-2.34679269794","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30530","CommonName":"St Saviour's Church","Street":"Saint Saviour's Road","Indicator":"N-bound","lat":"51.39575642205","lon":"-2.34606259419","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30531","CommonName":"Larkhall Buildings","Street":"Saint Saviour's Road","Indicator":"N-bound","lat":"51.39782789225","lon":"-2.34491393502","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30532","CommonName":"Otago Terrace","Street":"Saint Saviour's Road","Indicator":"N-bound","lat":"51.39935821642","lon":"-2.34432172135","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30533","CommonName":"Linen Walk","Street":"Saint Saviour's Road","Indicator":"N-bound","lat":"51.401211301","lon":"-2.34404814303","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30534","CommonName":"Valley View Road","Street":"Hill View Road","Indicator":"SW-bound","lat":"51.40168767671","lon":"-2.34715678584","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30535","CommonName":"Charlcombe Lane","Street":"Hill View Road","Indicator":"SW-bound","lat":"51.4006575684","lon":"-2.34885960448","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30536","CommonName":"Eldon Place","Street":"Charlcombe Lane","Indicator":"SE-bound","lat":"51.39897881828","lon":"-2.34795560797","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30537","CommonName":"Larkhall Square","Indicator":"E-bound","lat":"51.39739481954","lon":"-2.34541376412","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30538","CommonName":"St Saviours Way","Street":"Saint Saviours Way","Indicator":"SE-bound","lat":"51.39508235978","lon":"-2.34595689183","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30539","CommonName":"Lambridge","Street":"London Road","Indicator":"NE-bound","lat":"51.39619046625","lon":"-2.34217063112","node":"N0060726","stoptype":"BCT"},{"AtcoCode":"0180BAC30541","CommonName":"Bailbrook House","Street":"London Road West","Indicator":"NE-bound","lat":"51.39957516207","lon":"-2.33462046898","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30542","CommonName":"Clarence Gardens","Street":"London Road West","Indicator":"NE-bound","lat":"51.40115021517","lon":"-2.33092318718","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30543","CommonName":"Bailbrook Lane","Street":"London Road West","Indicator":"NE-bound","lat":"51.4034478368","lon":"-2.3260232412","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30544","CommonName":"Vale View Terrace","Street":"London Road East","Indicator":"NE-bound","lat":"51.40499437726","lon":"-2.32278519519","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30545","CommonName":"Stambridge","Street":"Coalpit Road","Indicator":"N-bound","lat":"51.40552294959","lon":"-2.31690893128","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30546","CommonName":"Avon Court","Street":"Coalpit Road","Indicator":"NE-bound","lat":"51.40768946571","lon":"-2.31708206857","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30547","CommonName":"Avon Court","Street":"Coalpit Road","Indicator":"S-bound","lat":"51.40775291187","lon":"-2.31689560418","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30548","CommonName":"Catherine Way - Bottom","Street":"Elmhurst","Indicator":"NW-bound","lat":"51.40964010771","lon":"-2.31728248305","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30549","CommonName":"Catherine Way - Bottom","Street":"Elmhurst","Indicator":"SE-bound","lat":"51.40938998105","lon":"-2.31667688659","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30550","CommonName":"Catherine Way","Street":"Catherine Way","Indicator":"NE-bound","lat":"51.41203269339","lon":"-2.31698272954","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30551","CommonName":"Catherine Way - Top","Street":"Catherine Way","Indicator":"SW-bound","lat":"51.41166676318","lon":"-2.31597370723","node":"N0060720","stoptype":"BCT"},{"AtcoCode":"0180BAC30552","CommonName":"Stambridge","Street":"London Road East","Indicator":"SE-bound","lat":"51.4050214865","lon":"-2.31614351627","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30553","CommonName":"Morris Lane","Street":"London Road East","Indicator":"SE-bound","lat":"51.40397763315","lon":"-2.31310297419","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30554","CommonName":"Morris Lane","Street":"London Road East","Indicator":"NW-bound","lat":"51.40367403417","lon":"-2.31231022385","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30555","CommonName":"Bathford Bridge","Street":"Bradford Road","Indicator":"NW-bound","lat":"51.40204616578","lon":"-2.3090646608","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30556","CommonName":"The Crown","Indicator":"W-bound","lat":"51.40092827764","lon":"-2.30675711118","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30557","CommonName":"The Crown","Street":"Bathford Hill","Indicator":"E-bound","lat":"51.4010733831","lon":"-2.30628370439","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30558","CommonName":"British Legion","Street":"Bathford Hill","Indicator":"E-bound","lat":"51.40059286298","lon":"-2.30087551152","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30559","CommonName":"Dovers Park","Indicator":"NE-bound","lat":"51.40029691893","lon":"-2.30057169616","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30560","CommonName":"Dovers Park","Street":"Dovers Park","Indicator":"SW-bound","lat":"51.40006288179","lon":"-2.30067078431","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30561","CommonName":"Bathford School","Street":"Dovers Park","Indicator":"SE-bound","lat":"51.39946104198","lon":"-2.30043684145","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30562","CommonName":"Stone Wharf","Street":"High Street","Indicator":"E-bound","lat":"51.39913401188","lon":"-2.2946705268","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC30563","CommonName":"Westwoods","Street":"Box Road","Indicator":"SW-bound","lat":"51.4028934492","lon":"-2.30827971463","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30564","CommonName":"Westwoods","Street":"Box Road","Indicator":"NE-bound","lat":"51.40328235038","lon":"-2.30741978395","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30565","CommonName":"Barnfield Way","Street":"Bannerdown Road","Indicator":"SW-bound","lat":"51.40621234826","lon":"-2.31130678216","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30566","CommonName":"Barnfield Way","Street":"Bannerdown Road","Indicator":"NE-bound","lat":"51.40641081013","lon":"-2.31106372568","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30567","CommonName":"Shockerwick Lane","Street":"Bannerdown Road","Indicator":"SW-bound","lat":"51.40828504021","lon":"-2.30614501813","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30568","CommonName":"Shockerwick Lane","Street":"Bannerdown Road","Indicator":"NE-bound","lat":"51.40843782013","lon":"-2.30617479407","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30569","CommonName":"Stambridge","Indicator":"NW-bound","lat":"51.40541232442","lon":"-2.31791451847","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30570","CommonName":"Vale View Terrace","Street":"London Road East","Indicator":"SW-bound","lat":"51.40505854501","lon":"-2.32233998032","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAC30571","CommonName":"Bailbrook Lane","Street":"London Road West","Indicator":"SW-bound","lat":"51.40359333959","lon":"-2.32543486486","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30572","CommonName":"Clarence Gardens","Indicator":"SW-bound","lat":"51.40170323293","lon":"-2.32931714714","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30573","CommonName":"Bailbrook House","Street":"London Road West","Indicator":"SW-bound","lat":"51.40007379105","lon":"-2.33318663074","node":"E0034968","stoptype":"BCT"},{"AtcoCode":"0180BAC30574","CommonName":"Lambridge","Street":"London Road","Indicator":"SW-bound","lat":"51.39544878926","lon":"-2.34365992196","node":"N0060726","stoptype":"BCT"},{"AtcoCode":"0180BAC30575","CommonName":"Balustrade","Street":"London Road","Indicator":"NE-bound","lat":"51.39399099061","lon":"-2.34709848535","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30576","CommonName":"Balustrade","Street":"London Road","Indicator":"SW-bound","lat":"51.39345780717","lon":"-2.34799992933","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30577","CommonName":"Morrisons","Street":"London Road","Indicator":"NE-bound","lat":"51.39246838563","lon":"-2.35112560416","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30578","CommonName":"Morrisons","Street":"London Road","Indicator":"SW-bound","lat":"51.39195302453","lon":"-2.35207022523","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30579","CommonName":"Snow Hill","Street":"London Road","Indicator":"SW-bound","lat":"51.39137341511","lon":"-2.35344549257","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30580","CommonName":"Snow Hill","Street":"London Road","Indicator":"NE-bound","lat":"51.39142627892","lon":"-2.35380520248","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30581","CommonName":"Walcot Gate","Street":"London Street","Indicator":"S-bound","lat":"51.38874906254","lon":"-2.3589581912","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30582","CommonName":"Walcot Gate","Street":"London Street","Indicator":"N-bound","lat":"51.38829869643","lon":"-2.35921334485","node":"E0035014","stoptype":"BCT"},{"AtcoCode":"0180BAC30583","CommonName":"Hilton Hotel","Street":"Walcot Street","Indicator":"Se","lat":"51.38488097101","lon":"-2.35950270853","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30584","CommonName":"Hilton Hotel","Street":"Walcot Street","Indicator":"Sf","lat":"51.38523996762","lon":"-2.35972107577","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30587","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bh","lat":"51.37786369382","lon":"-2.35779539532","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30588","CommonName":"Dorchester Street","Street":"Dorchester Street","Indicator":"Bj","lat":"51.37793250421","lon":"-2.35881605074","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30592","CommonName":"SouthGate","Street":"Saint James's Parade","Indicator":"Wh","lat":"51.3784153108","lon":"-2.35971064545","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30597","CommonName":"Avon Street","Street":"Avon Street","Indicator":"Wm","lat":"51.38025722185","lon":"-2.36307297644","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30601","CommonName":"Manvers Street","Street":"Manvers Street","Indicator":"Be","lat":"51.37841471719","lon":"-2.35696634931","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30602","CommonName":"Terrace Walk","Street":"Terrace Walk","Indicator":"Cb","lat":"51.3811373364","lon":"-2.35757666713","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30603","CommonName":"Terrace Walk","Indicator":"Ca","lat":"51.38094882259","lon":"-2.35747461544","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30604","CommonName":"Orange Grove","Indicator":"NW-bound","lat":"51.38145931684","lon":"-2.35813956781","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30605","CommonName":"Orange Grove","Street":"Orange Grove","Indicator":"E-bound","lat":"51.381808709","lon":"-2.35855900004","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30606","CommonName":"Rebecca Fountain","Street":"High Street","Indicator":"Ce","lat":"51.38165435711","lon":"-2.3590463402","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30607","CommonName":"Guildhall","Street":"High Street","Indicator":"Cc","lat":"51.38193265199","lon":"-2.35919221049","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30608","CommonName":"Guildhall","Street":"Orange Grove","Indicator":"Cf","lat":"51.38175410003","lon":"-2.35877410898","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30609","CommonName":"Guildhall","Street":"High Street","Indicator":"Cg","lat":"51.38218432496","lon":"-2.35922292034","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30611","CommonName":"Grand Parade","Street":"Grand Parade","Indicator":"Ci","lat":"51.38252167175","lon":"-2.35770241692","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30612","CommonName":"Grand Parade","Street":"Grand Parade","Indicator":"Cl","lat":"51.38222618155","lon":"-2.35729777389","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30614","CommonName":"Grand Parade","Street":"Grand Parade","Indicator":"Cm","lat":"51.38209152868","lon":"-2.35722487882","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30616","CommonName":"Royal Avenue","Street":"Royal Avenue","Indicator":"E-bound","lat":"51.38561244491","lon":"-2.36718217035","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC30617","CommonName":"North Road View Point","Street":"North Road","Indicator":"N-bound","lat":"51.3813856128","lon":"-2.34065198561","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30618","CommonName":"King Edwards School","Street":"North Road","Indicator":"NW-bound","lat":"51.38665994058","lon":"-2.34501672449","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC30619","CommonName":"Hantone Hill","Street":"Warminster Road","Indicator":"E-bound","lat":"51.39134663849","lon":"-2.31892359547","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30620","CommonName":"Hantone Hill","Street":"Warminster Road","Indicator":"W-bound","lat":"51.39126559763","lon":"-2.31896614767","node":"E0052898","stoptype":"BCT"},{"AtcoCode":"0180BAC30621","CommonName":"Village","Indicator":"S-bound","lat":"51.37595695155","lon":"-2.30387463637","node":"E0052907","stoptype":"BCT"},{"AtcoCode":"0180BAC30622","CommonName":"Village","Street":"Warminster Road","Indicator":"N-bound","lat":"51.37603720382","lon":"-2.30413377878","node":"E0052907","stoptype":"BCT"},{"AtcoCode":"0180BAC30623","CommonName":"Aqueduct","Street":"Warminster Road","Indicator":"S-bound","lat":"51.36055639892","lon":"-2.31326618705","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC30624","CommonName":"Aqueduct","Street":"Warminster Road","Indicator":"N-bound","lat":"51.36020480583","lon":"-2.313608482","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC30625","CommonName":"Viaduct Hotel","Street":"Warminster Road","Indicator":"NE-bound","lat":"51.35793392014","lon":"-2.31545996982","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180BAC30626","CommonName":"Viaduct Hotel","Street":"Warminster Road","Indicator":"SW-bound","lat":"51.35785307362","lon":"-2.31543069091","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180BAC30629","CommonName":"Pipehouse Lane","Indicator":"N-bound","lat":"51.3380139806","lon":"-2.31997425149","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC30633","CommonName":"New Road","Street":"Dark Lane","Indicator":"NW-bound","lat":"51.34022793162","lon":"-2.30577717775","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC30634","CommonName":"Freshford Po","Street":"Freshford Lane","Indicator":"W-bound","lat":"51.33924777411","lon":"-2.30579936226","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC30635","CommonName":"Chilterns","Street":"Freshford Lane","Indicator":"SW-bound","lat":"51.3376719137","lon":"-2.31346893341","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC30636","CommonName":"Abbey Cottage","Street":"Rosemary Lane","Indicator":"S-bound","lat":"51.33608816448","lon":"-2.31391747573","node":"E0035096","stoptype":"BCT"},{"AtcoCode":"0180BAC30637","CommonName":"St Saviour's Terrace","Street":"St Saviour's Road","Indicator":"N-bound","lat":"51.39469283565","lon":"-2.34693132322","node":"E0035033","stoptype":"BCT"},{"AtcoCode":"0180BAC30638","CommonName":"Charmy Down","Indicator":"SE-bound","lat":"51.42437513442","lon":"-2.35562744717","node":"E0034988","stoptype":"BCT"},{"AtcoCode":"0180BAC30639","CommonName":"Charmy Down","Indicator":"N-bound","lat":"51.42439176283","lon":"-2.35607343168","node":"E0034988","stoptype":"BCT"},{"AtcoCode":"0180BAC30640","CommonName":"Elm Grove","Street":"Gloucester Road","Indicator":"S-bound","lat":"51.39995124587","lon":"-2.34139372645","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30641","CommonName":"Elm Grove","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.40036460146","lon":"-2.34148305544","node":"E0035036","stoptype":"BCT"},{"AtcoCode":"0180BAC30642","CommonName":"Ferndale Road","Street":"Gloucester Road","Indicator":"SE-bound","lat":"51.40227020306","lon":"-2.34169851423","node":"E0035042","stoptype":"BCT"},{"AtcoCode":"0180BAC30643","CommonName":"Ferndale Road","Street":"Gloucester Road","Indicator":"NW-bound","lat":"51.4022249102","lon":"-2.34181318024","node":"E0035042","stoptype":"BCT"},{"AtcoCode":"0180BAC30644","CommonName":"Innox Lane","Street":"Gloucester Road","Indicator":"SW-bound","lat":"51.40851222986","lon":"-2.34414610603","node":"E0035042","stoptype":"BCT"},{"AtcoCode":"0180BAC30645","CommonName":"Innox Lane","Street":"Gloucester Road","Indicator":"N-bound","lat":"51.40854756175","lon":"-2.3443620333","node":"E0035042","stoptype":"BCT"},{"AtcoCode":"0180BAC30646","CommonName":"Penn Lea Road","Street":"Newbridge Hill","Indicator":"NW-bound","lat":"51.38819723108","lon":"-2.39624684543","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30647","CommonName":"Partis College","Street":"Newbridge Hill","Indicator":"NW-bound","lat":"51.38899909662","lon":"-2.39842384939","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30648","CommonName":"Partis College","Street":"Newbridge Hill","Indicator":"SE-bound","lat":"51.38906276969","lon":"-2.39820883223","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30649","CommonName":"Penn Hill Road","Street":"Kelston Road","Indicator":"NW-bound","lat":"51.39082165896","lon":"-2.40186020601","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30650","CommonName":"Penn Hill Road","Street":"Kelston Road","Indicator":"SE-bound","lat":"51.39086710905","lon":"-2.40171688509","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30651","CommonName":"Oldfield School","Street":"Kelston Road","Indicator":"NW-bound","lat":"51.39202654445","lon":"-2.40447215433","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30652","CommonName":"Oldfield School","Street":"Kelston Road","Indicator":"SE-bound","lat":"51.39279463373","lon":"-2.40597367567","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30653","CommonName":"Kelston Park","Street":"Kelston Road","Indicator":"NW-bound","lat":"51.39669067306","lon":"-2.42301234686","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30654","CommonName":"Kelston Park","Street":"Kelston Road","Indicator":"SE-bound","lat":"51.39684274762","lon":"-2.42322935759","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30655","CommonName":"The Crown","Street":"Bath Road","Indicator":"N-bound","lat":"51.40330154639","lon":"-2.43231703683","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30656","CommonName":"The Crown","Street":"Bath Road","Indicator":"S-bound","lat":"51.40332878572","lon":"-2.43224541455","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30657","CommonName":"Kelston Mill","Street":"Bath Road","Indicator":"NW-bound","lat":"51.41084202781","lon":"-2.43569517867","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30658","CommonName":"Kelston Mill","Street":"Bath Road","Indicator":"SE-bound","lat":"51.41171226143","lon":"-2.43622108056","node":"E0052922","stoptype":"BCT"},{"AtcoCode":"0180BAC30659","CommonName":"The Tannery","Street":"Bath Road","Indicator":"NW-bound","lat":"51.41537035874","lon":"-2.4390311862","node":"E0052928","stoptype":"BCT"},{"AtcoCode":"0180BAC30660","CommonName":"The Tannery","Street":"Bath Road","Indicator":"SE-bound","lat":"51.41542479164","lon":"-2.43890229109","node":"E0052928","stoptype":"BCT"},{"AtcoCode":"0180BAC30661","CommonName":"Old Newbridge Hill","Street":"Newbridge Road","Indicator":"W-bound","lat":"51.38907134578","lon":"-2.40358379954","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30662","CommonName":"Newbridge P&R","Indicator":"NE-bound","lat":"51.39045746618","lon":"-2.40578051673","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAC30663","CommonName":"Twerton Fork","Street":"Bristol Road","Indicator":"W-bound","lat":"51.38847959334","lon":"-2.41340848355","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30664","CommonName":"Twerton Fork","Street":"Newbridge Road","Indicator":"E-bound","lat":"51.38869330566","lon":"-2.41399963217","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30665","CommonName":"The Globe","Street":"Bristol Road","Indicator":"W-bound","lat":"51.3861288184","lon":"-2.42949657105","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30666","CommonName":"The Globe","Street":"Bristol Road","Indicator":"E-bound","lat":"51.38637321862","lon":"-2.42905337367","node":"E0052927","stoptype":"BCT"},{"AtcoCode":"0180BAC30667","CommonName":"Corston Lane","Indicator":"E-bound","lat":"51.39056962191","lon":"-2.43708339605","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC30668","CommonName":"Corston Lane","Street":"Bristol Road","Indicator":"NW-bound","lat":"51.39084373551","lon":"-2.43832199637","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC30669","CommonName":"Dryleaze","Street":"Bath Road","Indicator":"SE-bound","lat":"51.39310342154","lon":"-2.44236794449","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC30670","CommonName":"Dryleaze","Street":"Bath Road","Indicator":"NW-bound","lat":"51.39329851517","lon":"-2.44308846275","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC30671","CommonName":"The Shallows","Street":"Bath Road","Indicator":"N-bound","lat":"51.39727557164","lon":"-2.44945145057","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30672","CommonName":"The Shallows","Street":"Bath Road","Indicator":"S-bound","lat":"51.39907808167","lon":"-2.4507053358","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30673","CommonName":"Tyning Road","Street":"Bath Road","Indicator":"NW-bound","lat":"51.40109813756","lon":"-2.45614463767","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30674","CommonName":"Tyning Road","Street":"Bath Road","Indicator":"SE-bound","lat":"51.40160901928","lon":"-2.45656660697","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30675","CommonName":"Lansdown Road","Street":"Bath Road","Indicator":"W-bound","lat":"51.40217609624","lon":"-2.45871420628","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30676","CommonName":"Norman Road","Street":"Bath Road","Indicator":"NW-bound","lat":"51.4034882525","lon":"-2.46344264078","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30677","CommonName":"Norman Road","Street":"Bath Road","Indicator":"SE-bound","lat":"51.40352524122","lon":"-2.46318424816","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30678","CommonName":"Copse Road","Street":"Bath Road","Indicator":"NW-bound","lat":"51.40589853514","lon":"-2.4678375263","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30679","CommonName":"Copse Road","Street":"Bath Road","Indicator":"SE-bound","lat":"51.40668712719","lon":"-2.46850691624","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30680","CommonName":"Pixash Lane","Street":"Bath Road","Indicator":"NW-bound","lat":"51.40972961171","lon":"-2.47438982326","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30681","CommonName":"Pixash Lane","Indicator":"SE-bound","lat":"51.40955188065","lon":"-2.47387038142","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30682","CommonName":"Ellsbridge House","Indicator":"NW-bound","lat":"51.41120508955","lon":"-2.47860357702","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30683","CommonName":"Ellsbridge House","Street":"Bath Road","Indicator":"E-bound","lat":"51.41192585038","lon":"-2.48045156356","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30688","CommonName":"Keynsham Cemetery","Street":"Durley Hill","Indicator":"S-bound","lat":"51.42054283844","lon":"-2.5116055208","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30689","CommonName":"Keynsham Cemetery","Street":"Durley Hill","Indicator":"NW-bound","lat":"51.42114053588","lon":"-2.51269080813","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30690","CommonName":"Rugby Club","Street":"Bristol Road","Indicator":"W-bound","lat":"51.41826388492","lon":"-2.506331157","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30691","CommonName":"Rugby Club","Street":"Bristol Road","Indicator":"E-bound","lat":"51.41832905973","lon":"-2.5058141762","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30692","CommonName":"Station Road","Street":"Station Road","Indicator":"NE-bound","lat":"51.41793906627","lon":"-2.49820260278","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30693","CommonName":"Keynsham Station","Street":"Keynsham Road","Indicator":"SE-bound","lat":"51.41838964239","lon":"-2.49584908442","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30694","CommonName":"Keynsham Station","Street":"Keynsham Road","Indicator":"W-bound","lat":"51.41817555574","lon":"-2.49544411175","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30696","CommonName":"Keynsham Church","Street":"Bristol Road","Indicator":"NW-bound","lat":"51.41753591668","lon":"-2.49996699946","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30698","CommonName":"Keynsham Church","Street":"High Street","Indicator":"SE-bound","lat":"51.41731432407","lon":"-2.49921680675","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30699","CommonName":"Fear Institute","Street":"High Street","Indicator":"N-bound","lat":"51.41667698672","lon":"-2.49896539952","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30701","CommonName":"Post Office","Street":"High Street","Indicator":"N-bound","lat":"51.41566268935","lon":"-2.49855171807","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30702","CommonName":"Keynsham Memorial Park","Street":"Bath Hill","Indicator":"SE-bound","lat":"51.41431666464","lon":"-2.49579061751","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30703","CommonName":"The Talbot","Street":"Bath Road","Indicator":"E-bound","lat":"51.41227094905","lon":"-2.49261954654","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30704","CommonName":"Unity Road","Street":"Bath Road","Indicator":"E-bound","lat":"51.41248249354","lon":"-2.4871866543","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30705","CommonName":"Unity Road","Street":"Bath Road","Indicator":"W-bound","lat":"51.41238203431","lon":"-2.48755943259","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30706","CommonName":"Wellsway","Indicator":"NW-bound","lat":"51.41231106296","lon":"-2.49377027359","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30707","CommonName":"Cavendish Close","Street":"Montague Road","Indicator":"NW-bound","lat":"51.39990328003","lon":"-2.46728758334","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30708","CommonName":"Brockley Road","Street":"Norman Road","Indicator":"E-bound","lat":"51.40422997142","lon":"-2.46232880248","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30709","CommonName":"Gaston Avenue","Street":"Gaston Avenue","Indicator":"NE-bound","lat":"51.41411397588","lon":"-2.49053999325","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30710","CommonName":"Waitrose","Indicator":"W-bound","lat":"51.41413273037","lon":"-2.48386821511","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30711","CommonName":"Chandag Road","Street":"Chandag Road","Indicator":"S-bound","lat":"51.41192867642","lon":"-2.49061724416","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30712","CommonName":"Chandag Road","Street":"Chandag Road","Indicator":"N-bound","lat":"51.41130924199","lon":"-2.49038055664","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30713","CommonName":"Wellsway School","Street":"Chandag Road","Indicator":"S-bound","lat":"51.40956393241","lon":"-2.48844962467","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30714","CommonName":"Lambourn Road","Street":"Chandag Road","Indicator":"S-bound","lat":"51.4080254048","lon":"-2.48867763836","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30715","CommonName":"Lambourn Road","Street":"Chandag Road","Indicator":"N-bound","lat":"51.40777280923","lon":"-2.48887622619","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30716","CommonName":"Torridge Road","Street":"Chandag Road","Indicator":"NE-bound","lat":"51.40654663288","lon":"-2.48966824967","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30717","CommonName":"Torridge Road","Street":"Chandag Road","Indicator":"SW-bound","lat":"51.40606618539","lon":"-2.49059760341","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30718","CommonName":"Minsmere Road","Street":"Minsmere Road","Indicator":"NE-bound","lat":"51.40611203275","lon":"-2.48389852911","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30719","CommonName":"Minsmere Road","Street":"Minsmere Road","Indicator":"SW-bound","lat":"51.4061124484","lon":"-2.48379789626","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30720","CommonName":"Cherwell Road","Street":"Windrush Road","Indicator":"W-bound","lat":"51.40712858864","lon":"-2.48595080801","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30722","CommonName":"Cherwell Road","Street":"Windrush Road","Indicator":"E-bound","lat":"51.40720033998","lon":"-2.48599470023","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30723","CommonName":"Hurn Lane","Indicator":"S-bound","lat":"51.40299950216","lon":"-2.48423943305","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30724","CommonName":"Hurn Lane","Street":"Hurn Lane","Indicator":"N-bound","lat":"51.40291762953","lon":"-2.48446857989","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30725","CommonName":"Martock Road","Street":"Lytes Cary Road","Indicator":"N-bound","lat":"51.40235176933","lon":"-2.4864895533","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30726","CommonName":"Rhode Close","Street":"Lytes Cary Road","Indicator":"S-bound","lat":"51.40188493852","lon":"-2.48631209273","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30727","CommonName":"Mells Close","Street":"Lytes Cary Road","Indicator":"NE-bound","lat":"51.40027845254","lon":"-2.48774691359","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30728","CommonName":"Mells Close","Street":"Lytes Cary Road","Indicator":"SW-bound","lat":"51.40023391501","lon":"-2.48764581528","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30729","CommonName":"Cadbury Road","Street":"Courtenay Road","Indicator":"E-bound","lat":"51.3993627169","lon":"-2.48956274713","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30730","CommonName":"Cadbury Road","Street":"Courtenay Road","Indicator":"W-bound","lat":"51.39928209564","lon":"-2.48949001295","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30731","CommonName":"Uplands","Street":"Wellsway","Indicator":"S-bound","lat":"51.39441000685","lon":"-2.48699456455","node":"E0034985","stoptype":"BCT"},{"AtcoCode":"0180BAC30732","CommonName":"Uplands","Street":"Wellsway","Indicator":"N-bound","lat":"51.3945347494","lon":"-2.48726897901","node":"E0034985","stoptype":"BCT"},{"AtcoCode":"0180BAC30733","CommonName":"Burnett Hill","Street":"Burnett Hill","Indicator":"S-bound","lat":"51.38654838483","lon":"-2.48116282053","node":"E0034985","stoptype":"BCT"},{"AtcoCode":"0180BAC30734","CommonName":"Burnett Hill","Street":"Burnett Hill","Indicator":"N-bound","lat":"51.38611703753","lon":"-2.48110081245","node":"E0034985","stoptype":"BCT"},{"AtcoCode":"0180BAC30735","CommonName":"Two Headed Man","Street":"B3116","Indicator":"N-bound","lat":"51.37462818683","lon":"-2.47827934127","node":"E0052910","stoptype":"BCT"},{"AtcoCode":"0180BAC30736","CommonName":"Two Headed Man","Street":"B3116","Indicator":"SE-bound","lat":"51.37468266285","lon":"-2.47815060715","node":"E0052910","stoptype":"BCT"},{"AtcoCode":"0180BAC30737","CommonName":"Courtenay Road","Street":"Wellsway","Indicator":"S-bound","lat":"51.39925659116","lon":"-2.49128656575","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30738","CommonName":"Sunnymead","Street":"Wellsway","Indicator":"S-bound","lat":"51.40200369985","lon":"-2.49232229609","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30739","CommonName":"Hurn Lane","Street":"Wellsway","Indicator":"S-bound","lat":"51.40641739021","lon":"-2.49261412216","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30740","CommonName":"Cafe","Indicator":"E-bound","lat":"51.41855962085","lon":"-2.50863533242","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30741","CommonName":"Cafe","Indicator":"W-bound","lat":"51.41847888702","lon":"-2.50859129397","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30747","CommonName":"Staunton Lane","Indicator":"N-bound","lat":"51.40742409334","lon":"-2.55881748059","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30748","CommonName":"Saltwell Avenue","Street":"Bristol Road","Indicator":"N-bound","lat":"51.40987895869","lon":"-2.55878990791","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30749","CommonName":"Saltwell Avenue","Street":"Bristol Road","Indicator":"S-bound","lat":"51.40982549162","lon":"-2.55868861021","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30752","CommonName":"Staunton Lane","Street":"Bristol Road","Indicator":"S-bound","lat":"51.40650877542","lon":"-2.55843251894","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30753","CommonName":"Oakleaze","Street":"Stockwood Lane","Indicator":"SW-bound","lat":"51.41925797679","lon":"-2.52761147929","node":"E0035113","stoptype":"BCT"},{"AtcoCode":"0180BAC30754","CommonName":"Oakleaze","Street":"Stockwood Lane","Indicator":"NE-bound","lat":"51.41936548268","lon":"-2.52769900324","node":"E0035113","stoptype":"BCT"},{"AtcoCode":"0180BAC30755","CommonName":"Whitegate Nurseries","Street":"Stockwood Hill","Indicator":"E-bound","lat":"51.42053104846","lon":"-2.51837897492","node":"E0035113","stoptype":"BCT"},{"AtcoCode":"0180BAC30756","CommonName":"Whitegate Nurseries","Street":"Stockwood Hill","Indicator":"NW-bound","lat":"51.42038220271","lon":"-2.51747127207","node":"E0035113","stoptype":"BCT"},{"AtcoCode":"0180BAC30758","CommonName":"Justice Avenue","Street":"Claverton Road","Indicator":"E-bound","lat":"51.40106978586","lon":"-2.46108940889","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30759","CommonName":"Uplands Road","Street":"Uplands Road","Indicator":"E-bound","lat":"51.39871838082","lon":"-2.45304482831","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC30760","CommonName":"Temple Street","Street":"Temple Street","Indicator":"S-bound","lat":"51.41283594351","lon":"-2.49722685773","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30761","CommonName":"Ship Inn","Street":"Temple Street","Indicator":"S-bound","lat":"51.4118039005","lon":"-2.49675554345","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30762","CommonName":"St Clements Road","Street":"Albert Road","Indicator":"W-bound","lat":"51.41080526856","lon":"-2.49900209722","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30763","CommonName":"St Clements Road","Street":"Sherwood Road","Indicator":"E-bound","lat":"51.41087750482","lon":"-2.49893099274","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30765","CommonName":"Stirling Way","Street":"Park Road","Indicator":"S-bound","lat":"51.40932008125","lon":"-2.50147327471","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30766","CommonName":"Lulworth Road","Street":"Coronation Avenue","Indicator":"W-bound","lat":"51.40821895878","lon":"-2.50243888784","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30767","CommonName":"Farleigh Road","Street":"Coronation Avenue","Indicator":"W-bound","lat":"51.40680468376","lon":"-2.50721091291","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30768","CommonName":"Newlands Road","Street":"Cedar Drive","Indicator":"S-bound","lat":"51.40639478021","lon":"-2.5084284078","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30769","CommonName":"Holly Walk","Street":"Cedar Drive","Indicator":"W-bound","lat":"51.40578467861","lon":"-2.51018996743","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30770","CommonName":"Cherry Tree Close","Street":"Longmeadow Road","Indicator":"W-bound","lat":"51.40652166672","lon":"-2.51232595255","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30771","CommonName":"Lays Farm","Street":"Charlton Road","Indicator":"N-bound","lat":"51.40755349498","lon":"-2.51488225612","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30772","CommonName":"Lays Farm","Street":"Charlton Road","Indicator":"S-bound","lat":"51.40773464636","lon":"-2.51458236896","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30773","CommonName":"Lockingwell Road","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.41122823368","lon":"-2.51142960922","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30774","CommonName":"Lockingwell Road","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.41105708623","lon":"-2.5114995903","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30775","CommonName":"Ashcroft Avenue","Street":"Charlton Road","Indicator":"E-bound","lat":"51.4130758141","lon":"-2.5063025726","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30776","CommonName":"Ashcroft Avenue","Street":"Charlton Road","Indicator":"W-bound","lat":"51.41292209281","lon":"-2.50650217825","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30777","CommonName":"St Ladoc Road Top","Street":"St Ladoc Road","Indicator":"N-bound","lat":"51.41406839023","lon":"-2.50549392509","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30778","CommonName":"Westbourne Avenue","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.41435213836","lon":"-2.50433232939","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30779","CommonName":"Culvers Road","Street":"Charlton Road","Indicator":"E-bound","lat":"51.41576957816","lon":"-2.50089678629","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30780","CommonName":"Ashton Way","Street":"Ashton Way","Indicator":"S-bound","lat":"51.41459119995","lon":"-2.49889954213","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30782","CommonName":"Park Road","Street":"Dunster Road","Indicator":"W-bound","lat":"51.40638893029","lon":"-2.50144119642","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30783","CommonName":"St Francis Church","Street":"Warwick Road","Indicator":"S-bound","lat":"51.40812151125","lon":"-2.50627658179","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30784","CommonName":"The Wingrove","Street":"Queens Road","Indicator":"N-bound","lat":"51.40899686801","lon":"-2.50762337669","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30785","CommonName":"Acacia Court","Street":"Holmoak Road","Indicator":"W-bound","lat":"51.40557362135","lon":"-2.51322107859","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30786","CommonName":"Lays Drive","Street":"Lays Drive","Indicator":"NE-bound","lat":"51.4101158721","lon":"-2.51493980683","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30787","CommonName":"Winscombe Close","Street":"St George's Road","Indicator":"W-bound","lat":"51.41447353804","lon":"-2.5095246226","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30788","CommonName":"St Francis Road","Street":"St Francis Road","Indicator":"E-bound","lat":"51.41610480924","lon":"-2.51072191872","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC30789","CommonName":"Cross Keys","Street":"Midford Road","Indicator":"SE-bound","lat":"51.35481473533","lon":"-2.36176591579","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30790","CommonName":"Hillside","Street":"Midford Road","Indicator":"E-bound","lat":"51.34469626564","lon":"-2.34784558582","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30791","CommonName":"Hillside","Street":"Midford Road","Indicator":"W-bound","lat":"51.34457954629","lon":"-2.34778727184","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30792","CommonName":"Hope and Anchor","Street":"Midford Road","Indicator":"NE-bound","lat":"51.34467985919","lon":"-2.34427045329","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30793","CommonName":"Hope and Anchor","Street":"Midford Road","Indicator":"SW-bound","lat":"51.34450872432","lon":"-2.34436967196","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30794","CommonName":"Clearbrook Farm","Street":"Midford Hill","Indicator":"S-bound","lat":"51.3413125837","lon":"-2.33960808725","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30795","CommonName":"Clearbrook Farm","Street":"Midford Hill","Indicator":"N-bound","lat":"51.34131220877","lon":"-2.33973729215","node":"E0035051","stoptype":"BCT"},{"AtcoCode":"0180BAC30796","CommonName":"The Glebe","Street":"B3110","Indicator":"SE-bound","lat":"51.32520520221","lon":"-2.33129437955","node":"E0052921","stoptype":"BCT"},{"AtcoCode":"0180BAC30797","CommonName":"The Glebe","Street":"B3110","Indicator":"NW-bound","lat":"51.32519572304","lon":"-2.33146652768","node":"E0052921","stoptype":"BCT"},{"AtcoCode":"0180BAC30798","CommonName":"High Street","Street":"The Batch","Indicator":"S-bound","lat":"51.32289160788","lon":"-2.32906769737","node":"E0052921","stoptype":"BCT"},{"AtcoCode":"0180BAC30799","CommonName":"High Street","Street":"High Street","Indicator":"N-bound","lat":"51.32225360846","lon":"-2.32891962378","node":"E0052921","stoptype":"BCT"},{"AtcoCode":"0180BAC30800","CommonName":"Odd Down P&R","Indicator":"SW-bound","lat":"51.35187428513","lon":"-2.38438802126","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30801","CommonName":"St Gregory's School","Street":"Sulis Manor Road","Indicator":"W-bound","lat":"51.35314580407","lon":"-2.38326421894","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30802","CommonName":"St Gregory's School","Indicator":"E-bound","lat":"51.35329927033","lon":"-2.38307881807","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC30803","CommonName":"Crossways","Street":"A367","Indicator":"N-bound","lat":"51.34365740336","lon":"-2.40525197457","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC30804","CommonName":"Crossways","Street":"A367","Indicator":"S-bound","lat":"51.34376629468","lon":"-2.40496579157","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC30805","CommonName":"Dunkerton","Street":"A367","Indicator":"S-bound","lat":"51.33366347562","lon":"-2.40901068741","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC30806","CommonName":"Dunkerton","Street":"A367","Indicator":"N-bound","lat":"51.33425565965","lon":"-2.4093748158","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC30807","CommonName":"White Ox Mead Lane","Street":"Dunkerton Hill","Indicator":"SW-bound","lat":"51.32836888546","lon":"-2.41113076488","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC30808","CommonName":"Prince of Wales","Street":"Dunkerton Hill","Indicator":"NE-bound","lat":"51.32449189617","lon":"-2.41664998522","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30809","CommonName":"Prince of Wales","Street":"Dunkerton Hill","Indicator":"S-bound","lat":"51.32452883235","lon":"-2.4163776474","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30810","CommonName":"Eckweek Lane","Street":"Ashgrove","Indicator":"N-bound","lat":"51.32055421153","lon":"-2.41896767981","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30811","CommonName":"Eckweek Lane","Street":"Ashgrove","Indicator":"SW-bound","lat":"51.31982425562","lon":"-2.41942021704","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30812","CommonName":"Keel's Hill","Street":"Ashgrove","Indicator":"NE-bound","lat":"51.31799899999","lon":"-2.42190031528","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30813","CommonName":"Keel's Hill","Street":"Ashgrove","Indicator":"SW-bound","lat":"51.31776475546","lon":"-2.42202730698","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30814","CommonName":"Braysdown Lane","Street":"Bath Road","Indicator":"E-bound","lat":"51.31583349716","lon":"-2.42644325807","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30815","CommonName":"Braysdown Lane","Street":"Bath Road","Indicator":"W-bound","lat":"51.31568001429","lon":"-2.42661401549","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30816","CommonName":"Red Post","Street":"Bath Road","Indicator":"NE-bound","lat":"51.31315608527","lon":"-2.43320486155","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30817","CommonName":"Red Post","Street":"Bath Road","Indicator":"SW-bound","lat":"51.31246012544","lon":"-2.43417392937","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30818","CommonName":"Home Farm Close","Street":"Wellow Mead","Indicator":"E-bound","lat":"51.31144626684","lon":"-2.43357612298","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30819","CommonName":"Frederick Avenue","Street":"Wellow Mead","Indicator":"E-bound","lat":"51.31121147326","lon":"-2.4289685068","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30820","CommonName":"Miners Walk","Street":"Wellow Mead","Indicator":"E-bound","lat":"51.31105090634","lon":"-2.42615499764","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30821","CommonName":"Faulkland View","Street":"Orchard Way","Indicator":"SW-bound","lat":"51.31533711534","lon":"-2.41696875572","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30822","CommonName":"French Close","Street":"Orchard Way","Indicator":"SW-bound","lat":"51.31415610809","lon":"-2.42034416201","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30823","CommonName":"Russet Way","Street":"Orchard Way","Indicator":"SE-bound","lat":"51.31283394404","lon":"-2.42044685332","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30824","CommonName":"Bath Old Road","Street":"A367","Indicator":"SW-bound","lat":"51.30793294869","lon":"-2.44252360694","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30825","CommonName":"Bath Old Road","Street":"A367","Indicator":"NE-bound","lat":"51.30747030999","lon":"-2.44359509604","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30826","CommonName":"Skinner's Hill","Street":"A367","Indicator":"NE-bound","lat":"51.30439148228","lon":"-2.44926033328","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30827","CommonName":"Skinner's Hill","Street":"A367","Indicator":"SW-bound","lat":"51.30477280986","lon":"-2.4483029404","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC30828","CommonName":"Smallcombe Road","Street":"Bath New Road","Indicator":"SW-bound","lat":"51.30021182722","lon":"-2.45352259499","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC30829","CommonName":"Smallcombe Road","Street":"Bath New Road","Indicator":"NE-bound","lat":"51.30032804952","lon":"-2.45369586492","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC30830","CommonName":"Bath New Road Bottom","Street":"Bath New Road","Indicator":"NW-bound","lat":"51.29643119993","lon":"-2.44991405215","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30831","CommonName":"Bath New Road Bottom","Street":"Bath New Road","Indicator":"SE-bound","lat":"51.29657544982","lon":"-2.44981506553","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30832","CommonName":"Victoria Hall","Street":"The Street","Indicator":"Stop D","lat":"51.29146720188","lon":"-2.44770003343","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30833","CommonName":"Victoria Hall","Street":"The Street","Indicator":"Stop C","lat":"51.29152986814","lon":"-2.4477723478","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30834","CommonName":"Victoria Hall","Street":"The Street","Indicator":"Stop B","lat":"51.29144537627","lon":"-2.44635177718","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30835","CommonName":"Victoria Hall","Street":"The Street","Indicator":"Stop A","lat":"51.29128325556","lon":"-2.44642190862","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30836","CommonName":"Bath College","Street":"Wells Road","Indicator":"SW-bound","lat":"51.29065230939","lon":"-2.4538299011","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30837","CommonName":"Bath College","Street":"Wells Road","Indicator":"NE-bound","lat":"51.29076925455","lon":"-2.4538167139","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30838","CommonName":"Maple Drive","Street":"Wells Road","Indicator":"SW-bound","lat":"51.28885118482","lon":"-2.45914664962","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30839","CommonName":"Maple Drive","Street":"Wells Road","Indicator":"NE-bound","lat":"51.28940477861","lon":"-2.45784720981","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30840","CommonName":"Westfield Chapel","Street":"Wells Road","Indicator":"SW-bound","lat":"51.28635000433","lon":"-2.46633436792","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30841","CommonName":"Westfield Chapel","Indicator":"NE-bound","lat":"51.28617693629","lon":"-2.46689184528","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30842","CommonName":"Elm Tree Inn","Street":"Wells Road","Indicator":"SW-bound","lat":"51.28390397296","lon":"-2.46864676691","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30845","CommonName":"Westfield School","Street":"Wells Road","Indicator":"NE-bound","lat":"51.282748405","lon":"-2.46979639405","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30846","CommonName":"Westfield School","Street":"Fosseway","Indicator":"SW-bound","lat":"51.2815671201","lon":"-2.47063026841","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30848","CommonName":"Fossefield Road","Street":"Fosseway South","Indicator":"NE-bound","lat":"51.27573739403","lon":"-2.47581764997","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30849","CommonName":"Charlton Park","Street":"Charlton Road","Indicator":"NW-bound","lat":"51.2784504107","lon":"-2.47422562761","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30850","CommonName":"Charlton Park","Street":"Charlton Road","Indicator":"SE-bound","lat":"51.27864741011","lon":"-2.47442837396","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30851","CommonName":"Norton Hill School","Street":"Charlton Road","Indicator":"E-bound","lat":"51.28084039296","lon":"-2.47909636043","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30852","CommonName":"Norton Hill School","Street":"Charlton Road","Indicator":"W-bound","lat":"51.28100611812","lon":"-2.48034546144","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC30853","CommonName":"Town Hall","Street":"High Street","Indicator":"W-bound","lat":"51.28562516134","lon":"-2.48320413371","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30854","CommonName":"Town Hall","Street":"High Street","Indicator":"SE-bound","lat":"51.28571625976","lon":"-2.48291830774","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30855","CommonName":"Church Lane","Street":"North Road","Indicator":"E-bound","lat":"51.28795588593","lon":"-2.48710035899","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30859","CommonName":"High St Top","Street":"High Street","Indicator":"S-bound","lat":"51.28896392263","lon":"-2.47814844509","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30860","CommonName":"Library","Street":"High Street","Indicator":"SW-bound","lat":"51.28589099895","lon":"-2.48197375562","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30861","CommonName":"Somervale School","Indicator":"NE-bound","lat":"51.28529012892","lon":"-2.48593936346","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30862","CommonName":"Somervale School","Street":"Redfield Road","Indicator":"SW-bound","lat":"51.2851279252","lon":"-2.48602368443","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30863","CommonName":"Paulton Road","Street":"Redfield Road","Indicator":"E-bound","lat":"51.28360203019","lon":"-2.49182898875","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30864","CommonName":"Paulton Road","Street":"Redfield Road","Indicator":"W-bound","lat":"51.2835480814","lon":"-2.49182841225","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30865","CommonName":"Crossways Tavern","Street":"Steam Mills","Indicator":"SW-bound","lat":"51.28318610652","lon":"-2.48808223771","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30866","CommonName":"Crossways Tavern","Street":"Steam Mills","Indicator":"NE-bound","lat":"51.28328483331","lon":"-2.48812629978","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30867","CommonName":"Withies Park","Street":"Withies Park","Indicator":"W-bound","lat":"51.281198213","lon":"-2.49039820641","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30868","CommonName":"Withies Park","Street":"Withies Park","Indicator":"E-bound","lat":"51.28118705756","lon":"-2.49091424537","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30869","CommonName":"Riverside Walk","Street":"Withies Park","Indicator":"W-bound","lat":"51.28023040604","lon":"-2.49388622598","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30870","CommonName":"Riverside Walk","Street":"Withies Park","Indicator":"E-bound","lat":"51.28035707301","lon":"-2.49370119808","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30871","CommonName":"Riverside Road","Street":"Withies Park","Indicator":"SW-bound","lat":"51.27916377838","lon":"-2.49520813121","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30872","CommonName":"Riverside Road","Street":"Withies Park","Indicator":"NE-bound","lat":"51.27920831101","lon":"-2.49530897001","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30873","CommonName":"Riverside Gardens","Street":"Chilcompton Road","Indicator":"SW-bound","lat":"51.27784674915","lon":"-2.49831935964","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30874","CommonName":"Braewood","Street":"Chilcompton Road","Indicator":"NE-bound","lat":"51.27857688845","lon":"-2.49789715621","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30875","CommonName":"Redlands Terrace","Street":"Chilcompton Road","Indicator":"NE-bound","lat":"51.27947313431","lon":"-2.49647313158","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30876","CommonName":"Redlands Terrace","Street":"Chilcompton Road","Indicator":"SW-bound","lat":"51.27952829917","lon":"-2.49618698249","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30877","CommonName":"Kings Arms","Street":"Chilcompton Road","Indicator":"N-bound","lat":"51.28148866681","lon":"-2.4940287673","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30878","CommonName":"Kings Arms","Street":"Chilcompton Road","Indicator":"S-bound","lat":"51.28149826342","lon":"-2.49388549215","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30879","CommonName":"Redfield Road Top","Street":"Paulton Road","Indicator":"N-bound","lat":"51.28420077942","lon":"-2.49271004519","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30880","CommonName":"Pinewood Road","Street":"Paulton Road","Indicator":"N-bound","lat":"51.28544437628","lon":"-2.49206376299","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30881","CommonName":"Pinewood Road","Street":"Paulton Road","Indicator":"S-bound","lat":"51.28541788412","lon":"-2.49194876746","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30882","CommonName":"Orchard Avenue","Street":"Paulton Road","Indicator":"N-bound","lat":"51.28693744113","lon":"-2.49196501136","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30883","CommonName":"Orchard Avenue","Street":"Paulton Road","Indicator":"S-bound","lat":"51.28678518896","lon":"-2.49181998913","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30884","CommonName":"Hayes Park Road","Street":"Northmead Road","Indicator":"N-bound","lat":"51.29037133385","lon":"-2.49220249263","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30885","CommonName":"Hayes Park Road","Street":"Northmead Road","Indicator":"S-bound","lat":"51.29008427055","lon":"-2.49204167662","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30886","CommonName":"Thicket Mead Rbt","Street":"Northmead Road","Indicator":"S-bound","lat":"51.29253471259","lon":"-2.49307176925","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30887","CommonName":"Thicket Mead Rbt","Street":"Northmead Road","Indicator":"N-bound","lat":"51.2925790656","lon":"-2.49321565722","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30888","CommonName":"Tesco","Indicator":"N-bound","lat":"51.29263799679","lon":"-2.49840783434","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30889","CommonName":"Sunnymead","Street":"West Road","Indicator":"E-bound","lat":"51.2928283167","lon":"-2.48953260403","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30890","CommonName":"Sunnymead","Street":"West Road","Indicator":"W-bound","lat":"51.29271172768","lon":"-2.48945965702","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30891","CommonName":"Monger Lane","Street":"West Road","Indicator":"E-bound","lat":"51.29303946115","lon":"-2.48633671681","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30892","CommonName":"Monger Lane","Street":"West Road","Indicator":"W-bound","lat":"51.29295841884","lon":"-2.48636454292","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30893","CommonName":"Long Barnaby","Street":"West Road","Indicator":"W-bound","lat":"51.29321951918","lon":"-2.48193579147","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30894","CommonName":"Welton Grove","Street":"West Road","Indicator":"E-bound","lat":"51.29310100645","lon":"-2.48014187219","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30896","CommonName":"Valley Walk","Street":"Station Road","Indicator":"S-bound","lat":"51.29205979978","lon":"-2.47749224465","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30897","CommonName":"Valley Walk","Street":"Station Road","Indicator":"NE-bound","lat":"51.29172506652","lon":"-2.47799070559","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30899","CommonName":"Morley Terrace","Street":"Woodborough Road","Indicator":"SW-bound","lat":"51.29507092227","lon":"-2.44350420698","node":"E0035136","stoptype":"BCT"},{"AtcoCode":"0180BAC30900","CommonName":"Springfield Crest","Street":"Springfield Crest","Indicator":"SE-bound","lat":"51.29762116216","lon":"-2.44203714202","node":"E0035136","stoptype":"BCT"},{"AtcoCode":"0180BAC30902","CommonName":"Welton Road","Street":"Somervale Road","Indicator":"E-bound","lat":"51.2908201205","lon":"-2.46150383191","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30903","CommonName":"Welton Road","Street":"Somervale Road","Indicator":"W-bound","lat":"51.29072189252","lon":"-2.46133075859","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAC30904","CommonName":"Wheelers Road","Street":"Radstock Road","Indicator":"W-bound","lat":"51.29095598941","lon":"-2.46579307805","node":"E0035143","stoptype":"BCT"},{"AtcoCode":"0180BAC30905","CommonName":"Wheelers Hill","Street":"Radstock Road","Indicator":"E-bound","lat":"51.29078579121","lon":"-2.4678850966","node":"E0035143","stoptype":"BCT"},{"AtcoCode":"0180BAC30906","CommonName":"Welton Primary School","Street":"Radstock Road","Indicator":"W-bound","lat":"51.28986246806","lon":"-2.4738843394","node":"E0035143","stoptype":"BCT"},{"AtcoCode":"0180BAC30907","CommonName":"Church Lane","Street":"North Road","Indicator":"W-bound","lat":"51.28785733786","lon":"-2.4870132771","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC30908","CommonName":"Miners Arms","Street":"A362","Indicator":"E-bound","lat":"51.29639660097","lon":"-2.52313193419","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30909","CommonName":"Miners Arms","Street":"A362","Indicator":"W-bound","lat":"51.29629679798","lon":"-2.52333159346","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30910","CommonName":"Manor Farm","Street":"A362","Indicator":"E-bound","lat":"51.29651117177","lon":"-2.52565751809","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30911","CommonName":"Manor Farm","Street":"A362","Indicator":"W-bound","lat":"51.29640295292","lon":"-2.52572799395","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30912","CommonName":"Farrington Way","Street":"Main Street","Indicator":"W-bound","lat":"51.29781499761","lon":"-2.52964540348","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30913","CommonName":"Farrington Way","Street":"Main Street","Indicator":"E-bound","lat":"51.2979227645","lon":"-2.52967533013","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30914","CommonName":"Farrington Gurney By-pass","Street":"A362","Indicator":"W-bound","lat":"51.29676588817","lon":"-2.53098152851","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30915","CommonName":"Farrington Gurney By-pass","Street":"A362","Indicator":"E-bound","lat":"51.2965315637","lon":"-2.52911429699","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30916","CommonName":"Main Street","Street":"Bristol Road","Indicator":"S-bound","lat":"51.29824756845","lon":"-2.53339392013","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30917","CommonName":"Ham Lane","Street":"Bristol Road","Indicator":"N-bound","lat":"51.29945944362","lon":"-2.53383827505","node":"E0052917","stoptype":"BCT"},{"AtcoCode":"0180BAC30918","CommonName":"White Cross","Street":"Bristol Road","Indicator":"N-bound","lat":"51.30897493407","lon":"-2.53337487709","node":"E0035152","stoptype":"BCT"},{"AtcoCode":"0180BAC30919","CommonName":"White Cross","Street":"Bristol Road","Indicator":"S-bound","lat":"51.30865248642","lon":"-2.53309855747","node":"E0035152","stoptype":"BCT"},{"AtcoCode":"0180BAC30920","CommonName":"Temple Bridge Farm","Street":"A37","Indicator":"SE-bound","lat":"51.31375093215","lon":"-2.53701725279","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30921","CommonName":"Temple Bridge Farm","Street":"A37","Indicator":"NW-bound","lat":"51.31409711538","lon":"-2.53799696","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30922","CommonName":"Cameley Surgery","Street":"A37","Indicator":"N-bound","lat":"51.31723288493","lon":"-2.54241009412","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30923","CommonName":"Cameley Surgery","Street":"A37","Indicator":"SE-bound","lat":"51.3170465917","lon":"-2.54186263721","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30924","CommonName":"Paulwood Road","Street":"Upper Bristol Road","Indicator":"S-bound","lat":"51.32134205942","lon":"-2.54436716773","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30925","CommonName":"Paulwood Road","Street":"Upper Bristol Road","Indicator":"N-bound","lat":"51.32192402599","lon":"-2.54490502648","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC30926","CommonName":"Cholwell Farm","Street":"A37","Indicator":"SE-bound","lat":"51.32509443444","lon":"-2.54762633302","node":"E0034990","stoptype":"BCT"},{"AtcoCode":"0180BAC30927","CommonName":"Cholwell Farm","Street":"A37","Indicator":"N-bound","lat":"51.32604985148","lon":"-2.54905853907","node":"E0034990","stoptype":"BCT"},{"AtcoCode":"0180BAC30928","CommonName":"Station Road","Street":"Upper Bristol Road","Indicator":"N-bound","lat":"51.3302192843","lon":"-2.5477304668","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30930","CommonName":"Station Road","Street":"Bristol Road","Indicator":"S-bound","lat":"51.32921286124","lon":"-2.54758929606","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30931","CommonName":"Rogers Close","Street":"Upper Bristol Road","Indicator":"N-bound","lat":"51.33265485525","lon":"-2.54798916166","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30932","CommonName":"Rogers Close","Street":"Upper Bristol Road","Indicator":"S-bound","lat":"51.33225111944","lon":"-2.5477977488","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30933","CommonName":"Featherbed Lane","Street":"The Flat","Indicator":"N-bound","lat":"51.33735428308","lon":"-2.54869120478","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30934","CommonName":"Featherbed Lane","Street":"The Flat","Indicator":"SW-bound","lat":"51.33719291048","lon":"-2.54858879088","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC30935","CommonName":"Chelwood House","Street":"A37","Indicator":"N-bound","lat":"51.35365099806","lon":"-2.54018357147","node":"E0052904","stoptype":"BCT"},{"AtcoCode":"0180BAC30936","CommonName":"Chelwood House","Street":"A37","Indicator":"S-bound","lat":"51.35340942528","lon":"-2.53992224428","node":"E0052904","stoptype":"BCT"},{"AtcoCode":"0180BAC30937","CommonName":"Whitley Batts","Street":"A37","Indicator":"S-bound","lat":"51.35947522936","lon":"-2.54071169905","node":"E0035156","stoptype":"BCT"},{"AtcoCode":"0180BAC30938","CommonName":"Whitley Batts","Street":"A37","Indicator":"N-bound","lat":"51.36112344965","lon":"-2.54206684542","node":"E0035156","stoptype":"BCT"},{"AtcoCode":"0180BAC30939","CommonName":"Pensford Bridge","Indicator":"SE-bound","lat":"51.37150624102","lon":"-2.54843868497","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC30940","CommonName":"Pensford Bridge","Street":"New Road","Indicator":"W-bound","lat":"51.37164505087","lon":"-2.54951779287","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC30941","CommonName":"Belluton Lane","Street":"Pensford Hill","Indicator":"S-bound","lat":"51.37774395044","lon":"-2.55280925857","node":"E0034974","stoptype":"BCT"},{"AtcoCode":"0180BAC30942","CommonName":"Belluton Lane","Indicator":"N-bound","lat":"51.37905402422","lon":"-2.55338541082","node":"E0034974","stoptype":"BCT"},{"AtcoCode":"0180BAC30943","CommonName":"Gibbet Lane","Street":"Hursley Hill","Indicator":"N-bound","lat":"51.39342679728","lon":"-2.54871524354","node":"E0052934","stoptype":"BCT"},{"AtcoCode":"0180BAC30944","CommonName":"Gibbet Lane","Street":"Hursley Hill","Indicator":"S-bound","lat":"51.3931771294","lon":"-2.54826670091","node":"E0052934","stoptype":"BCT"},{"AtcoCode":"0180BAC30945","CommonName":"Sleep Lane","Street":"Bristol Road","Indicator":"NW-bound","lat":"51.40184081125","lon":"-2.55301360107","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30948","CommonName":"Norton Lane","Street":"A37","Indicator":"S-bound","lat":"51.40044286237","lon":"-2.55200485883","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC30949","CommonName":"Tyning House","Street":"Bristol Road","Indicator":"S-bound","lat":"51.3952904981","lon":"-2.55011739589","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC30950","CommonName":"Tyning House","Street":"Bristol Road","Indicator":"NW-bound","lat":"51.39540603354","lon":"-2.55040625081","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC30952","CommonName":"Hillcrest","Street":"A37","Indicator":"S-bound","lat":"51.36724640433","lon":"-2.54795683453","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC30953","CommonName":"Hillcrest","Street":"New Road","Indicator":"N-bound","lat":"51.36702081633","lon":"-2.54812651525","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC30955","CommonName":"Phillis Hill Bottom","Street":"Phillis Hill","Indicator":"S-bound","lat":"51.29409994962","lon":"-2.49291644307","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30956","CommonName":"Phillis Hill Bottom","Street":"Phillis Hill","Indicator":"N-bound","lat":"51.29415341507","lon":"-2.49303174994","node":"N0060712","stoptype":"BCT"},{"AtcoCode":"0180BAC30957","CommonName":"Paulton Hospital","Street":"Phillis Hill","Indicator":"S-bound","lat":"51.29921063739","lon":"-2.49426210584","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAC30958","CommonName":"Paulton Hospital","Street":"Phillis Hill","Indicator":"N-bound","lat":"51.29926391968","lon":"-2.49442045521","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAC30959","CommonName":"Alpine Road","Street":"Salisbury Road","Indicator":"S-bound","lat":"51.3009253957","lon":"-2.4948973181","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAC30960","CommonName":"Winterfield Close","Street":"Winterfield Road","Indicator":"NW-bound","lat":"51.30192411104","lon":"-2.49687321662","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAC30961","CommonName":"Alexandra Park","Street":"Winterfield Road","Indicator":"SE-bound","lat":"51.30396567572","lon":"-2.49888920201","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30963","CommonName":"Alexandra Park","Street":"Winterield Road","Indicator":"NW-bound","lat":"51.30452950486","lon":"-2.49951215288","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30964","CommonName":"Central Garage","Street":"Ham Lane","Indicator":"NE-bound","lat":"51.30580877309","lon":"-2.49682911409","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30965","CommonName":"Central Garage","Street":"Ham Lane","Indicator":"SW-bound","lat":"51.30568301491","lon":"-2.49679906478","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30966","CommonName":"Wallenge Drive","Street":"Britten's Hill","Indicator":"SW-bound","lat":"51.30735645061","lon":"-2.49445007411","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30967","CommonName":"Wallenge Drive","Street":"Britten's Hill","Indicator":"NE-bound","lat":"51.30747339973","lon":"-2.49443698567","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30968","CommonName":"Gregorys Tyning","Street":"Britten's Hill","Indicator":"N-bound","lat":"51.30948109137","lon":"-2.49384167257","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30969","CommonName":"Gregorys Tyning","Street":"Britten's Hill","Indicator":"S-bound","lat":"51.31002896281","lon":"-2.49399102375","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30970","CommonName":"Brookside","Street":"Bath Road","Indicator":"SW-bound","lat":"51.30964727468","lon":"-2.49918038795","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30971","CommonName":"Brookside","Street":"Bath Road","Indicator":"NE-bound","lat":"51.30972813624","lon":"-2.49919561239","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30972","CommonName":"Millward Terrace","Street":"High Street","Indicator":"N-bound","lat":"51.30810714048","lon":"-2.50187508378","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30973","CommonName":"Millward Terrace","Street":"High Street","Indicator":"S-bound","lat":"51.30817063387","lon":"-2.50174666157","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30974","CommonName":"War Memorial","Street":"High Street","Indicator":"SE-bound","lat":"51.30647064137","lon":"-2.50187156965","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30975","CommonName":"Farrington Road","Street":"Paulton Road","Indicator":"E-bound","lat":"51.30752221272","lon":"-2.50615813268","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30976","CommonName":"Farrington Road","Street":"Paulton Road","Indicator":"W-bound","lat":"51.3074668371","lon":"-2.50648747916","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC30977","CommonName":"Claremont Gardens","Street":"B3355","Indicator":"SE-bound","lat":"51.31234799678","lon":"-2.51912395019","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC30979","CommonName":"Claremont Gardens","Street":"B3355","Indicator":"W-bound","lat":"51.31233492992","lon":"-2.52004203862","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC30980","CommonName":"Highbury Road","Indicator":"S-bound","lat":"51.3148709222","lon":"-2.5179471863","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC30981","CommonName":"Highbury Road","Street":"Wells Road","Indicator":"N-bound","lat":"51.31502301378","lon":"-2.51812107906","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC30982","CommonName":"Church Farm","Street":"A39","Indicator":"NE-bound","lat":"51.32025619713","lon":"-2.50994321919","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30983","CommonName":"Church Farm","Street":"A39","Indicator":"SW-bound","lat":"51.32022129392","lon":"-2.50969888379","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30985","CommonName":"The Star Inn","Street":"High Street","Indicator":"S-bound","lat":"51.32263329507","lon":"-2.5091946579","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30986","CommonName":"Methodist Church","Street":"High Street","Indicator":"NW-bound","lat":"51.32348304018","lon":"-2.51022298689","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30987","CommonName":"New Road","Street":"New Road","Indicator":"N-bound","lat":"51.32612343796","lon":"-2.5109555364","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30988","CommonName":"New Road","Street":"New Road","Indicator":"S-bound","lat":"51.32610595623","lon":"-2.51084052819","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC30989","CommonName":"Hayeswood Road","Street":"New Road","Indicator":"S-bound","lat":"51.33402324023","lon":"-2.50980892861","node":"E0035012","stoptype":"BCT"},{"AtcoCode":"0180BAC30990","CommonName":"Hayeswood Road","Street":"New Road","Indicator":"N-bound","lat":"51.33381543864","lon":"-2.5100362889","node":"E0035020","stoptype":"BCT"},{"AtcoCode":"0180BAC30991","CommonName":"Priors Hill","Street":"Hayeswood Road","Indicator":"W-bound","lat":"51.32791674582","lon":"-2.48682057373","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC30992","CommonName":"Priors Hill","Street":"Hayeswood Road","Indicator":"E-bound","lat":"51.32800582418","lon":"-2.4870224498","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC30993","CommonName":"North Road","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.32926063998","lon":"-2.47928529094","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC30994","CommonName":"North Road","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.3292601111","lon":"-2.47941445972","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC30995","CommonName":"Bloomfield Park Rd","Street":"Bloomfield Road","Indicator":"S-bound","lat":"51.33105862825","lon":"-2.47937581266","node":"E0034978","stoptype":"BCT"},{"AtcoCode":"0180BAC30996","CommonName":"Bloomfield Park Rd","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.33104916663","lon":"-2.47949054001","node":"E0034978","stoptype":"BCT"},{"AtcoCode":"0180BAC30997","CommonName":"Sleight View","Street":"Bloomfield Road","Indicator":"SE-bound","lat":"51.33364238508","lon":"-2.4808094708","node":"E0034978","stoptype":"BCT"},{"AtcoCode":"0180BAC30998","CommonName":"Sleight View","Street":"Bloomfield Road","Indicator":"N-bound","lat":"51.33382097485","lon":"-2.48111277647","node":"E0034978","stoptype":"BCT"},{"AtcoCode":"0180BAC30999","CommonName":"Tilley Farm","Street":"Timsbury Road","Indicator":"SE-bound","lat":"51.3415774795","lon":"-2.48194056323","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31000","CommonName":"Tilley Farm","Street":"Timsbury Road","Indicator":"NW-bound","lat":"51.34133512558","lon":"-2.48183752488","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31001","CommonName":"Butchers Arms","Street":"Timsbury Road","Indicator":"Stop C","lat":"51.34383029512","lon":"-2.48294049709","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31002","CommonName":"Butchers Arms","Street":"Timsbury Road","Indicator":"Stop B","lat":"51.34368589995","lon":"-2.48306819353","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31003","CommonName":"The New Inn","Street":"A39","Indicator":"N-bound","lat":"51.34977701329","lon":"-2.48435279871","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31004","CommonName":"The New Inn","Street":"A39","Indicator":"S-bound","lat":"51.34975968378","lon":"-2.48419466575","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31006","CommonName":"Marksbury Church","Street":"A39","Indicator":"NE-bound","lat":"51.35920636187","lon":"-2.48071815891","node":"E0052924","stoptype":"BCT"},{"AtcoCode":"0180BAC31007","CommonName":"Marksbury Church","Street":"A39","Indicator":"SW-bound","lat":"51.35815952782","lon":"-2.48164070797","node":"E0052924","stoptype":"BCT"},{"AtcoCode":"0180BAC31008","CommonName":"Stanton Prior Turn","Street":"A39","Indicator":"S-bound","lat":"51.36150886384","lon":"-2.47837241694","node":"E0052924","stoptype":"BCT"},{"AtcoCode":"0180BAC31009","CommonName":"Hobb's Wall","Street":"Bath Road","Indicator":"E-bound","lat":"51.33962546509","lon":"-2.50349706316","node":"E0035020","stoptype":"BCT"},{"AtcoCode":"0180BAC31010","CommonName":"Hobb's Wall","Street":"Bath Road","Indicator":"W-bound","lat":"51.33955359591","lon":"-2.50348191944","node":"E0035020","stoptype":"BCT"},{"AtcoCode":"0180BAC31011","CommonName":"Manor Farm","Street":"Bath Road","Indicator":"SW-bound","lat":"51.34160772567","lon":"-2.4962256579","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31012","CommonName":"Manor Farm","Street":"Bath Road","Indicator":"NE-bound","lat":"51.34169733513","lon":"-2.49629840901","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31013","CommonName":"Loves Lane","Street":"Bath Road","Indicator":"NE-bound","lat":"51.34303898305","lon":"-2.4937286452","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31014","CommonName":"Loves Lane","Street":"Bath Road","Indicator":"SW-bound","lat":"51.34303053645","lon":"-2.49359934133","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31015","CommonName":"Poor Hill","Street":"The Street","Indicator":"W-bound","lat":"51.34376756404","lon":"-2.48938623529","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31016","CommonName":"Poor Hill","Street":"The Street","Indicator":"E-bound","lat":"51.34383056368","lon":"-2.48937254936","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31017","CommonName":"Meadway","Street":"The Mead","Indicator":"W-bound","lat":"51.34372266608","lon":"-2.48504987641","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC31018","CommonName":"British Legion","Street":"North Road","Indicator":"SE-bound","lat":"51.32814802026","lon":"-2.47650368197","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31019","CommonName":"British Legion","Street":"North Road","Indicator":"W-bound","lat":"51.32804035689","lon":"-2.47644515625","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31020","CommonName":"Lansdown View","Street":"North Road","Indicator":"E-bound","lat":"51.32786776437","lon":"-2.47243908551","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31021","CommonName":"Lansdown Crescent","Street":"Hook Hill","Indicator":"SE-bound","lat":"51.32694719505","lon":"-2.46881292378","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31022","CommonName":"The Lodge","Street":"Hook Hill","Indicator":"W-bound","lat":"51.32660908057","lon":"-2.46791965858","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31023","CommonName":"Camerton Turn","Street":"Weekesley Lane","Indicator":"NE-bound","lat":"51.32525037315","lon":"-2.46136156686","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC31024","CommonName":"Weeksley Lane","Street":"Tunley Hill","Indicator":"SW-bound","lat":"51.32639046355","lon":"-2.45955033518","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC31025","CommonName":"Weeksley Lane","Street":"Tunley Hill","Indicator":"NE-bound","lat":"51.32669763674","lon":"-2.45918025793","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC31026","CommonName":"Windy Ridge","Indicator":"E-bound","lat":"51.33064755104","lon":"-2.45159822447","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC31027","CommonName":"Windy Ridge","Indicator":"W-bound","lat":"51.33060414336","lon":"-2.45119591083","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC31028","CommonName":"King William Inn","Street":"Tunley Road","Indicator":"NE-bound","lat":"51.3335794261","lon":"-2.4396414268","node":"E0035129","stoptype":"BCT"},{"AtcoCode":"0180BAC31029","CommonName":"King William Inn","Street":"Tunley Road","Indicator":"SW-bound","lat":"51.33358088083","lon":"-2.43925388189","node":"E0035129","stoptype":"BCT"},{"AtcoCode":"0180BAC31030","CommonName":"Longhouses","Street":"Tunley Road","Indicator":"NE-bound","lat":"51.33833302065","lon":"-2.42339341879","node":"E0035167","stoptype":"BCT"},{"AtcoCode":"0180BAC31031","CommonName":"Priston Turn","Street":"Tunley Road","Indicator":"NE-bound","lat":"51.34451799867","lon":"-2.40600615605","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC31032","CommonName":"Priston Turn","Street":"Tunley Road","Indicator":"SW-bound","lat":"51.34443727452","lon":"-2.40594801268","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC31033","CommonName":"Shoscombe Turn","Street":"Green Street","Indicator":"NE-bound","lat":"51.3053657733","lon":"-2.42182743469","node":"E0052936","stoptype":"BCT"},{"AtcoCode":"0180BAC31035","CommonName":"Montague Road","Street":"Rag Hill","Indicator":"E-bound","lat":"51.30645283225","lon":"-2.41707468145","node":"E0052936","stoptype":"BCT"},{"AtcoCode":"0180BAC31036","CommonName":"Montague Road","Street":"Rag Hill","Indicator":"W-bound","lat":"51.30638922689","lon":"-2.41726059652","node":"E0052936","stoptype":"BCT"},{"AtcoCode":"0180BAC31037","CommonName":"Applecroft","Street":"White Hill","Indicator":"NE-bound","lat":"51.30668545292","lon":"-2.41232838829","node":"E0035153","stoptype":"BCT"},{"AtcoCode":"0180BAC31038","CommonName":"Applecroft","Street":"White Hill","Indicator":"SW-bound","lat":"51.30660468077","lon":"-2.41228462719","node":"E0035153","stoptype":"BCT"},{"AtcoCode":"0180BAC31039","CommonName":"Mico Bank","Street":"Wellow Road","Indicator":"E-bound","lat":"51.31154738217","lon":"-2.41052121021","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC31040","CommonName":"Mico Bank","Street":"Wellow Road","Indicator":"W-bound","lat":"51.3113663939","lon":"-2.4108495771","node":"E0035153","stoptype":"BCT"},{"AtcoCode":"0180BAC31041","CommonName":"Canteen Lane","Street":"High Street","Indicator":"NE-bound","lat":"51.32146430943","lon":"-2.37882402613","node":"E0052944","stoptype":"BCT"},{"AtcoCode":"0180BAC31042","CommonName":"Canteen Lane","Street":"High Street","Indicator":"SW-bound","lat":"51.32129281976","lon":"-2.3790235149","node":"E0052944","stoptype":"BCT"},{"AtcoCode":"0180BAC31043","CommonName":"Fox & Badger","Indicator":"NE-bound","lat":"51.32294203899","lon":"-2.3750763284","node":"E0052944","stoptype":"BCT"},{"AtcoCode":"0180BAC31044","CommonName":"Fox & Badger","Street":"High Street","Indicator":"SW-bound","lat":"51.32280748768","lon":"-2.37497477567","node":"E0052944","stoptype":"BCT"},{"AtcoCode":"0180BAC31045","CommonName":"Manor Close","Indicator":"SE-bound","lat":"51.32421897601","lon":"-2.37504369815","node":"E0052944","stoptype":"BCT"},{"AtcoCode":"0180BAC31047","CommonName":"The Lodge","Indicator":"N-bound","lat":"51.33839449425","lon":"-2.39017530964","node":"E0052909","stoptype":"BCT"},{"AtcoCode":"0180BAC31048","CommonName":"The Lodge","Indicator":"S-bound","lat":"51.33827779607","lon":"-2.39011689635","node":"E0052909","stoptype":"BCT"},{"AtcoCode":"0180BAC31049","CommonName":"Monkton Combe School","Street":"Church Lane","Indicator":"NE-bound","lat":"51.35808822423","lon":"-2.32479610035","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC31050","CommonName":"Monkton Combe School","Street":"Church Lane","Indicator":"SW-bound","lat":"51.35805249711","lon":"-2.32470967767","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC31051","CommonName":"Wheelwright Arms","Street":"Church Lane","Indicator":"SW-bound","lat":"51.35658722313","lon":"-2.32780132462","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC31052","CommonName":"Wheelwrights Arms","Street":"Church Lane","Indicator":"NE-bound","lat":"51.35659577223","lon":"-2.32795935868","node":"E0052925","stoptype":"BCT"},{"AtcoCode":"0180BAC31053","CommonName":"Englishcombe Village","Indicator":"SW-bound","lat":"51.36361745829","lon":"-2.40571549125","node":"E0052915","stoptype":"BCT"},{"AtcoCode":"0180BAC31054","CommonName":"Inglesbatch Village","Street":"Stitchings Lane","Indicator":"E-bound","lat":"51.35084408557","lon":"-2.42737147144","node":"E0035024","stoptype":"BCT"},{"AtcoCode":"0180BAC31055","CommonName":"Nailwell Village","Street":"Priston Road","Indicator":"SW-bound","lat":"51.34653826176","lon":"-2.42207633993","node":"E0035056","stoptype":"BCT"},{"AtcoCode":"0180BAC31056","CommonName":"Priston School","Indicator":"N-bound","lat":"51.34325705672","lon":"-2.44137077115","node":"E0052933","stoptype":"BCT"},{"AtcoCode":"0180BAC31057","CommonName":"Longhouses","Street":"Tunley Road","Indicator":"SW-bound","lat":"51.3380710736","lon":"-2.42372117898","node":"E0035167","stoptype":"BCT"},{"AtcoCode":"0180BAC31058","CommonName":"Westbury Fm","Street":"Tunley Road","Indicator":"E-bound","lat":"51.34145381753","lon":"-2.4131429484","node":"E0035040","stoptype":"BCT"},{"AtcoCode":"0180BAC31059","CommonName":"Westbury Fm","Street":"Tunley Road","Indicator":"W-bound","lat":"51.34140002066","lon":"-2.41309939506","node":"E0035040","stoptype":"BCT"},{"AtcoCode":"0180BAC31060","CommonName":"Homefield","Street":"South Road","Indicator":"NE-bound","lat":"51.32646139212","lon":"-2.47334314333","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31061","CommonName":"Guss and Crook","Street":"South Road","Indicator":"W-bound","lat":"51.32553175087","lon":"-2.47641914749","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31062","CommonName":"Guss and Crook","Street":"South Road","Indicator":"E-bound","lat":"51.32546606406","lon":"-2.47709298766","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31063","CommonName":"St Marys Close","Street":"The Avenue","Indicator":"N-bound","lat":"51.3269506103","lon":"-2.47907462138","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31064","CommonName":"St Marys Close","Street":"The Avenue","Indicator":"SE-bound","lat":"51.32661921951","lon":"-2.4787554253","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31065","CommonName":"Greenvale Close","Street":"Greenvale Drive","Indicator":"N-bound","lat":"51.32307031119","lon":"-2.48025398765","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC31066","CommonName":"Travis Perkins","Street":"Camerton Road","Indicator":"SE-bound","lat":"51.32340193696","lon":"-2.45808536487","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31067","CommonName":"Camerton Po","Street":"Red Hill","Indicator":"N-bound","lat":"51.31957641051","lon":"-2.45910911333","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31068","CommonName":"The Daglands","Street":"Camerton Hill","Indicator":"N-bound","lat":"51.31788629849","lon":"-2.45902048685","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31069","CommonName":"The Daglands","Street":"Camerton Hill","Indicator":"S-bound","lat":"51.31812934909","lon":"-2.45895116787","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31070","CommonName":"Camerton Court","Indicator":"S-bound","lat":"51.31511031717","lon":"-2.45376999686","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31071","CommonName":"Camerton Court","Street":"Camerton Hill","Indicator":"N-bound","lat":"51.31504682062","lon":"-2.45391285262","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31072","CommonName":"Camerton Farm","Indicator":"E-bound","lat":"51.30771342428","lon":"-2.4505695791","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31073","CommonName":"Camerton Farm","Indicator":"W-bound","lat":"51.30761468363","lon":"-2.45052557378","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC31074","CommonName":"Eastdown Road","Street":"Eastdown Road","Indicator":"NW-bound","lat":"51.30426799128","lon":"-2.45792344108","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31075","CommonName":"Eastdown Road","Street":"Eastdown Road","Indicator":"SE-bound","lat":"51.30431322925","lon":"-2.45785216699","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31076","CommonName":"Duchy Close","Street":"Eastdown Road","Indicator":"W-bound","lat":"51.30334819913","lon":"-2.45629334232","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31077","CommonName":"Duchy Close","Street":"Eastdown Road","Indicator":"SE-bound","lat":"51.30343878486","lon":"-2.45612210546","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31078","CommonName":"Clandown Post Office","Street":"Smallcombe Road","Indicator":"S-bound","lat":"51.3012507222","lon":"-2.45459429128","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31079","CommonName":"Clandown Post Office","Street":"Smallcombe Road","Indicator":"N-bound","lat":"51.300719723","lon":"-2.45471813715","node":"E0034991","stoptype":"BCT"},{"AtcoCode":"0180BAC31081","CommonName":"Old Post Office","Street":"Kilmersdon Road","Indicator":"N-bound","lat":"51.2817967825","lon":"-2.45345581985","node":"E0035017","stoptype":"BCT"},{"AtcoCode":"0180BAC31082","CommonName":"Old Post Office","Street":"Kilmersdon Road","Indicator":"S-bound","lat":"51.28187842824","lon":"-2.45327023134","node":"E0035017","stoptype":"BCT"},{"AtcoCode":"0180BAC31084","CommonName":"Hanover Court","Street":"Frome Road","Indicator":"S-bound","lat":"51.28938819182","lon":"-2.43144664362","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31085","CommonName":"Writhlington School","Street":"Knobsbury Road","Indicator":"N-bound","lat":"51.28733372274","lon":"-2.43017983483","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31086","CommonName":"Hayloft","Street":"Knobsbury Lane","Indicator":"N-bound","lat":"51.28810042627","lon":"-2.42952736979","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31087","CommonName":"Hayloft","Street":"Knobsbury Lane","Indicator":"S-bound","lat":"51.28809190833","lon":"-2.42939823171","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31088","CommonName":"Writhlington Crossroads","Street":"Frome Road","Indicator":"NW-bound","lat":"51.2887183667","lon":"-2.43020711983","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31089","CommonName":"Writhlington Crossroads","Street":"Frome Road","Indicator":"SE-bound","lat":"51.28868361251","lon":"-2.42987697432","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31090","CommonName":"Mount Pleasant","Street":"Frome Road","Indicator":"E-bound","lat":"51.29044288525","lon":"-2.43558661896","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31091","CommonName":"Mount Pleasant","Street":"Frome Road","Indicator":"W-bound","lat":"51.29043732484","lon":"-2.437077986","node":"E0035171","stoptype":"BCT"},{"AtcoCode":"0180BAC31092","CommonName":"Tiledown Close","Street":"Temple Inn Lane","Indicator":"NE-bound","lat":"51.32231837099","lon":"-2.54130771005","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC31093","CommonName":"Temple Inn","Street":"Temple Inn Lane","Indicator":"NE-bound","lat":"51.32075343086","lon":"-2.54332699121","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC31095","CommonName":"Clutton Church","Street":"Marsh Lane","Indicator":"N-bound","lat":"51.32825645916","lon":"-2.54249714336","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC31096","CommonName":"Clutton Post Office","Street":"Station Road","Indicator":"W-bound","lat":"51.330754427","lon":"-2.54093343017","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC31097","CommonName":"Hinton Blewett Church","Street":"Upper Road","Indicator":"NE-bound","lat":"51.3102862536","lon":"-2.58272879419","node":"E0052920","stoptype":"BCT"},{"AtcoCode":"0180BAC31099","CommonName":"Corston Church","Street":"A39","Indicator":"E-bound","lat":"51.38584603757","lon":"-2.43787185038","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC31100","CommonName":"Corston Church","Street":"A39","Indicator":"W-bound","lat":"51.38598403311","lon":"-2.43943954386","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC31101","CommonName":"Ashton Hill","Street":"A39","Indicator":"E-bound","lat":"51.38605858099","lon":"-2.44113597062","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC31102","CommonName":"Wheatsheaf Inn","Indicator":"E-bound","lat":"51.37966200986","lon":"-2.46752675305","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC31103","CommonName":"Bsuc Lodge","Street":"Wells Road","Indicator":"W-bound","lat":"51.38601923227","lon":"-2.43239837086","node":"E0052912","stoptype":"BCT"},{"AtcoCode":"0180BAC31105","CommonName":"Toll Gate Service Station","Indicator":"NE-bound","lat":"51.37455125024","lon":"-2.47730159287","node":"E0052910","stoptype":"BCT"},{"AtcoCode":"0180BAC31106","CommonName":"Hunstrete Turning","Street":"A368","Indicator":"SE-bound","lat":"51.35322412544","lon":"-2.50486680061","node":"E0035022","stoptype":"BCT"},{"AtcoCode":"0180BAC31107","CommonName":"Hunstrete Turning","Street":"A368","Indicator":"NW-bound","lat":"51.3531426461","lon":"-2.50499514616","node":"E0035022","stoptype":"BCT"},{"AtcoCode":"0180BAC31108","CommonName":"Chelwood Old Post Office","Street":"A368","Indicator":"S-bound","lat":"51.35507554554","lon":"-2.52750539356","node":"E0052904","stoptype":"BCT"},{"AtcoCode":"0180BAC31109","CommonName":"Chelwood Old Post Office","Street":"A368","Indicator":"E-bound","lat":"51.35563041074","lon":"-2.52609003409","node":"E0052904","stoptype":"BCT"},{"AtcoCode":"0180BAC31110","CommonName":"Stanton Wick Turn","Street":"A368","Indicator":"E-bound","lat":"51.35234758225","lon":"-2.55547593844","node":"E0035110","stoptype":"BCT"},{"AtcoCode":"0180BAC31111","CommonName":"Stanton Wick Turn","Street":"A368","Indicator":"W-bound","lat":"51.35226686517","lon":"-2.55543188214","node":"E0035110","stoptype":"BCT"},{"AtcoCode":"0180BAC31112","CommonName":"Bromley Road","Street":"A368","Indicator":"NE-bound","lat":"51.35095708645","lon":"-2.56420406275","node":"E0035110","stoptype":"BCT"},{"AtcoCode":"0180BAC31113","CommonName":"Bromley Road","Street":"A368","Indicator":"W-bound","lat":"51.3510129704","lon":"-2.56380268239","node":"E0035110","stoptype":"BCT"},{"AtcoCode":"0180BAC31114","CommonName":"Folly Farm","Street":"A368","Indicator":"S-bound","lat":"51.34238478369","lon":"-2.5777521151","node":"N0073209","stoptype":"BCT"},{"AtcoCode":"0180BAC31115","CommonName":"Folly Farm","Street":"A368","Indicator":"N-bound","lat":"51.34235688896","lon":"-2.57793840314","node":"N0073209","stoptype":"BCT"},{"AtcoCode":"0180BAC31116","CommonName":"Brook Copse","Street":"A368","Indicator":"W-bound","lat":"51.3380064783","lon":"-2.58305164369","node":"E0052940","stoptype":"BCT"},{"AtcoCode":"0180BAC31117","CommonName":"Post Office","Street":"The Street","Indicator":"NE-bound","lat":"51.33549456357","lon":"-2.59441739812","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC31118","CommonName":"Post Office","Street":"The Street","Indicator":"SW-bound","lat":"51.33544178185","lon":"-2.59418704021","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC31119","CommonName":"Butchers Arms","Street":"Wick Road","Indicator":"E-bound","lat":"51.33130167518","lon":"-2.60023369612","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC31120","CommonName":"Butchers Arms","Street":"A368","Indicator":"W-bound","lat":"51.33088771143","lon":"-2.60205115402","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC31121","CommonName":"Wickes Green","Street":"A368","Indicator":"SW-bound","lat":"51.32785726283","lon":"-2.60904409248","node":"E0035117","stoptype":"BCT"},{"AtcoCode":"0180BAC31122","CommonName":"Wickes Green","Street":"A368","Indicator":"NE-bound","lat":"51.32784677819","lon":"-2.60933100004","node":"E0035117","stoptype":"BCT"},{"AtcoCode":"0180BAC31123","CommonName":"New Manor Farm","Street":"A368","Indicator":"S-bound","lat":"51.32293444074","lon":"-2.61159070521","node":"E0035117","stoptype":"BCT"},{"AtcoCode":"0180BAC31124","CommonName":"New Manor Farm","Street":"A368","Indicator":"NE-bound","lat":"51.32286131136","lon":"-2.6118193445","node":"E0035117","stoptype":"BCT"},{"AtcoCode":"0180BAC31125","CommonName":"The Crown","Street":"A368","Indicator":"W-bound","lat":"51.30902496501","lon":"-2.63173463698","node":"E0052945","stoptype":"BCT"},{"AtcoCode":"0180BAC31126","CommonName":"The Crown","Street":"A368","Indicator":"E-bound","lat":"51.30910611814","lon":"-2.63169271231","node":"E0052945","stoptype":"BCT"},{"AtcoCode":"0180BAC31127","CommonName":"Fairash Cross Roads","Street":"Compton Martin Road","Indicator":"E-bound","lat":"51.3087477868","lon":"-2.6430070865","node":"E0035088","stoptype":"BCT"},{"AtcoCode":"0180BAC31128","CommonName":"Fairash Crossroads","Street":"Compton Martin Road","Indicator":"W-bound","lat":"51.30871063993","lon":"-2.64322176274","node":"E0035088","stoptype":"BCT"},{"AtcoCode":"0180BAC31129","CommonName":"Compton Martin Po","Street":"A368","Indicator":"W-bound","lat":"51.31061416174","lon":"-2.65507029312","node":"E0052911","stoptype":"BCT"},{"AtcoCode":"0180BAC31130","CommonName":"Compton Martin Po","Street":"A368","Indicator":"E-bound","lat":"51.31055723911","lon":"-2.65399346041","node":"E0052911","stoptype":"BCT"},{"AtcoCode":"0180BAC31131","CommonName":"Mendip Villas","Street":"A368","Indicator":"NW-bound","lat":"51.31266078208","lon":"-2.6636793241","node":"E0052911","stoptype":"BCT"},{"AtcoCode":"0180BAC31132","CommonName":"Mendip Villas","Street":"A368","Indicator":"SE-bound","lat":"51.31286538192","lon":"-2.66406966463","node":"E0052911","stoptype":"BCT"},{"AtcoCode":"0180BAC31133","CommonName":"Ubley Sawmills","Street":"Bath Road","Indicator":"E-bound","lat":"51.31813574892","lon":"-2.67799289604","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC31134","CommonName":"Ubley Sawmills","Street":"Bath Road","Indicator":"NW-bound","lat":"51.31805408103","lon":"-2.67812083546","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC31136","CommonName":"Ubley Farm","Indicator":"E-bound","lat":"51.31996713216","lon":"-2.68314282345","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC31137","CommonName":"Ubley Farm","Street":"A368","Indicator":"W-bound","lat":"51.31986781142","lon":"-2.68321309691","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC31138","CommonName":"Ubley Church","Street":"The Street","Indicator":"SE-bound","lat":"51.32147175613","lon":"-2.67643485587","node":"E0052943","stoptype":"BCT"},{"AtcoCode":"0180BAC31139","CommonName":"The Clock","Street":"High Street","Indicator":"NE-bound","lat":"51.30125093823","lon":"-2.62260546813","node":"E0052914","stoptype":"BCT"},{"AtcoCode":"0180BAC31140","CommonName":"Coley Village","Street":"Coley Hill","Indicator":"SW-bound","lat":"51.29795244608","lon":"-2.59992757053","node":"E0034995","stoptype":"BCT"},{"AtcoCode":"0180BAC31141","CommonName":"The Lodge","Street":"Coley Road","Indicator":"SW-bound","lat":"51.30399308765","lon":"-2.61928588104","node":"E0035128","stoptype":"BCT"},{"AtcoCode":"0180BAC31142","CommonName":"The Lodge","Street":"Coley Road","Indicator":"SE-bound","lat":"51.30402082011","lon":"-2.61914280545","node":"E0035128","stoptype":"BCT"},{"AtcoCode":"0180BAC31143","CommonName":"Bellevue Farm","Street":"West Town Lane","Indicator":"W-bound","lat":"51.34092098157","lon":"-2.69337470525","node":"N0077165","stoptype":"BCT"},{"AtcoCode":"0180BAC31146","CommonName":"Breach Hill Farm","Indicator":"NE-bound","lat":"51.33519898049","lon":"-2.66287081826","node":"E0052926","stoptype":"BCT"},{"AtcoCode":"0180BAC31148","CommonName":"Bilbie Road","Street":"Wallycourt Road","Indicator":"E-bound","lat":"51.35182334599","lon":"-2.63058574514","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31149","CommonName":"Bilbie Road","Street":"Wallycourt Road","Indicator":"W-bound","lat":"51.35175103021","lon":"-2.63065655105","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31150","CommonName":"Chew Valley Lake Picnic Site","Street":"Walley Lane","Indicator":"NW-bound","lat":"51.35014660566","lon":"-2.61275718862","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31151","CommonName":"Chew Valley Lake Picnic Site","Street":"Walley Lane","Indicator":"SE-bound","lat":"51.35023681797","lon":"-2.61270095514","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31152","CommonName":"Hollow Brook","Street":"Hollow Brook Lane","Indicator":"SW-bound","lat":"51.34151090432","lon":"-2.59954876996","node":"E0035021","stoptype":"BCT"},{"AtcoCode":"0180BAC31153","CommonName":"Hollow Brook","Street":"Hollow Brook Lane","Indicator":"NE-bound","lat":"51.34161821081","lon":"-2.59966502356","node":"E0035021","stoptype":"BCT"},{"AtcoCode":"0180BAC31155","CommonName":"Stoke Inn","Indicator":"SW-bound","lat":"51.35273564304","lon":"-2.63315437452","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31156","CommonName":"Stoke Inn","Street":"Bristol Road","Indicator":"NE-bound","lat":"51.35273440067","lon":"-2.63338411923","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31157","CommonName":"Portbridge Crossroads","Street":"Pagans Hill","Indicator":"N-bound","lat":"51.36693512206","lon":"-2.63122430399","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31158","CommonName":"Portbridge Crossroads","Street":"Pagans Hill","Indicator":"S-bound","lat":"51.36708029578","lon":"-2.63098210257","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31159","CommonName":"Portbridge Crossroads","Street":"Chew Road","Indicator":"SE-bound","lat":"51.36752698745","lon":"-2.63151973973","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31160","CommonName":"Portbridge Crossroads","Street":"Chew Road","Indicator":"NW-bound","lat":"51.36760496318","lon":"-2.63206667385","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31161","CommonName":"Greenleigh Farm","Street":"Wells Road","Indicator":"S-bound","lat":"51.37992246217","lon":"-2.62222145829","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31162","CommonName":"Broadcroft","Street":"Winford Road","Indicator":"W-bound","lat":"51.36543219318","lon":"-2.62137860082","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31163","CommonName":"Highfield House","Street":"Chew Lane","Indicator":"SW-bound","lat":"51.36450711863","lon":"-2.61777512918","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31164","CommonName":"Chew Valley School","Street":"Chew Lane","Indicator":"SW-bound","lat":"51.3593977474","lon":"-2.6232501711","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31165","CommonName":"Chew Valley School","Street":"Chew Lane","Indicator":"NE-bound","lat":"51.35951470875","lon":"-2.62323739687","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31166","CommonName":"Chew Medical Practice","Street":"Chew Lane","Indicator":"W-bound","lat":"51.35581378943","lon":"-2.63094213526","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31167","CommonName":"Chew Medical Practice","Street":"Chew Lane","Indicator":"E-bound","lat":"51.35596895901","lon":"-2.63051343399","node":"E0052906","stoptype":"BCT"},{"AtcoCode":"0180BAC31168","CommonName":"Sacred Heart","Street":"High Street","Indicator":"E-bound","lat":"51.36521221418","lon":"-2.61706641981","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31169","CommonName":"Chew Magna Post Office","Street":"South Parade","Indicator":"W-bound","lat":"51.36575911006","lon":"-2.61050934428","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31170","CommonName":"Chew Magna Post Office","Street":"South Parade","Indicator":"E-bound","lat":"51.36585808769","lon":"-2.61049629675","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31172","CommonName":"Tunbridge Farm","Street":"Tunbridge Road","Indicator":"S-bound","lat":"51.36322276128","lon":"-2.60890999798","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31173","CommonName":"Round Farm","Street":"Moorledge Road","Indicator":"NW-bound","lat":"51.35764398976","lon":"-2.60270358072","node":"E0035054","stoptype":"BCT"},{"AtcoCode":"0180BAC31174","CommonName":"Pony and Trap","Street":"Knowle Hill","Indicator":"SE-bound","lat":"51.34964496421","lon":"-2.59317899885","node":"E0035058","stoptype":"BCT"},{"AtcoCode":"0180BAC31175","CommonName":"Stowey Bungalow","Street":"Knowle Hill","Indicator":"E-bound","lat":"51.34595652037","lon":"-2.58098451551","node":"N0073202","stoptype":"BCT"},{"AtcoCode":"0180BAC31176","CommonName":"Lower Belluton Farm","Street":"B3130","Indicator":"SW-bound","lat":"51.37566221536","lon":"-2.56134705041","node":"E0034974","stoptype":"BCT"},{"AtcoCode":"0180BAC31177","CommonName":"Norton Malreward Church","Street":"Church Road","Indicator":"SW-bound","lat":"51.38363830764","lon":"-2.57240878685","node":"E0052929","stoptype":"BCT"},{"AtcoCode":"0180BAC31178","CommonName":"Round House","Indicator":"E-bound","lat":"51.37028597498","lon":"-2.58145053489","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC31179","CommonName":"Round House","Street":"B3130","Indicator":"W-bound","lat":"51.37005191851","lon":"-2.581505031","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC31180","CommonName":"Norton Lane","Street":"B3130","Indicator":"E-bound","lat":"51.3663017855","lon":"-2.60469900454","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31181","CommonName":"Norton Lane","Street":"B3130","Indicator":"W-bound","lat":"51.36623170961","lon":"-2.60433897321","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC31182","CommonName":"Druids Arms","Indicator":"N-bound","lat":"51.36511451848","lon":"-2.57987679761","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC31183","CommonName":"Stanton Drew PO","Street":"Bromley Road","Indicator":"N-bound","lat":"51.35740454027","lon":"-2.57705070916","node":"E0052939","stoptype":"BCT"},{"AtcoCode":"0180BAC31184","CommonName":"George & Dragon","Street":"Publow Lane","Indicator":"N-bound","lat":"51.37172613115","lon":"-2.54756498692","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC31185","CommonName":"Publow Church","Street":"Publow Lane","Indicator":"E-bound","lat":"51.37565392789","lon":"-2.54404879303","node":"E0052934","stoptype":"BCT"},{"AtcoCode":"0180BAC31186","CommonName":"Paradise Row","Street":"Peats Hill","Indicator":"W-bound","lat":"51.37836908476","lon":"-2.53040258219","node":"E0035168","stoptype":"BCT"},{"AtcoCode":"0180BAC31187","CommonName":"The Compton","Street":"Court Hill","Indicator":"NE-bound","lat":"51.37898313314","lon":"-2.50956133072","node":"E0052910","stoptype":"BCT"},{"AtcoCode":"0180BAC31188","CommonName":"Chewton Keynsham","Indicator":"N-bound","lat":"51.39609287907","lon":"-2.50157291169","node":"E0034989","stoptype":"BCT"},{"AtcoCode":"0180BAC31189","CommonName":"Poplars Cottage","Street":"Charlton Road","Indicator":"NE-bound","lat":"51.39741554912","lon":"-2.51992865231","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC31190","CommonName":"Queen Charlton Church","Street":"Queen Charlton Lane","Indicator":"N-bound","lat":"51.40094506018","lon":"-2.52691188618","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC31191","CommonName":"Upper Farm","Street":"Langridge Lane","Indicator":"NE-bound","lat":"51.42251834635","lon":"-2.39090608269","node":"E0035122","stoptype":"BCT"},{"AtcoCode":"0180BAC31192","CommonName":"Langridge Church","Indicator":"E-bound","lat":"51.42413332548","lon":"-2.37548759854","node":"E0035034","stoptype":"BCT"},{"AtcoCode":"0180BAC31193","CommonName":"St Marys Church","Street":"Innox Lane","Indicator":"NE-bound","lat":"51.41386793511","lon":"-2.35131839388","node":"N0073214","stoptype":"BCT"},{"AtcoCode":"0180BAC31194","CommonName":"Church Street","Street":"High Street","Indicator":"S-bound","lat":"51.41510902532","lon":"-2.36303284181","node":"E0035169","stoptype":"BCT"},{"AtcoCode":"0180BAC31196","CommonName":"Charlcombe Church","Street":"Charlcombe Lane","Indicator":"W-bound","lat":"51.40403212767","lon":"-2.3627725565","node":"E0052903","stoptype":"BCT"},{"AtcoCode":"0180BAC31197","CommonName":"obsolete","Street":"Dorchester Street","Indicator":"W-bound","lat":"51.37815001531","lon":"-2.35825740308","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49590","CommonName":"Pipehouse Lane","Street":"Warminster Road","Indicator":"S-bound","lat":"51.33716021264","lon":"-2.31981039668","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC49591","CommonName":"Priory Cottage","Street":"Abbey Lane","Indicator":"SW-bound","lat":"51.3332555567","lon":"-2.31732869364","node":"E0035096","stoptype":"BCT"},{"AtcoCode":"0180BAC49592","CommonName":"Priory Cottage","Street":"Abbey Lane","Indicator":"NE-bound","lat":"51.33327326741","lon":"-2.31742929323","node":"E0035096","stoptype":"BCT"},{"AtcoCode":"0180BAC49593","CommonName":"Chilterns","Street":"Freshford Lane","Indicator":"NE-bound","lat":"51.33774384633","lon":"-2.31346942443","node":"E0035072","stoptype":"BCT"},{"AtcoCode":"0180BAC49594","CommonName":"Abbey Cottage","Street":"Rosemary Lane","Indicator":"N-bound","lat":"51.33609684801","lon":"-2.31403237325","node":"E0035096","stoptype":"BCT"},{"AtcoCode":"0180BAC49595","CommonName":"Freshford Turn","Street":"Warminster Road","Indicator":"N-bound","lat":"51.34366106349","lon":"-2.31656789246","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180BAC49596","CommonName":"Freshford Turn","Street":"Warminster Road","Indicator":"SW-bound","lat":"51.34356258325","lon":"-2.3164092853","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180BAC49597","CommonName":"Freshford Po","Street":"Freshford Lane","Indicator":"E-bound","lat":"51.33930172361","lon":"-2.30579972154","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC49598","CommonName":"Ambury","Street":"Ambury","Indicator":"Wr","lat":"51.37831122863","lon":"-2.3613908835","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49599","CommonName":"Ambury","Street":"Ambury","Indicator":"Wq","lat":"51.37836508878","lon":"-2.36142004394","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49600","CommonName":"Ambury","Street":"Ambury","Indicator":"Wp","lat":"51.37859014161","lon":"-2.36133560912","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49601","CommonName":"Ambury","Street":"Ambury","Indicator":"Wn","lat":"51.37877001538","lon":"-2.36132265824","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49603","CommonName":"Hadley Arms","Street":"North Road","Indicator":"E-bound","lat":"51.36244402715","lon":"-2.34545221969","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC49604","CommonName":"Ambury","Street":"Ambury","Indicator":"Ww","lat":"51.37848237695","lon":"-2.36129165591","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49605","CommonName":"Corn Street","Street":"Corn Street","Indicator":"Wt","lat":"51.37921616994","lon":"-2.36243253031","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC49606","CommonName":"Corn Street","Street":"Corn Street","Indicator":"Wu","lat":"51.37923308508","lon":"-2.36277750261","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC56437","CommonName":"Gaston Avenue","Street":"Gaston Avenue","Indicator":"S-bound","lat":"51.41407849241","lon":"-2.49042457929","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC56438","CommonName":"Haselbury Grove","Street":"Manor Road","Indicator":"W-bound","lat":"51.39892532317","lon":"-2.45993225077","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC56439","CommonName":"Station Road","Street":"Station Road","Indicator":"W-bound","lat":"51.4182954653","lon":"-2.49685470518","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC56440","CommonName":"Butchers Arms","Street":"Timsbury Road","Indicator":"Stop A","lat":"51.34388359194","lon":"-2.4830989875","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAC56441","CommonName":"Stanton Prior Turn","Street":"A39","Indicator":"N-bound","lat":"51.36149017694","lon":"-2.47854457541","node":"E0052924","stoptype":"BCT"},{"AtcoCode":"0180BAC56442","CommonName":"White Ox Mead Lane","Street":"Dunkerton Hill","Indicator":"NE-bound","lat":"51.32843127136","lon":"-2.41128919964","node":"E0052913","stoptype":"BCT"},{"AtcoCode":"0180BAC56443","CommonName":"Camerton Turn","Street":"Weekesley Lane","Indicator":"SW-bound","lat":"51.32517878093","lon":"-2.46127473961","node":"E0035049","stoptype":"BCT"},{"AtcoCode":"0180BAC56444","CommonName":"Queen Charlton Church","Street":"Queen Charlton Lane","Indicator":"S-bound","lat":"51.40098160696","lon":"-2.5267829299","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC56445","CommonName":"Norton Malreward Church","Street":"Church Road","Indicator":"NE-bound","lat":"51.38367378084","lon":"-2.57250981791","node":"E0052929","stoptype":"BCT"},{"AtcoCode":"0180BAC56446","CommonName":"Poplars Cottage","Street":"Charlton Road","Indicator":"SW-bound","lat":"51.39718923624","lon":"-2.52027106058","node":"E0035083","stoptype":"BCT"},{"AtcoCode":"0180BAC56447","CommonName":"Paradise Row","Street":"Peats Hill","Indicator":"E-bound","lat":"51.37845033144","lon":"-2.53033168114","node":"E0035168","stoptype":"BCT"},{"AtcoCode":"0180BAC56448","CommonName":"The Compton","Street":"Court Hill","Indicator":"SW-bound","lat":"51.37891170281","lon":"-2.50944559129","node":"E0052910","stoptype":"BCT"},{"AtcoCode":"0180BAC56449","CommonName":"Chewton Keynsham","Indicator":"SE-bound","lat":"51.39610254723","lon":"-2.50141490768","node":"E0034989","stoptype":"BCT"},{"AtcoCode":"0180BAC56450","CommonName":"Viaduct Hotel","Street":"Brassknocker Hill","Indicator":"SE-bound","lat":"51.35787047608","lon":"-2.31564623418","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180BAC56451","CommonName":"St Ladoc Road Top","Street":"St Ladoc Road","Indicator":"S-bound","lat":"51.41410485148","lon":"-2.5053792933","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC56452","CommonName":"Whiteway Road","Street":"Newton Road","Indicator":"W-bound","lat":"51.37820287305","lon":"-2.41062903518","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC56453","CommonName":"Whiteway Road","Street":"Newton Road","Indicator":"E-bound","lat":"51.37828379583","lon":"-2.41062975969","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC56454","CommonName":"Fosseway School","Street":"Frome Road","Indicator":"NW-bound","lat":"51.35818029804","lon":"-2.37520626392","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC56455","CommonName":"Odd Down P&R","Indicator":"N-bound","lat":"51.3518635953","lon":"-2.38490488172","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC56456","CommonName":"Grove Wood Road","Street":"Kilmersdon Road","Indicator":"NE-bound","lat":"51.28370815824","lon":"-2.44980400003","node":"E0035017","stoptype":"BCT"},{"AtcoCode":"0180BAC56457","CommonName":"Rosewell","Street":"A39","Indicator":"NE-bound","lat":"51.31852114718","lon":"-2.51397049172","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC56458","CommonName":"Prospect Place","Street":"Purlewent Drive","Indicator":"SE-bound","lat":"51.39750299706","lon":"-2.38837846753","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC56459","CommonName":"Lynfield Park","Street":"Purlewent Drive","Indicator":"SE-bound","lat":"51.39666284629","lon":"-2.3868477312","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC56460","CommonName":"Lucklands Road Top","Street":"Lucklands Road","Indicator":"SW-bound","lat":"51.39555349999","lon":"-2.38514230727","node":"E0035148","stoptype":"BCT"},{"AtcoCode":"0180BAC56461","CommonName":"Clutton Post Office","Street":"Station Road","Indicator":"E-bound","lat":"51.33080837494","lon":"-2.54093406527","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC56462","CommonName":"Clutton Church","Street":"Venus Lane","Indicator":"S-bound","lat":"51.32829395351","lon":"-2.54216748014","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC56463","CommonName":"Tiledown Close","Street":"Temple Inn Lane","Indicator":"SW-bound","lat":"51.32227381238","lon":"-2.54122108199","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC56464","CommonName":"Temple Inn","Street":"Temple Inn Lane","Indicator":"SW-bound","lat":"51.32075422988","lon":"-2.54315479974","node":"E0035123","stoptype":"BCT"},{"AtcoCode":"0180BAC56465","CommonName":"Nailwell Village","Street":"Priston Road","Indicator":"NE-bound","lat":"51.34659200344","lon":"-2.42213426628","node":"E0035056","stoptype":"BCT"},{"AtcoCode":"0180BAC56466","CommonName":"Inglesbatch Village","Street":"Stitchings Lane","Indicator":"SW-bound","lat":"51.35084513345","lon":"-2.4270842928","node":"E0035024","stoptype":"BCT"},{"AtcoCode":"0180BAC56467","CommonName":"Englishcombe Village","Indicator":"NE-bound","lat":"51.36380632846","lon":"-2.40570279767","node":"E0052915","stoptype":"BCT"},{"AtcoCode":"0180BAC56468","CommonName":"Wellow Mead","Street":"Wellow Lane","Indicator":"W-bound","lat":"51.31135948409","lon":"-2.43028982026","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC56469","CommonName":"The Inn","Street":"The Hill","Indicator":"NE-bound","lat":"51.33862072889","lon":"-2.3014167417","node":"E0052918","stoptype":"BCT"},{"AtcoCode":"0180BAC56470","CommonName":"Ivy Bank Park","Street":"Entry Hill","Indicator":"SW-bound","lat":"51.36393219589","lon":"-2.36471049384","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC56471","CommonName":"Sedgemoor Road","Street":"Hawthorn Grove","Indicator":"W-bound","lat":"51.35996855233","lon":"-2.36126077756","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAC56472","CommonName":"Milsom Street","Street":"Milsom Street","Indicator":"Sg","lat":"51.38401164167","lon":"-2.36149329058","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAC56473","CommonName":"Entry Hill Gardens","Street":"Entry Hill","Indicator":"N-bound","lat":"51.36748096638","lon":"-2.36565803833","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAC56474","CommonName":"Opposite Twenty Four","Street":"Kelston View","Indicator":"E-bound","lat":"51.37622149696","lon":"-2.39854272389","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC56475","CommonName":"Camerton Po","Street":"Red Hill","Indicator":"W-bound","lat":"51.31966778766","lon":"-2.45873693394","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC56476","CommonName":"Longfellow Road","Street":"Wesley Avenue","Indicator":"W-bound","lat":"51.28482317385","lon":"-2.47261364704","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC56477","CommonName":"Elm View","Street":"North Road","Indicator":"E-bound","lat":"51.28890756675","lon":"-2.480929842","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC56478","CommonName":"Wellsway","Street":"Hurn Lane","Indicator":"W-bound","lat":"51.40581859876","lon":"-2.49174508541","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC56479","CommonName":"Paulton Fire Station","Street":"Farrington Road","Indicator":"SW-bound","lat":"51.3065978956","lon":"-2.50573193563","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC56480","CommonName":"Rosewell","Street":"A39","Indicator":"SW-bound","lat":"51.3190141033","lon":"-2.51228276047","node":"E0052919","stoptype":"BCT"},{"AtcoCode":"0180BAC56481","CommonName":"Henrietta Court","Street":"Bathwick Street","Indicator":"SE-bound","lat":"51.38826805943","lon":"-2.35451375396","node":"E0034971","stoptype":"BCT"},{"AtcoCode":"0180BAC56482","CommonName":"Combe Road","Street":"North Road","Indicator":"SW-bound","lat":"51.36044007004","lon":"-2.35109591526","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC56483","CommonName":"Recycling Centre","Street":"A367","Indicator":"SW-bound","lat":"51.35001829364","lon":"-2.39093461076","node":"E0035066","stoptype":"BCT"},{"AtcoCode":"0180BAC56484","CommonName":"Ryans Depot","Street":"Locksbrook Road","Indicator":"NE-bound","lat":"51.38319004657","lon":"-2.38511030209","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC56485","CommonName":"Ryans Depot","Street":"Locksbrook Road","Indicator":"SW-bound","lat":"51.38311839853","lon":"-2.38502348335","node":"E0035039","stoptype":"BCT"},{"AtcoCode":"0180BAC56486","CommonName":"George & Dragon","Street":"Publow Lane","Indicator":"S-bound","lat":"51.37172660124","lon":"-2.54746443048","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC56487","CommonName":"The Mead","Street":"Cook's Hill","Indicator":"W-bound","lat":"51.3301368802","lon":"-2.54612194785","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC56488","CommonName":"The Mead","Street":"Cook's Hill","Indicator":"E-bound","lat":"51.33021766815","lon":"-2.54615161408","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC60000","CommonName":"Twerton Mill","Indicator":"E-bound","lat":"51.38078067502","lon":"-2.39310784198","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC60001","CommonName":"Carrswood View","Indicator":"SE-bound","lat":"51.38676259422","lon":"-2.40557536782","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAC60002","CommonName":"Lyncombe Hill","Indicator":"W-bound","lat":"51.37662541314","lon":"-2.35695242234","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAC60003","CommonName":"Hadley Arms","Indicator":"W-bound","lat":"51.36209119461","lon":"-2.34618207156","node":"E0034996","stoptype":"BCT"},{"AtcoCode":"0180BAC60004","CommonName":"Sleep Lane","Indicator":"SE-bound","lat":"51.40244179587","lon":"-2.55332274092","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BAC60005","CommonName":"Riverside Gardens","Indicator":"NE-bound","lat":"51.27761150544","lon":"-2.49866089176","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC60006","CommonName":"Hillcrest Surgery","Indicator":"E-bound","lat":"51.31140100973","lon":"-2.43122277076","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC60008","CommonName":"British Legion","Indicator":"W-bound","lat":"51.40047682259","lon":"-2.30054412654","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC60009","CommonName":"Stone Wharf","Indicator":"W-bound","lat":"51.39903528622","lon":"-2.29459801959","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC60010","CommonName":"White Cross","Indicator":"E-bound","lat":"51.30991304133","lon":"-2.53272581076","node":"E0035152","stoptype":"BCT"},{"AtcoCode":"0180BAC60011","CommonName":"White Cross","Indicator":"W-bound","lat":"51.30977843195","lon":"-2.5326668647","node":"E0035152","stoptype":"BCT"},{"AtcoCode":"0180BAC60012","CommonName":"Meadow Lea","Indicator":"E-bound","lat":"51.3108886111","lon":"-2.52777305429","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC60013","CommonName":"Meadow Lea","Indicator":"W-bound","lat":"51.31066951186","lon":"-2.52650801042","node":"E0035013","stoptype":"BCT"},{"AtcoCode":"0180BAC60014","CommonName":"Sports Training Village","Indicator":"S-bound","lat":"51.37824681793","lon":"-2.32508253942","node":"N0060721","stoptype":"BCT"},{"AtcoCode":"0180BAC60015","CommonName":"Bilbie Green","Indicator":"N-bound","lat":"51.40413815559","lon":"-2.51658339635","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60016","CommonName":"Bilbie Green","Indicator":"S-bound","lat":"51.40472277668","lon":"-2.51654685755","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60017","CommonName":"Courtenay Road","Indicator":"N-bound","lat":"51.39919304921","lon":"-2.49142963048","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60018","CommonName":"Sunnymead","Indicator":"N-bound","lat":"51.4019131828","lon":"-2.49246507807","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60019","CommonName":"Hurn Lane","Indicator":"N-bound","lat":"51.40659642965","lon":"-2.49280294667","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60020","CommonName":"Limekilns Close","Indicator":"N-bound","lat":"51.41058692032","lon":"-2.49323407816","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60021","CommonName":"Limekilns Close","Indicator":"S-bound","lat":"51.41041687302","lon":"-2.49304533218","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60022","CommonName":"Dovers Park Loop","Indicator":"E-bound","lat":"51.39865669662","lon":"-2.29851978016","node":"E0052900","stoptype":"BCT"},{"AtcoCode":"0180BAC60023","CommonName":"Downsway","Indicator":"SW-bound","lat":"51.3052435626","lon":"-2.50908816907","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC60024","CommonName":"CircleBath Hospital","Indicator":"NE-bound","lat":"51.31179389705","lon":"-2.41709443879","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAC60025","CommonName":"Carter Road","Indicator":"S-bound","lat":"51.30547905258","lon":"-2.5066233854","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAC60026","CommonName":"Whiteway Circle","Indicator":"NW-bound","lat":"51.3747207286","lon":"-2.40092895255","node":"E0035155","stoptype":"BCT"},{"AtcoCode":"0180BAC60027","CommonName":"St Clements Road","Indicator":"S-bound","lat":"51.40931816251","lon":"-2.49770628042","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60028","CommonName":"Caernarvon Road","Indicator":"S-bound","lat":"51.40878129709","lon":"-2.51170422602","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60029","CommonName":"Grange Road","Indicator":"NE-bound","lat":"51.40287095631","lon":"-2.46943107478","node":"E0035094","stoptype":"BCT"},{"AtcoCode":"0180BAC60030","CommonName":"Post Office","Indicator":"S-bound","lat":"51.41546561594","lon":"-2.49837701695","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60031","CommonName":"Ashton Way","Street":"Ashton Way","Indicator":"N-bound","lat":"51.41468025506","lon":"-2.49910182421","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60032","CommonName":"Rogers Close","Indicator":"E-bound","lat":"51.33251984637","lon":"-2.54609285642","node":"E0052908","stoptype":"BCT"},{"AtcoCode":"0180BAC60033","CommonName":"Keynsham Memorial Park","Indicator":"NW-bound","lat":"51.41419977828","lon":"-2.49578935247","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60034","CommonName":"Travis Perkins","Indicator":"NW-bound","lat":"51.3233923277","lon":"-2.45824312853","node":"E0052902","stoptype":"BCT"},{"AtcoCode":"0180BAC60035","CommonName":"Pope Court","Indicator":"S-bound","lat":"51.37732853164","lon":"-2.43609514417","node":"N0080954","stoptype":"BCT"},{"AtcoCode":"0180BAC60036","CommonName":"Hadrian Close","Indicator":"SW-bound","lat":"51.41963487338","lon":"-2.49481275272","node":"E0035104","stoptype":"BCT"},{"AtcoCode":"0180BAC60037","CommonName":"Sion Road","Indicator":"N-bound","lat":"51.39309282459","lon":"-2.37309174633","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC60038","CommonName":"Bath Spa University","Indicator":"NE-bound","lat":"51.39351163891","lon":"-2.37145666162","node":"E0035101","stoptype":"BCT"},{"AtcoCode":"0180BAC60039","CommonName":"Lansdown View","Indicator":"W-bound","lat":"51.327822981","lon":"-2.47239556834","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC60040","CommonName":"Chew Valley School Grounds","Indicator":"SW-bound","lat":"51.35895254343","lon":"-2.62242548957","node":"E0052905","stoptype":"BCT"},{"AtcoCode":"0180BAC60041","CommonName":"Somervale School Grounds","Indicator":"SW-bound","lat":"51.28438073968","lon":"-2.48623087449","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"0180BAC60042","CommonName":"Norton Hill School Grounds","Indicator":"N-bound","lat":"51.27973103286","lon":"-2.47991637493","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAC60043","CommonName":"Hillcrest Top","Indicator":"N-bound","lat":"51.3679889713","lon":"-2.54490599132","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC60044","CommonName":"Hillcrest Top","Indicator":"S-bound","lat":"51.36794475005","lon":"-2.54474745316","node":"E0035076","stoptype":"BCT"},{"AtcoCode":"0180BAC60045","CommonName":"Westbourne Avenue","Indicator":"SW-bound","lat":"51.41448873953","lon":"-2.50393121049","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAC60046","CommonName":"Bonhill Road","Indicator":"N-bound","lat":"51.33760164361","lon":"-2.59382738081","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAC60047","CommonName":"Publow Church","Indicator":"W-bound","lat":"51.37553824258","lon":"-2.54378881152","node":"E0052934","stoptype":"BCT"},{"AtcoCode":"0180BAC60048","CommonName":"Homefield","Indicator":"SW-bound","lat":"51.32637176799","lon":"-2.47327046118","node":"E0052942","stoptype":"BCT"},{"AtcoCode":"0180BAC60049","CommonName":"Grove Wood Road","Indicator":"SW-bound","lat":"51.28360881058","lon":"-2.44991773668","node":"E0035017","stoptype":"BCT"},{"AtcoCode":"0180BATHSPA0","CommonName":"Bath Spa Rail Station","Indicator":"Entrance","lat":"51.37772211065","lon":"-2.35704716507","node":"E0054812","stoptype":"RSE"},{"AtcoCode":"0180BATHSPA1","CommonName":"Bath Spa Rail Station","Indicator":"Entrance","lat":"51.37743464619","lon":"-2.35695872079","node":"E0054812","stoptype":"RSE"},{"AtcoCode":"0180BAY38419","CommonName":"Rossiter Road","Street":"Rossiter Road","Indicator":"E-bound","lat":"51.37691147489","lon":"-2.35750061559","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAY38421","CommonName":"St Ladoc Road Bottom","Street":"St Ladoc Road","Indicator":"N-bound","lat":"51.41592157898","lon":"-2.50528429773","node":"E0054815","stoptype":"BCT"},{"AtcoCode":"0180BAY38422","CommonName":"Claverton Buildings","Indicator":"N-bound","lat":"51.37674571317","lon":"-2.35583269403","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAY38424","CommonName":"Green Park","Street":"Green Park Road","Indicator":"Ga","lat":"51.38044451629","lon":"-2.3664510935","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAY38425","CommonName":"Green Park","Street":"Green Park Road","Indicator":"Gb","lat":"51.38055295329","lon":"-2.36627953575","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAY38427","CommonName":"Lynbrook Lane","Street":"Entry Hill","Indicator":"S-bound","lat":"51.36638476748","lon":"-2.36540510942","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAY38428","CommonName":"Ivy Bank Park","Street":"Entry Hill","Indicator":"N-bound","lat":"51.36293176669","lon":"-2.36546379049","node":"N0060724","stoptype":"BCT"},{"AtcoCode":"0180BAY43064","CommonName":"Meadway","Street":"The Mead","Indicator":"E-bound","lat":"51.34379114461","lon":"-2.48588331961","node":"E0052916","stoptype":"BCT"},{"AtcoCode":"0180BAZ02386","CommonName":"Westbury View","Street":"Orchard Way","Indicator":"W-bound","lat":"51.31658691244","lon":"-2.41445471852","node":"E0052932","stoptype":"BCT"},{"AtcoCode":"0180BAZ02390","CommonName":"Morford Street","Street":"Julian Road","Indicator":"W-bound","lat":"51.387665473","lon":"-2.36336157805","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BAZ02391","CommonName":"Copseland","Street":"Widcombe Hill","Indicator":"E-bound","lat":"51.37499555897","lon":"-2.33334921656","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAZ02392","CommonName":"Widcombe Hill","Street":"Widcombe Hill","Indicator":"E-bound","lat":"51.37642215798","lon":"-2.35281303114","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAZ02395","CommonName":"The Pavilion","Street":"North Parade Bridge","Indicator":"E-bound","lat":"51.380905133","lon":"-2.35409760754","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAZ02396","CommonName":"Green Park Road","Street":"Green Park Road","Indicator":"Wx","lat":"51.37812072146","lon":"-2.36193536351","node":"N0078123","stoptype":"BCT"},{"AtcoCode":"0180BAZ02397","CommonName":"East Lea Road","Street":"Penn Lea Road","Indicator":"NW-bound","lat":"51.39267349708","lon":"-2.3967167129","node":"N0060729","stoptype":"BCT"},{"AtcoCode":"0180BAZ02398","CommonName":"Sladebrook Court","Street":"Englishcombe Lane","Indicator":"E-bound","lat":"51.36815870129","lon":"-2.38699518982","node":"E0035105","stoptype":"BCT"},{"AtcoCode":"0180BAZ02406","CommonName":"Stirtingale Road","Indicator":"E-bound","lat":"51.36876662976","lon":"-2.38259026039","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAZ02407","CommonName":"Stirtingale Road","Street":"Englishcombe Lane","Indicator":"W-bound","lat":"51.3687160747","lon":"-2.3842992728","node":"E0035125","stoptype":"BCT"},{"AtcoCode":"0180BAZ02412","CommonName":"Englishcombe Lodge","Street":"Englishcombe Lane","Indicator":"W-bound","lat":"51.36754157019","lon":"-2.37772480205","node":"N0078121","stoptype":"BCT"},{"AtcoCode":"0180BAZ02413","CommonName":"Pulteney Court","Street":"Pulteney Road","Indicator":"SW-bound","lat":"51.37840546636","lon":"-2.35110412764","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAZ02414","CommonName":"Pulteney Court","Street":"Pulteney Road","Indicator":"N-bound","lat":"51.37814359269","lon":"-2.35147568893","node":"E0035160","stoptype":"BCT"},{"AtcoCode":"0180BAZ02415","CommonName":"Sainsbury's Car Park","Street":"Midland Bridge Road","Indicator":"SW-bound","lat":"51.38138131241","lon":"-2.3687863497","node":"E0035029","stoptype":"BCT"},{"AtcoCode":"0180BAZ02416","CommonName":"Battlefields","Street":"Cotswold Way","Indicator":"S-bound","lat":"51.42941943085","lon":"-2.40284621242","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAZ02417","CommonName":"Battlefields","Street":"Cotswold Way","Indicator":"N-bound","lat":"51.42931988289","lon":"-2.40303232837","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAZ02418","CommonName":"Langridge Turn","Street":"Lansdown Hill","Indicator":"NW-bound","lat":"51.41968965459","lon":"-2.39782794438","node":"E0035035","stoptype":"BCT"},{"AtcoCode":"0180BAZ02419","CommonName":"Carter Road","Street":"Carter Road","Indicator":"N-bound","lat":"51.30547843163","lon":"-2.50676683149","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02420","CommonName":"Beech Terrace","Street":"Maple Drive","Indicator":"NW-bound","lat":"51.28864702247","lon":"-2.45847063124","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02421","CommonName":"Beech Terrace","Street":"Maple Drive","Indicator":"SE-bound","lat":"51.28867439016","lon":"-2.45837052368","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02422","CommonName":"Paulton Fire Station","Street":"Farrington Road","Indicator":"NE-bound","lat":"51.30688685996","lon":"-2.50544819881","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02424","CommonName":"Greenvale Road","Indicator":"E-bound","lat":"51.30405809232","lon":"-2.50459945376","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02425","CommonName":"Greenvale Road","Street":"Plumptre Road","Indicator":"W-bound","lat":"51.30396836366","lon":"-2.50455543484","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02426","CommonName":"Elm Road","Street":"Plumptre Road","Indicator":"N-bound","lat":"51.30310292513","lon":"-2.50298238475","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02427","CommonName":"Elm Road","Street":"Plumptre Road","Indicator":"S-bound","lat":"51.30308525046","lon":"-2.50291046874","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02428","CommonName":"Specklemead","Street":"Specklemead","Indicator":"N-bound","lat":"51.30295486638","lon":"-2.5081160985","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02429","CommonName":"Specklemead","Street":"Specklemead","Indicator":"S-bound","lat":"51.30305414549","lon":"-2.50803112806","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02430","CommonName":"Tennis Court Avenue","Street":"Tennis Court Avenue","Indicator":"E-bound","lat":"51.3027282386","lon":"-2.50646398476","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02431","CommonName":"Tennis Court Avenue","Street":"Tennis Court Avenue","Indicator":"W-bound","lat":"51.30266529869","lon":"-2.5064632917","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02432","CommonName":"Redwood Close","Street":"Waterford Park","Indicator":"NE-bound","lat":"51.28391259774","lon":"-2.45967092019","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02433","CommonName":"Redwood Close","Street":"Waterford Park","Indicator":"SW-bound","lat":"51.28377772513","lon":"-2.4596695731","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02434","CommonName":"May Tree Road","Street":"Waterford Park","Indicator":"N-bound","lat":"51.28651923513","lon":"-2.45763208865","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02435","CommonName":"May Tree Road","Street":"Waterford Park","Indicator":"S-bound","lat":"51.28650175668","lon":"-2.45750286063","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02436","CommonName":"Elm Tree Avenue","Street":"Waterside Way","Indicator":"NE-bound","lat":"51.28514510073","lon":"-2.46407094525","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02437","CommonName":"Elm Tree Avenue","Street":"Waterside Way","Indicator":"SW-bound","lat":"51.2850913223","lon":"-2.46402738619","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02438","CommonName":"The Leaze","Street":"Waterside Way","Indicator":"NW-bound","lat":"51.28330468351","lon":"-2.46333546949","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02439","CommonName":"The Leaze","Street":"Waterside Way","Indicator":"SE-bound","lat":"51.2833858341","lon":"-2.46327893289","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02440","CommonName":"Rushgrove Gardens","Street":"Wick Road","Indicator":"SW-bound","lat":"51.33297066917","lon":"-2.59739906878","node":"E0034975","stoptype":"BCT"},{"AtcoCode":"0180BAZ02441","CommonName":"Woodview","Street":"Downsway","Indicator":"N-bound","lat":"51.30673007604","lon":"-2.51049615617","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02442","CommonName":"Woodview","Street":"Downsway","Indicator":"S-bound","lat":"51.30664078752","lon":"-2.51035170844","node":"E0054817","stoptype":"BCT"},{"AtcoCode":"0180BAZ02443","CommonName":"Fosse Way School","Street":"Longfellow Road","Indicator":"NW-bound","lat":"51.28278262645","lon":"-2.47246364946","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02444","CommonName":"Fosse Way School","Street":"Longfellow Road","Indicator":"SE-bound","lat":"51.28289922641","lon":"-2.4725365376","node":"E0035147","stoptype":"BCT"},{"AtcoCode":"0180BAZ02445","CommonName":"Rudgeway Road","Street":"Rudgeway Road","Indicator":"E-bound","lat":"51.30211264706","lon":"-2.4990555777","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAZ02446","CommonName":"Rudgeway Road","Street":"Rudgeway Road","Indicator":"W-bound","lat":"51.30203998164","lon":"-2.49922691987","node":"E0035165","stoptype":"BCT"},{"AtcoCode":"0180BAZ02447","CommonName":"Shakespeare Road","Street":"Wesley Avenue","Indicator":"NE-bound","lat":"51.28615451092","lon":"-2.47024700312","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02448","CommonName":"Shakespeare Road","Street":"Wesley Avenue","Indicator":"SW-bound","lat":"51.28615514458","lon":"-2.4700892778","node":"E0035085","stoptype":"BCT"},{"AtcoCode":"0180BAZ02451","CommonName":"Twerton Bridge","Street":"Lower Bristol Road","Indicator":"E-bound","lat":"51.38038811107","lon":"-2.38949794627","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAZ02452","CommonName":"Twerton Bridge","Street":"Lower Bristol Road","Indicator":"W-bound","lat":"51.38037313543","lon":"-2.3885925946","node":"E0035130","stoptype":"BCT"},{"AtcoCode":"0180BAZ02455","CommonName":"Durnford Landrover","Street":"Box Road","Indicator":"W-bound","lat":"51.40383800671","lon":"-2.30467770295","node":"E0052899","stoptype":"BCT"},{"AtcoCode":"0180BAZ02457","CommonName":"Lansdown Royal School","Street":"Lansdown Road","Indicator":"S-bound","lat":"51.39687072679","lon":"-2.36695613824","node":"N0077181","stoptype":"BCT"},{"AtcoCode":"0180BRA10379","CommonName":"Staunton Lodge","Street":"Staunton Lane","Indicator":"E-bound","lat":"51.40593890463","lon":"-2.55536333098","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180BRA10380","CommonName":"Staunton Lodge","Street":"Staunton Lane","Indicator":"E-bound","lat":"51.405866907","lon":"-2.55537683515","node":"E0052946","stoptype":"BCT"},{"AtcoCode":"0180DOY29364","CommonName":"Viaduct Hotel","Street":"Brassknocker Hill","Indicator":"NW-bound","lat":"51.35787904157","lon":"-2.31580427046","node":"E0052447","stoptype":"BCT"},{"AtcoCode":"0180FRESHFD0","CommonName":"Freshford Rail Station","Indicator":"Entrance","lat":"51.3420296481","lon":"-2.30100842161","node":"E0052918","stoptype":"RSE"},{"AtcoCode":"0180KEYNSHM0","CommonName":"Keynsham Rail Station","Indicator":"Entrance","lat":"51.41802258281","lon":"-2.49547121806","node":"E0054815","stoptype":"RSE"},{"AtcoCode":"0180OLDFLDP0","CommonName":"Oldfield Park Rail Station","Indicator":"Entrance","lat":"51.37926602931","lon":"-2.38072375681","node":"E0035068","stoptype":"RSE"},{"AtcoCode":"0180SOY38604","CommonName":"Greenacres","Street":"Orchard Vale","Indicator":"N-bound","lat":"51.28662341262","lon":"-2.49606272595","node":"E0035052","stoptype":"BCT"},{"AtcoCode":"019000001","CommonName":"Railway Station","Indicator":"E-bound","lat":"51.39072719592","lon":"-2.82764430935","node":"E0053591","stoptype":"BCT"},{"AtcoCode":"019000002","CommonName":"Airport Terminal","Indicator":"Stand 2","lat":"51.38668907358","lon":"-2.70993179711","node":"N0060754","stoptype":"BCT"},{"AtcoCode":"019000003","CommonName":"Weatherley Drive","Street":"Weatherly Drive","Indicator":"SW-bound","lat":"51.47607966554","lon":"-2.79743893993","node":"E0040057","stoptype":"BCT"},{"AtcoCode":"019000004","CommonName":"Raleigh Rise","Indicator":"E-bound","lat":"51.48516084794","lon":"-2.78551429085","node":"E0039966","stoptype":"BCT"},{"AtcoCode":"019000005","CommonName":"Kent Road Layby","Indicator":"SW-bound","lat":"51.37215811889","lon":"-2.80846073084","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000006","CommonName":"Oakham Treasures","Indicator":"N-bound","lat":"51.46562067888","lon":"-2.71842620821","node":"E0053580","stoptype":"BCT"},{"AtcoCode":"019000007","CommonName":"Oakham Treasures","Indicator":"S-bound","lat":"51.46560366759","lon":"-2.71826758966","node":"E0053580","stoptype":"BCT"},{"AtcoCode":"019000008","CommonName":"Town Hall","Street":"Walliscote Road","Indicator":"Stop Q","lat":"51.34553973964","lon":"-2.97634032076","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"019000009","CommonName":"Oxford Street","Indicator":"Stop M","lat":"51.34616727176","lon":"-2.97656903493","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"019000010","CommonName":"Town Hall","Indicator":"Stop R","lat":"51.34527134417","lon":"-2.9761766772","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"019000011","CommonName":"Clevedon School","Indicator":"N-bound","lat":"51.44461365914","lon":"-2.84172683491","node":"E0040093","stoptype":"BCT"},{"AtcoCode":"019000012","CommonName":"Clevedon School","Indicator":"S-bound","lat":"51.44490445662","lon":"-2.84130050838","node":"E0040093","stoptype":"BCT"},{"AtcoCode":"019000013","CommonName":"Tesco","Indicator":"NE-bound","lat":"51.43387345851","lon":"-2.75382002575","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000014","CommonName":"The Chaffins","Indicator":"S-bound","lat":"51.43098349797","lon":"-2.84403674949","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000015","CommonName":"Sercombe Park","Indicator":"S-bound","lat":"51.42829607261","lon":"-2.84637495125","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000016","CommonName":"Claremont Gardens","Indicator":"W-bound","lat":"51.4264834995","lon":"-2.84834074217","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000017","CommonName":"Terminus B","Street":"Queens Way","Indicator":"W-bound","lat":"51.36218411629","lon":"-2.90928730042","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"019000018","CommonName":"Terminus C","Street":"Queens Way","Indicator":"N-bound","lat":"51.36230730761","lon":"-2.90963446017","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"019000019","CommonName":"Terminus D","Street":"Queens Way","Indicator":"N-bound","lat":"51.36241463641","lon":"-2.90970840375","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"019000020","CommonName":"Long Lane","Street":"Brockley Combe Road","Indicator":"SW-bound","lat":"51.39441191279","lon":"-2.74203179049","node":"E0039988","stoptype":"BCT"},{"AtcoCode":"019000021","CommonName":"Long Lane","Street":"Brockley Combe Road","Indicator":"E-bound","lat":"51.39460008382","lon":"-2.74213544895","node":"E0039988","stoptype":"BCT"},{"AtcoCode":"019000022","CommonName":"Veterinary College","Indicator":"W-bound","lat":"51.34399020105","lon":"-2.78143220828","node":"E0040089","stoptype":"BCT"},{"AtcoCode":"019000023","CommonName":"Scot Elm Drive","Indicator":"S-bound","lat":"51.3507457494","lon":"-2.89653914776","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000024","CommonName":"Scot Elm Drive","Indicator":"N-bound","lat":"51.35076175192","lon":"-2.89679793462","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000025","CommonName":"Diamond Batch Interchange","Street":"Diamond Batch","Indicator":"SE-bound","lat":"51.35741013639","lon":"-2.90919274829","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000026","CommonName":"Mill Lane","Indicator":"N-bound","lat":"51.36860589811","lon":"-2.8072202056","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000027","CommonName":"Mill Lane","Indicator":"S-bound","lat":"51.36850897903","lon":"-2.80693119748","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000028","CommonName":"Yew Tree Park","Indicator":"S-bound","lat":"51.36402337677","lon":"-2.80543032465","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000029","CommonName":"Yew Tree Park","Indicator":"NW-bound","lat":"51.36392270014","lon":"-2.80568710522","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000030","CommonName":"Lye Hole Lane","Indicator":"SW-bound","lat":"51.36260766746","lon":"-2.72337672984","node":"E0040058","stoptype":"BCT"},{"AtcoCode":"019000031","CommonName":"Lye Hole Lane","Indicator":"NE-bound","lat":"51.36306478679","lon":"-2.72361374833","node":"E0040058","stoptype":"BCT"},{"AtcoCode":"019000032","CommonName":"Maidstone Grove","Indicator":"NE-bound","lat":"51.31920968671","lon":"-2.96130201646","node":"E0039968","stoptype":"BCT"},{"AtcoCode":"019000033","CommonName":"Linden Road","Street":"Earlham Grove","Indicator":"NW-bound","lat":"51.34810771485","lon":"-2.95277448356","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"019000034","CommonName":"Tower Hill","Street":"Mendip Road","Indicator":"E-bound","lat":"51.33292227629","lon":"-2.89789950317","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"019000035","CommonName":"Adastral Road","Indicator":"NE-bound","lat":"51.33259393588","lon":"-2.89615625172","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"019000036","CommonName":"Hector Close","Indicator":"NW-bound","lat":"51.33439508603","lon":"-2.89814360157","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"019000037","CommonName":"Chamberlain Road","Indicator":"NW-bound","lat":"51.33523789932","lon":"-2.90080136681","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"019000038","CommonName":"Oaktree Park Homes","Indicator":"S-bound","lat":"51.33522967963","lon":"-2.92946784834","node":"E0053576","stoptype":"BCT"},{"AtcoCode":"019000039","CommonName":"Somerton Road","Indicator":"NE-bound","lat":"51.42919715857","lon":"-2.84735534866","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000040","CommonName":"Somerton Road","Indicator":"SW-bound","lat":"51.42912596179","lon":"-2.84725334181","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000041","CommonName":"Cranwell Road","Street":"Cranwell Road","Indicator":"N-bound","lat":"51.33682459717","lon":"-2.90143539914","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"019000042","CommonName":"Princess Royal Square","Indicator":"N-bound","lat":"51.34729858607","lon":"-2.98107299839","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"019000043","CommonName":"Broadway Lodge","Indicator":"NE-bound","lat":"51.32054781732","lon":"-2.9582159796","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"019000044","CommonName":"Garsdale Road West","Indicator":"SE-bound","lat":"51.35099281995","lon":"-2.9418203677","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"019000045","CommonName":"Pembroke Road","Indicator":"NE-bound","lat":"51.47563386649","lon":"-2.80739512862","node":"E0040057","stoptype":"BCT"},{"AtcoCode":"019000046","CommonName":"Waitrose","Indicator":"SE-bound","lat":"51.34132408681","lon":"-2.95543335779","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"019000047","CommonName":"Waitrose","Street":"Searle Crescent","Indicator":"N-bound","lat":"51.3409913228","lon":"-2.95544079371","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"019000048","CommonName":"Winterstoke Road","Indicator":"NW-bound","lat":"51.34114902514","lon":"-2.96253630423","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"019000049","CommonName":"Winterstoke Road Garages","Indicator":"NW-bound","lat":"51.34033581403","lon":"-2.96082519994","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"019000050","CommonName":"Saltings Close","Indicator":"N-bound","lat":"51.43148097979","lon":"-2.86946412929","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"019000051","CommonName":"Martcombe Filling Station","Indicator":"SE-bound","lat":"51.47017713027","lon":"-2.68270685462","node":"E0040003","stoptype":"BCT"},{"AtcoCode":"019000052","CommonName":"Martcombe Filling Station","Indicator":"NW-bound","lat":"51.47011025165","lon":"-2.68338251351","node":"E0040003","stoptype":"BCT"},{"AtcoCode":"019000053","CommonName":"Kingcott Mill Farm","Indicator":"NW-bound","lat":"51.42451411544","lon":"-2.69548809958","node":"E0039974","stoptype":"BCT"},{"AtcoCode":"019000054","CommonName":"The Chestnuts","Street":"A371","Indicator":"E-bound","lat":"51.3133026039","lon":"-2.83079831288","node":"E0055078","stoptype":"BCT"},{"AtcoCode":"019000055","CommonName":"The Chestnuts","Street":"A371","Indicator":"W-bound","lat":"51.31316814901","lon":"-2.83073849208","node":"E0055078","stoptype":"BCT"},{"AtcoCode":"019000056","CommonName":"Church Lane","Indicator":"E-bound","lat":"51.47456873196","lon":"-2.71820685492","node":"E0053580","stoptype":"BCT"},{"AtcoCode":"019000057","CommonName":"Turnock Gardens","Indicator":"NE-bound","lat":"51.35122163165","lon":"-2.8989752507","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000058","CommonName":"Kent Avenue","Indicator":"SE-bound","lat":"51.35198582446","lon":"-2.90133090352","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000059","CommonName":"Worlebury Hill Road","Indicator":"NW-bound","lat":"51.36155683195","lon":"-2.95312541214","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"019000060","CommonName":"Sainsburys","Indicator":"SE-bound","lat":"51.48393990902","lon":"-2.76206224893","node":"E0055076","stoptype":"BCT"},{"AtcoCode":"019000061","CommonName":"Serbert Way","Indicator":"NW-bound","lat":"51.48239912245","lon":"-2.76117250468","node":"E0040037","stoptype":"BCT"},{"AtcoCode":"019000062","CommonName":"Garstons","Indicator":"NW-bound","lat":"51.35900314307","lon":"-2.76010138832","node":"E0053590","stoptype":"BCT"},{"AtcoCode":"019000063","CommonName":"Garstons","Indicator":"SE-bound","lat":"51.35848954389","lon":"-2.76026522871","node":"E0053590","stoptype":"BCT"},{"AtcoCode":"019000064","CommonName":"Orchard Close","Indicator":"S-bound","lat":"51.32936340958","lon":"-2.86903786386","node":"E0053557","stoptype":"BCT"},{"AtcoCode":"019000065","CommonName":"Wolvershill Park","Indicator":"NW-bound","lat":"51.3306551191","lon":"-2.87066986956","node":"E0053557","stoptype":"BCT"},{"AtcoCode":"019000066","CommonName":"Orchard Close","Indicator":"N-bound","lat":"51.329147846","lon":"-2.86900508186","node":"E0053557","stoptype":"BCT"},{"AtcoCode":"019000067","CommonName":"Cooks Lane","Indicator":"NW-bound","lat":"51.33264786759","lon":"-2.87354972011","node":"E0053557","stoptype":"BCT"},{"AtcoCode":"019000068","CommonName":"Portbury Docks","Indicator":"NW-bound","lat":"51.48172537456","lon":"-2.71242944335","node":"E0053580","stoptype":"BCT"},{"AtcoCode":"019000069","CommonName":"Summer Lane","Indicator":"SE-bound","lat":"51.34161877613","lon":"-2.88948408921","node":"E0040109","stoptype":"BCT"},{"AtcoCode":"019000070","CommonName":"Amberley Gardens","Indicator":"W-bound","lat":"51.42886211636","lon":"-2.76399335759","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000071","CommonName":"Church Hayes Drive","Indicator":"S-bound","lat":"51.42700037312","lon":"-2.76268216958","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000072","CommonName":"Gilbeck Road","Indicator":"NE-bound","lat":"51.4326241566","lon":"-2.77169469191","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000073","CommonName":"The Runway","Street":"The Runway","Indicator":"NE-bound","lat":"51.3369220463","lon":"-2.9449628517","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"019000074","CommonName":"The Runway","Street":"The Runway","Indicator":"SW-bound","lat":"51.33688689505","lon":"-2.94486164096","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"019000075","CommonName":"The Co-op","Indicator":"NE-bound","lat":"51.42886135945","lon":"-2.77642117334","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000076","CommonName":"Wolvershill Road","Indicator":"SW-bound","lat":"51.3496571998","lon":"-2.89778151942","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"019000077","CommonName":"Barberry Farm Road","Indicator":"SE-bound","lat":"51.39032297989","lon":"-2.82503567914","node":"E0053591","stoptype":"BCT"},{"AtcoCode":"019000078","CommonName":"Beaufighter Road","Indicator":"SE-bound","lat":"51.34236635854","lon":"-2.93323023055","node":"E0053576","stoptype":"BCT"},{"AtcoCode":"019000079","CommonName":"The Co-op","Indicator":"SW-bound","lat":"51.42883534005","lon":"-2.77627689161","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"019000080","CommonName":"Cadbury Garden Centre","Indicator":"W-bound","lat":"51.37632735241","lon":"-2.80889338627","node":"E0053568","stoptype":"BCT"},{"AtcoCode":"019000081","CommonName":"Lime Kiln Roundabout","Street":"South Bristol Link","Indicator":"SE-bound","lat":"51.4188251092","lon":"-2.63646905054","node":"E0039963","stoptype":"BCT"},{"AtcoCode":"019000082","CommonName":"Lime Kiln Roundabout","Street":"South Bristol Link","Indicator":"NW-bound","lat":"51.41883879247","lon":"-2.63726018594","node":"E0039963","stoptype":"BCT"},{"AtcoCode":"019000083","CommonName":"Brookgate","Indicator":"NE-bound","lat":"51.4297376235","lon":"-2.63544121518","node":"E0053577","stoptype":"BCT"},{"AtcoCode":"019000084","CommonName":"Brookgate","Indicator":"SE-bound","lat":"51.42959524883","lon":"-2.63516593958","node":"E0053577","stoptype":"BCT"},{"AtcoCode":"019000085","CommonName":"Harbour Road","Indicator":"NW-bound","lat":"51.48555045932","lon":"-2.76190188078","node":"E0055076","stoptype":"BCT"},{"AtcoCode":"019000086","CommonName":"Harbour Road","Indicator":"SE-bound","lat":"51.48564064696","lon":"-2.76186017864","node":"E0055076","stoptype":"BCT"},{"AtcoCode":"0190BAZ02387","CommonName":"Churchill Surgery","Street":"Ladymead Lane","Indicator":"N-bound","lat":"51.33662288215","lon":"-2.79257571822","node":"E0040031","stoptype":"BCT"},{"AtcoCode":"0190BRS10","CommonName":"Bristol International Airport","Indicator":"Entrance","lat":"51.38667406962","lon":"-2.71092314908","node":"E0040000","stoptype":"AIR"},{"AtcoCode":"0190CLV0","CommonName":"Clevedon Pier","Indicator":"Entrance","lat":"51.44374977222","lon":"-2.86527980811","node":"E0053567","stoptype":"FTD"},{"AtcoCode":"0190FBX18338","CommonName":"Long Ashton P&R","Indicator":"E-bound","lat":"51.43567717087","lon":"-2.63617103087","node":"E0053577","stoptype":"BCT"},{"AtcoCode":"0190NAILSEA0","CommonName":"Nailsea & Backwell Rail Station","Indicator":"Entrance","lat":"51.41946380751","lon":"-2.75037589146","node":"E0053579","stoptype":"RSE"},{"AtcoCode":"0190NSA01277","CommonName":"Railway Inn","Indicator":"E-bound","lat":"51.33298468643","lon":"-2.83477134232","node":"E0040084","stoptype":"BCT"},{"AtcoCode":"0190NSA01279","CommonName":"Railway Inn","Street":"Station Road","Indicator":"W-bound","lat":"51.33289834437","lon":"-2.83553053891","node":"E0040084","stoptype":"BCT"},{"AtcoCode":"0190NSA01280","CommonName":"Sainsburys College Stop","Indicator":"N-bound","lat":"51.36311656904","lon":"-2.91194866775","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSA01281","CommonName":"Dark Lane","Street":"Dark Lane","Indicator":"N-bound","lat":"51.41123246117","lon":"-2.73538808883","node":"E0039981","stoptype":"BCT"},{"AtcoCode":"0190NSA01282","CommonName":"Spar","Street":"Rodney Road","Indicator":"NW-bound","lat":"51.41298620236","lon":"-2.74246197291","node":"E0053556","stoptype":"BCT"},{"AtcoCode":"0190NSA01283","CommonName":"Hazelbury Road","Indicator":"NE-bound","lat":"51.4311946503","lon":"-2.7648090541","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01284","CommonName":"Ashton Crescent","Street":"Hazelbury Road","Indicator":"SW-bound","lat":"51.43102307471","lon":"-2.76492126619","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01285","CommonName":"Shipham Close","Street":"The Perrings","Indicator":"E-bound","lat":"51.42368365533","lon":"-2.7555507845","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01286","CommonName":"Sedgemoor Close","Street":"The Perrings","Indicator":"SE-bound","lat":"51.42463276922","lon":"-2.76034150609","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01287","CommonName":"Secondary School","Street":"Mizzymead Road","Indicator":"N-bound","lat":"51.43141680822","lon":"-2.75829642472","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01288","CommonName":"Stockway South","Street":"Stock Way South","Indicator":"SE-bound","lat":"51.43237373799","lon":"-2.76048443122","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01289","CommonName":"Engine Lane","Street":"Engine Lane","Indicator":"N-bound","lat":"51.42383489936","lon":"-2.77914054713","node":"E0040096","stoptype":"BCT"},{"AtcoCode":"0190NSA01290","CommonName":"Goss Lane","Indicator":"E-bound","lat":"51.42884132177","lon":"-2.77128572523","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01291","CommonName":"Whitesfield Road","Street":"Whitesfield Road","Indicator":"N-bound","lat":"51.43075840129","lon":"-2.7682684691","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01292","CommonName":"Stockway South","Street":"Stock Way South","Indicator":"N-bound","lat":"51.43302231847","lon":"-2.76307018345","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01293","CommonName":"High Street","Indicator":"N-bound","lat":"51.43344881733","lon":"-2.75831569296","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01295","CommonName":"Link Road","Street":"Link Road","Indicator":"N-bound","lat":"51.43439659347","lon":"-2.75636053773","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01296","CommonName":"Lodge Lane","Street":"Lodge Lane","Indicator":"SE-bound","lat":"51.43671792988","lon":"-2.74631394295","node":"E0039990","stoptype":"BCT"},{"AtcoCode":"0190NSA01297","CommonName":"Sunnymede Road","Street":"Sunnymede Road","Indicator":"N-bound","lat":"51.43587498729","lon":"-2.76547707652","node":"E0040078","stoptype":"BCT"},{"AtcoCode":"0190NSA01298","CommonName":"Montecute Circus","Street":"Worle Moor Road","Indicator":"W-bound","lat":"51.34926279579","lon":"-2.92420916112","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01299","CommonName":"Montecute Circus","Indicator":"E-bound","lat":"51.34922479403","lon":"-2.9244668626","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01300","CommonName":"Howitt Way","Indicator":"SE-bound","lat":"51.34921858251","lon":"-2.92639087491","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01301","CommonName":"Howitt Way","Street":"Worle Moor Road","Indicator":"NW-bound","lat":"51.34907359847","lon":"-2.92653154226","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01302","CommonName":"Eden Croft","Indicator":"N-bound","lat":"51.3487136493","lon":"-2.92883609209","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01303","CommonName":"Eden Croft","Indicator":"S-bound","lat":"51.34870602504","lon":"-2.92866362898","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01304","CommonName":"Moor Lane 2","Indicator":"NE-bound","lat":"51.34807758136","lon":"-2.92626734769","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01305","CommonName":"Moor Lane 2","Street":"Moor Lane","Indicator":"SW-bound","lat":"51.34809987599","lon":"-2.92572215971","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01306","CommonName":"Village Square","Street":"Phoenix Way","Indicator":"SW-bound","lat":"51.48806399137","lon":"-2.75279809124","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01307","CommonName":"Village Square","Street":"Phoenix Way","Indicator":"NE-bound","lat":"51.48819912933","lon":"-2.75275710941","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01308","CommonName":"Bridgewater Road","Street":"A38 Bridgewater Road","Indicator":"S-bound","lat":"51.3035757653","lon":"-2.82791143928","node":"E0040004","stoptype":"BCT"},{"AtcoCode":"0190NSA01309","CommonName":"Bridgewater Road","Indicator":"N-bound","lat":"51.30359181939","lon":"-2.82818428147","node":"E0040004","stoptype":"BCT"},{"AtcoCode":"0190NSA01310","CommonName":"Fullers Lane","Street":"A38 Bridgewater Road","Indicator":"S-bound","lat":"51.30716133131","lon":"-2.82568061597","node":"E0040071","stoptype":"BCT"},{"AtcoCode":"0190NSA01311","CommonName":"Fullers Lane","Indicator":"N-bound","lat":"51.30815708677","lon":"-2.82601411144","node":"E0040071","stoptype":"BCT"},{"AtcoCode":"0190NSA01312","CommonName":"Cedern Avenue","Street":"Cedern Avenue","Indicator":"SE-bound","lat":"51.32840856683","lon":"-2.90020821983","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"0190NSA01313","CommonName":"Cedern Avenue","Street":"Cedern Avenue","Indicator":"NW-bound","lat":"51.32825517469","lon":"-2.90027697867","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"0190NSA01314","CommonName":"Beafort Close","Indicator":"W-bound","lat":"51.32796232856","lon":"-2.90210837157","node":"E0039996","stoptype":"BCT"},{"AtcoCode":"0190NSA01315","CommonName":"Beafort Close","Street":"Cedern Avenue","Indicator":"E-bound","lat":"51.32814236193","lon":"-2.90208320002","node":"E0039996","stoptype":"BCT"},{"AtcoCode":"0190NSA01316","CommonName":"Banwell Road","Street":"Banwell Road","Indicator":"W-bound","lat":"51.32920346048","lon":"-2.89739625709","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"0190NSA01317","CommonName":"Banwell Road","Street":"Banwell Road","Indicator":"N-bound","lat":"51.32971999417","lon":"-2.8968752779","node":"E0040014","stoptype":"BCT"},{"AtcoCode":"0190NSA01318","CommonName":"Aisecombe Way","Street":"Aiscome Way","Indicator":"S-bound","lat":"51.34519833104","lon":"-2.94227586894","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01319","CommonName":"Aisecombe Way","Street":"Aiscome Way","Indicator":"N-bound","lat":"51.34521573446","lon":"-2.94234801595","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01320","CommonName":"Churchland Way Roundabout","Street":"Churchland Way","Indicator":"SE-bound","lat":"51.35213538321","lon":"-2.90758049452","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01321","CommonName":"Churchland Way Roundabout","Indicator":"NW-bound","lat":"51.35203682082","lon":"-2.90753546622","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01322","CommonName":"Churchland Way","Indicator":"E-bound","lat":"51.35183937742","lon":"-2.90632532104","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01323","CommonName":"Churchland Way","Street":"Churchland Way","Indicator":"NW-bound","lat":"51.35173992562","lon":"-2.90639515823","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01324","CommonName":"Ivy Cottage","Indicator":"SE-bound","lat":"51.35168232083","lon":"-2.90454158294","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01325","CommonName":"Ivy Cottage","Street":"Churchland Way","Indicator":"NW-bound","lat":"51.35158209373","lon":"-2.90471192817","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01326","CommonName":"Winterstoke Road","Street":"Winterstoke Road","Indicator":"SE-bound","lat":"51.34121136827","lon":"-2.9626093943","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSA01327","CommonName":"Marchfields Way","Street":"Marchfields Way","Indicator":"N-bound","lat":"51.34010994511","lon":"-2.96423730414","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSA01328","CommonName":"Asda Store","Street":"Searle Crescent","Indicator":"N-bound","lat":"51.34049818533","lon":"-2.95966571616","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSA01329","CommonName":"Tesco","Street":"Brockway","Indicator":"SW-bound","lat":"51.43385621709","lon":"-2.75370465694","node":"E0053579","stoptype":"BCT"},{"AtcoCode":"0190NSA01330","CommonName":"Bampton","Indicator":"NW-bound","lat":"51.36133231214","lon":"-2.92048794095","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSA01331","CommonName":"Feniton","Indicator":"S-bound","lat":"51.36033892008","lon":"-2.91759548106","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSA01332","CommonName":"Preanes Green","Indicator":"S-bound","lat":"51.35927253429","lon":"-2.9171289332","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01333","CommonName":"Whitecross Road","Street":"Clevedon Road","Indicator":"W-bound","lat":"51.34002561538","lon":"-2.97550530909","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSA01334","CommonName":"Yew Tree Close","Indicator":"NE-bound","lat":"51.3411542449","lon":"-2.76010750196","node":"E0040010","stoptype":"BCT"},{"AtcoCode":"0190NSA01335","CommonName":"Yew Tree Close","Street":"A38 Bristol Road","Indicator":"SW-bound","lat":"51.34107574869","lon":"-2.75973293266","node":"E0040010","stoptype":"BCT"},{"AtcoCode":"0190NSA01336","CommonName":"Cowslip Green","Street":"A38 Bristol Road","Indicator":"NE-bound","lat":"51.35556666994","lon":"-2.73927837751","node":"E0053590","stoptype":"BCT"},{"AtcoCode":"0190NSA01337","CommonName":"Cowslip Green","Indicator":"SW-bound","lat":"51.35541482098","lon":"-2.73911796125","node":"E0053590","stoptype":"BCT"},{"AtcoCode":"0190NSA01338","CommonName":"Lake Grounds","Street":"Nore Road","Indicator":"NE-bound","lat":"51.48668256006","lon":"-2.77710072506","node":"E0053581","stoptype":"BCT"},{"AtcoCode":"0190NSA01339","CommonName":"The Triangle","Street":"West Hill","Indicator":"NE-bound","lat":"51.48155505098","lon":"-2.78284580334","node":"E0040044","stoptype":"BCT"},{"AtcoCode":"0190NSA01340","CommonName":"Marine Healthcare Centre","Indicator":"NW-bound","lat":"51.48421899792","lon":"-2.7578472735","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01341","CommonName":"Worle Railway Station","Street":"Station approach","Indicator":"N-bound","lat":"51.35891028522","lon":"-2.9105437841","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSA01342","CommonName":"Tropicana","Indicator":"N-bound","lat":"51.34083470827","lon":"-2.98198298773","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSA01343","CommonName":"South Road","Street":"South Road","Indicator":"E-bound","lat":"51.49017932491","lon":"-2.76494615245","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01344","CommonName":"South Road","Street":"South Road","Indicator":"W-bound","lat":"51.49002544972","lon":"-2.76510201266","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01345","CommonName":"Parish Wharf Sports Centre","Street":"Station Road","Indicator":"NE-bound","lat":"51.48795684205","lon":"-2.76518259778","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01346","CommonName":"Parish Wharf Sports Centre","Street":"Station Road","Indicator":"SW-bound","lat":"51.48785813255","lon":"-2.76515213965","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01347","CommonName":"Gateway Terrace","Street":"Lower Burlington Road","Indicator":"NE-bound","lat":"51.48916480643","lon":"-2.76333043266","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01348","CommonName":"Gateway Terrace","Street":"Lower Burlington Road","Indicator":"SW-bound","lat":"51.48902938361","lon":"-2.76341458828","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01349","CommonName":"London Square","Street":"Lower Burlington Road","Indicator":"SW-bound","lat":"51.48948023155","lon":"-2.76183777708","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01350","CommonName":"London Square","Street":"Lower Burlington Road","Indicator":"NE-bound","lat":"51.48949774499","lon":"-2.76191008472","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01351","CommonName":"Waters Edge","Street":"Lower Burlington Road","Indicator":"NW-bound","lat":"51.49159678388","lon":"-2.76129691668","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01352","CommonName":"Waters Edge","Street":"Lower Burlington Road","Indicator":"SE-bound","lat":"51.49168678421","lon":"-2.76128401249","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01353","CommonName":"Eastcliff","Street":"Burlington Road","Indicator":"NE-bound","lat":"51.49078537871","lon":"-2.76301182133","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01354","CommonName":"Eastcliff","Street":"Burlington Road","Indicator":"SW-bound","lat":"51.49078612846","lon":"-2.76289660556","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01355","CommonName":"Sally Hill","Street":"Burlington Road","Indicator":"NE-bound","lat":"51.49052230531","lon":"-2.76336751453","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01356","CommonName":"Sally Hill","Street":"Burlington Road","Indicator":"SW-bound","lat":"51.49044185803","lon":"-2.76329415336","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSA01357","CommonName":"Hutton Moor Lane","Street":"Aisecome Way","Indicator":"NW-bound","lat":"51.34305982885","lon":"-2.94653919913","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSA01358","CommonName":"Hutton Moor Lane","Street":"Aisecome Way","Indicator":"SE-bound","lat":"51.34317786521","lon":"-2.94639805772","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSC01218","CommonName":"Nightingale Rise","Street":"Weatherly Drive","Indicator":"SE-bound","lat":"51.47343769315","lon":"-2.79720568303","node":"E0040057","stoptype":"BCT"},{"AtcoCode":"0190NSC01219","CommonName":"Richmond Close","Indicator":"SE-bound","lat":"51.48150239719","lon":"-2.76356247289","node":"E0040037","stoptype":"BCT"},{"AtcoCode":"0190NSC01220","CommonName":"Richmond Close","Street":"Brampton Way","Indicator":"NW-bound","lat":"51.48153592101","lon":"-2.76393744911","node":"E0040037","stoptype":"BCT"},{"AtcoCode":"0190NSC01221","CommonName":"Nailsea and Backwell Station","Street":"Station Road","Indicator":"Opp. car park","lat":"51.42002995258","lon":"-2.75042830938","node":"E0053556","stoptype":"BCT"},{"AtcoCode":"0190NSC01222","CommonName":"Bleadon Road","Street":"Bridgwater Road","Indicator":"SE-bound","lat":"51.30754979612","lon":"-2.95767258382","node":"E0040056","stoptype":"BCT"},{"AtcoCode":"0190NSC01223","CommonName":"The Campus","Indicator":"SW-bound","lat":"51.35286553778","lon":"-2.9154356833","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC01224","CommonName":"The Campus","Street":"Bransby Way","Indicator":"opp","lat":"51.35274461937","lon":"-2.91595024452","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC01225","CommonName":"Whitesfield Road","Street":"Silver Street","Indicator":"E-bound","lat":"51.43333282382","lon":"-2.76647032716","node":"E0040078","stoptype":"BCT"},{"AtcoCode":"0190NSC01227","CommonName":"Clapton Lane","Street":"B3124","Indicator":"N-bound","lat":"51.47389052152","lon":"-2.76981374804","node":"E0040015","stoptype":"BCT"},{"AtcoCode":"0190NSC01228","CommonName":"Portishead Cemetry","Indicator":"W-bound","lat":"51.4731387051","lon":"-2.77201837867","node":"E0040015","stoptype":"BCT"},{"AtcoCode":"0190NSC01229","CommonName":"Elborough Turn","Street":"A371","Indicator":"W-bound","lat":"51.33121003912","lon":"-2.89604314296","node":"E0039996","stoptype":"BCT"},{"AtcoCode":"0190NSC01230","CommonName":"Mead Lane","Street":"Station Road","Indicator":"W-bound","lat":"51.33281205397","lon":"-2.84005049054","node":"E0040084","stoptype":"BCT"},{"AtcoCode":"0190NSC01231","CommonName":"The Queens","Indicator":"E-bound","lat":"51.30815689523","lon":"-2.94715494008","node":"E0053560","stoptype":"BCT"},{"AtcoCode":"0190NSC01232","CommonName":"Martingale Way","Indicator":"SW-bound","lat":"51.48650607281","lon":"-2.7601319421","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01233","CommonName":"Martingale Way","Indicator":"NE-bound","lat":"51.48653248465","lon":"-2.76021879459","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01234","CommonName":"Phoenix Way","Street":"Pheonix Way","Indicator":"SE-bound","lat":"51.48574066587","lon":"-2.75193890822","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01235","CommonName":"Phoenix Way","Street":"Pheonix Way","Indicator":"N-bound","lat":"51.4857847881","lon":"-2.75206925178","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01236","CommonName":"High Street","Indicator":"Stop M","lat":"51.34682669329","lon":"-2.97836351384","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC01237","CommonName":"Walford Avenue","Street":"Pastures Avenue","Indicator":"NW-bound","lat":"51.36133496722","lon":"-2.9051482975","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01238","CommonName":"Walford Avenue","Street":"Pastures Avenue","Indicator":"SE-bound","lat":"51.36152465664","lon":"-2.90503713325","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01239","CommonName":"The Hedges","Street":"Pastures Avenue","Indicator":"NE-bound","lat":"51.36217313453","lon":"-2.901401649","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01240","CommonName":"The Hedges","Street":"Pastures Avenue","Indicator":"SW-bound","lat":"51.36194059556","lon":"-2.90123908763","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01241","CommonName":"Jubilee Way","Street":"Pastures Avenue","Indicator":"N-bound","lat":"51.36369382032","lon":"-2.90009568377","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01242","CommonName":"Jubilee Way","Street":"Pastures Avenue","Indicator":"S-bound","lat":"51.36367804615","lon":"-2.89980809978","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01243","CommonName":"The Avenue","Street":"The Avenue","Indicator":"NW-bound","lat":"51.36473533351","lon":"-2.90146632986","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01244","CommonName":"The Avenue","Street":"The Avenue","Indicator":"SE-bound","lat":"51.3648815033","lon":"-2.90116755429","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01245","CommonName":"Reed Way","Indicator":"E-bound","lat":"51.36555140211","lon":"-2.90291878992","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01246","CommonName":"Reed Way","Street":"The Avenue","Indicator":"W-bound","lat":"51.36547059784","lon":"-2.90290283604","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC01247","CommonName":"Kempe Road","Street":"Griffin Road","Indicator":"NW-bound","lat":"51.34762784624","lon":"-2.92855567566","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSC01248","CommonName":"Kempe Road","Street":"Griffin Road","Indicator":"SE-bound","lat":"51.34784339096","lon":"-2.9285887511","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSC01249","CommonName":"Malin Parade","Street":"Pheonix Way","Indicator":"NE-bound","lat":"51.4845534491","lon":"-2.75618223771","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01250","CommonName":"Malin Parade","Street":"Pheonix Way","Indicator":"SW-bound","lat":"51.48453667499","lon":"-2.75599473986","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01251","CommonName":"Redpoll Drive","Street":"Pheonix Way","Indicator":"S-bound","lat":"51.48742631216","lon":"-2.74987828745","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01252","CommonName":"Redpoll Drive","Street":"Pheonix Way","Indicator":"W-bound","lat":"51.48746181443","lon":"-2.74995088243","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01253","CommonName":"Newfoundland Way","Indicator":"NW-bound","lat":"51.48976173327","lon":"-2.75724784634","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01254","CommonName":"Hall and Woodhouse","Street":"Newfoundland Way","Indicator":"SW-bound","lat":"51.48912344711","lon":"-2.75861995725","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01255","CommonName":"Newfoundland Way","Indicator":"SE-bound","lat":"51.48983421689","lon":"-2.7571626282","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01256","CommonName":"Hall and Woodhouse","Indicator":"NE-bound","lat":"51.48857878459","lon":"-2.75941747366","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC01257","CommonName":"Moor Lane","Street":"Moor Lane","Indicator":"NE-bound","lat":"51.34936373687","lon":"-2.92166960043","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSC01258","CommonName":"Moor Lane","Street":"Moor Lane","Indicator":"SW-bound","lat":"51.34927383157","lon":"-2.92166779613","node":"N0077315","stoptype":"BCT"},{"AtcoCode":"0190NSC01259","CommonName":"Festival Stop","Street":"Estate Road","Indicator":"SW-bound","lat":"51.44337999311","lon":"-2.64003350354","node":"E0039960","stoptype":"BCT"},{"AtcoCode":"0190NSC01260","CommonName":"Puxton Farm Park","Street":"A370","Indicator":"SW-bound","lat":"51.36271414333","lon":"-2.88111675371","node":"E0040062","stoptype":"BCT"},{"AtcoCode":"0190NSC01261","CommonName":"Puxton Farm Park","Indicator":"NE-bound","lat":"51.36298613007","lon":"-2.88082034107","node":"E0040062","stoptype":"BCT"},{"AtcoCode":"0190NSC16160","CommonName":"The Ashton","Indicator":"E-bound","lat":"51.43895278521","lon":"-2.63568423059","node":"E0039960","stoptype":"BCT"},{"AtcoCode":"0190NSC16161","CommonName":"Gimblet Road","Street":"Walford Avenue","Indicator":"W-bound","lat":"51.37005435906","lon":"-2.91014715427","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC16163","CommonName":"Walford Avenue Surgery","Street":"Walford Avenue","Indicator":"E-bound","lat":"51.37021005689","lon":"-2.90746384033","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC16166","CommonName":"St. Mary's Road","Street":"Wetlands Lane","Indicator":"N-bound","lat":"51.47648336358","lon":"-2.77478188035","node":"E0040015","stoptype":"BCT"},{"AtcoCode":"0190NSC16167","CommonName":"St. Mary's Road","Street":"Wetlands Road","Indicator":"S-bound","lat":"51.4764935911","lon":"-2.77459486613","node":"E0040015","stoptype":"BCT"},{"AtcoCode":"0190NSC16169","CommonName":"Noah's Ark Zoo Farm","Street":"B3128","Indicator":"W-bound","lat":"51.4507585516","lon":"-2.73849840556","node":"E0053589","stoptype":"BCT"},{"AtcoCode":"0190NSC16171","CommonName":"Noah's Ark Zoo Farm","Street":"B3128","Indicator":"E-bound","lat":"51.45082248437","lon":"-2.73834113711","node":"E0053589","stoptype":"BCT"},{"AtcoCode":"0190NSC16174","CommonName":"Waitrose","Street":"Harbour Road","Indicator":"E-bound","lat":"51.48638572815","lon":"-2.76481063878","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC16175","CommonName":"Waitrose","Street":"Harbour Road","Indicator":"W-bound","lat":"51.48627840358","lon":"-2.76472242989","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC16178","CommonName":"Galingale Way","Street":"Quays Avenue","Indicator":"SW-bound","lat":"51.48273432206","lon":"-2.75800986793","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC16179","CommonName":"Galingale Way","Street":"Quays Avenue","Indicator":"NE-bound","lat":"51.4830509514","lon":"-2.75771269632","node":"E0040053","stoptype":"BCT"},{"AtcoCode":"0190NSC16180","CommonName":"Reed Way","Street":"Walford Avenue","Indicator":"N-bound","lat":"51.36461817517","lon":"-2.90383409387","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC16182","CommonName":"Hospital Grounds","Indicator":"W-bound","lat":"51.32105075515","lon":"-2.97138584442","node":"E0040087","stoptype":"BCT"},{"AtcoCode":"0190NSC16187","CommonName":"Jesmond Road","Street":"Walford Avenue","Indicator":"N-bound","lat":"51.36859777315","lon":"-2.90432905971","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC16188","CommonName":"Clevedon Court","Street":"Tickenham Road","Indicator":"E-bound","lat":"51.43961269864","lon":"-2.83059966994","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16189","CommonName":"Clevedon Court","Street":"Tickenham Road","Indicator":"W-bound","lat":"51.43954332205","lon":"-2.83023872454","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16190","CommonName":"Byfields","Street":"Mill Cross","Indicator":"NE-bound","lat":"51.42515016806","lon":"-2.85979364815","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16191","CommonName":"Old Park Road","Street":"Cambridge Road","Indicator":"S-bound","lat":"51.44375533357","lon":"-2.8485313402","node":"N0077226","stoptype":"BCT"},{"AtcoCode":"0190NSC16192","CommonName":"Dipland Grove","Street":"Bath Road","Indicator":"E-bound","lat":"51.32365316281","lon":"-2.70598710342","node":"E0053559","stoptype":"BCT"},{"AtcoCode":"0190NSC16196","CommonName":"Weston College","Street":"Knightstone Road","Indicator":"Stop SS","lat":"51.35070353278","lon":"-2.98143293254","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC16198","CommonName":"Regent Street","Street":"Regent Street","Indicator":"W-bound","lat":"51.34680903983","lon":"-2.97508939354","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC16200","CommonName":"Edward Road West","Street":"The Avenue","Indicator":"SW-bound","lat":"51.44968974098","lon":"-2.84606544973","node":"E0040093","stoptype":"BCT"},{"AtcoCode":"0190NSC16201","CommonName":"Cambridge Road","Street":"The Avenue","Indicator":"SW-bound","lat":"51.44734542433","lon":"-2.85068444494","node":"E0040093","stoptype":"BCT"},{"AtcoCode":"0190NSC16202","CommonName":"Westbourne Avenue","Street":"Strode Road","Indicator":"SW-bound","lat":"51.43283986037","lon":"-2.86200953227","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16203","CommonName":"Strode Road","Street":"Churchill Avenue","Indicator":"SW-bound","lat":"51.43087240501","lon":"-2.86299381267","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16204","CommonName":"Westbourne Crescent","Street":"Westbourne Avenue","Indicator":"W-bound","lat":"51.43245872535","lon":"-2.86492256564","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16205","CommonName":"Westbourne Crescent","Street":"Westbourne Avenue","Indicator":"E-bound","lat":"51.4326513735","lon":"-2.86683945322","node":"E0053567","stoptype":"BCT"},{"AtcoCode":"0190NSC16206","CommonName":"Burrington Turn","Indicator":"W-bound","lat":"51.33252826876","lon":"-2.75077832158","node":"E0053562","stoptype":"BCT"},{"AtcoCode":"0190NSC16208","CommonName":"Dipland Grove","Street":"Bath Road","Indicator":"W-bound","lat":"51.32358106134","lon":"-2.70601469811","node":"E0053559","stoptype":"BCT"},{"AtcoCode":"0190NSC30005","CommonName":"Oxford Street","Street":"Oxford Street","Indicator":"Stop U","lat":"51.34627515648","lon":"-2.97657132875","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30008","CommonName":"High Street","Street":"High Street","Indicator":"Stop Q","lat":"51.34729311393","lon":"-2.97850267749","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30009","CommonName":"High Street","Street":"High Street","Indicator":"Stop R","lat":"51.3472386918","lon":"-2.97855895269","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30015","CommonName":"Station Road","Street":"Station Road","Indicator":"Stop C","lat":"51.34559530524","lon":"-2.97398676584","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30024","CommonName":"Station Approach","Indicator":"N-bound","lat":"51.34491974165","lon":"-2.97196233003","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30025","CommonName":"Station Road","Street":"Station Road","Indicator":"Stop NN","lat":"51.3454402805","lon":"-2.97316506702","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30029","CommonName":"Beach Road","Street":"Beach Road","Indicator":"Stop D","lat":"51.34465938137","lon":"-2.98054281808","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30030","CommonName":"Ellenborough Park North","Street":"Beach Road","Indicator":"S-bound","lat":"51.34255503004","lon":"-2.98056968495","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30031","CommonName":"Clevedon Road","Street":"Beach Road","Indicator":"S-bound","lat":"51.34047428301","lon":"-2.98099903797","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30032","CommonName":"Clarence Road North","Street":"Beach Road","Indicator":"S-bound","lat":"51.33837459071","lon":"-2.9815427959","node":"N0073228","stoptype":"BCT"},{"AtcoCode":"0190NSC30033","CommonName":"Royal Sands","Street":"Beach Road","Indicator":"S-bound","lat":"51.33546383386","lon":"-2.98229884975","node":"N0073228","stoptype":"BCT"},{"AtcoCode":"0190NSC30034","CommonName":"Royal Sands","Street":"Beach Road","Indicator":"N-bound","lat":"51.33477707179","lon":"-2.98270045666","node":"N0073228","stoptype":"BCT"},{"AtcoCode":"0190NSC30035","CommonName":"Clarence Road North","Street":"Beach Road","Indicator":"N-bound","lat":"51.33830074246","lon":"-2.98177091218","node":"N0073228","stoptype":"BCT"},{"AtcoCode":"0190NSC30036","CommonName":"Clevedon Road","Street":"Beach Road","Indicator":"N-bound","lat":"51.34028295935","lon":"-2.98129643883","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30037","CommonName":"Ellenborough Park North","Street":"Beach Road","Indicator":"N-bound","lat":"51.34275089522","lon":"-2.98080358213","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30038","CommonName":"Beach Road","Street":"Beach Road","Indicator":"Stop GG","lat":"51.34392036672","lon":"-2.98074240699","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30039","CommonName":"Marine Parade","Street":"Marine Parade","Indicator":"Stop MM","lat":"51.34545255111","lon":"-2.98139252059","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30041","CommonName":"Grand Pier","Street":"Marine Parade","Indicator":"Stop P","lat":"51.34707033823","lon":"-2.98148452268","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30042","CommonName":"Winter Gardens","Indicator":"Stop K","lat":"51.34990419477","lon":"-2.98239229616","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30043","CommonName":"Cabot Hotel","Street":"Knightstone Road","Indicator":"NW-bound","lat":"51.35068105628","lon":"-2.98304074342","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30044","CommonName":"Upper Church Road","Street":"Knightstone Road","Indicator":"W-bound","lat":"51.35203635639","lon":"-2.98654491725","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30045","CommonName":"Paragon Road","Street":"Birnbeck Road","Indicator":"W-bound","lat":"51.35380802549","lon":"-2.99077631306","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30046","CommonName":"Old Pier","Street":"Birkett Road","Indicator":"N-bound","lat":"51.35553230397","lon":"-2.99421714058","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30047","CommonName":"Old Toll Gate","Indicator":"E-bound","lat":"51.35866936608","lon":"-2.99010565941","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30048","CommonName":"Old Toll Gate","Street":"Kewstoke Road","Indicator":"W-bound","lat":"51.35850875381","lon":"-2.98995857366","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30049","CommonName":"Kewstoke Road","Indicator":"W-bound","lat":"51.36113109747","lon":"-2.97642771355","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30050","CommonName":"Kewstoke Toll Gate","Indicator":"W-bound","lat":"51.36374973957","lon":"-2.96206214297","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"0190NSC30051","CommonName":"Owls Crest","Street":"Kewstoke Road","Indicator":"SW-bound","lat":"51.36523489822","lon":"-2.95639065533","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"0190NSC30052","CommonName":"Owls Crest","Street":"Crook's Lane","Indicator":"NE-bound","lat":"51.36564778869","lon":"-2.95537938634","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"0190NSC30053","CommonName":"Lower Norton Lane","Street":"Crookes Lane","Indicator":"NW-bound","lat":"51.36774834324","lon":"-2.95691707806","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"0190NSC30054","CommonName":"Lower Norton Lane","Street":"Crookes Lane","Indicator":"SE-bound","lat":"51.36774928188","lon":"-2.95680217716","node":"N0073241","stoptype":"BCT"},{"AtcoCode":"0190NSC30055","CommonName":"Hazelwood Caravan Park","Street":"Crookes Lane","Indicator":"E-bound","lat":"51.36822695909","lon":"-2.95886636058","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30056","CommonName":"Hazelwood Caravan Park","Street":"Crookes Lane","Indicator":"W-bound","lat":"51.36816437897","lon":"-2.95882195753","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30057","CommonName":"Clintonville","Street":"Crookes Lane","Indicator":"E-bound","lat":"51.36740033408","lon":"-2.96317294123","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30059","CommonName":"Clintonville","Street":"Crookes Lane","Indicator":"W-bound","lat":"51.36728345894","lon":"-2.96317048848","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30060","CommonName":"Sand Road","Indicator":"S-bound","lat":"51.37655227011","lon":"-2.96120988282","node":"E0040065","stoptype":"BCT"},{"AtcoCode":"0190NSC30061","CommonName":"Pontins","Street":"Beach Road","Indicator":"S-bound","lat":"51.37465980826","lon":"-2.96171619202","node":"E0040065","stoptype":"BCT"},{"AtcoCode":"0190NSC30062","CommonName":"Pontins","Street":"Beach Road","Indicator":"N-bound","lat":"51.37472144358","lon":"-2.96187552359","node":"E0040065","stoptype":"BCT"},{"AtcoCode":"0190NSC30063","CommonName":"Court Road","Indicator":"S-bound","lat":"51.37338211152","lon":"-2.9618187141","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30064","CommonName":"Court Road","Street":"Beach Road","Indicator":"N-bound","lat":"51.37344268496","lon":"-2.96210732069","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30065","CommonName":"Sand Bay Post Office","Indicator":"S-bound","lat":"51.37042712784","lon":"-2.96250380646","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30066","CommonName":"Sand Bay Post Office","Street":"Beach Road","Indicator":"N-bound","lat":"51.37055181299","lon":"-2.962650081","node":"E0053574","stoptype":"BCT"},{"AtcoCode":"0190NSC30068","CommonName":"Old Pier","Indicator":"SE-bound","lat":"51.35528301209","lon":"-2.99392451877","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30069","CommonName":"Paragon Road","Indicator":"E-bound","lat":"51.35394713079","lon":"-2.99027668752","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30070","CommonName":"Upper Church Road","Street":"Knightstone Road","Indicator":"E-bound","lat":"51.35214339403","lon":"-2.98664773823","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30072","CommonName":"Victoria Place","Street":"Knightstone Road","Indicator":"SE-bound","lat":"51.35113606945","lon":"-2.98346692032","node":"E0040021","stoptype":"BCT"},{"AtcoCode":"0190NSC30073","CommonName":"Winter Gardens","Indicator":"Stop L","lat":"51.34947554668","lon":"-2.9820385021","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30075","CommonName":"Gas Works","Street":"Drove Road","Indicator":"S-bound","lat":"51.34234533651","lon":"-2.96794529147","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30077","CommonName":"Ambulance Station","Indicator":"SW-bound","lat":"51.3402883985","lon":"-2.96876334092","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30078","CommonName":"Ambulance Station","Street":"Drove Road","Indicator":"NE-bound","lat":"51.33997040822","lon":"-2.96915861412","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30079","CommonName":"Kensington Road","Street":"Bournville Road","Indicator":"N-bound","lat":"51.33700305056","lon":"-2.97024445736","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30080","CommonName":"Kensington Road","Indicator":"SW-bound","lat":"51.3369857832","lon":"-2.97015796001","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30082","CommonName":"Argyle Avenue","Street":"Bournville Road","Indicator":"S-bound","lat":"51.33461944149","lon":"-2.96924671481","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30083","CommonName":"Argyle Avenue","Street":"Bournville Road","Indicator":"N-bound","lat":"51.3341343146","lon":"-2.96919341819","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30084","CommonName":"Lonsdale Avenue","Street":"Lonsdale Avenue","Indicator":"S-bound","lat":"51.33299555387","lon":"-2.96553778684","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30085","CommonName":"Lonsdale Avenue","Street":"Lonsdale Avenue","Indicator":"N-bound","lat":"51.33286010553","lon":"-2.96560671164","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30086","CommonName":"Windwistle Circle","Street":"Windwhistle Circle","Indicator":"SE-bound","lat":"51.33070830478","lon":"-2.96375295925","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30087","CommonName":"Windwistle Circle","Indicator":"SW-bound","lat":"51.33041610692","lon":"-2.96320140263","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30088","CommonName":"Thirlmere Road","Indicator":"N-bound","lat":"51.33142922002","lon":"-2.96028012677","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30089","CommonName":"Chaucer Road","Indicator":"SW-bound","lat":"51.33134213948","lon":"-2.95993381882","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30090","CommonName":"Selworthy Road","Street":"Byron Road","Indicator":"NW-bound","lat":"51.3338556525","lon":"-2.95935472973","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30091","CommonName":"Selworthy Road","Street":"Bryon Road","Indicator":"SE-bound","lat":"51.33385788621","lon":"-2.95908204154","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30092","CommonName":"Scott Road","Street":"Byron Road","Indicator":"E-bound","lat":"51.33471356167","lon":"-2.95780797571","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30093","CommonName":"Scott Road","Street":"Byron Road","Indicator":"W-bound","lat":"51.3346811208","lon":"-2.95737665788","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30094","CommonName":"Weston Football Club","Indicator":"adj","lat":"51.33109352346","lon":"-2.95514887695","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30095","CommonName":"Weston Football Club","Street":"Winterstoke Road","Indicator":"opp","lat":"51.33046735025","lon":"-2.95474832082","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30096","CommonName":"Oldmixon Crescent","Indicator":"S-bound","lat":"51.32669275332","lon":"-2.95449768533","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30097","CommonName":"Oldmixon Crescent","Street":"Winterstoke Road","Indicator":"N-bound","lat":"51.32642046504","lon":"-2.95480777786","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30098","CommonName":"Walnut Tree Inn","Street":"Winterstoke Road","Indicator":"N-bound","lat":"51.32348828036","lon":"-2.9549047353","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30099","CommonName":"Walnut Tree Inn","Indicator":"S-bound","lat":"51.32299684548","lon":"-2.95452139896","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30100","CommonName":"Woodside Avenue","Street":"Broadway","Indicator":"E-bound","lat":"51.32230412237","lon":"-2.95235438741","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30101","CommonName":"Woodside Avenue","Street":"Broadway","Indicator":"W-bound","lat":"51.32220546034","lon":"-2.95232364181","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30102","CommonName":"Oldmixon Road","Street":"Oldmixon Road","Indicator":"E-bound","lat":"51.32289194981","lon":"-2.94639653641","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30103","CommonName":"Oldmixon Road","Street":"Oldmixon Road","Indicator":"W-bound","lat":"51.32284078966","lon":"-2.94605105884","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30104","CommonName":"Warren Close","Street":"Main Road","Indicator":"N-bound","lat":"51.32429958703","lon":"-2.93571932583","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30105","CommonName":"Warren Close","Street":"Main Road","Indicator":"W-bound","lat":"51.32414651861","lon":"-2.93574491273","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30106","CommonName":"Primary School","Street":"Main Road","Indicator":"E-bound","lat":"51.32446570952","lon":"-2.93067097658","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30107","CommonName":"Primary School","Indicator":"W-bound","lat":"51.32443748321","lon":"-2.93082827156","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30108","CommonName":"Vereland Road","Street":"Vereland Road","Indicator":"N-bound","lat":"51.32537680994","lon":"-2.92576676053","node":"E0040029","stoptype":"BCT"},{"AtcoCode":"0190NSC30109","CommonName":"Moorcroft Road","Street":"Moor Croft Road","Indicator":"N-bound","lat":"51.32700447451","lon":"-2.92802415028","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30110","CommonName":"Littlemead Close","Street":"Moor Croft Road","Indicator":"W-bound","lat":"51.3271467165","lon":"-2.9304956251","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30111","CommonName":"Holm Road","Street":"Moor Lane","Indicator":"S-bound","lat":"51.32606058881","lon":"-2.93364543036","node":"E0053572","stoptype":"BCT"},{"AtcoCode":"0190NSC30112","CommonName":"Stuart Road","Street":"Winterstoke Road","Indicator":"N-bound","lat":"51.33591672071","lon":"-2.95582334139","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30113","CommonName":"Stuart Road","Indicator":"S-bound","lat":"51.33599133844","lon":"-2.95549472569","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30114","CommonName":"Bloomfield","Street":"Brompton Road","Indicator":"W-bound","lat":"51.32416453276","lon":"-2.95577986957","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30115","CommonName":"Bloomfield","Street":"Brompton Road","Indicator":"E-bound","lat":"51.32424486143","lon":"-2.95585329713","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30116","CommonName":"Brompton Road Lay By","Street":"Brompton Road","Indicator":"NE-bound","lat":"51.32410363827","lon":"-2.95992616308","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30117","CommonName":"Monkton Avenue","Indicator":"S-bound","lat":"51.3229530931","lon":"-2.95987343502","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30118","CommonName":"Monkton Avenue","Street":"Brompton Road","Indicator":"N-bound","lat":"51.32232176009","lon":"-2.96010421714","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30119","CommonName":"Barry Close","Indicator":"SE-bound","lat":"51.32156867769","lon":"-2.9598301777","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30120","CommonName":"Barry Close","Street":"Ashford Drive","Indicator":"SW-bound","lat":"51.32145867457","lon":"-2.96008619165","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30121","CommonName":"Brockley Crescent","Street":"Burnham Drive","Indicator":"W-bound","lat":"51.31844258078","lon":"-2.96273529237","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30122","CommonName":"Brockley Crescent","Street":"Burnham Drive","Indicator":"E-bound","lat":"51.3185515281","lon":"-2.9626084265","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30123","CommonName":"Burnham Close","Indicator":"S-bound","lat":"51.31781457885","lon":"-2.96583597534","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30124","CommonName":"Burnham Close","Indicator":"N-bound","lat":"51.31793807804","lon":"-2.96612555967","node":"E0040050","stoptype":"BCT"},{"AtcoCode":"0190NSC30125","CommonName":"General Hospital","Street":"Grange Road","Indicator":"W-bound","lat":"51.32061426936","lon":"-2.97088871006","node":"E0040087","stoptype":"BCT"},{"AtcoCode":"0190NSC30126","CommonName":"General Hospital","Indicator":"E-bound","lat":"51.32065785482","lon":"-2.97213811138","node":"E0040087","stoptype":"BCT"},{"AtcoCode":"0190NSC30127","CommonName":"Holms Road","Street":"Stuart Road","Indicator":"E-bound","lat":"51.33637555066","lon":"-2.9568951747","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30128","CommonName":"Holms Road","Street":"Stuart Road","Indicator":"W-bound","lat":"51.33636808473","lon":"-2.95670840101","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30129","CommonName":"Buttermere Road","Street":"Stuart Road","Indicator":"E-bound","lat":"51.3362116805","lon":"-2.95824115057","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30130","CommonName":"Buttermere Road","Street":"Stuart Road","Indicator":"W-bound","lat":"51.33619463911","lon":"-2.95812595362","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30131","CommonName":"Yeo Close","Street":"Saint Ives Road","Indicator":"N-bound","lat":"51.33550342649","lon":"-2.96017865709","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30132","CommonName":"Yeo Close","Street":"Saint Ives Road","Indicator":"S-bound","lat":"51.33549573045","lon":"-2.96002059152","node":"N0077318","stoptype":"BCT"},{"AtcoCode":"0190NSC30133","CommonName":"Sunnyside Road","Street":"Brighton Road","Indicator":"E-bound","lat":"51.33968523791","lon":"-2.97101891664","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30134","CommonName":"Sunnyside Road","Street":"Brighton Road","Indicator":"W-bound","lat":"51.33962123375","lon":"-2.97114677033","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30135","CommonName":"Whitecross Road","Street":"Clevedon Road","Indicator":"E-bound","lat":"51.3401496873","lon":"-2.97572329031","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30136","CommonName":"Albert Road","Street":"Whitecross Road","Indicator":"N-bound","lat":"51.3409286226","lon":"-2.97612746492","node":"N0077320","stoptype":"BCT"},{"AtcoCode":"0190NSC30137","CommonName":"Neva Road","Street":"Ellenborough Park Road","Indicator":"N-bound","lat":"51.34307240521","lon":"-2.97568486898","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30138","CommonName":"Neva Road","Street":"Ellenborough Park Road","Indicator":"S-bound","lat":"51.3433720778","lon":"-2.97533229783","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30140","CommonName":"Neva Road","Street":"Neva Road","Indicator":"Stop X","lat":"51.3443455981","lon":"-2.97288343502","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30141","CommonName":"Neva Road","Street":"Neva Road","Indicator":"Stop Y","lat":"51.34422872282","lon":"-2.97288095959","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30142","CommonName":"Regent Street","Street":"Regent Street","Indicator":"Stop EE","lat":"51.3467570097","lon":"-2.97485855278","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30143","CommonName":"Alexandra Parade","Street":"Alexandra Parade","Indicator":"Stop BB","lat":"51.3472712793","lon":"-2.97573098855","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30144","CommonName":"Alexandra Parade","Street":"Alexandra Parade","Indicator":"Stop CC","lat":"51.3472457433","lon":"-2.9755581421","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30145","CommonName":"Swiss Road","Street":"Locking Road","Indicator":"Stop AA","lat":"51.34618625849","lon":"-2.97104148154","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30146","CommonName":"Stafford Road","Street":"Locking Road","Indicator":"E-bound","lat":"51.34608250232","lon":"-2.96836864533","node":"E0040103","stoptype":"BCT"},{"AtcoCode":"0190NSC30147","CommonName":"Drove Road","Indicator":"W-bound","lat":"51.34593099546","lon":"-2.96711628382","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30148","CommonName":"Churchill Road","Indicator":"E-bound","lat":"51.34573520857","lon":"-2.96250318537","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30149","CommonName":"Langford Road","Street":"Locking Road","Indicator":"W-bound","lat":"51.34554092516","lon":"-2.96097715371","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30150","CommonName":"Birchwood Avenue","Street":"Locking Road","Indicator":"E-bound","lat":"51.3460054511","lon":"-2.95805778748","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30151","CommonName":"Birchwood Avenue","Street":"Locking Road","Indicator":"W-bound","lat":"51.34636023045","lon":"-2.95645705043","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30152","CommonName":"Laburnum Road","Street":"Locking Road","Indicator":"NE-bound","lat":"51.34739687643","lon":"-2.95393714991","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30153","CommonName":"Wellsea Grove","Street":"Locking Road","Indicator":"SW-bound","lat":"51.34779339937","lon":"-2.95272488664","node":"N0077341","stoptype":"BCT"},{"AtcoCode":"0190NSC30154","CommonName":"Chesham Road South","Street":"Locking Road","Indicator":"E-bound","lat":"51.34866592393","lon":"-2.95047425126","node":"E0039959","stoptype":"BCT"},{"AtcoCode":"0190NSC30155","CommonName":"Saxon Road","Street":"Locking Road","Indicator":"W-bound","lat":"51.34960744494","lon":"-2.94635823675","node":"E0040039","stoptype":"BCT"},{"AtcoCode":"0190NSC30156","CommonName":"The Borough Arms","Indicator":"E-bound","lat":"51.35002256604","lon":"-2.94506007628","node":"E0040039","stoptype":"BCT"},{"AtcoCode":"0190NSC30157","CommonName":"The Borough Arms","Indicator":"W-bound","lat":"51.35006177117","lon":"-2.94465881665","node":"E0040039","stoptype":"BCT"},{"AtcoCode":"0190NSC30158","CommonName":"Chelswood Avenue","Street":"Locking Road","Indicator":"NE-bound","lat":"51.35210407337","lon":"-2.94116823188","node":"E0040039","stoptype":"BCT"},{"AtcoCode":"0190NSC30159","CommonName":"Chelswood Avenue","Street":"Locking Road","Indicator":"SW-bound","lat":"51.35204263983","lon":"-2.94098029108","node":"E0040039","stoptype":"BCT"},{"AtcoCode":"0190NSC30160","CommonName":"Mead Vale","Street":"Locking Road","Indicator":"NE-bound","lat":"51.35426380843","lon":"-2.93647342771","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30161","CommonName":"Mead Vale","Street":"Locking Road","Indicator":"SW-bound","lat":"51.35444717641","lon":"-2.93603198026","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30162","CommonName":"Raven Close","Indicator":"S-bound","lat":"51.3542161291","lon":"-2.93456246817","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30163","CommonName":"Mallard Walk","Street":"Mead Vale","Indicator":"SE-bound","lat":"51.35218920262","lon":"-2.93390372886","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30164","CommonName":"Mallard Walk","Street":"Mead Vale","Indicator":"NW-bound","lat":"51.3518562108","lon":"-2.93394003696","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30165","CommonName":"Woodpecker Drive","Street":"Mead Vale","Indicator":"NE-bound","lat":"51.35250035286","lon":"-2.92983174143","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30166","CommonName":"Nightingale Close","Street":"Mead Vale","Indicator":"SW-bound","lat":"51.35297868067","lon":"-2.92847718796","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30167","CommonName":"Nightingale Close","Indicator":"NE-bound","lat":"51.35347110841","lon":"-2.92761115036","node":"E0040041","stoptype":"BCT"},{"AtcoCode":"0190NSC30168","CommonName":"Lark Road","Street":"Mead Vale","Indicator":"W-bound","lat":"51.35415647145","lon":"-2.92394863663","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30169","CommonName":"Lark Road","Street":"Mead Vale","Indicator":"NE-bound","lat":"51.3549595214","lon":"-2.92245688815","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30170","CommonName":"Chestnut Avenue","Street":"Verbena Way","Indicator":"E-bound","lat":"51.35490862707","lon":"-2.91863583736","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30171","CommonName":"Chestnut Avenue","Street":"Verbena Way","Indicator":"W-bound","lat":"51.35474107235","lon":"-2.91821601746","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30172","CommonName":"Verbena Way","Street":"Verbena Way","Indicator":"NW-bound","lat":"51.35628689104","lon":"-2.9160209088","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30173","CommonName":"Verbena Way","Street":"Verbena Way","Indicator":"SE-bound","lat":"51.35632420073","lon":"-2.91584931579","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30174","CommonName":"Silverberry Road","Street":"Silverberry Road","Indicator":"E-bound","lat":"51.3577765112","lon":"-2.91640967688","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30175","CommonName":"Silverberry Road","Indicator":"W-bound","lat":"51.35763367383","lon":"-2.91627756908","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30176","CommonName":"Tor Close","Street":"Glastonbury Way","Indicator":"E-bound","lat":"51.3582669032","lon":"-2.91348960643","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30177","CommonName":"Tor Close","Street":"Glastonbury Way","Indicator":"NW-bound","lat":"51.35821251197","lon":"-2.91354597234","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30178","CommonName":"Morrisons Worle","Street":"Somerset Avenue","Indicator":"NE-bound","lat":"51.35273454968","lon":"-2.91263280896","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30179","CommonName":"Shrewsbury Bow","Street":"Shrewsbury Bow","Indicator":"SE-bound","lat":"51.35236555659","lon":"-2.91727818303","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30180","CommonName":"Elmham Way","Indicator":"NE-bound","lat":"51.35513274557","lon":"-2.9118188111","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30181","CommonName":"Banwell Road Bridge","Indicator":"SE-bound","lat":"51.35593391023","lon":"-2.91170546955","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30183","CommonName":"Thorn Close","Street":"Summer Lane","Indicator":"NE-bound","lat":"51.35881842129","lon":"-2.91194946","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30184","CommonName":"Thorn Close","Indicator":"SW-bound","lat":"51.35872918672","lon":"-2.91186151427","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30185","CommonName":"New Bristol Road","Street":"New Bristol Road","Indicator":"W-bound","lat":"51.35931263318","lon":"-2.91430034505","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30186","CommonName":"New Bristol Road","Indicator":"E-bound","lat":"51.35945805096","lon":"-2.91410216718","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30187","CommonName":"Preanes Green","Indicator":"N-bound","lat":"51.35925230396","lon":"-2.91741577634","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30188","CommonName":"Feniton","Street":"Clovelly Road","Indicator":"N-bound","lat":"51.36029137938","lon":"-2.91792487268","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30189","CommonName":"Bampton","Street":"Tamar Road","Indicator":"SE-bound","lat":"51.36126004943","lon":"-2.92052958094","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30190","CommonName":"Blackmoor","Indicator":"SW-bound","lat":"51.36027868288","lon":"-2.92183126985","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30191","CommonName":"Bideford Road","Indicator":"SE-bound","lat":"51.36029536191","lon":"-2.92313861003","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30193","CommonName":"Station Road","Indicator":"SE-bound","lat":"51.36035153627","lon":"-2.92513615691","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30194","CommonName":"Summer Lane","Indicator":"E-bound","lat":"51.3588141193","lon":"-2.91825439147","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30195","CommonName":"Summer Lane","Indicator":"W-bound","lat":"51.35862306626","lon":"-2.91853781354","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30196","CommonName":"Homebase","Street":"Bristol Road","Indicator":"E-bound","lat":"51.36020923593","lon":"-2.90769701649","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30197","CommonName":"Homebase","Indicator":"W-bound","lat":"51.36002176976","lon":"-2.90752095869","node":"E0040101","stoptype":"BCT"},{"AtcoCode":"0190NSC30198","CommonName":"The Woolpack","Indicator":"E-bound","lat":"51.35985180067","lon":"-2.90158586937","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC30199","CommonName":"The Woolpack","Street":"Bristol Road","Indicator":"W-bound","lat":"51.35959483168","lon":"-2.90109249922","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC30200","CommonName":"Vale Crescent","Indicator":"E-bound","lat":"51.36119642948","lon":"-2.89978818197","node":"E0040074","stoptype":"BCT"},{"AtcoCode":"0190NSC30202","CommonName":"Becket Road","Indicator":"E-bound","lat":"51.36338523151","lon":"-2.91439582644","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30203","CommonName":"Becket Road","Street":"Queen's Way","Indicator":"W-bound","lat":"51.36332163972","lon":"-2.91562983229","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30204","CommonName":"St Marks Church","Street":"Queensway","Indicator":"W-bound","lat":"51.36356289477","lon":"-2.91926866412","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30205","CommonName":"St Marks Church","Street":"Queensway","Indicator":"E-bound","lat":"51.36351537359","lon":"-2.91844898156","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30206","CommonName":"Queensway Underpass","Street":"Queensway","Indicator":"NW-bound","lat":"51.36473684535","lon":"-2.92206444349","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30207","CommonName":"Queensway Underpass","Street":"Queensway","Indicator":"SE-bound","lat":"51.3648534958","lon":"-2.92209551508","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30208","CommonName":"Fallowfield","Street":"Ebdon Road","Indicator":"S-bound","lat":"51.36620042572","lon":"-2.92347284213","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30209","CommonName":"Fallowfield","Street":"Ebdon Road","Indicator":"N-bound","lat":"51.36664927127","lon":"-2.92356806128","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30210","CommonName":"Crematorium","Street":"Ebdon Road","Indicator":"N-bound","lat":"51.3705645957","lon":"-2.92422149362","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30211","CommonName":"Crematorium","Indicator":"S-bound","lat":"51.37050268218","lon":"-2.92409095369","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30212","CommonName":"The Cornfields","Indicator":"NE-bound","lat":"51.37289682542","lon":"-2.92265940383","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30213","CommonName":"The Cornfields","Street":"Ebdon Road","Indicator":"SW-bound","lat":"51.37268207183","lon":"-2.92252578657","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30214","CommonName":"Wheatfield Drive","Street":"Ebdon Road","Indicator":"NE-bound","lat":"51.37445332905","lon":"-2.9191132886","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30215","CommonName":"Wheatfield Drive","Street":"Ebdon Road","Indicator":"SW-bound","lat":"51.3743910718","lon":"-2.91902583889","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30216","CommonName":"Bluebell Road","Street":"Bluebell Road","Indicator":"opp","lat":"51.37675154968","lon":"-2.91499265426","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30217","CommonName":"Poppy Close","Indicator":"W-bound","lat":"51.37551098047","lon":"-2.9161029429","node":"E0039995","stoptype":"BCT"},{"AtcoCode":"0190NSC30218","CommonName":"Cornwallis Avenue","Street":"Queensway","Indicator":"NW-bound","lat":"51.36757185051","lon":"-2.92857127292","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30219","CommonName":"Cornwallis Avenue","Street":"Queensway","Indicator":"SE-bound","lat":"51.36766209694","lon":"-2.92853000381","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30220","CommonName":"Anson Road","Street":"Queen's Way","Indicator":"W-bound","lat":"51.36858045546","lon":"-2.93403612695","node":"E0040110","stoptype":"BCT"},{"AtcoCode":"0190NSC30221","CommonName":"Anson Road","Street":"Queen's Way","Indicator":"E-bound","lat":"51.36876593309","lon"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment