Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active May 31, 2020 22:22
Show Gist options
  • Save anisotropi4/acb0fddf7ccb1230ff81746781d3eefe to your computer and use it in GitHub Desktop.
Save anisotropi4/acb0fddf7ccb1230ff81746781d3eefe to your computer and use it in GitHub Desktop.
Trunk Roads: OSM locations of trunk roads in the GB
Released license:MIT
height:780
border:no
Trunk Roads: OSM locations of trunk roads in the GB
OpenStreetMap® open data is © OpenStreetMap contributors and used under the Open Street Map license https://www.openstreetmap.org/copyright
Open Data Institute Leeds scripts and configuration are used © Creative Commons BY 4.0 ODI Leeds 2018 https://creativecommons.org/licenses/by/4.0/
#!/usr/bin/env python3
import json
import csv
DATA = []
TAGS = []
for gtype in ['points', 'lines', 'multilinestrings', 'multipolygons', 'other_relations']:
with open('great-britain-highway-{}.json'.format(gtype), 'r', encoding='utf-8') as fin:
data = json.load(fin)
DATA.append(data)
TAGS += [{k: v for (k, v) in i['properties'].items()
if v and k not in ['z_order', 'layer']}
for i in data['features'] if i]
with open('output-all.json', 'w') as fout:
json.dump(DATA, fout, indent=1)
with open('tag-report.csv', 'w') as fout:
fieldnames = ['osm_id', 'highway', 'maxspeed']
fieldnames += [k for k in set([j for i in TAGS for j in i]) - set(fieldnames)]
csvwriter = csv.DictWriter(fout, fieldnames=fieldnames)
csvwriter.writeheader()
for tag in TAGS:
csvwriter.writerow(tag)
none
1
1.983960E+00 5.133770E+01
5.807600E-02 5.010375E+01
-1.246112E+00 4.989032E+01
-2.027284E+00 4.977612E+01
-2.020900E+00 4.976352E+01
-2.031990E+00 4.976171E+01
-1.808598E+00 4.910263E+01
-1.835368E+00 4.900443E+01
-3.940324E+00 4.915592E+01
-7.024780E+00 4.970097E+01
-5.441616E+00 5.278017E+01
-5.206178E+00 5.377268E+01
-5.488813E+00 5.486510E+01
-6.208707E+00 5.533747E+01
-6.604158E+00 5.543057E+01
-7.148041E+00 5.566455E+01
-1.486751E+01 5.746894E+01
-1.499070E+01 5.768017E+01
-1.208287E+01 5.853333E+01
-1.637515E+00 6.113564E+01
-2.670263E-01 6.110300E+01
1.278458E-01 5.976591E+01
9.781600E-02 5.942198E+01
7.998970E-01 5.579959E+01
1.702395E+00 5.443427E+01
2.250000E+00 5.258000E+01
1.983960E+00 5.133770E+01
END
END
<!DOCTYPE html>
<html>
<head>
<title>Trunk Roads: OSM locations of trunk roads in the GB</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-control" content="No-Cache">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<script src="http://d3js.org/d3.v5.min.js"></script>
<div id="map" style="width: 1340px; height: 780px"></div>
</head>
<body>
<div id='map'></div>
<script type="text/javascript">
var radius = 3;
var weight = 1;
var linewidth = 2;
var log2 = Math.log(2.0);
var minZoom = 3;
var maxZoom = 18;
var map = L.map('map').setView([54.533, -2.53], 6);
L.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
maxZoom: maxZoom,
minZoom: minZoom,
attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' + '<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
id: 'osm.standard'
}).addTo(map);
d3.json("output-all.json").then(function(d) {
function onEachFeature(feature, layer) {
var this_feature = feature.properties;
var popupContent;
if (this_feature.name)
popupContent = this_feature.name;
else
popupContent = this_feature.railway;
var lookup = {
"osm_id": "OSM ID",
"highway": "highway",
"maxspeed": "speed",
}
var k = Object.keys(this_feature).filter(i=>(i != "type" && i != "geometry" && i != "name" && i != "is_in" && i != "z_order" && i != "railway"))
for (var i = 0; i < k.length; i++) {
if (k[i] in this_feature) {
popupContent += '<br>' + lookup[k[i]] + ': ' + this_feature[k[i]];
}
}
layer.bindPopup(popupContent);
}
function get_colour(p) {
var h = p.highway;
var s = p.maxspeed;
//if (p.osm_id == "28032243")
// return fail;
if (s && s.substr(-4) == " mph") s = s.slice(0, s.length - 4);
var fail = "#ff00ff";
if (s && Number(s) < 20) s = "20";
if (h == "trunk") {
var colours = { "20": "#e69c65",
"30": "#bd5d16",
"40": "#ffce36",
"50": "#ff893f",
"60": "#ff3818",
"70": "#d00000",};
if (! s || s == 'none') s = "60";
if (s in colours) return colours[s];
return fail;
}
if (h == "motorway") {
var colours = { "30": "#0a3797",
"40": "#bd5d16",
"50": "#b3e297",
"60": "#ffce36",
"70": "#ffce36",};
if (! s || s == 'signals') s = "70";
if (s in colours) return colours[s];
return fail;
}
return fail;
}
L.geoJSON(d, {
style: function(feature) {
var c = get_colour(feature.properties);
switch (feature.geometry.type) {
case 'Point':
return {
color: c,
radius: radius,
weight: weight
};
case 'LineString':
return {
color: c,
weight: linewidth
};
case 'MultiLineString':
return {
color: c,
weight: linewidth
};
case 'MultiPolygon':
return {
weight: linewidth,
opacity: 1.0,
color: "Green",
fillColor: "Green",
fillOpacity: 0.2
};
case 'GeometryCollection':
return {
radius: radius,
weight: linewidth,
opacity: 1.0,
color: "Green",
fillColor: "GreenYellow",
fillOpacity: 0.2
};
default:
return {
weight: weight
};
}
},
onEachFeature: onEachFeature,
pointToLayer: function(feature, latlng) {
return L.circleMarker(latlng, {
opacity: 1,
fillOpacity: 0.8
});
}
}).addTo(map);
});
</script>
</body>
</html>
MIT License
Copyright (c) 2020 Will Deakin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
#
# Configuration file for OSM import
#
# put here the name of keys for ways that are assumed to be polygons if they are closed
# see http://wiki.openstreetmap.org/wiki/Map_Features
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism
# comment to avoid laundering of keys ( ':' turned into '_' )
attribute_name_laundering=yes
# uncomment to report all nodes, including the ones without any (significant) tag
#report_all_nodes=yes
# uncomment to report all ways, including the ones without any (significant) tag
#report_all_ways=yes
[points]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable
# keys that, alone, are not significant enough to report a node as a OGR point
unsignificant=created_by,converted_by,source,time,attribution
# keys that should NOT be reported in the "other_tags" field
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[lines]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable
# keys that should NOT be reported in the "other_tags" field
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#computed_attributes must appear before the keywords _type and _sql
computed_attributes=z_order
z_order_type=Integer
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)"
[multipolygons]
# common attributes
# note: for multipolygons, osm_id=yes instanciates a osm_id field for the id of relations
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set.
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[multilinestrings]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[other_relations]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
Display the source blob
Display the rendered blob
Raw
[{"type": "FeatureCollection", "name": "points", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": []}, {"type": "FeatureCollection", "name": "lines", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [{"type": "Feature", "properties": {"osm_id": "197", "highway": "trunk", "ref": "A414", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:nsl_dual", "description": "St. Albans By-Pass", "old_ref": "M10", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.345189, 51.7325668], [-0.3452577, 51.732668], [-0.3453724, 51.7327902], [-0.3454948, 51.7328625], [-0.3456314, 51.7329192], [-0.3462324, 51.7330456], [-0.3469896, 51.7332046]]}}, {"type": "Feature", "properties": {"osm_id": "199", "highway": "trunk", "maxspeed": "70 mph", "lanes": "2", "lit": "yes", "name": "Park Street Roundabout", "surface": "asphalt", "source_maxspeed": "UK:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3450251, 51.7323381], [-0.3451462, 51.7324611], [-0.345189, 51.7325668], [-0.3451751, 51.7327127], [-0.3451287, 51.7327949], [-0.3449926, 51.7329143], [-0.3448741, 51.7329725], [-0.3447228, 51.7330161], [-0.3445613, 51.7330339], [-0.3443796, 51.7330282], [-0.3442591, 51.7330072], [-0.3441342, 51.7329648], [-0.34393, 51.7328313], [-0.3438739, 51.7327601], [-0.343846, 51.7326946], [-0.3438346, 51.732596], [-0.3438645, 51.7325039], [-0.3439385, 51.7323911], [-0.3440632, 51.7323002], [-0.3442195, 51.7322359], [-0.3443838, 51.7322022], [-0.3445617, 51.7321955], [-0.3447805, 51.7322282], [-0.3450251, 51.7323381]]}}, {"type": "Feature", "properties": {"osm_id": "212", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "name": "London Road", "lanes_backward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3564835, 51.3902679], [-2.3564505, 51.3902821], [-2.3562336, 51.3903646], [-2.355652, 51.3905858]]}}, {"type": "Feature", "properties": {"osm_id": "456", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Birmingham City Council", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7765663, 52.5314963], [-1.7764962, 52.5316623], [-1.7764847, 52.5317268], [-1.7764804, 52.531771], [-1.7764788, 52.5318003], [-1.7764869, 52.531874], [-1.7765064, 52.5319287], [-1.776527, 52.5319835], [-1.7765723, 52.5320704]]}}, {"type": "Feature", "properties": {"osm_id": "457", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7699166, 52.5670807], [-1.7698183, 52.5670622], [-1.7697268, 52.5670278], [-1.7696534, 52.5669844], [-1.769606, 52.5669377], [-1.7695796, 52.5668907], [-1.7695655, 52.5668225], [-1.7695764, 52.5667552], [-1.7696188, 52.5666837], [-1.769665, 52.5666405]]}}, {"type": "Feature", "properties": {"osm_id": "458", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Birmingham City Council", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.769665, 52.5666405], [-1.7698152, 52.5664688], [-1.7698728, 52.5663413], [-1.7699054, 52.5662574], [-1.7699336, 52.5661363], [-1.7700095, 52.564898], [-1.7701013, 52.5635626], [-1.7701249, 52.5631076]]}}, {"type": "Feature", "properties": {"osm_id": "459", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "carriageway_ref": "A", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.777967, 52.5796934], [-1.7779773, 52.5799086], [-1.7780265, 52.5802132], [-1.7781251, 52.580521], [-1.7781746, 52.5806423]]}}, {"type": "Feature", "properties": {"osm_id": "460", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "carriageway_ref": "A", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7704141, 52.5669598], [-1.7703343, 52.5671008], [-1.7702838, 52.5672387], [-1.7702754, 52.5673451], [-1.7702801, 52.5674552], [-1.7703835, 52.5680088], [-1.7705661, 52.5686263], [-1.7707308, 52.569089], [-1.7709249, 52.569548], [-1.7712516, 52.5702119], [-1.7716111, 52.5708616], [-1.7723954, 52.5720532]]}}, {"type": "Feature", "properties": {"osm_id": "461", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "carriageway_ref": "B", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7773842, 52.5796033], [-1.7772593, 52.5794794], [-1.7766638, 52.5785773]]}}, {"type": "Feature", "properties": {"osm_id": "462", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Sutton Coldfield Bypass", "source_maxspeed": "survey", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7780125, 52.5796182], [-1.777967, 52.5796934], [-1.7778857, 52.5797462], [-1.7778127, 52.5797665], [-1.7777711, 52.579778], [-1.7776409, 52.5797797], [-1.7774835, 52.5797311]]}}, {"type": "Feature", "properties": {"osm_id": "463", "highway": "trunk", "ref": "A446", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "London Road", "maxspeed_type": "GB:national_single", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7808811, 52.5901458], [-1.7810161, 52.5903323]]}}, {"type": "Feature", "properties": {"osm_id": "464", "highway": "trunk", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Bassetts Pole", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7833834, 52.5913234], [-1.7831775, 52.5913109]]}}, {"type": "Feature", "properties": {"osm_id": "548", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "maxspeed_type": "UK:nsl_dual", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4447393, 51.7006267], [-0.4449042, 51.7007583], [-0.4450595, 51.7008519], [-0.4453577, 51.7009948], [-0.4457704, 51.7011559], [-0.4462375, 51.7013157]]}}, {"type": "Feature", "properties": {"osm_id": "786", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road North", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8698716, 52.5575754], [-1.8696533, 52.5574361], [-1.8693633, 52.557155], [-1.8692321, 52.557023]]}}, {"type": "Feature", "properties": {"osm_id": "787", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road North", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8788994, 52.5661992], [-1.8791273, 52.5667043], [-1.8792659, 52.5670134]]}}, {"type": "Feature", "properties": {"osm_id": "788", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road North", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8794893, 52.5686797], [-1.8794518, 52.568444]]}}, {"type": "Feature", "properties": {"osm_id": "790", "highway": "trunk", "ref": "A4041", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Queslett Road East", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.879959, 52.5686092], [-1.8801065, 52.5686071], [-1.8802229, 52.5685868], [-1.8806362, 52.568404], [-1.8813222, 52.5680924], [-1.8820174, 52.567782], [-1.8827695, 52.5673481], [-1.8828021, 52.5673253], [-1.8836751, 52.5667147], [-1.884239, 52.5663491], [-1.8846699, 52.5661162], [-1.8852242, 52.5658164], [-1.8854226, 52.5657091], [-1.8856466, 52.5655862], [-1.8857626, 52.5654608]]}}, {"type": "Feature", "properties": {"osm_id": "791", "highway": "trunk", "ref": "A4041", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Queslett Road East", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8860906, 52.5656458], [-1.885819, 52.5656744], [-1.8856029, 52.5657504], [-1.8852229, 52.5659575], [-1.8847617, 52.566198], [-1.8842866, 52.5664702], [-1.8838224, 52.5667913], [-1.8835165, 52.5670138], [-1.8833581, 52.567121], [-1.8829034, 52.5674308], [-1.8824645, 52.5676854], [-1.8820808, 52.5678809], [-1.8818863, 52.5679736], [-1.8814747, 52.568158], [-1.8813184, 52.5682322], [-1.8807262, 52.5684917]]}}, {"type": "Feature", "properties": {"osm_id": "792", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8863326, 52.5656098], [-1.886271, 52.5656258], [-1.8862073, 52.5656396], [-1.8861652, 52.5656445], [-1.8860906, 52.5656458], [-1.8860312, 52.5656399], [-1.8859695, 52.5656268], [-1.8859032, 52.565603], [-1.8858584, 52.5655789], [-1.8858184, 52.5655485], [-1.8857889, 52.5655157], [-1.8857626, 52.5654608], [-1.8857585, 52.5654241], [-1.8857688, 52.5653757], [-1.8857835, 52.5653414]]}}, {"type": "Feature", "properties": {"osm_id": "802", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8010659, 52.5193043], [-1.8010546, 52.5194766], [-1.8011303, 52.5195593], [-1.8013416, 52.5197054]]}}, {"type": "Feature", "properties": {"osm_id": "803", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8070802, 52.5230908], [-1.8069714, 52.5230868], [-1.806904, 52.5230789]]}}, {"type": "Feature", "properties": {"osm_id": "825", "highway": "trunk", "ref": "A446", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "name": "London Road", "maxspeed_type": "GB:national_single", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7741102, 52.5786794], [-1.7735225, 52.5781876], [-1.773217, 52.5779541], [-1.772863, 52.5777295], [-1.7726766, 52.57763], [-1.771992, 52.5772578], [-1.7715249, 52.5770001], [-1.7706963, 52.5765429], [-1.7700381, 52.5762025], [-1.7694487, 52.5758471], [-1.7690488, 52.5755847], [-1.7686092, 52.5752423], [-1.7677609, 52.5745063], [-1.7673434, 52.574141], [-1.7669288, 52.5737694], [-1.7664253, 52.5734041], [-1.7656286, 52.5728364], [-1.7651099, 52.572459], [-1.7648216, 52.5722492], [-1.7643807, 52.5719058], [-1.7640092, 52.5715062], [-1.7637646, 52.57118], [-1.7636006, 52.5709081], [-1.7634478, 52.5705983], [-1.7629774, 52.5695372], [-1.7629391, 52.5694558], [-1.7628859, 52.5693636]]}}, {"type": "Feature", "properties": {"osm_id": "833", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8264035, 52.5321896], [-1.8262893, 52.5321395], [-1.8258957, 52.5319671], [-1.825465, 52.5317784]]}}, {"type": "Feature", "properties": {"osm_id": "836", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.828992, 52.5333457], [-1.8291356, 52.5334078]]}}, {"type": "Feature", "properties": {"osm_id": "837", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8290497, 52.5334799], [-1.8289019, 52.5334183]]}}, {"type": "Feature", "properties": {"osm_id": "838", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "turn_lanes": "merge_to_right|none", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8291356, 52.5334078], [-1.8293103, 52.5334819], [-1.8294098, 52.533535], [-1.8295063, 52.5336007], [-1.8296288, 52.5337229]]}}, {"type": "Feature", "properties": {"osm_id": "839", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8298546, 52.5339289], [-1.8296206, 52.5338262], [-1.8295242, 52.53375]]}}, {"type": "Feature", "properties": {"osm_id": "840", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8359672, 52.5366448], [-1.8358211, 52.5366088], [-1.8357639, 52.536603], [-1.8353896, 52.5364381], [-1.8352059, 52.5363238]]}}, {"type": "Feature", "properties": {"osm_id": "841", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8436563, 52.5405455], [-1.8429937, 52.5402185], [-1.8423533, 52.5398905], [-1.84185, 52.5396252], [-1.8414986, 52.5394331], [-1.8411479, 52.5392414], [-1.8403028, 52.538791], [-1.8401384, 52.5387018], [-1.8394386, 52.5383249], [-1.8392896, 52.5382416], [-1.8387626, 52.5379589], [-1.8384877, 52.5378169], [-1.8381219, 52.5376278], [-1.837494, 52.5373252], [-1.8370548, 52.5371298]]}}, {"type": "Feature", "properties": {"osm_id": "842", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8502497, 52.5436923], [-1.8500473, 52.5435951], [-1.849261, 52.5432247], [-1.8490389, 52.5431184], [-1.8480765, 52.5426539], [-1.8475696, 52.542412], [-1.8475335, 52.5423946], [-1.8471729, 52.5422248], [-1.8468459, 52.5420685], [-1.8464341, 52.5418715], [-1.8462641, 52.5417921], [-1.8455586, 52.5414539], [-1.8444545, 52.5409273], [-1.8440061, 52.5407146], [-1.8436563, 52.5405455]]}}, {"type": "Feature", "properties": {"osm_id": "843", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8561232, 52.5465188], [-1.8559347, 52.5464249], [-1.8548934, 52.5459222], [-1.8548346, 52.5458937], [-1.8543145, 52.5456465], [-1.8536763, 52.5453351], [-1.8527952, 52.5449317], [-1.8523435, 52.5447013], [-1.8518568, 52.5444647], [-1.8512036, 52.544155], [-1.8504851, 52.5438067], [-1.8502497, 52.5436923]]}}, {"type": "Feature", "properties": {"osm_id": "919", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Kingsbury Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7788653, 52.5288745], [-1.778694, 52.5289844], [-1.778537, 52.5290816], [-1.7783684, 52.5292021], [-1.7780689, 52.5294353], [-1.7771803, 52.5301505], [-1.7767756, 52.5304954], [-1.7766992, 52.530564], [-1.7766626, 52.5306121], [-1.7766297, 52.5306669], [-1.7766155, 52.5307206], [-1.7766118, 52.5307646], [-1.7766194, 52.5308166], [-1.7766317, 52.5309426]]}}, {"type": "Feature", "properties": {"osm_id": "920", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Kingsbury Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7753095, 52.5303744], [-1.7754269, 52.5303565], [-1.7755546, 52.5303257], [-1.7756952, 52.5302816], [-1.775851, 52.5302196], [-1.7762496, 52.5299973], [-1.7765694, 52.5298223], [-1.7769056, 52.5296323], [-1.7775805, 52.5292606], [-1.7782565, 52.5288997]]}}, {"type": "Feature", "properties": {"osm_id": "923", "highway": "trunk", "ref": "A38;A452", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Tyburn House Island", "source_maxspeed": "survey", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8006727, 52.5194338], [-1.8005898, 52.5194291]]}}, {"type": "Feature", "properties": {"osm_id": "924", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Kingsbury Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7802309, 52.5279149], [-1.7808882, 52.5278667], [-1.7814195, 52.5278032], [-1.7818803, 52.5276966], [-1.7834515, 52.5272531], [-1.784496, 52.5269431], [-1.7847407, 52.5268691]]}}, {"type": "Feature", "properties": {"osm_id": "1166", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7494674, 52.5582538], [-1.7476485, 52.5570226], [-1.7458686, 52.5559384], [-1.7439692, 52.5549363], [-1.7422686, 52.554129], [-1.7390098, 52.5526292], [-1.7389154, 52.5525873]]}}, {"type": "Feature", "properties": {"osm_id": "1168", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "surface": "asphalt", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7296778, 52.5419523], [-1.729711, 52.5436395], [-1.729745, 52.5441603], [-1.7298239, 52.5446062], [-1.730026, 52.5454419], [-1.7301208, 52.5456733]]}}, {"type": "Feature", "properties": {"osm_id": "1200", "highway": "trunk", "ref": "A406", "maxspeed": "40 mph", "lanes": "2", "oneway": "no", "lit": "yes", "name": "Hanger Lane", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2916285, 51.5160418], [-0.2915517, 51.5162179], [-0.2915128, 51.5163303], [-0.2914794, 51.5164707], [-0.2913906, 51.5168445], [-0.2913579, 51.517002]]}}, {"type": "Feature", "properties": {"osm_id": "1202", "highway": "trunk", "ref": "A406", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "North Circular Road", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "foot": "no", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2230893, 51.5735075], [-0.2228416, 51.5735878], [-0.222617, 51.573671], [-0.222391, 51.573768], [-0.2221719, 51.5738659]]}}, {"type": "Feature", "properties": {"osm_id": "1203", "highway": "trunk", "ref": "A406", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "North Circular Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.139105, 51.6101568], [-0.1395372, 51.6100442], [-0.1400347, 51.6099086]]}}, {"type": "Feature", "properties": {"osm_id": "1208", "highway": "trunk", "ref": "A406", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Bowes Road", "operator": "Transport for London", "alt_name": "North Circular Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1176027, 51.6124616], [-0.1169015, 51.6124945], [-0.1167824, 51.6124997], [-0.1162961, 51.6125474], [-0.1160808, 51.6125771], [-0.1153179, 51.6126396], [-0.1148942, 51.6126614], [-0.1144937, 51.612676]]}}, {"type": "Feature", "properties": {"osm_id": "1216", "highway": "trunk", "ref": "A1", "maxspeed": "60 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Bignell's Corner", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "DBFO5", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2274922, 51.6879924], [-0.2272247, 51.6878248]]}}, {"type": "Feature", "properties": {"osm_id": "1339", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:nsl_single", "highways_england_area": "6", "sidewalk": "no", "maintenance": "salting", "parking_lane_both": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.7002465, 52.655412], [0.7009941, 52.6550913]]}}, {"type": "Feature", "properties": {"osm_id": "1340", "highway": "trunk", "maxspeed": "60 mph", "lanes": "1", "lit": "yes", "name": "Norwich Road Roundabout", "operator": "Highways England", "maxspeed_type": "GB:nsl_single", "highways_england_area": "6", "sidewalk": "no", "junction": "roundabout", "maintenance": "salting", "parking_lane_both": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.723603, 52.6518609], [0.7235186, 52.6518091], [0.7234092, 52.6517899], [0.7233431, 52.6517943], [0.7232955, 52.6518052]]}}, {"type": "Feature", "properties": {"osm_id": "1353", "highway": "trunk", "ref": "A1065", "maxspeed": "30 mph", "lanes": "2", "name": "Brandon Road", "maintenance": "salting", "salting_ref": "WKL015", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.6909642, 52.6403635], [0.6909754, 52.6399969], [0.6909665, 52.6398715], [0.6909574, 52.6397442], [0.6909428, 52.6396177], [0.6909397, 52.6395986], [0.6908658, 52.6391441], [0.6907481, 52.6386993], [0.6904563, 52.6379353], [0.6903119, 52.6375976], [0.6901509, 52.6372212], [0.6899661, 52.6368223], [0.6897822, 52.6364449], [0.6892857, 52.6353549], [0.6891386, 52.6349986]]}}, {"type": "Feature", "properties": {"osm_id": "1709", "highway": "motorway", "ref": "M9", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.400698, 55.9351556], [-3.4008439, 55.9359034], [-3.4011009, 55.9366149], [-3.4017361, 55.9382026], [-3.4021568, 55.9391752]]}}, {"type": "Feature", "properties": {"osm_id": "1712", "highway": "motorway", "ref": "M9", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "source_maxspeed": "UK:motorway", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.4152155, 55.9536656], [-3.4145412, 55.9532315], [-3.414141, 55.9529393], [-3.4137912, 55.9526618], [-3.4134597, 55.9523776], [-3.4132022, 55.9521404], [-3.4127033, 55.9516568], [-3.41236, 55.9513264], [-3.412022, 55.950984], [-3.4112495, 55.9502181], [-3.410874, 55.9498396], [-3.4103789, 55.9493592]]}}, {"type": "Feature", "properties": {"osm_id": "1713", "highway": "motorway", "ref": "M9", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "maxspeed_type": "GB:motorway", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.4053495, 55.9439925], [-3.4066268, 55.9453596], [-3.4080129, 55.9467341]]}}, {"type": "Feature", "properties": {"osm_id": "1735", "highway": "motorway", "ref": "M8", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Transport for Scotland", "int_ref": "E 05;E 16", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.2881738, 55.8500638], [-4.2876763, 55.8499881], [-4.2874306, 55.8499562], [-4.286999, 55.8498939]]}}, {"type": "Feature", "properties": {"osm_id": "1782", "highway": "motorway", "ref": "M74", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Transport for Scotland", "maxspeed_type": "GB:motorway", "bridge": "yes", "int_ref": "E 05", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-4.0672046, 55.8183234], [-4.0680789, 55.8191098]]}}, {"type": "Feature", "properties": {"osm_id": "1791", "highway": "trunk", "ref": "A8", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Glasgow and Edinburgh Road", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.0685325, 55.8473132], [-4.0715332, 55.8476246], [-4.0725486, 55.8477332], [-4.0738463, 55.8478669], [-4.0745884, 55.8479337], [-4.0749529, 55.8479683], [-4.0753938, 55.8480195], [-4.0758449, 55.8480838], [-4.0766352, 55.8482332], [-4.0774332, 55.8484233], [-4.0780267, 55.8485871], [-4.0786134, 55.8487791], [-4.0793879, 55.8490896], [-4.0803676, 55.8494997], [-4.0809654, 55.8497504], [-4.0813621, 55.8499441], [-4.0821991, 55.8503272], [-4.0828642, 55.8506948], [-4.0837084, 55.8511885], [-4.084648, 55.8518292], [-4.0853745, 55.8524838], [-4.0858286, 55.8530794], [-4.086105, 55.8536039], [-4.086272, 55.854072], [-4.0863287, 55.854564], [-4.0862875, 55.8554061], [-4.0863184, 55.8554892], [-4.086376, 55.8555382], [-4.0865001, 55.8556168]]}}, {"type": "Feature", "properties": {"osm_id": "1797", "highway": "motorway", "ref": "M80", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "surface": "asphalt", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.2083223, 55.8682335], [-4.2063803, 55.8687358], [-4.2058083, 55.8688878], [-4.2051591, 55.8690751], [-4.2043512, 55.8693371], [-4.203843, 55.8695008], [-4.2024894, 55.8699461], [-4.2020083, 55.8701139], [-4.201655, 55.8702542], [-4.201375, 55.8703746]]}}, {"type": "Feature", "properties": {"osm_id": "1801", "highway": "motorway", "ref": "M8", "maxspeed": "50 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "int_ref": "E 05;E 16", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.2509321, 55.8702244], [-4.2477229, 55.8699792], [-4.246599, 55.869884], [-4.2455292, 55.8697735], [-4.2444743, 55.8696597], [-4.2439709, 55.8696033]]}}, {"type": "Feature", "properties": {"osm_id": "2097", "highway": "trunk", "maxspeed": "70 mph", "lanes": "2", "lit": "yes", "name": "Dunglass Roundabout", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.5033747, 55.9316816], [-4.5034447, 55.9316977], [-4.5034987, 55.9317192], [-4.5035397, 55.9317437], [-4.503579, 55.9317809], [-4.5035956, 55.9318079], [-4.5036032, 55.9318307], [-4.503604, 55.9318674], [-4.5035957, 55.9318947], [-4.5035729, 55.9319293], [-4.5035301, 55.9319656], [-4.5034913, 55.9319871], [-4.5033963, 55.9320173], [-4.5033452, 55.9320248], [-4.5032831, 55.9320274], [-4.5031935, 55.9320188], [-4.503128, 55.932002], [-4.503079, 55.9319814], [-4.503044, 55.9319603], [-4.5030141, 55.9319348], [-4.5029971, 55.9319138], [-4.5029794, 55.9318748], [-4.502977, 55.9318431], [-4.502983, 55.931816], [-4.5029959, 55.9317906], [-4.5030412, 55.9317445], [-4.5031012, 55.931711], [-4.5031868, 55.9316852], [-4.5033019, 55.9316754], [-4.5033747, 55.9316816]]}}, {"type": "Feature", "properties": {"osm_id": "2098", "highway": "trunk", "ref": "A82", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Dumbarton Road", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.5034447, 55.9316977], [-4.5038989, 55.9317274], [-4.5044421, 55.9318301], [-4.5051713, 55.9320019], [-4.5058483, 55.9322136], [-4.5069341, 55.9326493], [-4.5110756, 55.9341646], [-4.5123419, 55.9345585]]}}, {"type": "Feature", "properties": {"osm_id": "2099", "highway": "trunk", "ref": "A82", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Dumbarton Road", "operator": "Transport Scotland", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.526937, 55.9351683], [-4.5264786, 55.9351705], [-4.5261807, 55.9351934], [-4.5258052, 55.9352457], [-4.525221, 55.9353391], [-4.5241718, 55.9355041], [-4.5235583, 55.9356054], [-4.5221792, 55.9358359], [-4.5208837, 55.9360556], [-4.5205437, 55.9361105], [-4.5194932, 55.9363019], [-4.5191478, 55.936342], [-4.5190895, 55.9363446], [-4.5189624, 55.9363503], [-4.5185545, 55.9363483], [-4.5181397, 55.9363096], [-4.5176633, 55.9362299], [-4.5160222, 55.9357321], [-4.5146221, 55.9353211], [-4.5122759, 55.9346308]]}}, {"type": "Feature", "properties": {"osm_id": "2133", "highway": "trunk", "ref": "A1081", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "New Airport Way", "maxspeed_type": "sign", "bicycle": "yes", "source_maxspeed": "Stats19", "source_name": "OS_OpenData_StreetView", "cycleway": "lane", "alt_name": "New Airport Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.391866, 51.8700006], [-0.3919391, 51.8699811], [-0.3924838, 51.8698299], [-0.3930791, 51.8697193]]}}, {"type": "Feature", "properties": {"osm_id": "2199", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "University Roundabout", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2447477, 51.7527877], [-0.2446686, 51.7527631], [-0.2445949, 51.7527328], [-0.2445279, 51.7526973], [-0.2444397, 51.7526335], [-0.2443721, 51.7525608], [-0.2443275, 51.7524816], [-0.2443075, 51.7523985], [-0.2443128, 51.7523144], [-0.2443434, 51.7522321], [-0.244386, 51.7521691], [-0.2444437, 51.7521106], [-0.2445153, 51.7520581]]}}, {"type": "Feature", "properties": {"osm_id": "2200", "highway": "trunk", "ref": "A1001", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Roehyde Way", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2443434, 51.7522321], [-0.2443457, 51.7521351], [-0.2443312, 51.7519866], [-0.244294, 51.7518639], [-0.2439376, 51.7510419]]}}, {"type": "Feature", "properties": {"osm_id": "2226", "highway": "trunk", "ref": "A92", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.3972316, 56.0820681], [-3.3969017, 56.0820202], [-3.3966871, 56.0820007], [-3.3963518, 56.0820022]]}}, {"type": "Feature", "properties": {"osm_id": "2282", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "layer": "2", "bridge": "yes", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "horse": "no", "motor_vehicle": "designated", "z_order": 39}, "geometry": {"type": "LineString", "coordinates": [[-1.86167, 52.5092353], [-1.8611427, 52.5090334], [-1.8602084, 52.5087142], [-1.8575668, 52.5078201], [-1.8564876, 52.5074542], [-1.8556142, 52.5071774], [-1.8551314, 52.5070266], [-1.8525439, 52.5062031], [-1.8508032, 52.5057865], [-1.8492361, 52.5054309], [-1.8479786, 52.5051507], [-1.8468985, 52.5049401], [-1.845296, 52.5047657], [-1.8446326, 52.5047391], [-1.8437849, 52.5047273], [-1.8421592, 52.5047775], [-1.8402652, 52.5048616], [-1.8380314, 52.5049547], [-1.8357352, 52.5050489], [-1.834191, 52.5051928], [-1.8333328, 52.5052902], [-1.8325836, 52.5054137], [-1.8290543, 52.5060738], [-1.8280849, 52.5062272], [-1.8273522, 52.5063194], [-1.8265946, 52.5063788], [-1.8257473, 52.5064288], [-1.8241771, 52.5065328], [-1.8235344, 52.5065564], [-1.8215938, 52.5066974], [-1.8197576, 52.5069486], [-1.8183457, 52.5071994], [-1.8178704, 52.5072795], [-1.8160278, 52.5075923], [-1.8138354, 52.5079754], [-1.8108971, 52.5085025], [-1.8095119, 52.5087], [-1.8079278, 52.5088915], [-1.8057489, 52.5090947], [-1.8041486, 52.5092073], [-1.8025626, 52.5092936], [-1.8004942, 52.5093513], [-1.7975984, 52.5093393], [-1.7950692, 52.509272], [-1.7923385, 52.5092198], [-1.7908589, 52.5092588], [-1.7896987, 52.509316], [-1.7891227, 52.5093597], [-1.788721, 52.5093936]]}}, {"type": "Feature", "properties": {"osm_id": "2284", "highway": "motorway", "ref": "A38(M)", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Aston Expressway", "operator": "Birmingham City Council", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.8867347, 52.4968928], [-1.8872244, 52.4954623], [-1.8878138, 52.4940145], [-1.8883905, 52.4925541], [-1.8885579, 52.4921091], [-1.8887165, 52.4917059], [-1.8888691, 52.4913426], [-1.8890395, 52.4909277], [-1.8891677, 52.4906214], [-1.8892854, 52.4903968], [-1.8894344, 52.4901114]]}}, {"type": "Feature", "properties": {"osm_id": "2285", "highway": "motorway", "ref": "A38(M)", "maxspeed": "50 mph", "lanes": "7", "oneway": "no", "lit": "yes", "name": "Aston Expressway", "operator": "Birmingham City Council", "surface": "asphalt", "maintenance": "gritting", "gritting": "priority_1", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.8867347, 52.4968928], [-1.886327, 52.4979016], [-1.8860309, 52.4986237], [-1.8857498, 52.4993627], [-1.8855206, 52.4999748], [-1.8852868, 52.500458], [-1.8850057, 52.5009101], [-1.8845679, 52.5014482], [-1.8840707, 52.5019409], [-1.8829635, 52.5028907], [-1.8819799, 52.5037201], [-1.8795628, 52.5057334]]}}, {"type": "Feature", "properties": {"osm_id": "2287", "highway": "motorway", "ref": "A38(M)", "maxspeed": "50 mph", "lanes": "7", "oneway": "no", "lit": "yes", "name": "Aston Expressway", "operator": "Birmingham City Council", "bicycle": "no", "surface": "asphalt", "layer": "2", "bridge": "viaduct", "foot": "no", "maintenance": "gritting", "horse": "no", "gritting": "priority_1", "motor_vehicle": "designated", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-1.8795628, 52.5057334], [-1.879412, 52.5058489], [-1.879034, 52.506096], [-1.8786095, 52.5063442], [-1.877848, 52.5066762], [-1.8774272, 52.5068394], [-1.8754908, 52.5075092], [-1.8744482, 52.5078764], [-1.8721562, 52.5086685]]}}, {"type": "Feature", "properties": {"osm_id": "2306", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "surface": "paved", "layer": "2", "bridge": "yes", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "horse": "no", "motor_vehicle": "designated", "z_order": 39}, "geometry": {"type": "LineString", "coordinates": [[-1.8682023, 52.5152031], [-1.8671281, 52.5140031]]}}, {"type": "Feature", "properties": {"osm_id": "2310", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9370201, 52.552374], [-1.9361281, 52.5526168], [-1.9355008, 52.5527835], [-1.9348976, 52.5528947], [-1.9339035, 52.5530427], [-1.9331285, 52.5531179], [-1.9324267, 52.5531544], [-1.9318212, 52.5531649], [-1.9311831, 52.5531575], [-1.9302208, 52.5531017], [-1.9295409, 52.5530448], [-1.9288894, 52.5529535], [-1.92846, 52.5528788], [-1.9276338, 52.552697], [-1.9269748, 52.5525207], [-1.9264124, 52.5523515], [-1.9255915, 52.5521011], [-1.9249267, 52.5518191], [-1.9240343, 52.5513296], [-1.9231149, 52.5507911], [-1.9223979, 52.5502666], [-1.9214208, 52.549552], [-1.9199804, 52.54838], [-1.9186376, 52.5472811]]}}, {"type": "Feature", "properties": {"osm_id": "2314", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9188353, 52.5471625], [-1.9202473, 52.5483232], [-1.9210213, 52.5489558]]}}, {"type": "Feature", "properties": {"osm_id": "2317", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9369063, 52.5522623], [-1.937897, 52.5519712], [-1.9383749, 52.5518287], [-1.938878, 52.551677], [-1.9397817, 52.5514339], [-1.9407963, 52.5512033], [-1.9414195, 52.5510712], [-1.941753, 52.5510131]]}}, {"type": "Feature", "properties": {"osm_id": "2318", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.940353, 52.5514223], [-1.9398461, 52.5515404], [-1.9389143, 52.5517981], [-1.9379934, 52.552068], [-1.9370201, 52.552374]]}}, {"type": "Feature", "properties": {"osm_id": "2319", "highway": "motorway", "ref": "M5", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "survey", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.941753, 52.5510131], [-1.9428209, 52.5507702], [-1.9437187, 52.5506491], [-1.9446876, 52.5505496], [-1.9456478, 52.5504699], [-1.9468575, 52.5504066], [-1.9479606, 52.5503743], [-1.9498847, 52.5503371], [-1.9510454, 52.5503172], [-1.9521267, 52.5502689], [-1.9528231, 52.550201], [-1.9537423, 52.5500807], [-1.9551225, 52.5497979]]}}, {"type": "Feature", "properties": {"osm_id": "2320", "highway": "motorway", "ref": "M5", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "L", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9703694, 52.5347712], [-1.9698759, 52.5370284], [-1.9696818, 52.538436], [-1.9694242, 52.5398032], [-1.9692774, 52.5402059]]}}, {"type": "Feature", "properties": {"osm_id": "2321", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.941753, 52.5510131], [-1.9425724, 52.5508749], [-1.9439914, 52.550689], [-1.945075, 52.5505827], [-1.9461212, 52.5505304], [-1.9470021, 52.5505204], [-1.947835, 52.5505175], [-1.9494189, 52.5505497], [-1.9508305, 52.5505963], [-1.9520524, 52.5506428]]}}, {"type": "Feature", "properties": {"osm_id": "2329", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.721604, 52.5031204], [-1.7211965, 52.5027056], [-1.7203704, 52.5016826]]}}, {"type": "Feature", "properties": {"osm_id": "2331", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "foot": "no", "motor_vehicle": "designated", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6980043, 52.4764805], [-1.6995142, 52.4763844], [-1.7005522, 52.4763628], [-1.7028783, 52.4763771], [-1.704727, 52.4764789], [-1.7062157, 52.4766196], [-1.7075628, 52.4767922], [-1.7092294, 52.4770757], [-1.7106556, 52.4773741], [-1.7115123, 52.4775614], [-1.7123631, 52.4777817], [-1.7146483, 52.478462], [-1.7156892, 52.478861], [-1.7166376, 52.4792404], [-1.7176614, 52.4796944], [-1.7184484, 52.4800621], [-1.7198511, 52.4808206], [-1.7206991, 52.4813038], [-1.7214675, 52.481798], [-1.7229145, 52.4828294]]}}, {"type": "Feature", "properties": {"osm_id": "2332", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "B", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.788721, 52.5093936], [-1.7870823, 52.5096009], [-1.7854047, 52.5098564]]}}, {"type": "Feature", "properties": {"osm_id": "2333", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7310887, 52.4897081], [-1.7317325, 52.4903449], [-1.7323261, 52.4909793], [-1.7327834, 52.4914407], [-1.7333959, 52.4921302], [-1.7342235, 52.4931637], [-1.7354879, 52.4948996], [-1.7367525, 52.4967955], [-1.7385165, 52.4995147], [-1.7397885, 52.5014254], [-1.7411026, 52.5033917], [-1.741676, 52.5042629], [-1.7422265, 52.505146], [-1.7431339, 52.5063809], [-1.7440618, 52.5074517], [-1.7449025, 52.5082546], [-1.745804, 52.5090029], [-1.7465529, 52.509552], [-1.7473428, 52.5100783], [-1.7480634, 52.5105012], [-1.7487004, 52.5108669], [-1.750364, 52.5116806], [-1.7519239, 52.5123155], [-1.7526955, 52.5125941], [-1.7535433, 52.5128748], [-1.7544305, 52.5131274], [-1.75531, 52.51336], [-1.7563224, 52.5135996], [-1.757309, 52.5138076], [-1.7585728, 52.5140164], [-1.7597791, 52.5141585], [-1.7608086, 52.5142705], [-1.7616059, 52.5143426], [-1.7625076, 52.5143799], [-1.7637336, 52.5144214], [-1.7654074, 52.5143798], [-1.7668538, 52.5143155], [-1.7678665, 52.5142277], [-1.7688814, 52.5141126], [-1.7704936, 52.513862], [-1.7717449, 52.5136206], [-1.7729034, 52.5133595], [-1.773935, 52.5130844], [-1.7748183, 52.5128201], [-1.7800142, 52.5110371], [-1.7814978, 52.5106123], [-1.7829594, 52.5102242], [-1.7839779, 52.5099858], [-1.784726, 52.509836], [-1.7860532, 52.5096124], [-1.7874405, 52.5094209], [-1.7877683, 52.5093756]]}}, {"type": "Feature", "properties": {"osm_id": "2346", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "gb:national", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7207349, 52.501552], [-1.7221811, 52.5034082], [-1.7231745, 52.5046439], [-1.7236606, 52.5052659], [-1.7241131, 52.5058924], [-1.7246744, 52.5067999], [-1.7249773, 52.5073845], [-1.7251406, 52.5077566], [-1.7253806, 52.5083593], [-1.7256802, 52.5093764], [-1.7257991, 52.5099345], [-1.7258676, 52.5104979], [-1.725903, 52.5115876], [-1.7258163, 52.5135814], [-1.7257535, 52.5145978], [-1.7257811, 52.515349], [-1.7258464, 52.5158632], [-1.7259413, 52.5164828]]}}, {"type": "Feature", "properties": {"osm_id": "2347", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "5", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "gb:national", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.725536, 52.5158205], [-1.7254863, 52.5149509], [-1.7255149, 52.5133725], [-1.725567, 52.5125959], [-1.7256321, 52.5118749]]}}, {"type": "Feature", "properties": {"osm_id": "2348", "highway": "motorway", "ref": "M42", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7104797, 52.4792141], [-1.7103692, 52.4802971], [-1.7103941, 52.4813917], [-1.7104757, 52.4819899], [-1.7106128, 52.4824944], [-1.7107867, 52.4829176], [-1.7110123, 52.4833447], [-1.7112744, 52.483756], [-1.7118041, 52.4844966], [-1.7121656, 52.4849575], [-1.7128204, 52.4858559], [-1.7134006, 52.4867811], [-1.7138387, 52.4877101], [-1.7142008, 52.4886402], [-1.7157457, 52.4922754], [-1.7165826, 52.4942003], [-1.7172202, 52.4959353]]}}, {"type": "Feature", "properties": {"osm_id": "2349", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "B", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7125598, 52.489851], [-1.7118181, 52.4880877], [-1.7112706, 52.4864987], [-1.710851, 52.4852067]]}}, {"type": "Feature", "properties": {"osm_id": "2351", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Midlands Expressway", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "foot": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.721604, 52.5031204], [-1.721336, 52.5026938], [-1.7205196, 52.5016275]]}}, {"type": "Feature", "properties": {"osm_id": "2352", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6765106, 52.4756568], [-1.6773583, 52.4759619], [-1.6780473, 52.4761611], [-1.678661, 52.4763323], [-1.6792883, 52.4764852], [-1.6806295, 52.4767778], [-1.6816767, 52.4769705], [-1.6818631, 52.4769978]]}}, {"type": "Feature", "properties": {"osm_id": "2353", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "B", "foot": "no", "motor_vehicle": "designated", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7249598, 52.4847723], [-1.7244723, 52.4843593], [-1.7236617, 52.4836757], [-1.7228318, 52.4829955], [-1.72205, 52.4824038], [-1.7212152, 52.4818248], [-1.7205104, 52.4813867], [-1.7197718, 52.4809438], [-1.7184026, 52.4802131], [-1.7175311, 52.4797936], [-1.7164702, 52.4793393], [-1.7154466, 52.4789607], [-1.7145168, 52.4785877], [-1.7134131, 52.4782413], [-1.712265, 52.4779011], [-1.7114436, 52.4776899], [-1.7106484, 52.4775197], [-1.7098915, 52.4773437], [-1.7090658, 52.4771841], [-1.7074422, 52.4769127], [-1.7065811, 52.4768082]]}}, {"type": "Feature", "properties": {"osm_id": "2356", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6929199, 52.4771002], [-1.6954686, 52.4767352], [-1.6961482, 52.4766518], [-1.6968411, 52.4765796], [-1.697473, 52.4765204], [-1.6980043, 52.4764805]]}}, {"type": "Feature", "properties": {"osm_id": "2370", "highway": "trunk", "ref": "A446", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Lichfield Road", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.723134, 52.5295452], [-1.7231795, 52.5297169], [-1.723208, 52.5297919], [-1.7232495, 52.5298792], [-1.7233343, 52.5300328], [-1.7233971, 52.530221], [-1.7234396, 52.5304071], [-1.7234672, 52.530683], [-1.7234695, 52.5308874], [-1.7234225, 52.5318201], [-1.7234051, 52.5322843], [-1.7233989, 52.5327356], [-1.7234132, 52.5330275], [-1.7234461, 52.5333083], [-1.723495, 52.5336189], [-1.7235634, 52.5339209], [-1.7236854, 52.5342805], [-1.7238182, 52.5346093], [-1.7239563, 52.5349176], [-1.7241203, 52.5352305], [-1.7244914, 52.5359104], [-1.7246711, 52.536244], [-1.7248162, 52.5365784], [-1.725183, 52.5372649], [-1.725229, 52.5373273], [-1.7252746, 52.5373755], [-1.7253242, 52.5374211], [-1.7253779, 52.5374541], [-1.7254905, 52.5375076], [-1.7256397, 52.5375563], [-1.7259597, 52.5376223]]}}, {"type": "Feature", "properties": {"osm_id": "2371", "highway": "trunk", "lanes": "2", "lit": "yes", "name": "Hams Hall Roundabout", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7231376, 52.5294941], [-1.723134, 52.5295452], [-1.7231312, 52.5295838], [-1.7231104, 52.5296361], [-1.7230761, 52.5296875], [-1.7230105, 52.529751], [-1.7229225, 52.5298064], [-1.7228077, 52.5298528], [-1.7226634, 52.5298844], [-1.7225289, 52.5298933], [-1.7224326, 52.5298885], [-1.7223268, 52.529872], [-1.7222304, 52.5298452], [-1.7221458, 52.5298099], [-1.7220459, 52.529747], [-1.7219801, 52.5296809], [-1.7219445, 52.529623], [-1.721923, 52.5295449], [-1.7219269, 52.5294756], [-1.721956, 52.5294008], [-1.7220026, 52.5293387], [-1.7220526, 52.5292938], [-1.7221294, 52.5292445]]}}, {"type": "Feature", "properties": {"osm_id": "2372", "highway": "trunk", "ref": "A446", "lanes": "3", "name": "Lichfield Road", "maintenance": "gritting", "source_name": "OS OpenData Locator", "gritting": "priority_1", "lanes_forward": "1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "lanes_backward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7222471, 52.5175247], [-1.7223511, 52.5176115], [-1.7225221, 52.51776], [-1.7228077, 52.518039]]}}, {"type": "Feature", "properties": {"osm_id": "2373", "highway": "trunk", "ref": "A446", "lanes": "2", "oneway": "yes", "name": "Lichfield Road", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "alt_name": "Lichfield Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7124462, 52.5055103], [-1.7125256, 52.5056523], [-1.712633, 52.5058351], [-1.7127211, 52.5060313], [-1.7128062, 52.506181], [-1.7129052, 52.5062939], [-1.7130209, 52.5063992], [-1.7136436, 52.5069336], [-1.7139271, 52.5072032], [-1.714182, 52.5074911], [-1.7142814, 52.5076182], [-1.7149337, 52.5084521], [-1.7157769, 52.5095301], [-1.7164739, 52.5105344], [-1.7164996, 52.5105727], [-1.7170463, 52.5113858], [-1.7173298, 52.5118058], [-1.7176519, 52.5123585], [-1.7183657, 52.5137333], [-1.7186563, 52.5142604]]}}, {"type": "Feature", "properties": {"osm_id": "2374", "highway": "trunk", "lanes": "2", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7117977, 52.5054025], [-1.7118205, 52.5053661], [-1.7118922, 52.5053073], [-1.7119933, 52.5052677], [-1.7121108, 52.5052522], [-1.7122253, 52.505262], [-1.7123276, 52.5052949], [-1.7123966, 52.5053388], [-1.7124413, 52.5053931], [-1.7124579, 52.5054531], [-1.7124462, 52.5055103]]}}, {"type": "Feature", "properties": {"osm_id": "2375", "highway": "trunk", "ref": "A446", "lanes": "2", "oneway": "yes", "name": "Stonebridge Road", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7133733, 52.4977589], [-1.713343, 52.4979302], [-1.7133225, 52.4980311], [-1.7133086, 52.4981768], [-1.7133404, 52.4984592], [-1.7133987, 52.498951], [-1.7134214, 52.499371], [-1.7133766, 52.499723], [-1.7133093, 52.5000823], [-1.7130518, 52.5007093], [-1.7125533, 52.5016135], [-1.7122096, 52.5022368], [-1.7119153, 52.5028177], [-1.7117769, 52.5031801], [-1.7116875, 52.5035313], [-1.7116548, 52.5037859]]}}, {"type": "Feature", "properties": {"osm_id": "2376", "highway": "trunk", "ref": "A446", "lanes": "2", "oneway": "yes", "name": "Stonebridge Road", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7118205, 52.5053661], [-1.7116992, 52.505125], [-1.7116255, 52.5049024], [-1.711575, 52.5046562], [-1.7115198, 52.5042837], [-1.7115062, 52.5040493]]}}, {"type": "Feature", "properties": {"osm_id": "2394", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Newport Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7961474, 52.5074259], [-1.7963633, 52.5080357], [-1.7964415, 52.5082933], [-1.7964576, 52.5084153], [-1.7964498, 52.5085495], [-1.7964524, 52.5086938], [-1.7964809, 52.5088925], [-1.7965637, 52.5091256]]}}, {"type": "Feature", "properties": {"osm_id": "2395", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Chester Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7973405, 52.513213], [-1.7974457, 52.5130337], [-1.7975501, 52.5127563], [-1.7975926, 52.512596], [-1.7975819, 52.5123198], [-1.7975237, 52.5120328], [-1.797385, 52.5116908]]}}, {"type": "Feature", "properties": {"osm_id": "2397", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Chester Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7983843, 52.5142854], [-1.7983963, 52.5143429], [-1.79849, 52.5148273], [-1.7985519, 52.5149922], [-1.7986772, 52.5153099], [-1.7990408, 52.5160601], [-1.7991024, 52.5161761]]}}, {"type": "Feature", "properties": {"osm_id": "2398", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chester Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8002801, 52.5190348], [-1.8002323, 52.5187134], [-1.800056, 52.5184522]]}}, {"type": "Feature", "properties": {"osm_id": "2416", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Kingsbury Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8009147, 52.5188837], [-1.8013266, 52.5189028], [-1.801507, 52.5189025], [-1.8016906, 52.5188789], [-1.8026893, 52.5186859], [-1.8035192, 52.5185186], [-1.8042785, 52.5183458], [-1.8049118, 52.5181761], [-1.8057058, 52.5179543], [-1.8057683, 52.5179368], [-1.8064046, 52.5177571], [-1.8069071, 52.5176151], [-1.8073266, 52.5174841], [-1.8076689, 52.5173616], [-1.8083351, 52.5171162], [-1.8095004, 52.5167062], [-1.8099018, 52.5165906], [-1.8101223, 52.5165349], [-1.8103784, 52.5164853], [-1.8107344, 52.5164381], [-1.8110636, 52.5164077], [-1.81152, 52.516396], [-1.8117142, 52.5163953], [-1.8118297, 52.5163949]]}}, {"type": "Feature", "properties": {"osm_id": "2417", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Kingsbury Road", "source_maxspeed": "survey", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8193419, 52.5168558], [-1.8191211, 52.5168278], [-1.8187654, 52.5167798], [-1.8187444, 52.5167794], [-1.8177724, 52.5166609], [-1.8171274, 52.5166052], [-1.8167213, 52.5165818], [-1.8161968, 52.5165516], [-1.8157201, 52.5165409], [-1.8152338, 52.5165289], [-1.8143212, 52.5165458], [-1.8136905, 52.5165661]]}}, {"type": "Feature", "properties": {"osm_id": "2434", "highway": "trunk", "ref": "A446", "maxspeed": "60 mph", "lit": "no", "name": "Lichfield Road", "maxspeed_type": "GB:national_single", "sidewalk": "none", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7573639, 52.5647633], [-1.7569258, 52.5646528], [-1.7569014, 52.564647], [-1.7568182, 52.5646272], [-1.7565178, 52.5645698], [-1.7562138, 52.5645331], [-1.7558967, 52.5645066], [-1.7555772, 52.5644921], [-1.755096, 52.5644781], [-1.7543786, 52.5644866], [-1.7536864, 52.5645195], [-1.7532754, 52.5645698], [-1.7524346, 52.5647233], [-1.7519914, 52.5647781], [-1.7515567, 52.5648054], [-1.7510358, 52.5647945], [-1.7504984, 52.5647554], [-1.7498574, 52.5646714], [-1.7492092, 52.5645764], [-1.7490533, 52.5645517], [-1.7482165, 52.5644189], [-1.7472264, 52.5642439], [-1.7469604, 52.5641874], [-1.7467747, 52.564148], [-1.7463864, 52.5640473], [-1.7459272, 52.5638914], [-1.7454646, 52.5636964], [-1.7450344, 52.5634791], [-1.7444856, 52.5631773]]}}, {"type": "Feature", "properties": {"osm_id": "2435", "highway": "trunk", "ref": "A446", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Lichfield Road", "maxspeed_type": "GB:national_single", "sidewalk": "none", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7318197, 52.5509371], [-1.7319279, 52.5510572], [-1.7322025, 52.5512336]]}}, {"type": "Feature", "properties": {"osm_id": "2438", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "GB:national_single", "sidewalk": "none", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7309734, 52.5509421], [-1.7309936, 52.550876], [-1.7310653, 52.5507977], [-1.7311344, 52.5507566], [-1.7312945, 52.5507095]]}}, {"type": "Feature", "properties": {"osm_id": "2478", "highway": "trunk", "ref": "A53", "maxspeed": "30 mph", "name": "Leek Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.9356575, 53.2525431], [-1.9358262, 53.2523985], [-1.93608, 53.252193], [-1.9362167, 53.2520765], [-1.9364274, 53.2519041], [-1.9369873, 53.2514574], [-1.937352, 53.2511903], [-1.937867, 53.2507987], [-1.9380977, 53.2506094], [-1.9383391, 53.2503879], [-1.9386234, 53.2500124], [-1.9388004, 53.2496593], [-1.9388978, 53.2493654], [-1.9389345, 53.2492549], [-1.9390531, 53.2487802], [-1.9390677, 53.2485476], [-1.9390345, 53.2480075], [-1.9390323, 53.2478848], [-1.9390328, 53.2477468], [-1.9390399, 53.2476736], [-1.939049, 53.2476077], [-1.9390601, 53.2475461], [-1.939077, 53.2474659], [-1.9390948, 53.2473959], [-1.9391097, 53.2473485], [-1.9391262, 53.2473015], [-1.9391517, 53.2472419], [-1.9391923, 53.247159], [-1.9392313, 53.2470824], [-1.9393008, 53.2469531], [-1.9393791, 53.2468076], [-1.9394597, 53.2466635], [-1.9395669, 53.2464797], [-1.9398762, 53.2459448], [-1.9400092, 53.2457375], [-1.9400383, 53.2456758], [-1.9400334, 53.2456115]]}}, {"type": "Feature", "properties": {"osm_id": "2486", "highway": "trunk", "ref": "A38", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7844925, 52.5907078], [-1.7845371, 52.5908314], [-1.7846135, 52.5910977], [-1.7846754, 52.5912334], [-1.784929, 52.5915116], [-1.7851889, 52.5917229]]}}, {"type": "Feature", "properties": {"osm_id": "2487", "highway": "trunk", "ref": "A38", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8025294, 52.6302423], [-1.8025064, 52.6300677], [-1.8024112, 52.6297756], [-1.8023302, 52.6295644], [-1.8021218, 52.6290861], [-1.801814, 52.62843], [-1.8015733, 52.6280241], [-1.8011178, 52.6274318], [-1.7999067, 52.6261072], [-1.7988725, 52.6249782], [-1.7986366, 52.624669], [-1.7984517, 52.6243808], [-1.7983199, 52.6241236], [-1.7982141, 52.6239036], [-1.7981632, 52.6237978], [-1.7980574, 52.6234319], [-1.797983, 52.6230875], [-1.7979644, 52.6228876], [-1.7979588, 52.6227171], [-1.7979708, 52.6223659], [-1.7980205, 52.6218835], [-1.7980365, 52.6211872], [-1.7980574, 52.620522], [-1.7980929, 52.619933], [-1.7981932, 52.6189883], [-1.7984534, 52.6174822], [-1.7984919, 52.6170928], [-1.7985064, 52.6168474], [-1.7985006, 52.6166393], [-1.7984305, 52.6159353], [-1.7983839, 52.6156887], [-1.7982833, 52.6152801], [-1.7980365, 52.6145072], [-1.7978352, 52.6140038], [-1.7975556, 52.6135068], [-1.7973437, 52.6132444], [-1.7970736, 52.6129584], [-1.7966628, 52.6125478], [-1.796316, 52.6121986], [-1.7960391, 52.6118821], [-1.7959121, 52.6116878], [-1.7957903, 52.6114158], [-1.7954974, 52.6105867], [-1.7952892, 52.6099744], [-1.7951558, 52.6095251], [-1.7950356, 52.609159], [-1.7949416, 52.6088691], [-1.7948766, 52.60845], [-1.7948494, 52.6081032], [-1.7948809, 52.6076938], [-1.7949483, 52.6070311], [-1.7949588, 52.6069335], [-1.7949851, 52.6065277], [-1.7950745, 52.6058084], [-1.7951409, 52.6054142], [-1.7951577, 52.6053145], [-1.7952135, 52.6050002], [-1.79538, 52.6041752], [-1.7954801, 52.6037525], [-1.7955553, 52.6033054], [-1.7956672, 52.6027916], [-1.7957553, 52.6023619], [-1.7958621, 52.6018138], [-1.7958957, 52.6016123], [-1.7959239, 52.6014031], [-1.7959445, 52.6012766], [-1.7959908, 52.6009473], [-1.7960212, 52.60053], [-1.7960225, 52.599916], [-1.7959445, 52.5993483], [-1.7959063, 52.5991991]]}}, {"type": "Feature", "properties": {"osm_id": "2489", "highway": "trunk", "ref": "A5", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8331169, 52.6492218], [-1.8332316, 52.6491721]]}}, {"type": "Feature", "properties": {"osm_id": "2490", "highway": "trunk", "ref": "A5", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watling Street", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8319175, 52.6491614], [-1.8324073, 52.6492333], [-1.8325947, 52.6492643], [-1.8327793, 52.6492715], [-1.8329349, 52.6492549], [-1.8331169, 52.6492218]]}}, {"type": "Feature", "properties": {"osm_id": "2492", "highway": "trunk", "ref": "A5", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "name": "Watling Street", "operator": "Highways England", "highways_england_area": "9", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8319175, 52.6491614], [-1.8309769, 52.6489205], [-1.8299847, 52.6486014]]}}, {"type": "Feature", "properties": {"osm_id": "2493", "highway": "trunk", "ref": "A5", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Watling Street", "operator": "Highways England", "maxspeed_type": "sign", "highways_england_area": "9", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8074466, 52.640911], [-1.8066501, 52.640676]]}}, {"type": "Feature", "properties": {"osm_id": "2497", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "9", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8053714, 52.6437635], [-1.8051989, 52.6428699], [-1.8050437, 52.6421714], [-1.8048367, 52.6414215], [-1.8046269, 52.6407309], [-1.8043298, 52.6398718], [-1.8037471, 52.6384209], [-1.8031481, 52.6369801]]}}, {"type": "Feature", "properties": {"osm_id": "2498", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.802928, 52.6357175], [-1.8031255, 52.6363655], [-1.803344, 52.6369844]]}}, {"type": "Feature", "properties": {"osm_id": "2501", "highway": "trunk", "maxspeed": "60 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "name": "Weeford Island", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8039051, 52.6406799], [-1.8036371, 52.6404452], [-1.8034074, 52.6401928], [-1.8033131, 52.6400391], [-1.8032787, 52.6399563], [-1.8032686, 52.6399257], [-1.8031635, 52.6395967], [-1.8031368, 52.6394108], [-1.803143, 52.6392743], [-1.8031661, 52.6391812], [-1.8032234, 52.63908], [-1.8032541, 52.6390241], [-1.8034657, 52.63886], [-1.8037588, 52.6387592]]}}, {"type": "Feature", "properties": {"osm_id": "2502", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8071177, 52.6471783], [-1.8085018, 52.6489521], [-1.809285, 52.6499903]]}}, {"type": "Feature", "properties": {"osm_id": "2503", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8105605, 52.6591065], [-1.8105026, 52.6590349], [-1.8102988, 52.6587831], [-1.8100993, 52.6584587], [-1.8099255, 52.6581471], [-1.8097802, 52.6578389], [-1.8096697, 52.657497], [-1.8095616, 52.6571098], [-1.8095131, 52.6567845], [-1.8094902, 52.6564615], [-1.8094886, 52.6560964], [-1.8095048, 52.6558998], [-1.8095392, 52.6556142], [-1.8096135, 52.6552826], [-1.8097731, 52.6546798], [-1.8099877, 52.6539378], [-1.8100587, 52.6535931], [-1.8101111, 52.6532359], [-1.8101323, 52.6529302], [-1.810116, 52.6525184], [-1.8100539, 52.6520388], [-1.8099721, 52.6516946], [-1.809879, 52.6514387], [-1.8097822, 52.6511774], [-1.8096551, 52.6509178], [-1.8094239, 52.6504834], [-1.809124, 52.6500652], [-1.8080952, 52.648683]]}}, {"type": "Feature", "properties": {"osm_id": "2504", "highway": "trunk", "ref": "A38", "lanes": "2", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8143857, 52.6620843], [-1.8145423, 52.6620132], [-1.8147204, 52.6619632]]}}, {"type": "Feature", "properties": {"osm_id": "2505", "highway": "trunk", "ref": "A38", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "L", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8116278, 52.6677075], [-1.8124933, 52.6666192], [-1.8129956, 52.666009], [-1.8131982, 52.6657291], [-1.813878, 52.6646506], [-1.8143597, 52.6637579], [-1.8145796, 52.6632374], [-1.8145692, 52.6631184]]}}, {"type": "Feature", "properties": {"osm_id": "2506", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8160918, 52.6637383], [-1.8156686, 52.6637914]]}}, {"type": "Feature", "properties": {"osm_id": "2507", "highway": "trunk", "ref": "A5148", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "carriageway_ref": "A", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8116278, 52.6677075], [-1.8122147, 52.6671337], [-1.8128364, 52.6664746], [-1.8133179, 52.665881], [-1.8136861, 52.6653702], [-1.8138886, 52.6650704], [-1.8143344, 52.6644171], [-1.8149345, 52.6634944], [-1.8155524, 52.6625718], [-1.8171543, 52.6601604], [-1.8181678, 52.6586365], [-1.8194969, 52.6565839], [-1.8200512, 52.6556677], [-1.8204313, 52.6551749], [-1.8206756, 52.6548446], [-1.8210485, 52.6544002], [-1.8214462, 52.6539835], [-1.8221556, 52.6533766], [-1.8229065, 52.6528339], [-1.8237264, 52.6523503], [-1.8241699, 52.6521199], [-1.8247025, 52.6518652], [-1.8251952, 52.651672], [-1.825691, 52.6514896], [-1.8262871, 52.6512969], [-1.8269397, 52.6511152], [-1.8276797, 52.65094], [-1.8284585, 52.650782], [-1.8292313, 52.6506641], [-1.8300144, 52.6505878], [-1.8307701, 52.6504916], [-1.8311142, 52.6504361], [-1.8314703, 52.6503662], [-1.8319112, 52.6502625], [-1.8322495, 52.6501687]]}}, {"type": "Feature", "properties": {"osm_id": "2508", "highway": "trunk", "ref": "A5", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Birmingham Road", "operator": "Highways England", "highways_england_area": "9", "source_name": "os_locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8340415, 52.6496524], [-1.8340188, 52.6498368], [-1.8340315, 52.6499801], [-1.8340828, 52.6501139]]}}, {"type": "Feature", "properties": {"osm_id": "2509", "highway": "trunk", "ref": "A5", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Birmingham Road", "operator": "Highways England", "highways_england_area": "9", "source_name": "os_locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8339723, 52.6508655], [-1.8339938, 52.6507427], [-1.8340013, 52.6506787], [-1.8340058, 52.6505898], [-1.8339811, 52.6504635]]}}, {"type": "Feature", "properties": {"osm_id": "2510", "highway": "trunk", "ref": "A5", "maxspeed": "60 mph", "lanes": "3", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_single", "highways_england_area": "9", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8339368, 52.6511892], [-1.8338953, 52.6511258], [-1.8338779, 52.6510584], [-1.8338853, 52.6509904], [-1.8339173, 52.650925], [-1.8339723, 52.6508655]]}}, {"type": "Feature", "properties": {"osm_id": "2511", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "30 mph", "lanes": "10", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "layer": "-1", "int_ref": "E 05", "z_order": -1}, "geometry": {"type": "LineString", "coordinates": [[-1.8007106, 52.6231958], [-1.800676, 52.6230757]]}}, {"type": "Feature", "properties": {"osm_id": "2565", "highway": "trunk", "ref": "A5", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6982633, 52.6244248], [-1.6993, 52.6244849]]}}, {"type": "Feature", "properties": {"osm_id": "2566", "highway": "trunk", "ref": "A5", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6953066, 52.6241955], [-1.6946589, 52.6240893], [-1.6938909, 52.6239529], [-1.6925748, 52.6236725], [-1.69168, 52.6234582], [-1.6905795, 52.6231792]]}}, {"type": "Feature", "properties": {"osm_id": "2568", "highway": "trunk", "ref": "A453", "maxspeed": "70 mph", "oneway": "yes", "name": "Carroway Head Hill", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7758819, 52.5954848], [-1.7763422, 52.5951978], [-1.7768363, 52.5948698], [-1.7771543, 52.5946821]]}}, {"type": "Feature", "properties": {"osm_id": "2579", "highway": "trunk", "ref": "A453", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7831775, 52.5913109], [-1.7829995, 52.5913395], [-1.782752, 52.5913714], [-1.7824712, 52.5914421], [-1.7822547, 52.5915401], [-1.7819363, 52.5917483], [-1.7815824, 52.5919847], [-1.7807398, 52.5925228], [-1.7778068, 52.5944686], [-1.7773942, 52.5947196], [-1.7771196, 52.594892], [-1.7766959, 52.5951156], [-1.7762931, 52.5953153], [-1.7758819, 52.5954848]]}}, {"type": "Feature", "properties": {"osm_id": "2580", "highway": "trunk", "ref": "A453", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7771543, 52.5946821], [-1.7772575, 52.5946175], [-1.7807389, 52.5923725], [-1.7812976, 52.5920091], [-1.7818238, 52.5916698], [-1.7819604, 52.5915732], [-1.7821709, 52.5914127], [-1.7822773, 52.5913361], [-1.7823353, 52.5912823], [-1.7823839, 52.5911929], [-1.782385, 52.5911765], [-1.7823892, 52.5911131], [-1.7824057, 52.5910029]]}}, {"type": "Feature", "properties": {"osm_id": "2813", "highway": "motorway", "ref": "M73", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "maxspeed_type": "GB:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.0624521, 55.9193788], [-4.0595474, 55.920513]]}}, {"type": "Feature", "properties": {"osm_id": "2818", "highway": "motorway", "ref": "M80", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "source_maxspeed": "UK:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.9413278, 55.9939097], [-3.9407833, 55.9941532], [-3.94022, 55.9943977], [-3.9395374, 55.9946377], [-3.9388427, 55.994868], [-3.9364234, 55.9955933], [-3.9329795, 55.9966091], [-3.9320021, 55.996904]]}}, {"type": "Feature", "properties": {"osm_id": "2820", "highway": "motorway", "ref": "M876", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "source_maxspeed": "UK:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.9253907, 55.9988906], [-3.9249467, 55.9990831], [-3.9230705, 55.9998338], [-3.9216901, 56.0004078], [-3.9215709, 56.0004635], [-3.9211193, 56.0006745], [-3.9207567, 56.0008501], [-3.9203511, 56.0010987]]}}, {"type": "Feature", "properties": {"osm_id": "2822", "highway": "motorway", "ref": "M9;M876", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "source_maxspeed": "UK:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.8089592, 56.0438195], [-3.8025312, 56.044816], [-3.8006714, 56.0450539], [-3.7984632, 56.045241], [-3.7976163, 56.0452704], [-3.7944554, 56.0452887]]}}, {"type": "Feature", "properties": {"osm_id": "2823", "highway": "motorway", "ref": "M876", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "source_maxspeed": "GB:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.833655, 56.037323], [-3.833259, 56.0374962], [-3.831427, 56.0384025], [-3.8262998, 56.0410988], [-3.8236798, 56.0424935], [-3.8221063, 56.0431123], [-3.8204858, 56.0435101]]}}, {"type": "Feature", "properties": {"osm_id": "2826", "highway": "motorway", "ref": "M876", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "maxspeed_type": "GB:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.7944554, 56.0452887], [-3.7927855, 56.0452421], [-3.7883694, 56.0448172], [-3.7872536, 56.0447498], [-3.7857449, 56.0447828], [-3.7848101, 56.0448832], [-3.7840041, 56.0450247], [-3.7827394, 56.0453431], [-3.7815027, 56.04581], [-3.780748, 56.0461888], [-3.7779196, 56.0477984], [-3.7762709, 56.0485455]]}}, {"type": "Feature", "properties": {"osm_id": "2842", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "horse": "no", "source_ref": "local_knowledge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2306654, 51.6870525], [-0.2313998, 51.6874306], [-0.2320387, 51.6878184], [-0.2324175, 51.6880711], [-0.2330227, 51.6884883], [-0.2341306, 51.6893697], [-0.2350323, 51.690193]]}}, {"type": "Feature", "properties": {"osm_id": "2845", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "horse": "no", "source_ref": "local_knowledge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.3930572, 51.7150048], [-0.3914546, 51.7153487], [-0.3902252, 51.7156388], [-0.389111, 51.7158662], [-0.3867768, 51.7162236], [-0.3842505, 51.7164737], [-0.3829007, 51.71653], [-0.3807866, 51.7165357]]}}, {"type": "Feature", "properties": {"osm_id": "2961", "highway": "trunk", "ref": "A205", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Plassy Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0172529, 51.4458992], [-0.0176124, 51.444742], [-0.0178105, 51.4442018], [-0.017943, 51.4439215], [-0.0180207, 51.4438826]]}}, {"type": "Feature", "properties": {"osm_id": "6226", "highway": "trunk", "name": "Boship Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2325596, 50.878823], [0.2325032, 50.8787563], [0.2324214, 50.8787013], [0.2323196, 50.8786615], [0.232205, 50.8786398], [0.2320509, 50.8786408], [0.2319062, 50.8786742], [0.2317873, 50.878736], [0.2317137, 50.8788103], [0.2316789, 50.8788951], [0.2316863, 50.8789826], [0.2317235, 50.8790509], [0.2317865, 50.8791111], [0.2318986, 50.8791708], [0.2320349, 50.8792049], [0.2321813, 50.8792099], [0.2323177, 50.8791868], [0.2324321, 50.8791408], [0.23252, 50.8790756], [0.2325736, 50.8789969], [0.2325879, 50.8789093], [0.2325596, 50.878823]]}}, {"type": "Feature", "properties": {"osm_id": "6539", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Hailsham Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2325596, 50.878823], [0.2325991, 50.8787303], [0.2326383, 50.8786558], [0.2327005, 50.8785948], [0.2331288, 50.8782774], [0.2335271, 50.8779865], [0.2339857, 50.8776414], [0.2346812, 50.8770643], [0.2352394, 50.8765577], [0.2358467, 50.8759499], [0.2367303, 50.8749814], [0.2376083, 50.8737447], [0.2382869, 50.872557], [0.2386416, 50.8719625], [0.2388539, 50.8715818], [0.2390155, 50.871304]]}}, {"type": "Feature", "properties": {"osm_id": "6540", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Hailsham Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2420945, 50.8624522], [0.2421456, 50.8626378], [0.2417849, 50.8648592], [0.241231, 50.8666091], [0.2409144, 50.8673729], [0.2403295, 50.8686213], [0.2400109, 50.8692058], [0.2392122, 50.8705925], [0.2389879, 50.8709672], [0.238879, 50.8711562]]}}, {"type": "Feature", "properties": {"osm_id": "6541", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Hailsham Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2425353, 50.8621509], [0.2424554, 50.8619361], [0.2424765, 50.8616721], [0.242507, 50.8607902], [0.2425292, 50.8601469], [0.2425439, 50.8600502], [0.2425605, 50.859941], [0.2426388, 50.8591499], [0.2427843, 50.8582645], [0.2430132, 50.8571026], [0.2431009, 50.8565878], [0.2431788, 50.8560635], [0.2432182, 50.8557312], [0.2433278, 50.8545359], [0.2433696, 50.8534422], [0.2433127, 50.8528598], [0.2433817, 50.8526418]]}}, {"type": "Feature", "properties": {"osm_id": "6542", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Hailsham Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2429943, 50.8525929], [0.2431048, 50.8528134], [0.24317, 50.8530539], [0.2431681, 50.8534969], [0.2431006, 50.8546187], [0.2430573, 50.8552882], [0.2430114, 50.8557279], [0.2429927, 50.8559335]]}}, {"type": "Feature", "properties": {"osm_id": "6543", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Polegate Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2434901, 50.8522604], [0.24343, 50.8521182], [0.2433886, 50.8519803], [0.2433608, 50.8517372], [0.243338, 50.8512757], [0.2432783, 50.8500653], [0.2432254, 50.8494894], [0.2432171, 50.8493997], [0.2430828, 50.8487954], [0.2428629, 50.8480969], [0.2427399, 50.8476858], [0.2426994, 50.8475502], [0.2423629, 50.8465896], [0.2422073, 50.845883], [0.2420467, 50.8452163], [0.2414969, 50.8434784], [0.2412278, 50.8426503], [0.2411404, 50.8423813], [0.24101, 50.8419536], [0.240954, 50.841784], [0.2407464, 50.8413277], [0.2404348, 50.8408882], [0.2403324, 50.840779], [0.2398897, 50.8403071], [0.239643, 50.8398993], [0.2393833, 50.8393818], [0.2392259, 50.838978], [0.2390094, 50.8382757], [0.2386908, 50.8367696], [0.238589, 50.8360987], [0.2385431, 50.8356384], [0.2385016, 50.834793], [0.2385031, 50.8344661], [0.2385073, 50.8335199], [0.2385716, 50.832713], [0.2386953, 50.831745]]}}, {"type": "Feature", "properties": {"osm_id": "6544", "highway": "trunk", "ref": "A22", "lanes": "2", "oneway": "yes", "name": "Polegate Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2386169, 50.829141], [0.2387122, 50.8293079], [0.2387812, 50.829506], [0.2388147, 50.8297891]]}}, {"type": "Feature", "properties": {"osm_id": "31030", "highway": "trunk", "ref": "A400", "maxspeed": "20 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Grafton Way", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1349287, 51.5245734], [-0.1349969, 51.5245493], [-0.1356679, 51.5242968], [-0.1357503, 51.5242663], [-0.135835, 51.5242338], [-0.1359652, 51.5241777], [-0.136314, 51.5240353], [-0.1370609, 51.523765], [-0.1370981, 51.5237515], [-0.1372409, 51.5236995]]}}, {"type": "Feature", "properties": {"osm_id": "36007", "highway": "trunk", "ref": "A27", "lanes": "2", "oneway": "yes", "name": "Eastbourne Road", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2394129, 50.8279962], [0.2391615, 50.8278847], [0.2389748, 50.8277163]]}}, {"type": "Feature", "properties": {"osm_id": "36008", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Polegate Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2556857, 50.8272729], [0.2571178, 50.8271032], [0.2597681, 50.8268651], [0.2608503, 50.8267243], [0.2621308, 50.8265215], [0.2629714, 50.8263562], [0.2637801, 50.8261767]]}}, {"type": "Feature", "properties": {"osm_id": "36009", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Polegate Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2749325, 50.8211861], [0.2737684, 50.8216813]]}}, {"type": "Feature", "properties": {"osm_id": "45668", "highway": "trunk", "ref": "A10", "maxspeed": "60 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great Cambridge Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0495939, 51.6823456], [-0.0500512, 51.6821859], [-0.0502307, 51.6820638], [-0.050344, 51.6818165]]}}, {"type": "Feature", "properties": {"osm_id": "49829", "highway": "trunk", "ref": "A22", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Caterham By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0701521, 51.2752417], [-0.0703259, 51.2754032], [-0.0704314, 51.2754935], [-0.0706987, 51.2757321], [-0.0709388, 51.2759763], [-0.0711443, 51.2762214]]}}, {"type": "Feature", "properties": {"osm_id": "49830", "highway": "trunk", "ref": "A22", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Caterham By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0703095, 51.297542], [-0.0701489, 51.2974042], [-0.0697731, 51.2971029]]}}, {"type": "Feature", "properties": {"osm_id": "50150", "highway": "trunk", "ref": "A22", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Godstone Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0670543, 51.2685259], [-0.0671265, 51.2682435], [-0.067264, 51.267818], [-0.0675894, 51.2669743], [-0.0677559, 51.2665356], [-0.0678804, 51.266021], [-0.0679278, 51.2657442], [-0.0679332, 51.2654383]]}}, {"type": "Feature", "properties": {"osm_id": "50151", "highway": "trunk", "ref": "A22", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Godstone Hill", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0649107, 51.2596338], [-0.064739, 51.2599834], [-0.0647446, 51.2602056], [-0.0649198, 51.260466], [-0.0655301, 51.2610498], [-0.0657926, 51.2613079], [-0.0663591, 51.2618942]]}}, {"type": "Feature", "properties": {"osm_id": "50152", "highway": "trunk", "ref": "A22", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Godstone Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0672301, 51.2685246], [-0.0671866, 51.2688102], [-0.067171, 51.2690871], [-0.0672014, 51.2695757], [-0.0673578, 51.2708239], [-0.0674359, 51.2714346], [-0.0675607, 51.2720307], [-0.0676551, 51.2723404], [-0.0677916, 51.2726471], [-0.0679684, 51.2730205], [-0.0681779, 51.2733414], [-0.0683983, 51.2736238], [-0.0686444, 51.2738916], [-0.0689813, 51.2742289], [-0.069351, 51.2745575]]}}, {"type": "Feature", "properties": {"osm_id": "50153", "highway": "trunk", "ref": "A22", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Godstone Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0701031, 51.2753461], [-0.0692196, 51.2746148]]}}, {"type": "Feature", "properties": {"osm_id": "50520", "highway": "trunk", "ref": "A22", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Godstone Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0711466, 51.2977681], [-0.0711943, 51.2978778], [-0.0712554, 51.2979521], [-0.0713768, 51.2980226], [-0.0715335, 51.2981372], [-0.0717059, 51.2982888], [-0.0720115, 51.2985524], [-0.0730376, 51.2994927], [-0.074119, 51.3005873], [-0.0748009, 51.3013448]]}}, {"type": "Feature", "properties": {"osm_id": "50521", "highway": "trunk", "ref": "A22", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Godstone Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0763162, 51.3032394], [-0.0761745, 51.303103], [-0.0760207, 51.3029265], [-0.0757249, 51.3025723], [-0.0749684, 51.3017158], [-0.0739997, 51.3006287], [-0.0734874, 51.3001204], [-0.0732734, 51.299908], [-0.0729254, 51.2995628], [-0.0727405, 51.2993825], [-0.0723571, 51.2990088]]}}, {"type": "Feature", "properties": {"osm_id": "50522", "highway": "trunk", "ref": "A22", "lanes": "2", "lit": "yes", "name": "Godstone Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.079533, 51.310047], [-0.0795292, 51.3100012], [-0.0795441, 51.3099116], [-0.079645, 51.30972], [-0.0797699, 51.3094672], [-0.079848, 51.3092969], [-0.0799033, 51.3091355], [-0.0799544, 51.3089336], [-0.079968, 51.3087697], [-0.0799347, 51.3086225], [-0.0798892, 51.3084216], [-0.0797865, 51.3081458], [-0.0795975, 51.3078459], [-0.0792573, 51.307389], [-0.0789026, 51.3069151], [-0.078556, 51.3065113], [-0.0779173, 51.3058485], [-0.0778094, 51.3057142], [-0.07734, 51.3051303], [-0.076971, 51.3045926], [-0.0764581, 51.3035055], [-0.0763162, 51.3032394]]}}, {"type": "Feature", "properties": {"osm_id": "50523", "highway": "trunk", "ref": "A22", "lanes": "2", "lit": "yes", "name": "Godstone Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0795972, 51.3102581], [-0.0796158, 51.3103072], [-0.0796187, 51.310315], [-0.0796636, 51.310439], [-0.0799141, 51.3108069], [-0.0799373, 51.3108412], [-0.0800843, 51.3110552], [-0.0807992, 51.3120886], [-0.0811867, 51.3125841], [-0.0813192, 51.312718], [-0.0814213, 51.3128169]]}}, {"type": "Feature", "properties": {"osm_id": "50525", "highway": "trunk", "ref": "A22", "oneway": "yes", "lit": "yes", "name": "Whyteleafe Roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0793908, 51.3101816], [-0.0793871, 51.3101285], [-0.0794083, 51.3100954], [-0.0794481, 51.3100653], [-0.079533, 51.310047]]}}, {"type": "Feature", "properties": {"osm_id": "50526", "highway": "trunk", "ref": "A22", "oneway": "yes", "lit": "yes", "name": "Wapses Lodge Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0702641, 51.2977174], [-0.0702644, 51.2976274], [-0.0703095, 51.297542], [-0.0703663, 51.2974888], [-0.0704405, 51.2974448], [-0.0705881, 51.2973986], [-0.0707523, 51.2973882]]}}, {"type": "Feature", "properties": {"osm_id": "82756", "highway": "trunk", "ref": "A78", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.8591221, 55.9167972], [-4.8587075, 55.9177057], [-4.8582233, 55.9183622], [-4.8581919, 55.9184297], [-4.858172, 55.9185086]]}}, {"type": "Feature", "properties": {"osm_id": "82757", "highway": "trunk", "ref": "A78", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.8579084, 55.9184809], [-4.8579774, 55.9184219], [-4.858582, 55.9175903], [-4.8591221, 55.9167972]]}}, {"type": "Feature", "properties": {"osm_id": "83613", "highway": "trunk", "ref": "A8", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Greenock Road", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "int_ref": "E 05;E 16", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.6794734, 55.9338168], [-4.6793442, 55.9337684], [-4.6792134, 55.9337399], [-4.6791051, 55.9337264], [-4.6783446, 55.9336552], [-4.6740027, 55.9331411], [-4.6733134, 55.9330614], [-4.6726535, 55.9330103], [-4.6718884, 55.9329476], [-4.6711784, 55.9329202], [-4.6705374, 55.9328944], [-4.6697344, 55.9328763], [-4.6635226, 55.9327692], [-4.6625123, 55.9327295], [-4.6605909, 55.9326319], [-4.658214, 55.9324852], [-4.6502542, 55.9318754], [-4.6499254, 55.931838], [-4.6495717, 55.9317867], [-4.6491154, 55.9317119], [-4.6486451, 55.9316278], [-4.6483482, 55.9315596], [-4.6479237, 55.931454], [-4.6476121, 55.931364], [-4.6472894, 55.9312745], [-4.6469595, 55.9311579], [-4.6466371, 55.9310411], [-4.6452096, 55.9304664], [-4.6450301, 55.9304034], [-4.6449052, 55.9303679], [-4.644722, 55.9303409], [-4.6445384, 55.9303307]]}}, {"type": "Feature", "properties": {"osm_id": "83614", "highway": "trunk", "ref": "A8", "maxspeed": "70 mph", "name": "Woodhall Roundabout", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.6435446, 55.9298378], [-4.6435828, 55.9297653], [-4.6436334, 55.9297048], [-4.6437078, 55.9296503]]}}, {"type": "Feature", "properties": {"osm_id": "83617", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "Newark Roundabout", "operator": "Transport Scotland", "junction": "roundabout", "int_ref": "E 05;E 16", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.6800147, 55.9336038], [-4.6800801, 55.9336751], [-4.6800628, 55.9337671], [-4.680014, 55.9338216], [-4.6799756, 55.9338462]]}}, {"type": "Feature", "properties": {"osm_id": "83623", "highway": "trunk", "ref": "A8", "maxspeed": "30 mph", "lit": "yes", "operator": "Transport Scotland", "junction": "roundabout", "int_ref": "E 05;E 16", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.7362205, 55.9443654], [-4.7363293, 55.9443501], [-4.7364383, 55.9443521]]}}, {"type": "Feature", "properties": {"osm_id": "83626", "highway": "trunk", "ref": "A8", "maxspeed": "30 mph", "lit": "yes", "operator": "Transport Scotland", "junction": "roundabout", "int_ref": "E 05;E 16", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.7440539, 55.9436226], [-4.7441397, 55.9436601], [-4.7442041, 55.9436992], [-4.7442416, 55.9437382]]}}, {"type": "Feature", "properties": {"osm_id": "83629", "highway": "trunk", "ref": "A8", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Dalrymple Street", "operator": "Transport Scotland", "int_ref": "E 05;E 16", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.7556652, 55.9487941], [-4.7553224, 55.9483002], [-4.7551871, 55.9481897], [-4.7549791, 55.9480767], [-4.7535243, 55.9475351], [-4.7522236, 55.947092], [-4.7519147, 55.9469774], [-4.7516224, 55.9468695], [-4.7511312, 55.9466375]]}}, {"type": "Feature", "properties": {"osm_id": "83638", "highway": "trunk", "ref": "A78", "maxspeed": "70 mph", "lit": "yes", "name": "Bankfoot Roundabout", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.858172, 55.9185086], [-4.8583013, 55.9185638], [-4.8583892, 55.9186404], [-4.858425, 55.9187292], [-4.8584178, 55.9187892], [-4.8583611, 55.9188746], [-4.8582557, 55.9189439], [-4.858048, 55.918999], [-4.8578855, 55.9190008], [-4.8577358, 55.9189726], [-4.8576082, 55.9189162], [-4.8575228, 55.9188387], [-4.8574919, 55.9187161], [-4.8575356, 55.9186284], [-4.8576303, 55.9185543], [-4.8577644, 55.9185029], [-4.8579084, 55.9184809], [-4.8580705, 55.9184872], [-4.858172, 55.9185086]]}}, {"type": "Feature", "properties": {"osm_id": "83639", "highway": "trunk", "ref": "A78", "maxspeed": "60 mph", "name": "Inverkip Road", "operator": "Transport Scotland", "source_maxspeed": "UK:nsl_single", "old_ref": "A742", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.8235225, 55.9342139], [-4.8226966, 55.9345445]]}}, {"type": "Feature", "properties": {"osm_id": "83643", "highway": "trunk", "ref": "A78", "maxspeed": "signals", "oneway": "yes", "name": "Inverkip Road", "operator": "Transport Scotland", "old_ref": "A742", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.785497, 55.942333], [-4.7854557, 55.9421052], [-4.7854706, 55.9419784], [-4.785612, 55.9416439]]}}, {"type": "Feature", "properties": {"osm_id": "94820", "highway": "trunk", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Pines Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3736041, 51.3809369], [-2.3733962, 51.3808766], [-2.3733599, 51.3808721], [-2.3732693, 51.3808624], [-2.3731496, 51.3808783], [-2.3730132, 51.3809217]]}}, {"type": "Feature", "properties": {"osm_id": "101500", "highway": "trunk", "ref": "A40", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "no", "name": "Westway", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "layer": "1", "bridge": "viaduct", "foot": "no", "horse": "no", "motor_vehicle": "designated", "old_ref": "A40(M)", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[-0.2151626, 51.5163105], [-0.2139154, 51.5167368], [-0.2131515, 51.5170252], [-0.212173, 51.5173297], [-0.2106202, 51.5177024], [-0.2099091, 51.5178618], [-0.2092887, 51.5180019], [-0.2086875, 51.5181587], [-0.2081135, 51.5183501], [-0.207577, 51.5185759], [-0.207282, 51.5187223], [-0.2070138, 51.518879], [-0.2065567, 51.5191778], [-0.2064128, 51.5192814], [-0.2055994, 51.5199155], [-0.2048423, 51.520474], [-0.2044391, 51.5207085], [-0.2040224, 51.5209226], [-0.2036334, 51.5210945], [-0.2029202, 51.5213407], [-0.2023274, 51.521492], [-0.2016262, 51.5216156], [-0.2010396, 51.5216818], [-0.2002959, 51.521717], [-0.1999147, 51.5217082], [-0.1993863, 51.5216777], [-0.198866, 51.5216212], [-0.1983487, 51.5215364], [-0.1978736, 51.5214325], [-0.197387, 51.5213056], [-0.1953272, 51.5206954], [-0.1938006, 51.5202177], [-0.1933186, 51.5201063], [-0.1928228, 51.5200028], [-0.1923067, 51.5199107], [-0.1916796, 51.5198158], [-0.1905321, 51.5196981]]}}, {"type": "Feature", "properties": {"osm_id": "101596", "highway": "trunk", "ref": "A40", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Western Avenue", "operator": "Transport for London", "sidewalk": "separate", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2559587, 51.5147436], [-0.257218, 51.5151925], [-0.2577209, 51.5154087], [-0.2580705, 51.515573], [-0.2583602, 51.5157091], [-0.2588839, 51.5159684]]}}, {"type": "Feature", "properties": {"osm_id": "131631", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "DBFO5", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "horse": "no", "source_ref": "local knowledge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.5007826, 51.5372713], [-0.5002073, 51.5357316], [-0.49982, 51.534585], [-0.4994498, 51.5333064], [-0.4992138, 51.5323742], [-0.4989483, 51.5313098], [-0.4986654, 51.5297927], [-0.4985353, 51.5288915], [-0.4984841, 51.5284665], [-0.4984448, 51.528102], [-0.4983668, 51.5269193], [-0.4983019, 51.5260277], [-0.4982563, 51.5245663], [-0.4982962, 51.5232704], [-0.4983448, 51.5223707], [-0.4984481, 51.5211531], [-0.4985891, 51.5201144], [-0.4986742, 51.5196347], [-0.4989014, 51.5188675], [-0.4992273, 51.517831], [-0.4996457, 51.5169434], [-0.5005321, 51.5152838], [-0.5008497, 51.5147321]]}}, {"type": "Feature", "properties": {"osm_id": "224274", "highway": "trunk", "ref": "A726", "maxspeed": "40 mph", "lit": "yes", "name": "St James Interchange", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.4483255, 55.8584012], [-4.4483164, 55.8583586], [-4.4483103, 55.8583145], [-4.4483155, 55.8582649], [-4.4483336, 55.8582244], [-4.4483645, 55.8581637], [-4.4483966, 55.8581161], [-4.4484519, 55.8580525]]}}, {"type": "Feature", "properties": {"osm_id": "224676", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "St Oswalds Way", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8890558, 53.1948551], [-2.8895125, 53.1950101], [-2.8902425, 53.1952323], [-2.8905944, 53.1953378], [-2.8907836, 53.195394], [-2.8909935, 53.1954564], [-2.8912636, 53.1955171], [-2.8915477, 53.1955558], [-2.8918177, 53.1955659], [-2.8921075, 53.1955592], [-2.8923297, 53.1955407], [-2.8925069, 53.1955322], [-2.8927966, 53.1955036], [-2.8931117, 53.1954547], [-2.8932861, 53.1953907], [-2.8935096, 53.1952406]]}}, {"type": "Feature", "properties": {"osm_id": "297343", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great North Way", "operator": "Transport for London", "old_ref": "A555", "alt_name": "Barnet By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2046179, 51.5888845], [-0.2055978, 51.5887066], [-0.2060027, 51.5886697], [-0.20626, 51.5886765], [-0.206827, 51.5887139], [-0.2072125, 51.5887481], [-0.2073035, 51.5887601], [-0.2077212, 51.5888195], [-0.2081933, 51.5889226], [-0.2084722, 51.5889962], [-0.2087834, 51.5890944], [-0.2091534, 51.5892345], [-0.2094746, 51.5893746], [-0.20978, 51.5895323], [-0.2100711, 51.5897181], [-0.2104076, 51.5899927], [-0.2107693, 51.5902954]]}}, {"type": "Feature", "properties": {"osm_id": "297344", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great North Way", "operator": "Transport for London", "old_ref": "A555", "alt_name": "Barnet By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2116928, 51.5912869], [-0.2112165, 51.5907928]]}}, {"type": "Feature", "properties": {"osm_id": "302442", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great North Way", "operator": "Transport for London", "old_ref": "A555", "alt_name": "Barnet By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2118699, 51.5912067], [-0.212074, 51.5915023], [-0.2122594, 51.5918483], [-0.2124213, 51.592416], [-0.2125501, 51.5928745], [-0.212675, 51.5931418], [-0.2130167, 51.593499], [-0.2135028, 51.5937863], [-0.2145242, 51.5940956], [-0.215434, 51.5943835], [-0.2157874, 51.5945232], [-0.2160005, 51.5946075], [-0.2167643, 51.5949807]]}}, {"type": "Feature", "properties": {"osm_id": "305367", "highway": "trunk", "ref": "A446", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Lichfield Road", "maxspeed_type": "GB:national_dual", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7278159, 52.5391643], [-1.7276734, 52.5395378], [-1.7276368, 52.539611], [-1.7276092, 52.5396923], [-1.7275858, 52.5397749], [-1.7275813, 52.5398573], [-1.7275937, 52.5400489], [-1.7275994, 52.5402093]]}}, {"type": "Feature", "properties": {"osm_id": "305368", "highway": "trunk", "ref": "A446", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Lichfield Road", "maxspeed_type": "GB:national_dual", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Warwickshire County Council", "gritting_route_ref": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7272331, 52.5418499], [-1.7272001, 52.5417012], [-1.7271751, 52.5415414], [-1.7271717, 52.5413893], [-1.7271857, 52.5412359], [-1.7272107, 52.5410848], [-1.7272559, 52.5409155], [-1.7273138, 52.5407412]]}}, {"type": "Feature", "properties": {"osm_id": "330341", "highway": "trunk", "ref": "A201", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Penton Rise", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.114121, 51.5313695], [-0.1141086, 51.5313322], [-0.1141103, 51.531307], [-0.1141261, 51.531277], [-0.1143916, 51.5310592], [-0.1148353, 51.5306832], [-0.1155183, 51.5301077], [-0.1156384, 51.5300026], [-0.1157128, 51.5299315], [-0.1157446, 51.5298957]]}}, {"type": "Feature", "properties": {"osm_id": "330481", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "5", "lit": "yes", "name": "City Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1062675, 51.5319088], [-0.1061702, 51.5319109]]}}, {"type": "Feature", "properties": {"osm_id": "331357", "highway": "trunk", "ref": "A5200", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Gray's Inn Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "cycleway": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1195253, 51.5286645], [-0.11956, 51.5287062]]}}, {"type": "Feature", "properties": {"osm_id": "343709", "highway": "motorway", "ref": "M4", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chiswick Flyover", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "layer": "1", "bridge": "viaduct", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-0.2771888, 51.4893105], [-0.2779926, 51.4896134], [-0.2785344, 51.4898138], [-0.279218, 51.4900975], [-0.2795247, 51.4902311], [-0.2802982, 51.4905824]]}}, {"type": "Feature", "properties": {"osm_id": "344304", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Marylebone Flyover", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "layer": "1", "bridge": "yes", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.1679164, 51.520249], [-0.1687201, 51.5200771], [-0.1689758, 51.5200272], [-0.1692475, 51.5199889], [-0.1695861, 51.5199522], [-0.1699543, 51.5199261], [-0.1703006, 51.519913], [-0.1722356, 51.5199364]]}}, {"type": "Feature", "properties": {"osm_id": "349653", "highway": "trunk", "maxspeed": "50 mph", "lit": "yes", "operator": "Transport Scotland", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.641021, 55.7422833], [-4.6410459, 55.7423189], [-4.6410553, 55.7423373], [-4.6410702, 55.7423879], [-4.6410652, 55.7424597], [-4.6410352, 55.7425222], [-4.6409856, 55.7425768], [-4.6409207, 55.7426228], [-4.6408554, 55.7426552], [-4.6408124, 55.7426716], [-4.6407841, 55.7426806], [-4.6406295, 55.7427106], [-4.6405485, 55.7427154], [-4.64047, 55.7427134], [-4.6403787, 55.7427028], [-4.6402763, 55.7426789], [-4.6402436, 55.7426681], [-4.64014, 55.7426198], [-4.6400863, 55.7425819], [-4.6400266, 55.7425161], [-4.6400004, 55.7424591], [-4.6399945, 55.7423982], [-4.640005, 55.742351], [-4.640034, 55.7422973], [-4.6400796, 55.742248], [-4.640145, 55.7422015], [-4.6402306, 55.7421609], [-4.6403175, 55.742134], [-4.6404158, 55.7421159], [-4.6405133, 55.7421089], [-4.6406053, 55.7421114], [-4.6407145, 55.7421264], [-4.6408134, 55.742153], [-4.6408944, 55.742187], [-4.641021, 55.7422833]]}}, {"type": "Feature", "properties": {"osm_id": "349800", "highway": "motorway", "ref": "M77", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Transport for Scotland", "maxspeed_type": "GB:motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.3856757, 55.7277706], [-4.3854654, 55.7282384], [-4.3852749, 55.7287519], [-4.3850105, 55.7295816], [-4.384878, 55.7301822], [-4.3847251, 55.731099], [-4.3846446, 55.7314932], [-4.3844944, 55.7321395], [-4.3842412, 55.7329607], [-4.3838239, 55.733825], [-4.3832705, 55.7347235], [-4.3830001, 55.7350779], [-4.3826955, 55.7354287], [-4.3824224, 55.7357276], [-4.3821211, 55.7360308], [-4.3818514, 55.7362853], [-4.3816102, 55.7364993], [-4.3813353, 55.7367445], [-4.3810544, 55.7369792], [-4.380795, 55.7371885], [-4.3805213, 55.7373983]]}}, {"type": "Feature", "properties": {"osm_id": "361349", "highway": "trunk", "ref": "A10", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Bruce Grove", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0694385, 51.5940308], [-0.0696197, 51.5940875], [-0.06981, 51.594153], [-0.0699932, 51.5942505]]}}, {"type": "Feature", "properties": {"osm_id": "367928", "highway": "trunk", "ref": "A41", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Watford Way", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2270957, 51.5827331], [-0.2271725, 51.5828674], [-0.2272708, 51.5829917], [-0.2283697, 51.5839465], [-0.2287556, 51.5842751], [-0.2292613, 51.5846414], [-0.2300787, 51.5852048], [-0.2302356, 51.5853077]]}}, {"type": "Feature", "properties": {"osm_id": "367931", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford Way", "operator": "Transport for London", "alt_name": "Barnet By-pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.244319, 51.6165904], [-0.2441285, 51.6164486], [-0.243415, 51.6161594], [-0.2431521, 51.6160296]]}}, {"type": "Feature", "properties": {"osm_id": "367933", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Mill Hill Circus", "operator": "Transport for London", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2447423, 51.6164014], [-0.244914, 51.6165075]]}}, {"type": "Feature", "properties": {"osm_id": "367934", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2449809, 51.6166181], [-0.2451276, 51.6167504], [-0.2454956, 51.6169449], [-0.2457665, 51.6170756], [-0.2472819, 51.6177844], [-0.2479745, 51.6181061], [-0.2493505, 51.6187827], [-0.249861, 51.6190221], [-0.250779, 51.6195692], [-0.2522163, 51.6204987], [-0.2528475, 51.620772], [-0.2530934, 51.6208641], [-0.2534058, 51.6209653], [-0.2538406, 51.6210796]]}}, {"type": "Feature", "properties": {"osm_id": "367935", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2546847, 51.6215949], [-0.2546468, 51.6215279], [-0.2545864, 51.6214628], [-0.2544835, 51.6213924], [-0.2543842, 51.6213392], [-0.2542588, 51.621293], [-0.2542422, 51.6212889], [-0.253923, 51.6212017], [-0.2537394, 51.621169]]}}, {"type": "Feature", "properties": {"osm_id": "367936", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Apex Corner", "operator": "Transport for London", "junction": "roundabout", "alt_name": "Northway Circus", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2552235, 51.6217824], [-0.2550699, 51.6217887], [-0.2549249, 51.6217638], [-0.2548572, 51.6217396], [-0.2547475, 51.6216723]]}}, {"type": "Feature", "properties": {"osm_id": "378645", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Hendon Way", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1966491, 51.5589199], [-0.196737, 51.5589988], [-0.1968119, 51.5590728], [-0.1968546, 51.559126], [-0.1968891, 51.5591753], [-0.1969451, 51.5592722], [-0.1969652, 51.5593062], [-0.196998, 51.5593517], [-0.1970248, 51.5593787], [-0.1970582, 51.5594004], [-0.197099, 51.559417], [-0.1971404, 51.5594261], [-0.1971897, 51.5594296]]}}, {"type": "Feature", "properties": {"osm_id": "378646", "highway": "trunk", "ref": "A41", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Hendon Way", "operator": "Transport for London", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2268511, 51.5827335], [-0.226819, 51.5825893], [-0.2268272, 51.5824469], [-0.2268661, 51.58223], [-0.2268587, 51.5820483], [-0.2268245, 51.5818732], [-0.2267581, 51.5817116], [-0.2266649, 51.5815601], [-0.2266526, 51.5815366], [-0.2265813, 51.5814356], [-0.2265043, 51.5813268], [-0.2264337, 51.581227], [-0.2263293, 51.5810796], [-0.2261724, 51.5808608], [-0.2258183, 51.5803677], [-0.225639, 51.580153], [-0.2255458, 51.5800553], [-0.2254188, 51.5799222], [-0.2253349, 51.5798486], [-0.2252519, 51.5797758], [-0.2248129, 51.5794664], [-0.2242916, 51.5791755], [-0.2237076, 51.578945], [-0.2232712, 51.5787913], [-0.2228899, 51.5786687], [-0.2227174, 51.5786163], [-0.2222995, 51.5784708]]}}, {"type": "Feature", "properties": {"osm_id": "485137", "highway": "motorway", "ref": "M27", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "3", "bicycle": "no", "sidewalk": "none", "carriageway_ref": "B", "foot": "no", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1201502, 50.8554581], [-1.1248668, 50.8557667], [-1.1271783, 50.8558138], [-1.130282, 50.8557923], [-1.1325794, 50.8557548], [-1.1354346, 50.855806], [-1.1381954, 50.8559556], [-1.1400302, 50.8561374], [-1.1418765, 50.8563447], [-1.1437903, 50.8566528], [-1.1460688, 50.8570627], [-1.1479156, 50.8575064], [-1.1497837, 50.8579697], [-1.1507792, 50.8582113], [-1.1535742, 50.8589393], [-1.1557167, 50.8594903], [-1.1574451, 50.8599191], [-1.1590343, 50.8603256], [-1.1636657, 50.8615271], [-1.1661042, 50.8622138], [-1.1669388, 50.8624642], [-1.1681571, 50.8628379], [-1.1704908, 50.8636175], [-1.1732582, 50.8645708], [-1.1750264, 50.8650911], [-1.1769318, 50.8656083], [-1.1784579, 50.8659883], [-1.1809425, 50.8665084], [-1.1820753, 50.8667261]]}}, {"type": "Feature", "properties": {"osm_id": "623313", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "maxspeed_type": "sign", "surface": "asphalt", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.484926, 52.1476773], [-0.4849902, 52.1475902], [-0.4850899, 52.1475168], [-0.485218, 52.1474625], [-0.485382, 52.1474292], [-0.4855546, 52.1474271], [-0.4857206, 52.1474565], [-0.4858571, 52.1475104], [-0.4859637, 52.1475855], [-0.4860321, 52.1476758], [-0.4860566, 52.1477682], [-0.4860408, 52.1478613], [-0.4859858, 52.1479486], [-0.4858954, 52.1480241], [-0.4857947, 52.1480752], [-0.4856777, 52.1481111], [-0.4854837, 52.1481327], [-0.4852892, 52.1481129], [-0.4851786, 52.1480855], [-0.4849991, 52.147975], [-0.4849253, 52.1478779], [-0.4849021, 52.1477717], [-0.484926, 52.1476773]]}}, {"type": "Feature", "properties": {"osm_id": "644250", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Barnet Way", "operator": "Transport for London", "old_ref": "A555", "alt_name": "Barnet By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2552235, 51.6217824], [-0.2550519, 51.6218852], [-0.2548399, 51.622075], [-0.2547345, 51.6222429], [-0.2546953, 51.6223176], [-0.2546767, 51.6223859]]}}, {"type": "Feature", "properties": {"osm_id": "644251", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Barnet Way", "operator": "Transport for London", "source_maxspeed": "national", "old_ref": "A555", "alt_name": "Barnet By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2555491, 51.6421513], [-0.2557123, 51.641887], [-0.2559319, 51.6415167], [-0.256054, 51.6412142], [-0.2561469, 51.6408354], [-0.2561672, 51.6404811], [-0.2560967, 51.6401752], [-0.2559425, 51.6397754], [-0.255092, 51.637972], [-0.2546125, 51.6369847], [-0.2540173, 51.6360343], [-0.2537693, 51.6355239], [-0.2535486, 51.6349643], [-0.2534667, 51.6346326], [-0.2533861, 51.6342501], [-0.2533466, 51.6337848], [-0.253347, 51.6332801], [-0.2533854, 51.6330884], [-0.2535169, 51.632433], [-0.2536247, 51.6318955], [-0.2538081, 51.6310812], [-0.2539397, 51.6302476], [-0.2540692, 51.6282799]]}}, {"type": "Feature", "properties": {"osm_id": "644252", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Barnet By-Pass", "operator": "Transport for London", "old_ref": "A555", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2528408, 51.6458538], [-0.2519176, 51.6471763], [-0.2515361, 51.6479559], [-0.2510719, 51.6494384], [-0.2506783, 51.6509076], [-0.2503266, 51.6525218], [-0.2498665, 51.6546056], [-0.2497261, 51.6552412], [-0.249477, 51.6561271]]}}, {"type": "Feature", "properties": {"osm_id": "644733", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Barnet By-Pass", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "DBFO5", "source_maxspeed": "survey", "old_ref": "A555", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2337549, 51.6796541], [-0.2379441, 51.6732812], [-0.2383258, 51.6727305], [-0.2385218, 51.6724743], [-0.2386791, 51.6722757], [-0.2388494, 51.6720703], [-0.2391853, 51.6716933], [-0.2426863, 51.6677802], [-0.246869, 51.663104], [-0.2470719, 51.6628737], [-0.2472639, 51.6626306], [-0.2474579, 51.6623616], [-0.2476954, 51.6619765], [-0.2478978, 51.6615821], [-0.2480666, 51.6611544], [-0.2481875, 51.6607494], [-0.2482895, 51.660314], [-0.248477, 51.6594726], [-0.2492352, 51.6561988], [-0.2492571, 51.656105]]}}, {"type": "Feature", "properties": {"osm_id": "718463", "highway": "trunk", "ref": "A665", "maxspeed": "30 mph", "name": "Devonshire Street", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.215714, 53.4688332], [-2.2158076, 53.4686872], [-2.2163447, 53.4679631], [-2.2165519, 53.4676764], [-2.2168956, 53.4672164], [-2.2172593, 53.4667296]]}}, {"type": "Feature", "properties": {"osm_id": "736514", "highway": "trunk", "ref": "A46", "maxspeed": "60 mph", "lanes": "2", "name": "Cheltenham Road", "operator": "Highways England", "highways_england_area": "9", "source_maxspeed": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.9570373, 52.0607474], [-1.9571201, 52.061151], [-1.9571474, 52.0614504], [-1.9571235, 52.0617425], [-1.9570583, 52.0621762], [-1.9569826, 52.0623879], [-1.9568402, 52.0627602], [-1.9566695, 52.0631855], [-1.956209, 52.0642249], [-1.9557648, 52.0651699], [-1.9555286, 52.0656391], [-1.9552836, 52.0661075], [-1.9549001, 52.0668979], [-1.9548363, 52.0670271], [-1.9546686, 52.0674094], [-1.9545767, 52.0677046], [-1.9545273, 52.0678857], [-1.954475, 52.0681628], [-1.9544234, 52.0684814], [-1.9543814, 52.0692155], [-1.9543482, 52.0698981], [-1.9542543, 52.0715418], [-1.9542113, 52.0722956], [-1.9541942, 52.0726601], [-1.954194, 52.0727958], [-1.9541575, 52.0728906], [-1.9541392, 52.0729303], [-1.9540566, 52.0730793]]}}, {"type": "Feature", "properties": {"osm_id": "742712", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "maxspeed_type": "GB:nsl_single", "source_maxspeed": "sign", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2657486, 52.1890832], [-2.2655532, 52.18904], [-2.2653889, 52.188962], [-2.2653088, 52.1888984], [-2.2652505, 52.1888264], [-2.2652162, 52.1887488], [-2.2652172, 52.1886096], [-2.2652943, 52.1884787], [-2.2653968, 52.1883952], [-2.2655303, 52.1883303], [-2.2656863, 52.1882883], [-2.2658546, 52.1882718], [-2.2660399, 52.1882843], [-2.2662124, 52.1883278], [-2.266354, 52.1883958], [-2.2664608, 52.1884846], [-2.2665251, 52.1885876], [-2.2665404, 52.1887159], [-2.2665064, 52.1888143], [-2.2664344, 52.1889047], [-2.2663286, 52.1889816], [-2.266156, 52.1890525], [-2.2659563, 52.1890875], [-2.2657486, 52.1890832]]}}, {"type": "Feature", "properties": {"osm_id": "748481", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Barclay Road", "operator": "Transport for London", "source_maxspeed": "GB:urban", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0963817, 51.3718148], [-0.0962119, 51.371797], [-0.0961519, 51.371787], [-0.0960465, 51.3717724], [-0.0959717, 51.3717659], [-0.0958597, 51.371766], [-0.095776, 51.3717716], [-0.095729, 51.3717767], [-0.0955005, 51.3718039], [-0.0949421, 51.3718601], [-0.0944753, 51.3719192], [-0.0941454, 51.3719539], [-0.0937781, 51.3719904], [-0.0936269, 51.3720054], [-0.0935881, 51.3720092], [-0.0933897, 51.3720334]]}}, {"type": "Feature", "properties": {"osm_id": "785008", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "name": "Anson Road", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2114507, 53.4538542], [-2.21219, 53.4542592], [-2.2133737, 53.4549077], [-2.2134785, 53.4549651], [-2.2138779, 53.4551839], [-2.2142304, 53.455377], [-2.2144837, 53.4555158], [-2.2163484, 53.4565373], [-2.2174706, 53.4571521], [-2.2175944, 53.4572199], [-2.2183753, 53.4577335]]}}, {"type": "Feature", "properties": {"osm_id": "785009", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "oneway": "yes", "name": "Upper Brook Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2341225, 53.4711603], [-2.2336679, 53.4707244]]}}, {"type": "Feature", "properties": {"osm_id": "835442", "highway": "trunk", "ref": "A6", "maxspeed": "60 mph", "lanes": "2", "maxspeed_type": "gb:national", "sidewalk": "none", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5802991, 52.2860417], [-0.5809085, 52.2892102], [-0.5814651, 52.2918511], [-0.5815334, 52.292136], [-0.5815697, 52.2923235], [-0.582204, 52.2954914], [-0.5829787, 52.2994967]]}}, {"type": "Feature", "properties": {"osm_id": "930354", "highway": "trunk", "ref": "A665", "maxspeed": "30 mph", "oneway": "yes", "name": "Mancunian Way", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2194245, 53.4781688], [-2.2191272, 53.4781372], [-2.2186462, 53.4780724], [-2.2184795, 53.4780322], [-2.2183527, 53.4779825], [-2.2181825, 53.4778976], [-2.2180665, 53.4777413], [-2.2180041, 53.4776065], [-2.2179324, 53.477307], [-2.2178615, 53.4770252], [-2.2178489, 53.4769842]]}}, {"type": "Feature", "properties": {"osm_id": "930356", "highway": "trunk", "ref": "A6042", "maxspeed": "30 mph", "oneway": "yes", "name": "Trinity Way", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2617179, 53.4754398], [-2.2616641, 53.4755121], [-2.2615902, 53.4755845], [-2.2615045, 53.4756756]]}}, {"type": "Feature", "properties": {"osm_id": "930713", "highway": "trunk", "ref": "A56", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2885754, 53.5378654], [-2.288592, 53.5379191], [-2.2886071, 53.5379485], [-2.2886923, 53.5381149], [-2.2887927, 53.5382092], [-2.2890388, 53.5383094]]}}, {"type": "Feature", "properties": {"osm_id": "930715", "highway": "trunk", "ref": "A56", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2900676, 53.5388957], [-2.2901202, 53.5390781], [-2.2900461, 53.5392272], [-2.2899134, 53.5393691]]}}, {"type": "Feature", "properties": {"osm_id": "930978", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2229719, 53.4701653], [-2.2229785, 53.4702007], [-2.2229658, 53.4702399], [-2.2229344, 53.4702737], [-2.2228873, 53.4703002], [-2.2228288, 53.470317], [-2.2227646, 53.4703224], [-2.2227093, 53.4703175], [-2.2226587, 53.4703044], [-2.2226156, 53.470284], [-2.2225828, 53.4702575], [-2.2225626, 53.4702269], [-2.2225571, 53.4702067], [-2.2225602, 53.4701732], [-2.222578, 53.4701414], [-2.2226093, 53.4701136], [-2.2226519, 53.4700916], [-2.2226743, 53.4700854], [-2.2227043, 53.4700769], [-2.2227615, 53.4700712], [-2.2228191, 53.4700749], [-2.2228729, 53.4700879], [-2.2229113, 53.4701048], [-2.2229489, 53.4701325], [-2.2229719, 53.4701653]]}}, {"type": "Feature", "properties": {"osm_id": "933307", "highway": "trunk", "ref": "A20", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "carriageway_ref": "B", "int_ref": "E 15", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2118636, 51.1128258], [1.210017, 51.1129136], [1.2080711, 51.1128925], [1.2068835, 51.1128197], [1.2057324, 51.1127293], [1.20285, 51.1123281], [1.2027569, 51.1123151], [1.2020391, 51.1122259], [1.2010673, 51.1121436], [1.2001224, 51.1120957], [1.1993406, 51.1120636], [1.1983666, 51.1120512], [1.1966933, 51.1121232], [1.1934363, 51.1124018]]}}, {"type": "Feature", "properties": {"osm_id": "933310", "highway": "trunk", "ref": "A20", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 15", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.1695668, 51.1027059], [1.1703719, 51.1035075], [1.1711711, 51.1043048], [1.1720777, 51.1052114], [1.1725419, 51.1056679], [1.173064, 51.1061471], [1.1734785, 51.1064883], [1.1738656, 51.1067851], [1.1742515, 51.1070598], [1.1746649, 51.1073431], [1.1752874, 51.1077079], [1.1757607, 51.1079623], [1.1760595, 51.1081173]]}}, {"type": "Feature", "properties": {"osm_id": "933312", "highway": "trunk", "ref": "A20", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Archcliffe Road", "operator": "Highways England", "highways_england_area": "4", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3034832, 51.1146337], [1.3036581, 51.1145842], [1.3038032, 51.1145567], [1.3038906, 51.1145508], [1.3040177, 51.1145489], [1.3041435, 51.1145672], [1.3046217, 51.1146729], [1.304923, 51.1147642], [1.305319, 51.1149176], [1.3054729, 51.1149941], [1.3056428, 51.1150786], [1.3059438, 51.1152741], [1.3061669, 51.1154452], [1.3063771, 51.1156502], [1.3064817, 51.1157647], [1.3065532, 51.1158429], [1.3066919, 51.1160277], [1.3068208, 51.1162413], [1.3069656, 51.1165417], [1.3071305, 51.1169475], [1.3071544, 51.1171034], [1.3071438, 51.1172231]]}}, {"type": "Feature", "properties": {"osm_id": "933318", "highway": "trunk", "ref": "A20", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Limekiln Street", "operator": "Highways England", "highways_england_area": "4", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3072186, 51.1176279], [1.307323, 51.1177522], [1.3074022, 51.1178558], [1.3075095, 51.1180431], [1.30767, 51.1183043], [1.3077088, 51.1183756], [1.3078976, 51.118626]]}}, {"type": "Feature", "properties": {"osm_id": "933767", "highway": "trunk", "ref": "A20", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Snargate Street", "operator": "Highways England", "highways_england_area": "4", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3092331, 51.120181], [1.309314, 51.1202464], [1.3095952, 51.1204637], [1.3097772, 51.1206256], [1.3098013, 51.1206471], [1.3104179, 51.1211956], [1.3105038, 51.121272], [1.3109112, 51.1216729], [1.3114196, 51.1221732], [1.3116525, 51.1223855], [1.311818, 51.1225131], [1.3120188, 51.1226789], [1.3121558, 51.1227692], [1.3122808, 51.1228416], [1.3125101, 51.122962], [1.3127063, 51.1230651], [1.3128088, 51.1231141], [1.3129798, 51.123208], [1.3132772, 51.1233422]]}}, {"type": "Feature", "properties": {"osm_id": "933769", "highway": "trunk", "ref": "A20", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Townwall Street", "operator": "Highways England", "highways_england_area": "4", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3134425, 51.1234076], [1.3137856, 51.1235318], [1.3142335, 51.1236642], [1.3145845, 51.1237731], [1.3147847, 51.1238399], [1.3148759, 51.1238686]]}}, {"type": "Feature", "properties": {"osm_id": "933770", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Eastern Docks Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3270893, 51.126134], [1.327036, 51.1261524], [1.3269923, 51.1261789], [1.3269613, 51.1262116], [1.326945, 51.1262484], [1.3269442, 51.1262841], [1.3269575, 51.1263189], [1.3269892, 51.126355], [1.327036, 51.126384], [1.3270939, 51.1264034], [1.3271227, 51.1264087], [1.327192, 51.1264115], [1.3272595, 51.1264012], [1.327319, 51.1263787], [1.3273649, 51.126346], [1.3273932, 51.1263063], [1.3274014, 51.1262704], [1.327395, 51.1262344], [1.3273676, 51.1261929], [1.3273212, 51.1261588], [1.3272603, 51.1261353], [1.3271908, 51.1261247], [1.3271484, 51.126125], [1.3270893, 51.126134]]}}, {"type": "Feature", "properties": {"osm_id": "933771", "highway": "trunk", "ref": "A2", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Jubilee Way", "operator": "Highways England", "highways_england_area": "4", "foot": "no", "lanes_forward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.3283164, 51.1256556], [1.328552, 51.1256571], [1.3287482, 51.1256743]]}}, {"type": "Feature", "properties": {"osm_id": "933774", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2895858, 51.1547497], [1.2897292, 51.1547545], [1.2897716, 51.1547482], [1.2898664, 51.1547341], [1.2899892, 51.1546907], [1.290088, 51.1546276], [1.2901548, 51.1545497], [1.2901855, 51.1544517], [1.2901602, 51.1543414], [1.2900752, 51.1542435], [1.2899412, 51.1541704], [1.2898131, 51.1541364], [1.289643, 51.1541268], [1.2894777, 51.1541534], [1.2893361, 51.1542133], [1.2892347, 51.1542995], [1.289192, 51.1543764], [1.2891816, 51.154449], [1.289198, 51.1545212], [1.2892405, 51.154589], [1.2892825, 51.1546303], [1.2893341, 51.154667], [1.2894504, 51.1547197], [1.2895858, 51.1547497]]}}, {"type": "Feature", "properties": {"osm_id": "933776", "highway": "trunk", "ref": "A2", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2813283, 51.1565931], [1.2851608, 51.1553353], [1.2858669, 51.1551253], [1.2865683, 51.1549476], [1.2869101, 51.1548712]]}}, {"type": "Feature", "properties": {"osm_id": "934408", "highway": "trunk", "ref": "A2", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "surface": "asphalt", "layer": "1", "bridge": "yes", "carriageway_ref": "B", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[1.132153, 51.2473689], [1.1317503, 51.2477978], [1.1315897, 51.2479544], [1.1314824, 51.248054]]}}, {"type": "Feature", "properties": {"osm_id": "934409", "highway": "trunk", "ref": "A2", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "surface": "asphalt", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.0690275, 51.2649846], [1.0706068, 51.2638169], [1.0718573, 51.2628657], [1.0738917, 51.2612545], [1.0746749, 51.2605949], [1.0754355, 51.2599786], [1.0759317, 51.2595495], [1.0765039, 51.2590557], [1.0771696, 51.2585178], [1.0775263, 51.2582416], [1.0779777, 51.2579116], [1.0785434, 51.2575187], [1.0789865, 51.2572451], [1.079665, 51.2568654], [1.0803263, 51.2565258], [1.0809099, 51.2562735], [1.0815903, 51.2559822], [1.0821221, 51.25578], [1.0828211, 51.2555336], [1.0836231, 51.255291], [1.0843953, 51.2550848], [1.084882, 51.2549689], [1.0851834, 51.2549062], [1.0856872, 51.2547984], [1.0866313, 51.254635], [1.0877503, 51.2544867], [1.0888635, 51.2543909], [1.0897878, 51.2543528], [1.0905814, 51.2543319], [1.0914851, 51.2543427], [1.0920405, 51.2543615], [1.0922641, 51.254372], [1.0932138, 51.2544452], [1.0939515, 51.2545219], [1.095397, 51.2547008], [1.097265, 51.2549665], [1.0982375, 51.255095], [1.0989545, 51.2551739], [1.1000315, 51.2552835], [1.1011057, 51.255379], [1.1018693, 51.2554337], [1.1025469, 51.2554771], [1.1033578, 51.2555162], [1.1041682, 51.2555533], [1.1054811, 51.2555827], [1.1068934, 51.2555986], [1.1081414, 51.2555867], [1.1092415, 51.2555646], [1.1100645, 51.2555398], [1.1109927, 51.2554958], [1.1119912, 51.255437], [1.1129005, 51.2553805], [1.113925, 51.2552886], [1.1150156, 51.2551818]]}}, {"type": "Feature", "properties": {"osm_id": "945698", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "turn_lanes": "left|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5126797, 52.1435476], [-0.5125621, 52.1435563], [-0.5124634, 52.1435788], [-0.5123593, 52.1436273]]}}, {"type": "Feature", "properties": {"osm_id": "945699", "highway": "trunk", "ref": "A428", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5257626, 52.1423503], [-0.5268315, 52.142213]]}}, {"type": "Feature", "properties": {"osm_id": "951326", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1448211, 51.2222124], [-1.1467389, 51.2217275], [-1.1488743, 51.2211982], [-1.1516095, 51.2205028], [-1.1532145, 51.2200974], [-1.1556714, 51.2194699], [-1.1572274, 51.2190487], [-1.1584838, 51.2186685], [-1.1596144, 51.2183006], [-1.1613652, 51.2176903], [-1.1629345, 51.217111], [-1.1646484, 51.2164065], [-1.1654215, 51.2160583], [-1.1669376, 51.2153639], [-1.168378, 51.214622], [-1.1693678, 51.2140597], [-1.1710867, 51.2130809]]}}, {"type": "Feature", "properties": {"osm_id": "951327", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1712255, 51.2132259], [-1.1695842, 51.2141483], [-1.1670045, 51.2155023], [-1.1650734, 51.216397], [-1.1637158, 51.2169519], [-1.1623197, 51.2174966], [-1.159743, 51.218408], [-1.1579848, 51.2189687], [-1.1555152, 51.2196512], [-1.1532825, 51.2202155], [-1.1515686, 51.2206431], [-1.1498064, 51.2210961], [-1.1448681, 51.2223447]]}}, {"type": "Feature", "properties": {"osm_id": "952646", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1715498, 51.2128125], [-1.1719307, 51.2125834], [-1.1722834, 51.2123883]]}}, {"type": "Feature", "properties": {"osm_id": "952648", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2510473, 51.1239787], [-1.2506067, 51.1249817], [-1.2503438, 51.1256329], [-1.2500455, 51.1263677], [-1.2497929, 51.1270567], [-1.2495324, 51.1277889], [-1.2492551, 51.1285895], [-1.2491135, 51.1290632], [-1.2489303, 51.1297208], [-1.2481884, 51.1323266], [-1.247829, 51.1335813], [-1.24734, 51.1350655], [-1.2457597, 51.1394207], [-1.2445233, 51.1424533], [-1.2438893, 51.1439188], [-1.2420878, 51.1475503], [-1.2416605, 51.1483999], [-1.2411384, 51.1494294], [-1.2401808, 51.1511876], [-1.2393755, 51.152589], [-1.2385027, 51.1540345], [-1.2374663, 51.1556744], [-1.2370772, 51.1562797], [-1.2360624, 51.1578085], [-1.2355968, 51.1584919], [-1.2338222, 51.1609898], [-1.2325049, 51.162764], [-1.2320655, 51.1633555], [-1.2301855, 51.1657655], [-1.2296293, 51.1664482], [-1.2278215, 51.1686165], [-1.2262851, 51.1703821], [-1.2252691, 51.1714968], [-1.224699, 51.1721026], [-1.2241599, 51.1726672], [-1.2230026, 51.1738941], [-1.222407, 51.1745288], [-1.2208326, 51.1761128], [-1.2199059, 51.1770381], [-1.2180828, 51.1789043], [-1.2172517, 51.1797246], [-1.2160645, 51.1809275], [-1.2152964, 51.1817153], [-1.2141391, 51.1828926], [-1.2130114, 51.1840261], [-1.2120422, 51.1850867], [-1.2114703, 51.1856965], [-1.2110144, 51.1862212], [-1.2095231, 51.1879739], [-1.2081172, 51.1895988], [-1.2073344, 51.190389], [-1.2062883, 51.1913875], [-1.2055987, 51.1920044], [-1.2047946, 51.192633], [-1.2042933, 51.1930313], [-1.2035854, 51.1935642], [-1.2029889, 51.1939723], [-1.2024259, 51.1943578], [-1.2017071, 51.1948355], [-1.2011331, 51.195204], [-1.2001648, 51.1957499], [-1.1987594, 51.1965397], [-1.1973592, 51.1972857], [-1.1963454, 51.1978187]]}}, {"type": "Feature", "properties": {"osm_id": "952742", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.196303, 51.1977139], [-1.1988538, 51.1963506], [-1.2007867, 51.1952835], [-1.2022135, 51.1943846], [-1.2029012, 51.1939089], [-1.2036815, 51.1933367], [-1.2045077, 51.1927196], [-1.2049644, 51.1923337], [-1.2054788, 51.1919225], [-1.2059841, 51.1914614], [-1.2067232, 51.1908163], [-1.2074147, 51.1901425], [-1.2080814, 51.189425], [-1.2095201, 51.1877265], [-1.2117541, 51.1851245], [-1.2138943, 51.182854], [-1.215727, 51.1810192], [-1.2191129, 51.1776301], [-1.220576, 51.1760926], [-1.2225969, 51.1740361], [-1.2229275, 51.1737199], [-1.2249908, 51.1714778], [-1.2260528, 51.1703237], [-1.2276809, 51.1685455], [-1.22826, 51.167869], [-1.2286703, 51.1673972], [-1.2292326, 51.1667188], [-1.2297775, 51.1660245], [-1.2304348, 51.1651952], [-1.2310098, 51.1644353], [-1.2315167, 51.1637519], [-1.2321233, 51.1629573], [-1.2326492, 51.1622451], [-1.2332954, 51.16136], [-1.2338799, 51.1605454], [-1.2345294, 51.1596623], [-1.2351249, 51.1588398], [-1.2356698, 51.1580431], [-1.2362305, 51.1572185], [-1.2367184, 51.1564873], [-1.237257, 51.155621], [-1.2377432, 51.1548292], [-1.2383404, 51.1538675], [-1.2388441, 51.1530608], [-1.2392939, 51.1523027], [-1.2397628, 51.1515168], [-1.2402554, 51.1506305], [-1.2406783, 51.1498267], [-1.2410997, 51.1490159], [-1.2414988, 51.1482498], [-1.2419312, 51.1473973], [-1.2423969, 51.1464821], [-1.2428341, 51.1456007], [-1.2432491, 51.1447601], [-1.2434946, 51.1442682], [-1.2438288, 51.1435626], [-1.2441219, 51.1429117], [-1.244369, 51.1423423], [-1.2447111, 51.1415393], [-1.2449867, 51.1408815], [-1.2452101, 51.1403259], [-1.2454841, 51.1396501], [-1.2457549, 51.1389594], [-1.2460876, 51.1380918], [-1.2463854, 51.1372579], [-1.2466451, 51.1365453], [-1.2469429, 51.1357184], [-1.2471742, 51.1350356], [-1.2474339, 51.1342474], [-1.2476517, 51.1334994], [-1.2478981, 51.1327585], [-1.2481008, 51.1320676], [-1.248275, 51.1314265], [-1.2485079, 51.1306005], [-1.2487376, 51.1298003], [-1.2489509, 51.1290727], [-1.2490987, 51.128573], [-1.249364, 51.1277918], [-1.2496185, 51.1270457], [-1.2498597, 51.1263626], [-1.2501308, 51.1256717], [-1.2504181, 51.1249945], [-1.2507362, 51.124292], [-1.2508851, 51.1239447]]}}, {"type": "Feature", "properties": {"osm_id": "952822", "highway": "motorway", "ref": "M3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1448681, 51.2223447], [-1.141462, 51.2232029], [-1.1395705, 51.2237395], [-1.1386108, 51.2240431], [-1.1366635, 51.2246808], [-1.1342817, 51.2255681], [-1.1326188, 51.226265], [-1.1300414, 51.2274607], [-1.1285263, 51.2282028], [-1.1252271, 51.229911], [-1.1244422, 51.2303082], [-1.1228874, 51.2310951], [-1.1194224, 51.2328171], [-1.1168424, 51.2341254], [-1.1147986, 51.2351687], [-1.1113758, 51.2368767], [-1.1094811, 51.2377917]]}}, {"type": "Feature", "properties": {"osm_id": "987534", "highway": "trunk", "ref": "A423", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Southern By-pass Road", "source_maxspeed": "GB:nsl_dual", "source_name": "OS_OpenData_Locator", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2582709, 51.7284696], [-1.2579051, 51.7284159], [-1.2570229, 51.7282806]]}}, {"type": "Feature", "properties": {"osm_id": "987536", "highway": "trunk", "ref": "A423", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Southern By-pass Road", "operator": "Oxfordshire County Council", "source_maxspeed": "GB:nsl_dual", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2482511, 51.7278026], [-1.248734, 51.7278628], [-1.2489892, 51.7278584]]}}, {"type": "Feature", "properties": {"osm_id": "1024258", "highway": "trunk", "ref": "A33", "maxspeed": "50 mph", "lanes": "2", "lit": "no", "surface": "asphalt", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.0319043, 51.3069472], [-1.0305214, 51.3073635], [-1.0298292, 51.3075811], [-1.0293807, 51.3077366], [-1.0290507, 51.3078614], [-1.0288062, 51.307954], [-1.0281422, 51.308289], [-1.0273053, 51.3088809], [-1.0268436, 51.3093153], [-1.026194, 51.3101585], [-1.0259451, 51.3105206]]}}, {"type": "Feature", "properties": {"osm_id": "1056074", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "DBFO5", "bicycle": "no", "source_maxspeed": "HA publicity", "carriageway_ref": "A", "foot": "no", "horse": "no", "source_ref": "local_knowledgge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.4910527, 51.3535593], [-0.4920655, 51.3545885], [-0.494754, 51.3575372], [-0.4984932, 51.3614046]]}}, {"type": "Feature", "properties": {"osm_id": "1095741", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4742392, 52.1067315], [-0.4735152, 52.1060923], [-0.471764, 52.1046901], [-0.4698613, 52.1032906], [-0.4697059, 52.1032133], [-0.4693716, 52.1031425]]}}, {"type": "Feature", "properties": {"osm_id": "1095897", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4205285, 51.8838226], [-0.4204059, 51.8838671], [-0.4202863, 51.8838807], [-0.4201124, 51.8838571]]}}, {"type": "Feature", "properties": {"osm_id": "1095931", "highway": "trunk", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Telford Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4205373, 51.8833697], [-0.4206616, 51.8833865], [-0.4207581, 51.8833856], [-0.4208501, 51.8833687], [-0.4211625, 51.8831964], [-0.421462, 51.8830445], [-0.4215116, 51.8830189], [-0.4216163, 51.8829629], [-0.4232362, 51.8821291]]}}, {"type": "Feature", "properties": {"osm_id": "1096017", "highway": "trunk", "ref": "A505", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4156501, 51.8764552], [-0.415799, 51.8765245], [-0.4158851, 51.8765536]]}}, {"type": "Feature", "properties": {"osm_id": "1096107", "highway": "trunk", "ref": "A505", "maxspeed": "30 mph", "lit": "yes", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4153693, 51.8762911], [-0.4154783, 51.876314], [-0.4155646, 51.8763485], [-0.4156053, 51.8763897], [-0.4156501, 51.8764552], [-0.4156422, 51.8765205], [-0.4156178, 51.8765737], [-0.4155539, 51.8766378], [-0.4152446, 51.8767391], [-0.4151886, 51.8767605], [-0.4150567, 51.8767683], [-0.4149221, 51.8767556]]}}, {"type": "Feature", "properties": {"osm_id": "1096225", "highway": "trunk", "ref": "A1081", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Airport Way", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "survey", "description": "A1081 Spur Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4229577, 51.8546736], [-0.4227602, 51.8546329], [-0.4226085, 51.8546005], [-0.422427, 51.8545765], [-0.4222063, 51.854565], [-0.4220175, 51.8545737], [-0.421813, 51.8546063], [-0.4216202, 51.8546486], [-0.4215129, 51.8546784], [-0.4214072, 51.8547193], [-0.4211481, 51.8548288], [-0.4207762, 51.855025], [-0.4205292, 51.8551694], [-0.4203854, 51.8552836]]}}, {"type": "Feature", "properties": {"osm_id": "1096226", "highway": "trunk", "ref": "A1081", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Airport Way", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "Stats19", "turn_lanes": "slight_left|through|through", "description": "A1081 Spur Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.419048, 51.856211], [-0.4200111, 51.8553668], [-0.4204265, 51.8550497], [-0.4207668, 51.8547774]]}}, {"type": "Feature", "properties": {"osm_id": "1209733", "highway": "trunk", "ref": "A4440", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1847107, 52.1725058], [-2.1844087, 52.1729307], [-2.1843534, 52.173143], [-2.1842871, 52.1734385], [-2.1842868, 52.1735645], [-2.1843495, 52.1739499], [-2.1846075, 52.174684], [-2.1849539, 52.1753789], [-2.1851151, 52.1756535], [-2.1854942, 52.1761637], [-2.1856948, 52.1764337], [-2.1859704, 52.1768053], [-2.1861646, 52.1769869], [-2.1863779, 52.1770787]]}}, {"type": "Feature", "properties": {"osm_id": "1209734", "highway": "trunk", "ref": "A4440", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1860085, 52.1772206], [-2.18596, 52.1770871], [-2.1858764, 52.1769444], [-2.1855198, 52.1764924], [-2.1849231, 52.1757147], [-2.1847055, 52.1753602], [-2.1844195, 52.1747586], [-2.184184, 52.1740288], [-2.1841366, 52.1737421], [-2.1841369, 52.1735422], [-2.1841712, 52.1732557], [-2.1842557, 52.1729614], [-2.1843091, 52.1728371], [-2.1844231, 52.1726362], [-2.1844364, 52.172477]]}}, {"type": "Feature", "properties": {"osm_id": "1209736", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1866959, 52.1771144], [-2.1868547, 52.1771835], [-2.1869714, 52.1772901], [-2.1870155, 52.1774064], [-2.1870055, 52.1774923], [-2.1868924, 52.1776407], [-2.1867458, 52.1777192], [-2.1865389, 52.177765], [-2.186335, 52.1777608], [-2.1861344, 52.1777067], [-2.1859967, 52.1776224], [-2.185908, 52.1775078], [-2.1858952, 52.177426], [-2.1859207, 52.1773225], [-2.1860085, 52.1772206], [-2.1862226, 52.1771125], [-2.1863779, 52.1770787], [-2.1865186, 52.1770835], [-2.1866959, 52.1771144]]}}, {"type": "Feature", "properties": {"osm_id": "1209739", "highway": "trunk", "ref": "A4440", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Swinesherd Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1861344, 52.1777067], [-2.185934, 52.1777387], [-2.1857197, 52.1777986], [-2.1852795, 52.1779884]]}}, {"type": "Feature", "properties": {"osm_id": "1209740", "highway": "trunk", "ref": "A4440", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Swinesherd Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1751995, 52.1857367], [-2.17537, 52.1856406], [-2.1755531, 52.1855139], [-2.1757447, 52.1853584], [-2.1759656, 52.1851053]]}}, {"type": "Feature", "properties": {"osm_id": "1209741", "highway": "trunk", "lanes": "3", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1753077, 52.1863292], [-2.1751007, 52.1863497], [-2.1748689, 52.1863069], [-2.1747463, 52.1862443]]}}, {"type": "Feature", "properties": {"osm_id": "1209742", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.158469, 52.184884], [-2.1592865, 52.1851868], [-2.1600896, 52.1854581], [-2.1604084, 52.1855353]]}}, {"type": "Feature", "properties": {"osm_id": "1258272", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "name": "Oxford Street", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3533167, 51.8469389], [-1.3531691, 51.8468468], [-1.3527951, 51.8466475], [-1.3527006, 51.8466009], [-1.3524641, 51.846498], [-1.35239, 51.8464686]]}}, {"type": "Feature", "properties": {"osm_id": "1258273", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "name": "The Causeway", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3612066, 51.8528173], [-1.3609432, 51.8521508], [-1.3607811, 51.8516768], [-1.3606699, 51.8513542], [-1.3605976, 51.8510727], [-1.3605924, 51.8510526], [-1.3605116, 51.8508889], [-1.3604225, 51.8507391], [-1.360311, 51.850612], [-1.3599722, 51.8502947], [-1.3596796, 51.8500467], [-1.3596442, 51.8500102], [-1.3595482, 51.8499111], [-1.3594464, 51.8497552], [-1.3592088, 51.8493825]]}}, {"type": "Feature", "properties": {"osm_id": "1258397", "highway": "trunk", "ref": "A44", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Woodstock Road", "foot": "no", "source_name": "OSL", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3355456, 51.8377661], [-1.3354073, 51.837661], [-1.3352685, 51.837581], [-1.3318125, 51.8357998], [-1.3292335, 51.8345384], [-1.3284034, 51.8341257], [-1.3277796, 51.8337901], [-1.3272868, 51.83349], [-1.3266516, 51.8330411], [-1.326027, 51.8325172], [-1.3246393, 51.8309804], [-1.3233186, 51.8294058]]}}, {"type": "Feature", "properties": {"osm_id": "1258519", "highway": "trunk", "ref": "A44", "bicycle": "yes", "sidewalk": "separate", "junction": "roundabout", "foot": "no", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3188579, 51.8216215], [-1.3188821, 51.8216284], [-1.3189425, 51.8216654], [-1.3189849, 51.8217315], [-1.318982, 51.8217841], [-1.3189502, 51.8218328]]}}, {"type": "Feature", "properties": {"osm_id": "1258567", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Woodstock Road", "bicycle": "yes", "sidewalk": "separate", "foot": "no", "source_name": "OSL", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3135414, 51.8138352], [-1.3136257, 51.8139414], [-1.3136494, 51.8140243], [-1.3137352, 51.8141215], [-1.3138252, 51.8142], [-1.3144759, 51.8147066], [-1.3151403, 51.8152267], [-1.3156748, 51.8157029], [-1.3159197, 51.8159459], [-1.3162532, 51.8162907], [-1.3164651, 51.816537], [-1.3166679, 51.8167898], [-1.316819, 51.8169976], [-1.3168581, 51.8170513], [-1.316928, 51.8171492], [-1.3171374, 51.8174462], [-1.3173621, 51.8178359], [-1.3176541, 51.8183791], [-1.3178212, 51.8187217], [-1.3179657, 51.8190506], [-1.3180199, 51.8191788]]}}, {"type": "Feature", "properties": {"osm_id": "1259103", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodstock Road", "bicycle": "yes", "sidewalk": "separate", "foot": "no", "source_name": "OSL", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3012784, 51.8068031], [-1.3014064, 51.8068972], [-1.301523, 51.8069954], [-1.3018327, 51.8072384], [-1.302087, 51.8074244], [-1.3023457, 51.8076006], [-1.3028141, 51.8078806], [-1.3037077, 51.8083914], [-1.3052391, 51.8093054], [-1.30558, 51.8094925], [-1.3059605, 51.8096892], [-1.3067204, 51.8100627], [-1.3075209, 51.8104229], [-1.3091185, 51.8111735], [-1.3097436, 51.8115036], [-1.3103439, 51.8118412], [-1.3106817, 51.8120494]]}}, {"type": "Feature", "properties": {"osm_id": "1259190", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Woodstock Road", "bicycle": "yes", "foot": "no", "source_name": "OSL", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3096269, 51.811631], [-1.3091718, 51.8113862], [-1.3081512, 51.810904], [-1.3072048, 51.8104589], [-1.3065164, 51.8101375], [-1.3058233, 51.8098068], [-1.3054785, 51.8096412], [-1.3050949, 51.8094346], [-1.3047091, 51.8092074], [-1.304293, 51.8089651], [-1.3031481, 51.8082639], [-1.302626, 51.8079368], [-1.3021661, 51.8076501], [-1.3017934, 51.807378], [-1.301541, 51.807169], [-1.3013883, 51.8070566], [-1.3011331, 51.8069609]]}}, {"type": "Feature", "properties": {"osm_id": "1259192", "highway": "trunk", "ref": "A44", "lanes": "2", "oneway": "yes", "lit": "yes", "bicycle": "yes", "sidewalk": "separate", "junction": "roundabout", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3011331, 51.8069609], [-1.3010802, 51.8069656], [-1.3010353, 51.806963], [-1.300988, 51.8069532], [-1.3009454, 51.8069366], [-1.3009091, 51.8069129], [-1.3008842, 51.8068853], [-1.3008689, 51.8068327], [-1.3008735, 51.8068095], [-1.3009001, 51.8067688]]}}, {"type": "Feature", "properties": {"osm_id": "1259579", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "3", "lit": "yes", "name": "Woodstock Road", "bicycle": "yes", "sidewalk": "separate", "foot": "yes", "source_name": "OSL", "lanes_backward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3009001, 51.8067688], [-1.300722, 51.8066518], [-1.3004116, 51.8064606]]}}, {"type": "Feature", "properties": {"osm_id": "1260553", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Western By-pass Road", "operator": "Highways England", "highways_england_area": "3", "bicycle": "yes", "foot": "no", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3031176, 51.7810827], [-1.3029923, 51.7812832], [-1.3026521, 51.781794], [-1.3022486, 51.7823531], [-1.3019278, 51.782745], [-1.3014532, 51.7832911], [-1.3011377, 51.7836271], [-1.3007244, 51.7840314], [-1.3004967, 51.7842428], [-1.3002419, 51.7844794], [-1.2993342, 51.7852323], [-1.2987883, 51.7856638], [-1.2981461, 51.7861135], [-1.2975546, 51.7865009], [-1.2970108, 51.7868321], [-1.2964435, 51.7871603]]}}, {"type": "Feature", "properties": {"osm_id": "1260554", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "GB:nsl_dual", "foot": "no", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.263684, 51.8206606], [-1.2638747, 51.818896], [-1.264226, 51.8174937], [-1.264909, 51.8156798], [-1.2657966, 51.8141874], [-1.2668036, 51.8128213], [-1.2688756, 51.8105365], [-1.2702169, 51.8091188], [-1.272225, 51.8070345], [-1.2746343, 51.8047614], [-1.2777527, 51.8019563], [-1.2799146, 51.800155], [-1.2812409, 51.7990841], [-1.2819468, 51.7985143], [-1.2823729, 51.7981308]]}}, {"type": "Feature", "properties": {"osm_id": "1260579", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "name": "Northern By-pass Road", "bicycle": "yes", "source_maxspeed": "UK:nsl_single", "foot": "yes", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.316602, 51.7928039], [-1.3131205, 51.792965], [-1.3096516, 51.7930608], [-1.3081667, 51.7930819], [-1.3066137, 51.7930961], [-1.3056133, 51.7930573], [-1.304781, 51.7929919], [-1.3038412, 51.7928841], [-1.3021014, 51.7926148], [-1.2987567, 51.7920628], [-1.2982656, 51.7919805], [-1.296729, 51.7917349]]}}, {"type": "Feature", "properties": {"osm_id": "1287870", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3612066, 51.8528173], [-1.3614802, 51.8536261]]}}, {"type": "Feature", "properties": {"osm_id": "1287885", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3807142, 51.8708131], [-1.3802296, 51.8705042], [-1.379562, 51.8700929], [-1.3787625, 51.8696132], [-1.3783492, 51.8693718]]}}, {"type": "Feature", "properties": {"osm_id": "1303753", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "GB:nsl_dual", "foot": "no", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2825736, 51.7981835], [-1.2814692, 51.7990881], [-1.2800357, 51.8002472], [-1.2779415, 51.8020094], [-1.2748189, 51.8048159], [-1.2724387, 51.8070821], [-1.2700999, 51.8094611], [-1.2690332, 51.810586], [-1.2669955, 51.8128909], [-1.2659201, 51.8142858], [-1.2650807, 51.8157116], [-1.264326, 51.8175774], [-1.2640178, 51.818988], [-1.2638521, 51.8206826]]}}, {"type": "Feature", "properties": {"osm_id": "1303754", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "yes", "source_maxspeed": "GB:nsl_dual", "foot": "no", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2458746, 51.8380841], [-1.247983, 51.8365947], [-1.2487936, 51.8360329], [-1.2496494, 51.835427], [-1.2516691, 51.8339592], [-1.252546, 51.8333365], [-1.2549027, 51.8316391], [-1.2580028, 51.8293948]]}}, {"type": "Feature", "properties": {"osm_id": "1341096", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "name": "Kingston Roundabout", "maxspeed_type": "gb:national", "junction": "roundabout", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6789036, 52.0330149], [-0.6789028, 52.0331205], [-0.6788349, 52.0332367], [-0.6788199, 52.0332538], [-0.6786884, 52.0333424], [-0.6785353, 52.0333936], [-0.678391, 52.0334131], [-0.6782276, 52.0334047], [-0.6780966, 52.033376], [-0.6779628, 52.0333173], [-0.6778746, 52.0332609]]}}, {"type": "Feature", "properties": {"osm_id": "1341338", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "name": "Walnut Tree Roundabout", "maxspeed_type": "gb:national", "junction": "roundabout", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.69009, 52.0264181], [-0.6899993, 52.0264106], [-0.6898765, 52.0263738], [-0.6898069, 52.0263314], [-0.6897457, 52.0262553], [-0.6897333, 52.0261896], [-0.6897546, 52.0261219], [-0.6897848, 52.026083], [-0.6898756, 52.026021], [-0.6900012, 52.0259836], [-0.6901376, 52.0259782], [-0.6902337, 52.0259943], [-0.6903243, 52.0260289], [-0.6904277, 52.0261191], [-0.6904507, 52.026204], [-0.6904183, 52.0262892], [-0.6903374, 52.0263584], [-0.6902335, 52.0264002], [-0.69009, 52.0264181]]}}, {"type": "Feature", "properties": {"osm_id": "1341344", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6789036, 52.0330149], [-0.6789765, 52.0330527], [-0.6790447, 52.033085], [-0.679102, 52.0331065], [-0.6791798, 52.0331297], [-0.6792594, 52.0331416]]}}, {"type": "Feature", "properties": {"osm_id": "1341345", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6910143, 52.0340856], [-0.6905733, 52.0339419], [-0.6902072, 52.0338781], [-0.6896008, 52.0338519], [-0.6882744, 52.0338202], [-0.6875858, 52.0337982], [-0.6863344, 52.0337199]]}}, {"type": "Feature", "properties": {"osm_id": "1341346", "highway": "trunk", "ref": "A4146", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "V11 Tongwell Street", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6904183, 52.0262892], [-0.6904032, 52.0264092], [-0.6903818, 52.0265544], [-0.6904381, 52.0267178]]}}, {"type": "Feature", "properties": {"osm_id": "1341348", "highway": "trunk", "ref": "A4146", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "V11 Tongwell Street", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6912126, 52.03335], [-0.691491, 52.0330155], [-0.6915831, 52.0319547], [-0.6914924, 52.0309736]]}}, {"type": "Feature", "properties": {"osm_id": "1341351", "highway": "trunk", "ref": "A4146", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "V11 Tongwell Street", "maxspeed_type": "gb:national", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7070546, 52.0485816], [-0.707024, 52.0485289], [-0.7069806, 52.0484772], [-0.7069396, 52.0484407], [-0.7068783, 52.0484005], [-0.7067786, 52.0483445], [-0.7064046, 52.0481574], [-0.7061763, 52.0480488], [-0.7059402, 52.0479402], [-0.7054097, 52.0476883], [-0.7049661, 52.0475121], [-0.7045303, 52.0473634], [-0.7042157, 52.0472678], [-0.7040145, 52.0472129], [-0.7037843, 52.0471519], [-0.7025925, 52.0468751], [-0.7021522, 52.0467645], [-0.7018243, 52.0466764], [-0.7015612, 52.0465963], [-0.7012625, 52.0465002], [-0.7010316, 52.0464207], [-0.700664, 52.0462826], [-0.7001168, 52.0460733], [-0.6998632, 52.0459693], [-0.6995268, 52.0458169], [-0.6992086, 52.0456672], [-0.6989085, 52.0455193], [-0.6985598, 52.0453291], [-0.6982395, 52.0451401], [-0.6978938, 52.0449197], [-0.6974827, 52.0446377]]}}, {"type": "Feature", "properties": {"osm_id": "1341352", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Monkston Roundabout", "maxspeed_type": "gb:national", "junction": "roundabout", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6934031, 52.0404405], [-0.6933839, 52.0403805], [-0.6933696, 52.0403167], [-0.6933851, 52.0402517], [-0.6934299, 52.0401636], [-0.6936688, 52.0400769], [-0.6938282, 52.0400518], [-0.6939234, 52.0400494], [-0.6940886, 52.0400691], [-0.6942011, 52.0401076], [-0.6943112, 52.0401774], [-0.6943618, 52.0402342], [-0.6943923, 52.0402988], [-0.6943942, 52.0403947], [-0.6943667, 52.040466], [-0.6943172, 52.0405179], [-0.6942467, 52.0405695], [-0.6941611, 52.0406096], [-0.6940603, 52.0406379], [-0.693951, 52.0406517], [-0.6937411, 52.0406475], [-0.6936625, 52.0406294], [-0.6935572, 52.0405902], [-0.6934691, 52.0405204], [-0.6934031, 52.0404405]]}}, {"type": "Feature", "properties": {"osm_id": "1341354", "highway": "trunk", "ref": "A509", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Portway", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "turn_lanes": "through|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6998805, 52.0580091], [-0.6999479, 52.0579092], [-0.6999881, 52.0578539], [-0.7000218, 52.0577989], [-0.7000364, 52.0577674], [-0.7000404, 52.0577286], [-0.7000407, 52.0577047]]}}, {"type": "Feature", "properties": {"osm_id": "1341603", "highway": "trunk", "ref": "A509", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "source_ref": "OS OpenData StreetView", "turn_lanes": "left;through|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7067126, 52.0772791], [-0.7065448, 52.0772934], [-0.7064804, 52.0772992], [-0.7064228, 52.0773084], [-0.7062712, 52.0773404], [-0.7061156, 52.0773808], [-0.7059493, 52.0774253], [-0.7058114, 52.0774656], [-0.7057388, 52.0774978], [-0.7056865, 52.0775291], [-0.7056436, 52.0775662], [-0.70556, 52.0776417]]}}, {"type": "Feature", "properties": {"osm_id": "1341605", "highway": "trunk", "ref": "A509", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "source_ref": "OS OpenData StreetView", "turn_lanes": "left|through|through;right", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7053534, 52.077395], [-0.7054464, 52.0773927], [-0.7054846, 52.0773894], [-0.7055269, 52.0773836], [-0.7055805, 52.0773709], [-0.7056417, 52.0773559], [-0.7057843, 52.0773094], [-0.7059212, 52.0772674], [-0.7060794, 52.0772155], [-0.7062308, 52.0771647], [-0.7063276, 52.0771331], [-0.7064105, 52.0771024], [-0.7065447, 52.0770556]]}}, {"type": "Feature", "properties": {"osm_id": "1341606", "highway": "trunk", "ref": "A509", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "name": "Tickford Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7072298, 52.0771471], [-0.7072176, 52.0771704], [-0.7072091, 52.0771832], [-0.7071711, 52.0772218], [-0.707134, 52.0772477], [-0.7070907, 52.0772695], [-0.7070422, 52.0772869], [-0.7069899, 52.0772993], [-0.706935, 52.0773064], [-0.706879, 52.077308], [-0.7068419, 52.0773066], [-0.7068171, 52.0773037], [-0.7067868, 52.0772986], [-0.7067739, 52.077296], [-0.7067629, 52.0772934], [-0.7067341, 52.0772856], [-0.7067126, 52.0772791], [-0.7066634, 52.0772569], [-0.7066254, 52.0772338], [-0.7065935, 52.0772075], [-0.7065686, 52.0771785], [-0.7065511, 52.0771475], [-0.7065414, 52.0771152], [-0.7065398, 52.0770824], [-0.7065447, 52.0770556], [-0.7065522, 52.0770347], [-0.7065599, 52.0770199], [-0.7065645, 52.0770104], [-0.7065952, 52.0769757], [-0.7066285, 52.0769489], [-0.7066681, 52.0769255], [-0.7067131, 52.0769063], [-0.7067626, 52.0768916], [-0.7068151, 52.0768818], [-0.7068695, 52.0768771], [-0.7069243, 52.0768778], [-0.7069784, 52.0768836], [-0.7070063, 52.0768889], [-0.7070334, 52.0768955], [-0.7070595, 52.0769035], [-0.7070845, 52.0769127], [-0.7071404, 52.0769411], [-0.7071856, 52.0769759], [-0.7072183, 52.0770156], [-0.707237, 52.0770587], [-0.7072409, 52.0771031], [-0.7072298, 52.0771471]]}}, {"type": "Feature", "properties": {"osm_id": "1341740", "highway": "trunk", "ref": "A509", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "source_ref": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6915261, 52.1016273], [-0.6916351, 52.1013911], [-0.6916478, 52.1012647]]}}, {"type": "Feature", "properties": {"osm_id": "1341954", "highway": "trunk", "ref": "A4146", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "V11 Tongwell Street", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6897848, 52.026083], [-0.6897909, 52.0259751], [-0.6897614, 52.025826], [-0.6880689, 52.0225031]]}}, {"type": "Feature", "properties": {"osm_id": "1341955", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "name": "Browns Wood Roundabout", "maxspeed_type": "gb:national", "junction": "roundabout", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6841598, 52.0185709], [-0.6841626, 52.018516], [-0.6841867, 52.0184645], [-0.6842213, 52.018426], [-0.6842978, 52.0183766], [-0.6843832, 52.0183469], [-0.6844305, 52.0183377], [-0.6844857, 52.0183323], [-0.684568, 52.0183343], [-0.684647, 52.0183477], [-0.6847604, 52.0183931], [-0.6848299, 52.0184509], [-0.6848611, 52.0185053], [-0.6848674, 52.0185694], [-0.6848492, 52.0186218], [-0.6848065, 52.018674], [-0.6847424, 52.0187175], [-0.6846937, 52.0187387], [-0.6845884, 52.018764], [-0.6844269, 52.0187624], [-0.6844036, 52.0187582], [-0.6843157, 52.0187319], [-0.6842654, 52.0187068], [-0.684211, 52.018665], [-0.6841764, 52.0186194], [-0.6841598, 52.0185709]]}}, {"type": "Feature", "properties": {"osm_id": "1341956", "highway": "trunk", "ref": "A4146", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H10 Bletcham Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6844857, 52.0183323], [-0.6852572, 52.0181168]]}}, {"type": "Feature", "properties": {"osm_id": "1341957", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Kents Hill Roundabout", "maxspeed_type": "gb:national", "junction": "roundabout", "foot": "no", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7067982, 52.0315676], [-0.7068069, 52.0314658], [-0.7068738, 52.0313786], [-0.706966, 52.0313211], [-0.7072277, 52.0312557], [-0.7073404, 52.0312744], [-0.7074555, 52.0313213], [-0.7075729, 52.031401], [-0.7076228, 52.0314843], [-0.707621, 52.0315812], [-0.7075697, 52.0316623], [-0.7075442, 52.0316869], [-0.7074888, 52.0317235], [-0.7073321, 52.0317722], [-0.7072028, 52.031787], [-0.707133, 52.0317788], [-0.7070663, 52.031771], [-0.7069844, 52.0317458], [-0.7068849, 52.0316903], [-0.7068282, 52.0316323], [-0.7067982, 52.0315676]]}}, {"type": "Feature", "properties": {"osm_id": "1341959", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "name": "Netherfield Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7292211, 52.0253704], [-0.729234, 52.0253551]]}}, {"type": "Feature", "properties": {"osm_id": "1341960", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "name": "Marina Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7314251, 52.0255322], [-0.7315271, 52.0255159], [-0.7316274, 52.0255289], [-0.7317149, 52.025579], [-0.7317403, 52.025607], [-0.7317479, 52.0256573], [-0.7317285, 52.0257015], [-0.7316926, 52.0257401], [-0.7316232, 52.0257713], [-0.7315376, 52.0257863], [-0.7314431, 52.0257741], [-0.7313775, 52.0257526], [-0.7313369, 52.0257143], [-0.7313135, 52.025673], [-0.7313135, 52.025629], [-0.7313539, 52.0255702], [-0.7314251, 52.0255322]]}}, {"type": "Feature", "properties": {"osm_id": "1341961", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "name": "Hospital Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.736191, 52.024094], [-0.7361314, 52.02414], [-0.7360547, 52.0241752]]}}, {"type": "Feature", "properties": {"osm_id": "1341962", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "Coffee Hall Roundabout", "maxspeed_type": "sign", "source_maxspeed": "survey", "junction": "roundabout", "foot": "no", "source_name": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7395964, 52.0218225], [-0.7395358, 52.0218815], [-0.7394778, 52.0219223], [-0.7393867, 52.0219567], [-0.7392841, 52.021975], [-0.7391772, 52.0219758], [-0.7390466, 52.0219516], [-0.7389638, 52.0219174], [-0.7388974, 52.0218716], [-0.7388515, 52.0218172], [-0.7388291, 52.0217579], [-0.738831, 52.0216971], [-0.7388573, 52.0216384], [-0.7389029, 52.0215883]]}}, {"type": "Feature", "properties": {"osm_id": "1341963", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7390466, 52.0219516], [-0.7387504, 52.0220704], [-0.7385208, 52.022214]]}}, {"type": "Feature", "properties": {"osm_id": "1341965", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7360019, 52.0237602], [-0.7362498, 52.0236442], [-0.7366833, 52.0233305], [-0.7369909, 52.0230657], [-0.7373607, 52.0227762], [-0.7377539, 52.0225152], [-0.7381386, 52.0222705]]}}, {"type": "Feature", "properties": {"osm_id": "1342041", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7358283, 52.024203], [-0.735583, 52.0242736], [-0.7351828, 52.0244684], [-0.7350595, 52.0245258]]}}, {"type": "Feature", "properties": {"osm_id": "1342042", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7313369, 52.0257143], [-0.7309819, 52.0256214], [-0.730852, 52.0256049]]}}, {"type": "Feature", "properties": {"osm_id": "1342043", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.72965, 52.0253368], [-0.7298221, 52.025383], [-0.7300234, 52.0254172], [-0.7303569, 52.025452]]}}, {"type": "Feature", "properties": {"osm_id": "1342044", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7315271, 52.0255159], [-0.7316852, 52.0254568], [-0.7325345, 52.0252842], [-0.7332139, 52.0251064], [-0.7341346, 52.0247883], [-0.7346471, 52.0245748]]}}, {"type": "Feature", "properties": {"osm_id": "1342045", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7294705, 52.025549], [-0.7292291, 52.0255958], [-0.728878, 52.0256562], [-0.7284326, 52.0256988], [-0.7277497, 52.0257496], [-0.7272811, 52.0257722], [-0.7268452, 52.0257768], [-0.725117, 52.0257277]]}}, {"type": "Feature", "properties": {"osm_id": "1342046", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7074555, 52.0313213], [-0.7077765, 52.0311877], [-0.7078936, 52.0311183]]}}, {"type": "Feature", "properties": {"osm_id": "1342047", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7070663, 52.031771], [-0.7068226, 52.0318036], [-0.7065444, 52.0318572], [-0.7058769, 52.0320865], [-0.7053008, 52.0323018], [-0.7045373, 52.0325303], [-0.7037215, 52.0327612], [-0.7034975, 52.0328211], [-0.7028217, 52.0329798], [-0.7021536, 52.0331315], [-0.7006246, 52.0333999]]}}, {"type": "Feature", "properties": {"osm_id": "1342048", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6921467, 52.0334986], [-0.6924712, 52.0335827], [-0.6926978, 52.0336442], [-0.6930637, 52.033676], [-0.6956688, 52.0335826]]}}, {"type": "Feature", "properties": {"osm_id": "1441662", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0969445, 51.6890902], [0.097476, 51.6889766], [0.0978537, 51.688873], [0.0982089, 51.688755], [0.0985474, 51.6886414], [0.0987154, 51.6885838], [0.0988949, 51.6885203], [0.0992006, 51.6883953], [0.0993659, 51.6883304], [0.0994488, 51.6882964], [0.0995254, 51.6882636], [0.0999267, 51.6880941], [0.1000276, 51.6880505], [0.1000735, 51.6880299], [0.1001263, 51.6880057], [0.1002203, 51.6879621], [0.1003112, 51.6879196], [0.1003534, 51.6878983], [0.1003933, 51.6878784], [0.1005223, 51.6878113], [0.1007302, 51.6877046], [0.1009343, 51.6875895], [0.1010291, 51.6875357], [0.101124, 51.6874806], [0.1014039, 51.6873364], [0.1015978, 51.6872273], [0.1018614, 51.6870618], [0.102239, 51.6868221]]}}, {"type": "Feature", "properties": {"osm_id": "1623720", "highway": "trunk", "ref": "A590", "maxspeed": "70 mph", "oneway": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "13", "bicycle": "yes", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9128007, 54.2281641], [-2.9124954, 54.2278756], [-2.911903, 54.2273542], [-2.9109914, 54.2266186], [-2.9095492, 54.2256061]]}}, {"type": "Feature", "properties": {"osm_id": "1631308", "highway": "trunk", "ref": "A5115", "maxspeed": "30 mph", "name": "Christleton Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8656982, 53.1901731], [-2.8658813, 53.1902162], [-2.8661252, 53.1902736], [-2.8664498, 53.1903648], [-2.8670292, 53.1905319], [-2.8675334, 53.1907183], [-2.8678728, 53.1908139], [-2.8684146, 53.1909695], [-2.8685931, 53.1910218]]}}, {"type": "Feature", "properties": {"osm_id": "1631310", "highway": "trunk", "ref": "A5115", "maxspeed": "30 mph", "name": "Whitchurch Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8656982, 53.1901731], [-2.8653821, 53.1900979], [-2.8639367, 53.1897542], [-2.8637332, 53.1897058], [-2.8628886, 53.1895419], [-2.8626689, 53.1894995], [-2.8623927, 53.1894838]]}}, {"type": "Feature", "properties": {"osm_id": "1648139", "highway": "motorway", "ref": "M271", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Nursling Spur Motorway", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "J", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4771543, 50.9464871], [-1.4768931, 50.9467905], [-1.4766206, 50.9470669]]}}, {"type": "Feature", "properties": {"osm_id": "1648140", "highway": "motorway", "ref": "M271", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Nursling Spur Motorway", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "K", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4724675, 50.9547792], [-1.4727808, 50.9547029], [-1.472931, 50.9546469], [-1.4730713, 50.9545693], [-1.4731867, 50.9544582], [-1.4733222, 50.954288], [-1.4738469, 50.953614], [-1.4741041, 50.9532117], [-1.4745017, 50.9525784], [-1.4747, 50.9521718], [-1.4749316, 50.9515436], [-1.4750732, 50.9511263], [-1.4751538, 50.950753], [-1.4752187, 50.9504], [-1.4752577, 50.9499269], [-1.4753606, 50.9489936], [-1.4754169, 50.9485499], [-1.4754951, 50.9483059], [-1.4755978, 50.9480719], [-1.4757541, 50.9478083], [-1.4760545, 50.9474405]]}}, {"type": "Feature", "properties": {"osm_id": "1651019", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "name": "Bedford Southern Bypass", "operator": "Highways England", "highways_england_area": "8", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4928451, 52.1054569], [-0.4902814, 52.1057002], [-0.4887469, 52.1058417], [-0.4873624, 52.1059679], [-0.4863217, 52.1060907], [-0.4857169, 52.1061564], [-0.4834396, 52.1064371]]}}, {"type": "Feature", "properties": {"osm_id": "1655339", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "old_ref": "A1178", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.1826886, 51.6838193], [-0.1822524, 51.6838188], [-0.1815761, 51.6838257], [-0.1811459, 51.6838365], [-0.1802716, 51.6839173], [-0.1791885, 51.6840424], [-0.1783889, 51.6841721], [-0.1772914, 51.6844148]]}}, {"type": "Feature", "properties": {"osm_id": "1656422", "highway": "trunk", "ref": "A10", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great Cambridge Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0603943, 51.6440992], [-0.0604506, 51.6436329], [-0.0605375, 51.6432505], [-0.0606212, 51.6429408], [-0.0607221, 51.6426611], [-0.0607773, 51.6425346], [-0.0608434, 51.6424012], [-0.0610095, 51.6421002], [-0.0611121, 51.6419376], [-0.0611812, 51.6418392], [-0.0612546, 51.6417417], [-0.0613967, 51.6415693], [-0.0615477, 51.6413979], [-0.0617242, 51.6412134], [-0.0619076, 51.6410346], [-0.0621341, 51.6408358], [-0.0624136, 51.6405954], [-0.0628171, 51.6402482], [-0.063009, 51.640087]]}}, {"type": "Feature", "properties": {"osm_id": "1656423", "highway": "trunk", "ref": "A10", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "cycleway_left": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0697291, 51.6343253], [-0.0699151, 51.6341523], [-0.0699986, 51.6340735], [-0.0702607, 51.6338545], [-0.070512, 51.6336582], [-0.0708419, 51.633408], [-0.0710383, 51.6332727], [-0.0712343, 51.6331397], [-0.0712957, 51.6330996], [-0.0716424, 51.6328731], [-0.0720914, 51.6326105], [-0.0725352, 51.6323716], [-0.0730006, 51.6321458], [-0.0733341, 51.6319963], [-0.0733766, 51.6319782], [-0.0734744, 51.6319364], [-0.0735641, 51.631898], [-0.0738093, 51.6317951], [-0.0740594, 51.6316994], [-0.0745694, 51.6315186], [-0.0752042, 51.6313172], [-0.075717, 51.6311632], [-0.0759832, 51.6310762], [-0.0762345, 51.6309828], [-0.0764642, 51.630895], [-0.0766808, 51.630802], [-0.0769219, 51.630682], [-0.0771301, 51.630569], [-0.0773511, 51.6304442]]}}, {"type": "Feature", "properties": {"osm_id": "1656424", "highway": "trunk", "ref": "A10", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great Cambridge Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0789305, 51.628736], [-0.0790722, 51.6285057], [-0.0801034, 51.6268629], [-0.0803255, 51.6265098], [-0.0805156, 51.6262013], [-0.0805511, 51.6261333], [-0.0806763, 51.6258928], [-0.080818, 51.6255665], [-0.0809421, 51.6252365], [-0.0810859, 51.6248562], [-0.081191, 51.6245842], [-0.0813209, 51.6242477], [-0.0814541, 51.6239051], [-0.0815732, 51.623616], [-0.0817302, 51.6232716], [-0.0818846, 51.6229613], [-0.0819857, 51.6227682], [-0.082244, 51.6223221], [-0.0824056, 51.6220588], [-0.0826876, 51.6216458], [-0.0829413, 51.6212944], [-0.0831496, 51.621024], [-0.0834052, 51.6207224], [-0.083666, 51.6204284], [-0.0839524, 51.620122], [-0.0841935, 51.6198639], [-0.0843597, 51.6196824], [-0.0847244, 51.6192775], [-0.0849377, 51.619033], [-0.0852305, 51.6186841], [-0.0853753, 51.6185022], [-0.0857641, 51.6179869], [-0.0859948, 51.6176562], [-0.0861049, 51.6174752], [-0.086168, 51.6173421], [-0.0863016, 51.6170239]]}}, {"type": "Feature", "properties": {"osm_id": "1676842", "highway": "trunk", "ref": "A4142", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern Bypass", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2344612, 51.7221132], [-1.2342821, 51.7221399], [-1.2340882, 51.7221453], [-1.2338445, 51.722139], [-1.2335219, 51.7221607], [-1.2334611, 51.7221685], [-1.2330292, 51.7222259], [-1.2311347, 51.722556], [-1.2300955, 51.7227636], [-1.2290572, 51.7230021], [-1.2282591, 51.723207], [-1.227416, 51.7234474], [-1.2262819, 51.7238103], [-1.2256465, 51.7240115]]}}, {"type": "Feature", "properties": {"osm_id": "1676858", "highway": "trunk", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Littlemore Roundabout", "bicycle": "yes", "surface": "asphalt", "junction": "roundabout", "foot": "yes", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2240364, 51.7242432], [-1.224206, 51.7242747], [-1.22432, 51.7243252], [-1.2244216, 51.7244128], [-1.2244621, 51.7245157], [-1.2244678, 51.7245304], [-1.2244144, 51.7246781], [-1.2242536, 51.7247898], [-1.2241071, 51.7248307], [-1.2240158, 51.7248398]]}}, {"type": "Feature", "properties": {"osm_id": "1692891", "highway": "trunk", "ref": "A4142", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern By-pass Road", "bicycle": "no", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2235417, 51.724661], [-1.2232408, 51.7246], [-1.2223767, 51.7245766]]}}, {"type": "Feature", "properties": {"osm_id": "1692892", "highway": "trunk", "ref": "A4142", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern By-pass Road", "bicycle": "no", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1991281, 51.7340191], [-1.1995089, 51.7334759], [-1.1996596, 51.7332674]]}}, {"type": "Feature", "properties": {"osm_id": "1692893", "highway": "trunk", "ref": "A4142", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern By-pass Road", "bicycle": "no", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "source_ref": "inference, Oxford 20mph zone RTO Schedule 1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1992361, 51.734055], [-1.1987218, 51.7349158], [-1.1982672, 51.7358788]]}}, {"type": "Feature", "properties": {"osm_id": "1735707", "highway": "motorway", "ref": "A404(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "old_ref": "A423(M)", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.766425, 51.5212933], [-0.7660606, 51.520925], [-0.7657334, 51.5205666], [-0.7650198, 51.5196959], [-0.7646125, 51.5191435], [-0.764074, 51.5183318], [-0.7637166, 51.5177803], [-0.7631157, 51.5168859], [-0.7627029, 51.5163867]]}}, {"type": "Feature", "properties": {"osm_id": "1735777", "highway": "motorway", "ref": "A308(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7242048, 51.499922], [-0.7239746, 51.5000186], [-0.7238304, 51.5001122], [-0.7236742, 51.5002556], [-0.7234596, 51.5005431], [-0.7230667, 51.5010517], [-0.7228637, 51.501294], [-0.7226178, 51.5015431], [-0.7222454, 51.5018571], [-0.7219135, 51.5020945], [-0.7215361, 51.5023224], [-0.7212429, 51.5024768], [-0.7209074, 51.5026302], [-0.7205148, 51.5027835], [-0.7200868, 51.5029273], [-0.7196524, 51.5030515], [-0.7192246, 51.5031466], [-0.7185664, 51.5032645], [-0.7135196, 51.5040382]]}}, {"type": "Feature", "properties": {"osm_id": "1768661", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "name": "Haldon Hill", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "1", "alt_name": "Devon Expressway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.5603278, 50.6433059], [-3.5606781, 50.6429702], [-3.5609934, 50.6426061]]}}, {"type": "Feature", "properties": {"osm_id": "1801010", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "carriageway_ref": "A", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7964387, 52.6799128], [-1.7954302, 52.6810801], [-1.7949137, 52.6817515], [-1.7941727, 52.6826884], [-1.7939334, 52.6830172], [-1.7933509, 52.6838557], [-1.7929276, 52.6845089]]}}, {"type": "Feature", "properties": {"osm_id": "1801012", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Lichfield Road", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "sidewalk": "no", "carriageway_ref": "B", "source_name": "os locator", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7028979, 52.7602546], [-1.7037339, 52.7598997], [-1.7040522, 52.7597538], [-1.7043938, 52.7595866], [-1.7046995, 52.7594203], [-1.7050216, 52.7592207], [-1.705403, 52.7589555], [-1.7057811, 52.7586647], [-1.7065882, 52.758036], [-1.7081226, 52.7568194]]}}, {"type": "Feature", "properties": {"osm_id": "1818879", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "name": "Grosvenor Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8909607, 53.1885125], [-2.8911838, 53.1884708], [-2.8914035, 53.1884234], [-2.8914779, 53.1883965], [-2.8916133, 53.18831], [-2.8918309, 53.1881194], [-2.8921003, 53.1878764], [-2.8924399, 53.1875647], [-2.8926645, 53.1873641], [-2.8926992, 53.1873401]]}}, {"type": "Feature", "properties": {"osm_id": "1818891", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "name": "Pepper Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8883175, 53.1890018], [-2.8884935, 53.1889573], [-2.8886054, 53.1889303], [-2.8888983, 53.1888679], [-2.8890659, 53.1888316], [-2.889437, 53.1887905], [-2.8896108, 53.1887829], [-2.8898099, 53.1887706], [-2.8900907, 53.1887264], [-2.8904419, 53.1886347], [-2.8908003, 53.1885417], [-2.8909607, 53.1885125]]}}, {"type": "Feature", "properties": {"osm_id": "1818937", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "name": "Love Street", "bicycle": "yes", "surface": "asphalt", "cycleway_left": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8845222, 53.190267], [-2.8846467, 53.1905199], [-2.8847996, 53.1908575], [-2.8850748, 53.1914841]]}}, {"type": "Feature", "properties": {"osm_id": "1818940", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Union Street", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8819382, 53.1911506], [-2.8819802, 53.1910416], [-2.8820619, 53.1909645], [-2.8822107, 53.1908517], [-2.8823816, 53.1907685], [-2.8825268, 53.1907227], [-2.8826734, 53.1906938], [-2.8828274, 53.1906616], [-2.8830525, 53.1906211], [-2.8833825, 53.190554], [-2.8836998, 53.1904916], [-2.8840175, 53.1904048], [-2.8845222, 53.190267]]}}, {"type": "Feature", "properties": {"osm_id": "1818941", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lit": "yes", "name": "Vicar's Lane", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8845222, 53.190267], [-2.8847625, 53.1901331], [-2.8849472, 53.1900192], [-2.8850093, 53.1899799], [-2.8851084, 53.1899253], [-2.8854378, 53.189724], [-2.8854535, 53.1897151], [-2.8856731, 53.1895877], [-2.8858617, 53.1894729], [-2.8859684, 53.1894343], [-2.8860619, 53.1894204], [-2.886172, 53.1894169]]}}, {"type": "Feature", "properties": {"osm_id": "1818942", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lit": "yes", "name": "Little St John Street", "bicycle": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.886172, 53.1894169], [-2.8862122, 53.1894166], [-2.8863581, 53.1894335], [-2.8864503, 53.1894629], [-2.8865795, 53.1895228], [-2.8867187, 53.1895706], [-2.8868657, 53.189599], [-2.886904, 53.1896054], [-2.8870606, 53.1896119], [-2.8872217, 53.1895973], [-2.8873657, 53.1895651], [-2.8874845, 53.1895139], [-2.8875331, 53.1894769], [-2.8875971, 53.1894283]]}}, {"type": "Feature", "properties": {"osm_id": "1818948", "highway": "trunk", "ref": "A5116", "maxspeed": "30 mph", "name": "Liverpool Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8943166, 53.2070524], [-2.8943174, 53.2069592], [-2.8943234, 53.2062248], [-2.8943238, 53.2061788], [-2.8943285, 53.2056089], [-2.8943596, 53.2052469], [-2.8943528, 53.20491], [-2.8943314, 53.2046895], [-2.8942777, 53.204472], [-2.8942163, 53.204291], [-2.894202, 53.2041245], [-2.8941453, 53.2038452], [-2.8940649, 53.2027414], [-2.8940817, 53.2022132], [-2.8940837, 53.2021486], [-2.8941079, 53.2017196], [-2.8941371, 53.201582], [-2.894249, 53.2012972], [-2.8942463, 53.2009791], [-2.8942042, 53.2008992], [-2.8943075, 53.2008367]]}}, {"type": "Feature", "properties": {"osm_id": "1818965", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "name": "Hoole Way Roundabout", "bicycle": "yes", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8881607, 53.1943959], [-2.8881214, 53.1945244], [-2.8880233, 53.1946174], [-2.8879465, 53.1946589]]}}, {"type": "Feature", "properties": {"osm_id": "1818966", "highway": "trunk", "ref": "A56", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Hoole Way", "bicycle": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8876254, 53.1947208], [-2.8871352, 53.194871], [-2.8868885, 53.1950065], [-2.8864318, 53.1953957], [-2.88613, 53.1956928], [-2.8855893, 53.1962113], [-2.8853728, 53.1963632], [-2.8851842, 53.1964951], [-2.8851288, 53.1965338], [-2.8850118, 53.1965951]]}}, {"type": "Feature", "properties": {"osm_id": "1818970", "highway": "trunk", "ref": "A56", "maxspeed": "30 mph", "lit": "yes", "name": "Hoole Road", "bicycle": "yes", "surface": "asphalt", "layer": "1", "bridge": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-2.883629, 53.1973072], [-2.8833517, 53.197511], [-2.8830134, 53.1976974], [-2.8825966, 53.1978578], [-2.8822053, 53.1979944]]}}, {"type": "Feature", "properties": {"osm_id": "1818982", "highway": "trunk", "ref": "A56", "maxspeed": "30 mph", "lanes": "2", "oneway": "no", "name": "Hoole Road", "bicycle": "yes", "surface": "paved", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8610697, 53.2065325], [-2.8615191, 53.2064424], [-2.8618335, 53.2063647], [-2.8620433, 53.2063095], [-2.8622647, 53.206234], [-2.8625049, 53.2061409], [-2.8627546, 53.2060413], [-2.8629314, 53.2059568], [-2.8631054, 53.205874], [-2.8632936, 53.2057791], [-2.8634871, 53.2056778], [-2.8636113, 53.2056036], [-2.8637758, 53.2054796], [-2.8638759, 53.2053942], [-2.8639414, 53.2053358], [-2.8640606, 53.2052164], [-2.8643495, 53.2049365], [-2.8644681, 53.2048216], [-2.8646625, 53.2046269], [-2.8647309, 53.2045656], [-2.8648086, 53.2045169], [-2.8648837, 53.2044804], [-2.8650382, 53.2044153], [-2.8652196, 53.204347], [-2.8654215, 53.2042779], [-2.8655681, 53.2042282], [-2.8657686, 53.2041603], [-2.8659808, 53.2040883], [-2.8661264, 53.2040402], [-2.8663092, 53.2039799], [-2.8664157, 53.2039448], [-2.8666876, 53.2038564], [-2.8678783, 53.2034853], [-2.8679869, 53.2034553], [-2.868591, 53.2032055], [-2.8693978, 53.2028698]]}}, {"type": "Feature", "properties": {"osm_id": "1818983", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "name": "Hoole roundabout", "bicycle": "yes", "sidewalk": "left", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8576702, 53.2066267], [-2.8577881, 53.2066086], [-2.8579098, 53.2066101], [-2.8580165, 53.2066284], [-2.8581124, 53.2066618], [-2.8581999, 53.2067145], [-2.8582601, 53.2067795], [-2.8582884, 53.2068519], [-2.8582826, 53.2069261], [-2.8582474, 53.2069914], [-2.8581689, 53.2070608], [-2.8580587, 53.2071123], [-2.8579273, 53.2071412], [-2.8578347, 53.2071463], [-2.8577422, 53.2071399], [-2.8576059, 53.207107], [-2.8574945, 53.2070496], [-2.8574199, 53.2069738], [-2.85739, 53.2068876], [-2.8574098, 53.2067967], [-2.8574793, 53.206715], [-2.8575647, 53.2066631], [-2.8576702, 53.2066267]]}}, {"type": "Feature", "properties": {"osm_id": "1818987", "highway": "trunk", "ref": "A51", "maxspeed": "30 mph", "oneway": "yes", "name": "Tarvin Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8712443, 53.19201], [-2.8706715, 53.1919797], [-2.8698731, 53.1919536], [-2.8690858, 53.19193], [-2.8687705, 53.1919244]]}}, {"type": "Feature", "properties": {"osm_id": "1818991", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "oneway": "yes", "name": "Ring Road", "bicycle": "yes", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8574793, 53.206715], [-2.8574586, 53.2065244], [-2.857235, 53.206043], [-2.856874, 53.2053897], [-2.8566161, 53.2049771], [-2.8563582, 53.2045644], [-2.8559972, 53.2041518], [-2.8555602, 53.2037188], [-2.8549828, 53.2032406], [-2.8547398, 53.2030396]]}}, {"type": "Feature", "properties": {"osm_id": "1818992", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "oneway": "yes", "name": "Boughton Heath Junction", "operator": "Cheshire West and Chester Council", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8534615, 53.1875238], [-2.8536407, 53.1875046], [-2.8539257, 53.187476]]}}, {"type": "Feature", "properties": {"osm_id": "1818993", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "oneway": "yes", "name": "Long Lane", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8582474, 53.2069914], [-2.8583678, 53.2071205], [-2.858378, 53.2071363], [-2.8584652, 53.2072175], [-2.8587042, 53.2073965], [-2.8597313, 53.2079922], [-2.8611131, 53.2087549], [-2.8618524, 53.2091911], [-2.8624437, 53.2095131], [-2.862683, 53.2096396], [-2.8633053, 53.2099667], [-2.864672, 53.210582], [-2.8655474, 53.210965], [-2.8659397, 53.2111713], [-2.8663215, 53.2114073], [-2.8667625, 53.2118462], [-2.8669571, 53.2122353], [-2.8670049, 53.2123908], [-2.8670713, 53.2126035], [-2.8671269, 53.2129721]]}}, {"type": "Feature", "properties": {"osm_id": "1818994", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "oneway": "yes", "name": "Long Lane", "bicycle": "yes", "foot": "yes", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8672816, 53.2138443], [-2.8671773, 53.2135936], [-2.8670861, 53.2133143], [-2.86699, 53.2130649]]}}, {"type": "Feature", "properties": {"osm_id": "1821782", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "name": "Whitchurch Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7767736, 53.0934361], [-2.7765585, 53.0949952], [-2.7764608, 53.0957041], [-2.7763434, 53.097151], [-2.7762652, 53.0996145], [-2.7765545, 53.100113], [-2.7767401, 53.1003242]]}}, {"type": "Feature", "properties": {"osm_id": "1822378", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "name": "Foregate Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8850748, 53.1914841], [-2.8846532, 53.1915491], [-2.8838584, 53.1916893], [-2.8836708, 53.1917288], [-2.8835481, 53.1917702], [-2.8834346, 53.1918567], [-2.8833964, 53.1919272], [-2.8834064, 53.19209]]}}, {"type": "Feature", "properties": {"osm_id": "1822383", "highway": "trunk", "ref": "A5115", "maxspeed": "30 mph", "oneway": "yes", "name": "Challinor Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8687705, 53.1919244], [-2.8687623, 53.1917422], [-2.8688481, 53.191542], [-2.8689277, 53.1913643]]}}, {"type": "Feature", "properties": {"osm_id": "1823941", "highway": "trunk", "ref": "A449", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2225222, 52.231095], [-2.2224343, 52.2311786], [-2.2223553, 52.2312205], [-2.2221595, 52.2312675], [-2.2219883, 52.2312637], [-2.2218472, 52.2312288], [-2.2217209, 52.2311596], [-2.2216452, 52.2310715], [-2.221624, 52.2310042], [-2.2216409, 52.2309052], [-2.2216973, 52.2308289], [-2.2218077, 52.2307559], [-2.2218968, 52.2307233], [-2.2220164, 52.2307011], [-2.2222211, 52.2307088], [-2.2224054, 52.230772], [-2.2225048, 52.2308507], [-2.2225547, 52.2309472], [-2.2225474, 52.2310466], [-2.2225222, 52.231095]]}}, {"type": "Feature", "properties": {"osm_id": "1823942", "highway": "trunk", "ref": "A449", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1598088, 52.2127907], [-2.1598734, 52.2128748], [-2.1599594, 52.2129853], [-2.1600473, 52.2130485], [-2.1601461, 52.2131019], [-2.1610592, 52.2133538]]}}, {"type": "Feature", "properties": {"osm_id": "1823943", "highway": "trunk", "ref": "A449", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.221624, 52.2310042], [-2.2215111, 52.230846], [-2.2213565, 52.2306803], [-2.2202496, 52.2301038], [-2.2175436, 52.2287274], [-2.214225, 52.2269951], [-2.2110108, 52.2253345], [-2.2095485, 52.2248441]]}}, {"type": "Feature", "properties": {"osm_id": "1823944", "highway": "trunk", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Warndon Interchange", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1587998, 52.2121542], [-2.1589439, 52.212186], [-2.1592234, 52.2122942]]}}, {"type": "Feature", "properties": {"osm_id": "1823945", "highway": "trunk", "ref": "A449", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2223553, 52.2312205], [-2.2222818, 52.2313572]]}}, {"type": "Feature", "properties": {"osm_id": "1823946", "highway": "trunk", "ref": "A449", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2332039, 52.3142975], [-2.2331981, 52.3141131], [-2.2331667, 52.3139984], [-2.2331226, 52.3138876], [-2.2323576, 52.3126129], [-2.2321014, 52.3122407], [-2.2318223, 52.3119198], [-2.2312463, 52.3113404], [-2.2309846, 52.3110771], [-2.2307299, 52.3108027], [-2.2301717, 52.3101308], [-2.2300678, 52.3099298], [-2.2299135, 52.3096298], [-2.2297499, 52.3092665], [-2.2296466, 52.3089829], [-2.2295433, 52.3085688], [-2.2295088, 52.308388], [-2.2294763, 52.308099], [-2.2294642, 52.3076775], [-2.2294642, 52.3073303], [-2.2295967, 52.3053254], [-2.229549, 52.3046123], [-2.2295142, 52.3044719], [-2.2294422, 52.3041813], [-2.2293336, 52.3038664], [-2.2286341, 52.302171], [-2.2283736, 52.3012481], [-2.2280279, 52.2997689], [-2.2276685, 52.2982917], [-2.2274397, 52.2973417], [-2.2272133, 52.2962794], [-2.2271949, 52.2961761], [-2.2271937, 52.2960482], [-2.2271932, 52.2959742], [-2.2271913, 52.2956703], [-2.2272138, 52.2952681], [-2.227283, 52.2949446], [-2.2273917, 52.2945434], [-2.2275556, 52.2941237], [-2.2276698, 52.2938898], [-2.2276915, 52.2938513], [-2.2278617, 52.2935497], [-2.2282513, 52.2927987], [-2.2283431, 52.2926218], [-2.2285919, 52.2922122], [-2.229033, 52.2915594]]}}, {"type": "Feature", "properties": {"osm_id": "1823947", "highway": "trunk", "ref": "A4538", "lanes": "2", "lit": "yes", "name": "Pershore Lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1567121, 52.2118816], [-2.1567033, 52.2113885]]}}, {"type": "Feature", "properties": {"osm_id": "1823949", "highway": "trunk", "ref": "A44", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1387765, 52.1831219], [-2.1388934, 52.1828662], [-2.138927, 52.1827695], [-2.1389617, 52.1826521], [-2.1390172, 52.1825737]]}}, {"type": "Feature", "properties": {"osm_id": "1859974", "highway": "motorway", "ref": "A404(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.725221, 51.4996139], [-0.7252373, 51.4998304], [-0.7253843, 51.5001792], [-0.7259646, 51.5012543], [-0.7269159, 51.5024213], [-0.7277304, 51.5031385], [-0.728008, 51.5033353]]}}, {"type": "Feature", "properties": {"osm_id": "1860034", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "junction": "roundabout", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7226412, 51.4989538], [-0.7226, 51.4987748], [-0.722608, 51.4986291], [-0.7226814, 51.4985054], [-0.7227991, 51.4983805], [-0.7229394, 51.4983012], [-0.723173, 51.4982207], [-0.7237977, 51.4981056], [-0.7240511, 51.4980971], [-0.7243059, 51.4981223], [-0.7245486, 51.4981986], [-0.7247291, 51.4983075], [-0.7248993, 51.498475]]}}, {"type": "Feature", "properties": {"osm_id": "1860285", "highway": "trunk", "ref": "A404", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7675809, 51.6117936], [-0.7675271, 51.6115284], [-0.7665981, 51.6092686], [-0.7656377, 51.6071199]]}}, {"type": "Feature", "properties": {"osm_id": "1860286", "highway": "trunk", "ref": "A404", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "3", "source_maxspeed": "Stats19 2010-2012", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7589961, 51.570964], [-0.7581182, 51.5723158], [-0.7576007, 51.5731123], [-0.7573076, 51.5736167], [-0.7569289, 51.5744044], [-0.7567343, 51.5749281], [-0.7566045, 51.5753524], [-0.7564765, 51.5759296], [-0.7563965, 51.576394], [-0.7563454, 51.5769985], [-0.7563608, 51.577598], [-0.7563996, 51.5780956], [-0.7567556, 51.5804332], [-0.756972, 51.5812025], [-0.7574706, 51.583889], [-0.7585009, 51.5893722], [-0.7595966, 51.5926175], [-0.7600818, 51.5937513], [-0.7626958, 51.5998595], [-0.7643208, 51.6035782], [-0.7657088, 51.6068016]]}}, {"type": "Feature", "properties": {"osm_id": "1860316", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Bisham Roundabout", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "3", "source_maxspeed": "Stats19 2010-2012", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7749687, 51.5547733], [-0.7749184, 51.5548688], [-0.7748364, 51.5549493], [-0.7747082, 51.5550233], [-0.7744636, 51.5550878], [-0.7742492, 51.5550907], [-0.7740161, 51.5550391], [-0.7738052, 51.554912], [-0.7737216, 51.5547886], [-0.7737043, 51.5546888], [-0.7737081, 51.554659], [-0.7737803, 51.5545115], [-0.7738898, 51.5544194], [-0.7740211, 51.5543561], [-0.7741411, 51.5543224], [-0.7742892, 51.5543035], [-0.7744095, 51.5543043], [-0.7746223, 51.5543423], [-0.7747284, 51.5543829], [-0.7749135, 51.5545221], [-0.7749671, 51.5546188], [-0.7749687, 51.5547733]]}}, {"type": "Feature", "properties": {"osm_id": "1860346", "highway": "trunk", "ref": "A404", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "3", "source_maxspeed": "Stats19 2010-2012", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7744095, 51.5543043], [-0.7746651, 51.5542201], [-0.7748164, 51.5541243], [-0.7749483, 51.554001]]}}, {"type": "Feature", "properties": {"osm_id": "1860347", "highway": "motorway", "ref": "A404(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "foot": "no", "horse": "no", "motor_vehicle": "designated", "old_ref": "A423(M)", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7629738, 51.5163982], [-0.7639208, 51.5177286], [-0.7648662, 51.5191399], [-0.7652258, 51.5196306], [-0.7656583, 51.5201729], [-0.7660553, 51.5206227], [-0.7664017, 51.5209845], [-0.7668411, 51.5213717]]}}, {"type": "Feature", "properties": {"osm_id": "1860710", "highway": "trunk", "ref": "A52", "maxspeed": "40 mph", "lit": "yes", "name": "Bardills Island", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2656493, 52.9204108], [-1.2655903, 52.9204661]]}}, {"type": "Feature", "properties": {"osm_id": "1861055", "highway": "motorway", "ref": "A308(M)", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7122742, 51.5038606], [-0.7125444, 51.5039957], [-0.7126562, 51.5040289], [-0.7127634, 51.5040447], [-0.7134835, 51.5039372]]}}, {"type": "Feature", "properties": {"osm_id": "1861435", "highway": "trunk", "maxspeed": "60 mph", "lanes": "3", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4291092, 53.2602087], [-1.4292085, 53.2602332]]}}, {"type": "Feature", "properties": {"osm_id": "1861693", "highway": "trunk", "ref": "A428", "maxspeed": "60 mph", "lanes": "2", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5452546, 52.140877], [-0.5453993, 52.1411716], [-0.5460365, 52.1425162], [-0.5472219, 52.1447954], [-0.5478598, 52.1459249], [-0.5484023, 52.1468531], [-0.549477, 52.1485559], [-0.5500887, 52.1494748], [-0.5506057, 52.1501634], [-0.5508872, 52.1504738], [-0.5512612, 52.1508089], [-0.5515837, 52.1510592], [-0.5518991, 52.1512707], [-0.5522948, 52.1515027], [-0.5527151, 52.1517083], [-0.5531147, 52.1518889], [-0.5535087, 52.1520436], [-0.5537791, 52.1521488], [-0.5540607, 52.1522413], [-0.5543775, 52.1523443], [-0.5547201, 52.1524346], [-0.5556879, 52.1526314], [-0.5570175, 52.1526511], [-0.5601717, 52.1524008], [-0.5617738, 52.1520837]]}}, {"type": "Feature", "properties": {"osm_id": "1861958", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7284514, 51.4978121], [-0.7289549, 51.4976331], [-0.7297327, 51.4973258], [-0.7308558, 51.496881], [-0.7313431, 51.4966514], [-0.7324305, 51.4961237], [-0.732704, 51.4959691]]}}, {"type": "Feature", "properties": {"osm_id": "1862022", "highway": "trunk", "ref": "A52", "maxspeed": "40 mph", "name": "Ashbourne Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7437051, 53.0087073], [-1.7434832, 53.0086723], [-1.7416124, 53.0083773], [-1.7405443, 53.0081171], [-1.7396739, 53.0078485], [-1.7391251, 53.007681]]}}, {"type": "Feature", "properties": {"osm_id": "1863714", "highway": "trunk", "ref": "A515", "maxspeed": "30 mph", "oneway": "yes", "name": "Buxton Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7320525, 53.0175838], [-1.7319558, 53.0177473], [-1.7319521, 53.0178683]]}}, {"type": "Feature", "properties": {"osm_id": "1880415", "highway": "motorway", "ref": "M4", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Heathrow Airport Spur Road", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "foot": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.4524357, 51.4956526], [-0.4524325, 51.4954705], [-0.4524431, 51.4954157], [-0.4524553, 51.495363], [-0.4524941, 51.4953191], [-0.4525625, 51.4952638], [-0.4527073, 51.4951732], [-0.4528013, 51.4951245], [-0.4529248, 51.4950537], [-0.4530671, 51.4949551], [-0.4531815, 51.4948402], [-0.4532254, 51.4947922], [-0.4532582, 51.4947421], [-0.4532953, 51.4946822], [-0.4533116, 51.4946202], [-0.453359, 51.4941279]]}}, {"type": "Feature", "properties": {"osm_id": "1880420", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Langley Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5423323, 51.4923665], [-0.5421506, 51.4923489], [-0.541973, 51.4923222], [-0.5418234, 51.4922816], [-0.541674, 51.492225], [-0.5415499, 51.4921527], [-0.5412987, 51.4918561], [-0.541234, 51.4917373], [-0.5411901, 51.4916171]]}}, {"type": "Feature", "properties": {"osm_id": "1880479", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "name": "Basingstoke Road", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9718273, 51.4152892], [-0.9712454, 51.4149457], [-0.9709922, 51.4148237], [-0.9707066, 51.4146817]]}}, {"type": "Feature", "properties": {"osm_id": "1880481", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "surface": "asphalt", "turn_lanes": "through|through|merge_to_left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9740097, 51.4164482], [-0.9740247, 51.4165061], [-0.9740951, 51.4167095], [-0.9741556, 51.4168679], [-0.97426, 51.4170481]]}}, {"type": "Feature", "properties": {"osm_id": "1880482", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.975574, 51.4182035], [-0.9754864, 51.4181237], [-0.9752898, 51.4179761], [-0.9750902, 51.4178463], [-0.9748155, 51.4176858], [-0.9741173, 51.4172695]]}}, {"type": "Feature", "properties": {"osm_id": "1880709", "highway": "motorway", "ref": "M42", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "A", "foot": "no", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.8340332, 52.3484875], [-1.8314211, 52.3480987], [-1.8293994, 52.3478621], [-1.8273043, 52.3476704], [-1.8237907, 52.3474737], [-1.8233564, 52.3474626]]}}, {"type": "Feature", "properties": {"osm_id": "1880986", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "concrete", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.1182204, 51.6886284], [-0.1196707, 51.6883653], [-0.121036, 51.6882189], [-0.1222456, 51.6881657], [-0.1234423, 51.6881693], [-0.1249278, 51.6882655], [-0.1265332, 51.6884141], [-0.1280606, 51.6885316], [-0.1296662, 51.688584], [-0.1311934, 51.6885648], [-0.1339186, 51.6883919], [-0.1355308, 51.68822], [-0.137212, 51.6879361], [-0.1381886, 51.6877334], [-0.1391528, 51.6875091], [-0.1403451, 51.6872079], [-0.1415839, 51.686823], [-0.1436711, 51.6861371], [-0.1449169, 51.6857719], [-0.1458919, 51.6855584], [-0.1462953, 51.6854908]]}}, {"type": "Feature", "properties": {"osm_id": "1880997", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "horse": "no", "source_ref": "local_knowledge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2194436, 51.6841167], [-0.2218927, 51.6844324], [-0.2227859, 51.6845636], [-0.2233987, 51.6846822], [-0.2239683, 51.6848019], [-0.2249364, 51.6850318], [-0.2256394, 51.6852229], [-0.2273041, 51.6857102]]}}, {"type": "Feature", "properties": {"osm_id": "1881098", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.1309536, 51.2881473], [0.1317555, 51.2883707], [0.132359, 51.2885137], [0.1343031, 51.2889997], [0.1355269, 51.2893169], [0.1368289, 51.2896723], [0.1392157, 51.2903728]]}}, {"type": "Feature", "properties": {"osm_id": "1881099", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.1901905, 51.3833833], [0.189877, 51.3829496], [0.1893223, 51.3822517], [0.1886443, 51.3814041]]}}, {"type": "Feature", "properties": {"osm_id": "1881100", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.1945245, 51.3898115], [0.1948097, 51.3902231], [0.195094, 51.3906366], [0.1957377, 51.391537], [0.1967799, 51.3929134]]}}, {"type": "Feature", "properties": {"osm_id": "1881101", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 15", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.2392919, 51.4288036], [0.2392071, 51.4283272], [0.2391298, 51.4279601], [0.2390479, 51.4276936], [0.2389853, 51.4274994]]}}, {"type": "Feature", "properties": {"osm_id": "1881102", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0132489, 51.6792189], [0.0104745, 51.6797387], [0.0056833, 51.6806122], [0.0050852, 51.6807125], [0.0045233, 51.6807894], [0.0036842, 51.6808804], [0.0029263, 51.6809408], [0.0022724, 51.6809631], [0.0018174, 51.6809746], [0.0014043, 51.680971], [0.0004601, 51.6809486], [-0.0005591, 51.6808887], [-0.0024722, 51.6807012], [-0.004893, 51.6805371], [-0.006357, 51.6804719], [-0.0075062, 51.6804539], [-0.0079004, 51.6804562], [-0.0093944, 51.6804722], [-0.0101426, 51.6804861], [-0.0104226, 51.6804927]]}}, {"type": "Feature", "properties": {"osm_id": "1881103", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.1275181, 51.6789583], [0.1265679, 51.6791355], [0.125614, 51.6792839], [0.1253423, 51.6793282]]}}, {"type": "Feature", "properties": {"osm_id": "1881111", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15;E 30", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.2565658, 51.6138622], [0.256402, 51.614041], [0.2562261, 51.6142147], [0.2554202, 51.614936], [0.2543438, 51.6158032], [0.2535319, 51.6163803], [0.2532542, 51.6165805], [0.2526109, 51.6169947], [0.2520881, 51.6173066], [0.2515176, 51.6176196], [0.2501845, 51.6182775], [0.2476078, 51.6193559], [0.2453436, 51.620212], [0.2440745, 51.6207313], [0.2415484, 51.6218016], [0.2402453, 51.6223861], [0.2387244, 51.6230979], [0.2358343, 51.62455], [0.2347768, 51.625093], [0.2332512, 51.6258978], [0.2303397, 51.6274809], [0.2282877, 51.6286519], [0.2271652, 51.6292956], [0.2250951, 51.6305693], [0.2218665, 51.6327866], [0.2205561, 51.6336896], [0.2202285, 51.6339279], [0.2171073, 51.6363832], [0.2158241, 51.637461], [0.2117695, 51.6411381], [0.2102839, 51.6423897], [0.2090501, 51.6433991], [0.2081178, 51.6441266], [0.2073267, 51.6447115], [0.2062484, 51.645477], [0.2041277, 51.646913], [0.2023957, 51.6479528], [0.2007632, 51.6488728], [0.1998339, 51.6493592], [0.1968066, 51.6508047], [0.1949686, 51.6516042], [0.1915343, 51.6529416]]}}, {"type": "Feature", "properties": {"osm_id": "1881113", "highway": "motorway", "ref": "M25", "maxspeed": "60 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "sign", "highways_england_area": "DBFO5", "bicycle": "no", "sidewalk": "none", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15", "horse": "no", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.2390802, 51.4288157], [0.2391123, 51.4290942], [0.2391398, 51.4293633], [0.2391547, 51.4296418], [0.2391599, 51.4299202]]}}, {"type": "Feature", "properties": {"osm_id": "1881114", "highway": "trunk", "ref": "A282", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Canterbury Way", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2466789, 51.456125], [0.2470054, 51.4563419], [0.2472615, 51.4565042], [0.2483869, 51.4572639]]}}, {"type": "Feature", "properties": {"osm_id": "1881115", "highway": "trunk", "ref": "A282", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Dartford Tunnel", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "permissive", "layer": "-1", "carriageway_ref": "B", "foot": "no", "int_ref": "E 15", "horse": "no", "alt_name": "Canterbury Way", "z_order": -12}, "geometry": {"type": "LineString", "coordinates": [[0.2517381, 51.4592582], [0.2526332, 51.4599002], [0.2546046, 51.4612628], [0.2551462, 51.4617993], [0.2562534, 51.4630344], [0.2572217, 51.4641251], [0.2611173, 51.4684637], [0.2626513, 51.4701536]]}}, {"type": "Feature", "properties": {"osm_id": "1881116", "highway": "trunk", "ref": "A282", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "source_maxspeed": "UK:nsl_dual", "carriageway_ref": "A", "int_ref": "E 15", "motor_vehicle": "designated", "description": "London Orbital", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2673947, 51.4862417], [0.2673844, 51.4857853], [0.26738, 51.4854097], [0.267381, 51.4850227], [0.2673838, 51.4846606]]}}, {"type": "Feature", "properties": {"osm_id": "1881132", "highway": "trunk", "ref": "A2", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Dartford Bypass", "operator": "Highways England", "highways_england_area": "4", "source_maxspeed": "UK:nsl_dual", "carriageway_ref": "B", "source_name": "kent.gov.uk", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2466819, 51.4271612], [0.2459865, 51.4271105], [0.2454685, 51.4270636]]}}, {"type": "Feature", "properties": {"osm_id": "1881134", "highway": "trunk", "ref": "A2", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "East Rochester Way", "operator": "Transport for London", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.10418, 51.4520038], [0.1050648, 51.4517825], [0.1061377, 51.4515418], [0.106878, 51.4513947], [0.1078972, 51.4512476], [0.108659, 51.451174], [0.1095495, 51.4511139], [0.1106975, 51.4510537], [0.1116952, 51.4509868], [0.1128146, 51.4508698], [0.114134, 51.4506727], [0.1152842, 51.4504373], [0.116571, 51.4501048]]}}, {"type": "Feature", "properties": {"osm_id": "1881203", "highway": "trunk", "ref": "A483", "maxspeed": "30 mph", "oneway": "yes", "name": "Wrexham Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8964687, 53.1795671], [-2.8964697, 53.1793644], [-2.8964791, 53.1792996]]}}, {"type": "Feature", "properties": {"osm_id": "1881406", "highway": "trunk", "ref": "A14", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 24", "description": "Cambridge Northern Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2161535, 52.214178], [0.2141433, 52.2140825], [0.2120028, 52.2140695], [0.2109622, 52.2140788], [0.2087858, 52.2141738], [0.2070524, 52.2143133], [0.2054234, 52.2144797], [0.2037979, 52.2146981], [0.2023538, 52.2149284], [0.2005378, 52.2152737], [0.1996451, 52.2154674], [0.1975991, 52.2159643], [0.1956696, 52.2165359], [0.1947136, 52.2168778], [0.1937183, 52.2172612], [0.1929101, 52.217615], [0.191878, 52.2181358], [0.1911978, 52.2185066], [0.1903433, 52.2190311], [0.1895136, 52.2195988], [0.1886718, 52.2202503], [0.1879673, 52.2208752], [0.186051, 52.2228485], [0.1843347, 52.2246536], [0.1833757, 52.2256562], [0.1825181, 52.22656], [0.1818446, 52.2272142], [0.1812646, 52.227725], [0.1806614, 52.2282033], [0.1798306, 52.2287953], [0.1789018, 52.2293926], [0.1781029, 52.2298296], [0.1776451, 52.2300733], [0.1771872, 52.2302872], [0.176618, 52.230552], [0.176027, 52.2308042], [0.1750849, 52.2311666], [0.1741785, 52.2314801], [0.1735799, 52.2316675], [0.1729061, 52.2318655], [0.1717542, 52.2321857]]}}, {"type": "Feature", "properties": {"osm_id": "1881407", "highway": "trunk", "ref": "A14", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 24", "source_ref": "local knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.216135, 52.2142802], [0.2177584, 52.2144004], [0.2194016, 52.2145709], [0.2204027, 52.2146962], [0.2213393, 52.2148326], [0.2224615, 52.2150091], [0.2234247, 52.2151686]]}}, {"type": "Feature", "properties": {"osm_id": "1881408", "highway": "trunk", "ref": "A10", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "maxspeed_type": "sign", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.1500566, 52.2380001], [0.1501037, 52.2381013], [0.1501921, 52.238291], [0.1502641, 52.2384737]]}}, {"type": "Feature", "properties": {"osm_id": "1881417", "highway": "trunk", "ref": "A428", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "operator": "Highways England", "highways_england_area": "8", "junction": "approach", "source_ref": "local knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2306032, 52.2246587], [-0.2299005, 52.2246065]]}}, {"type": "Feature", "properties": {"osm_id": "1881418", "highway": "trunk", "ref": "A428", "maxspeed": "60 mph", "oneway": "yes", "operator": "Highways England", "highways_england_area": "8", "junction": "approach", "source_ref": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2321116, 52.224291], [-0.2313906, 52.2244408], [-0.2311527, 52.2244999]]}}, {"type": "Feature", "properties": {"osm_id": "1881419", "highway": "trunk", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "8", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2676025, 52.2091452], [-0.2676589, 52.209194], [-0.2676862, 52.2092515], [-0.2676814, 52.2093112], [-0.267642, 52.2093697], [-0.2675709, 52.2094168], [-0.2674774, 52.2094456], [-0.2673734, 52.2094527], [-0.2672719, 52.209437], [-0.2671988, 52.209408], [-0.2671486, 52.2093728], [-0.2671148, 52.2093309], [-0.2670997, 52.2092851], [-0.2671043, 52.2092385], [-0.2671283, 52.2091941], [-0.2671587, 52.2091636], [-0.267216, 52.2091285], [-0.2672867, 52.2091043], [-0.2673655, 52.2090928], [-0.2674464, 52.2090949], [-0.2675307, 52.2091127], [-0.2676025, 52.2091452]]}}, {"type": "Feature", "properties": {"osm_id": "1881420", "highway": "trunk", "ref": "A428", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "8", "junction": "approach", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2676025, 52.2091452], [-0.268463, 52.2091227]]}}, {"type": "Feature", "properties": {"osm_id": "1881431", "highway": "trunk", "ref": "A10", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.1038536, 52.1597749], [0.1036437, 52.15966], [0.1035028, 52.1596008], [0.1034112, 52.15958], [0.1033066, 52.1595636], [0.1031661, 52.1595526]]}}, {"type": "Feature", "properties": {"osm_id": "1881857", "highway": "trunk", "ref": "A51", "maxspeed": "70 mph", "oneway": "yes", "name": "Tarvin By-Pass", "bicycle": "yes", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7766723, 53.1945532], [-2.776942, 53.1946958], [-2.7771056, 53.1947777], [-2.777231, 53.1948154]]}}, {"type": "Feature", "properties": {"osm_id": "1881858", "highway": "trunk", "ref": "A51", "maxspeed": "60 mph", "name": "Tarporley Road", "bicycle": "yes", "foot": "yes", "horse": "yes", "alt_name": "Duddon Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.752657, 53.1863285], [-2.7500987, 53.185469], [-2.7488807, 53.1850607], [-2.7484081, 53.1848619], [-2.7480357, 53.184672], [-2.7467999, 53.1839397], [-2.7453258, 53.1830371]]}}, {"type": "Feature", "properties": {"osm_id": "1968397", "highway": "trunk", "ref": "A51", "maxspeed": "70 mph", "oneway": "yes", "name": "Holme Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7817765, 53.1952131], [-2.7813188, 53.195139], [-2.7811636, 53.1951023], [-2.7803751, 53.1949448], [-2.7799808, 53.1948918], [-2.7796536, 53.1948597], [-2.7791815, 53.1948291], [-2.7788194, 53.1948324], [-2.7784814, 53.19485], [-2.7781061, 53.1948838], [-2.7778622, 53.1949176], [-2.7776292, 53.1949855], [-2.7775415, 53.1950317], [-2.7774384, 53.1950892]]}}, {"type": "Feature", "properties": {"osm_id": "1968398", "highway": "trunk", "ref": "A54", "maxspeed": "40 mph", "name": "By-Pass Road", "bicycle": "yes", "sidewalk": "left", "source_name": "OSLocator", "alt_name": "Holme Street", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7698623, 53.196706], [-2.7695129, 53.1968668], [-2.7682802, 53.1974739], [-2.7673945, 53.1979136], [-2.7667758, 53.1982005], [-2.7664034, 53.1983732], [-2.7658338, 53.1986463], [-2.7657463, 53.1986895], [-2.7654813, 53.1988203], [-2.765165, 53.198967], [-2.7647282, 53.199181]]}}, {"type": "Feature", "properties": {"osm_id": "1997660", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "highways_england_area": "8", "carriageway_ref": "B", "int_ref": "E 15", "alt_name": "High Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2988644, 52.1274624], [-0.2988676, 52.1273117], [-0.2988341, 52.1271709], [-0.298666, 52.1266484]]}}, {"type": "Feature", "properties": {"osm_id": "1997677", "highway": "trunk", "ref": "A1", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "highways_england_area": "8", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2773037, 52.1032378], [-0.2773848, 52.1035412], [-0.2774717, 52.1038215], [-0.2775286, 52.103983], [-0.2776359, 52.1041609], [-0.2778826, 52.1045299], [-0.2780257, 52.1047062]]}}, {"type": "Feature", "properties": {"osm_id": "1998939", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:nsl_dual", "carriageway_ref": "B", "int_ref": "E 15", "source_name": "OS_OpenData_Locator", "alt_name": "Tempsford Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.300663, 52.162319], [-0.3007234, 52.1619951], [-0.300983, 52.1610671], [-0.3014081, 52.1599657], [-0.3016197, 52.158852], [-0.3016186, 52.1577502], [-0.3014647, 52.1568664], [-0.3013423, 52.1562271], [-0.3012184, 52.1553418]]}}, {"type": "Feature", "properties": {"osm_id": "2085876", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "oneway": "yes", "name": "Long Lane", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8802347, 53.219866], [-2.8798167, 53.2198129], [-2.8789852, 53.2196091], [-2.8787679, 53.2195553], [-2.8785124, 53.2194592]]}}, {"type": "Feature", "properties": {"osm_id": "2108436", "highway": "trunk", "ref": "A5116", "maxspeed": "30 mph", "oneway": "yes", "name": "Liverpool Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8944835, 53.2076544], [-2.8944997, 53.2078033]]}}, {"type": "Feature", "properties": {"osm_id": "2108441", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "name": "Moston Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.894558, 53.2273319], [-2.8934649, 53.2264878]]}}, {"type": "Feature", "properties": {"osm_id": "2108442", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8905605, 53.224253], [-2.8906369, 53.224289], [-2.8906886, 53.2243384], [-2.8907094, 53.2243953], [-2.8907018, 53.2244427], [-2.8906726, 53.224487], [-2.890624, 53.2245247], [-2.8905599, 53.2245529], [-2.8904853, 53.2245694], [-2.8904227, 53.2245732], [-2.8903602, 53.2245687], [-2.8902841, 53.2245508], [-2.8902197, 53.2245208], [-2.8901722, 53.2244809], [-2.8901455, 53.2244347], [-2.8901419, 53.2243858], [-2.8901557, 53.2243479], [-2.8902032, 53.2242961], [-2.8902775, 53.2242572], [-2.8903695, 53.2242357], [-2.8904682, 53.2242344], [-2.8905605, 53.224253]]}}, {"type": "Feature", "properties": {"osm_id": "2117763", "highway": "trunk", "ref": "A452", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Chester Road", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8066789, 52.5228803], [-1.806655, 52.5228331], [-1.8066107, 52.5227943], [-1.8063867, 52.5226706], [-1.80618, 52.5225564], [-1.8060955, 52.5225102], [-1.8036813, 52.5211787], [-1.8032842, 52.5209549], [-1.8029143, 52.5207465], [-1.802712, 52.5206325], [-1.8022225, 52.520369], [-1.8021526, 52.5203332], [-1.8020201, 52.520248], [-1.8016352, 52.5200092], [-1.8013713, 52.5198334]]}}, {"type": "Feature", "properties": {"osm_id": "2145852", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3523983, 51.4806804], [-0.3508632, 51.4809778], [-0.3494196, 51.4812904]]}}, {"type": "Feature", "properties": {"osm_id": "2145853", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3530706, 51.4804878], [-0.3539646, 51.4803305]]}}, {"type": "Feature", "properties": {"osm_id": "2191122", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Euston Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "turn_lanes": "through|through|through", "motor_vehicle": "designated", "cycleway_left": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1442329, 51.5240882], [-0.1440296, 51.5240624], [-0.1439337, 51.5240495], [-0.143651, 51.5240211], [-0.1435901, 51.5240152], [-0.143449, 51.5240015]]}}, {"type": "Feature", "properties": {"osm_id": "2198658", "highway": "trunk", "ref": "A23", "maxspeed": "20 mph", "oneway": "no", "lit": "yes", "name": "London Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1355391, 50.829248], [-0.1356308, 50.8294687]]}}, {"type": "Feature", "properties": {"osm_id": "2199185", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Marylebone Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "motor_vehicle": "designated", "cycleway_left": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1442338, 51.5239873], [-0.1444036, 51.5240029], [-0.1445079, 51.5240049], [-0.1446138, 51.5239972], [-0.1447305, 51.5239815]]}}, {"type": "Feature", "properties": {"osm_id": "2236564", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "2", "oneway": "no", "lit": "yes", "name": "Archway Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1408509, 51.5732747], [-0.1407774, 51.5732046], [-0.1407087, 51.5731288], [-0.1400713, 51.5724614]]}}, {"type": "Feature", "properties": {"osm_id": "2236994", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Baker's Lane", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1540526, 51.580688], [-0.1542446, 51.5807152], [-0.1545186, 51.5806871]]}}, {"type": "Feature", "properties": {"osm_id": "2250234", "highway": "motorway", "ref": "M271", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "name": "Nursling Spur Motorway", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "M", "foot": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4703478, 50.924313], [-1.4707322, 50.924949], [-1.4719656, 50.9268812], [-1.4726872, 50.9282452], [-1.4732124, 50.9295467]]}}, {"type": "Feature", "properties": {"osm_id": "2250235", "highway": "motorway", "ref": "M271", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "name": "Nursling Spur Motorway", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "paved", "carriageway_ref": "L", "foot": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4753623, 50.9452], [-1.4754769, 50.9448831], [-1.4754983, 50.9447276], [-1.4754637, 50.9445841], [-1.4754208, 50.9444381], [-1.4753467, 50.9443021]]}}, {"type": "Feature", "properties": {"osm_id": "2250236", "highway": "trunk", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Redbridge Roundabout", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4702436, 50.9227767], [-1.470149, 50.9227792], [-1.4700652, 50.9227696], [-1.4699589, 50.9227534], [-1.4698355, 50.9227115], [-1.4697505, 50.92266], [-1.4696913, 50.9226168], [-1.4696422, 50.9225521], [-1.469566, 50.9224087], [-1.4695426, 50.9222239], [-1.4695732, 50.9221093], [-1.4696399, 50.9220303], [-1.4697255, 50.9219522], [-1.4698538, 50.9218948], [-1.4700448, 50.921844], [-1.4702041, 50.9218314]]}}, {"type": "Feature", "properties": {"osm_id": "2261945", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "operator": "Transport for London", "source_maxspeed": "nsl", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2883033, 51.6238044], [-0.2883087, 51.6238553], [-0.2883024, 51.6238959], [-0.2882965, 51.6239244], [-0.2882779, 51.623965], [-0.2882272, 51.6240756], [-0.2881564, 51.6241387], [-0.2880989, 51.6241657], [-0.2880385, 51.6241853], [-0.2879333, 51.6242213], [-0.287835, 51.6242223], [-0.2877177, 51.6242075], [-0.2876265, 51.6241805], [-0.2875417, 51.6241461], [-0.2874566, 51.6241003]]}}, {"type": "Feature", "properties": {"osm_id": "2261947", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford By-pass", "operator": "Transport for London", "alt_name": "Edgware Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2874566, 51.6241003], [-0.2872539, 51.6239899], [-0.2871625, 51.6239435], [-0.2869112, 51.6238159], [-0.2867482, 51.6237201], [-0.2865971, 51.6236471], [-0.2864271, 51.6235806], [-0.2861994, 51.6235073], [-0.2859514, 51.6234381], [-0.2857107, 51.623376], [-0.2838542, 51.6228968], [-0.2832982, 51.6227609], [-0.2810808, 51.6222346], [-0.2794199, 51.6218307], [-0.278227, 51.6215541], [-0.2776801, 51.6214507]]}}, {"type": "Feature", "properties": {"osm_id": "2261948", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford By-pass", "operator": "Transport for London", "alt_name": "Edgware Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2776397, 51.6213383], [-0.2779326, 51.6213855], [-0.2787724, 51.6215637], [-0.2819419, 51.6223183], [-0.2825833, 51.6224695], [-0.2862983, 51.6234259], [-0.2870514, 51.6236186], [-0.2871855, 51.6236444], [-0.2873022, 51.6236577], [-0.28738, 51.6236535], [-0.2875394, 51.6236419]]}}, {"type": "Feature", "properties": {"osm_id": "2269930", "highway": "trunk", "ref": "A49", "maxspeed": "60 mph", "name": "Whitchurch Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6655562, 53.0880831], [-2.6656756, 53.0888814], [-2.66547, 53.0892229], [-2.6650825, 53.0896081], [-2.6636418, 53.090373], [-2.6632368, 53.0906442], [-2.6630929, 53.0909293], [-2.6630177, 53.0913707], [-2.6630368, 53.0920204], [-2.6631284, 53.0933315], [-2.6631309, 53.0935945], [-2.6630017, 53.0937894], [-2.6629288, 53.0938924], [-2.6627201, 53.0941872], [-2.6625896, 53.0943534], [-2.6619677, 53.0951455], [-2.6617452, 53.0955632], [-2.6616702, 53.0959085], [-2.6617094, 53.0963645], [-2.6618035, 53.0975969]]}}, {"type": "Feature", "properties": {"osm_id": "2271071", "highway": "trunk", "ref": "A534", "maxspeed": "60 mph", "bicycle": "yes", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.668007, 53.0873956], [-2.6684173, 53.0875357], [-2.6692876, 53.0877664], [-2.6697771, 53.087868], [-2.6699502, 53.0878891], [-2.670268, 53.0879278], [-2.670658, 53.0879476], [-2.6710236, 53.0879557], [-2.6714822, 53.0879325], [-2.6718899, 53.0878762], [-2.6722662, 53.0877461]]}}, {"type": "Feature", "properties": {"osm_id": "2271581", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9134706, 53.1562589], [-2.9154447, 53.1560839], [-2.9168695, 53.1560015], [-2.918466, 53.1559501], [-2.9202941, 53.1559398], [-2.9213584, 53.1559501], [-2.9226802, 53.1559912], [-2.9242767, 53.1560993], [-2.9261392, 53.1562743], [-2.928572, 53.1566131]]}}, {"type": "Feature", "properties": {"osm_id": "2272196", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4101343, 51.4911519], [-0.4103051, 51.4910827], [-0.4104109, 51.4910398], [-0.4104855, 51.490983], [-0.4105872, 51.4908931], [-0.4106596, 51.4907996], [-0.4106972, 51.4907111], [-0.4107261, 51.4906116], [-0.4108668, 51.4900499], [-0.4109328, 51.4897105], [-0.4110904, 51.489025], [-0.4112106, 51.488544], [-0.4112621, 51.488202], [-0.4112878, 51.4879508], [-0.4112621, 51.4876675], [-0.4111762, 51.4873522], [-0.4110303, 51.4869727], [-0.4108329, 51.4866253], [-0.4106698, 51.486342], [-0.4105067, 51.4861122], [-0.4101548, 51.4857915], [-0.4097944, 51.4854815], [-0.409245, 51.48507], [-0.4086442, 51.4847172], [-0.4079987, 51.4843259], [-0.4076949, 51.4841347]]}}, {"type": "Feature", "properties": {"osm_id": "2272197", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4042535, 51.477953], [-0.4041847, 51.4780259], [-0.4041384, 51.4781576], [-0.4040644, 51.4784185], [-0.4039156, 51.4789509], [-0.4038351, 51.4792733], [-0.4037853, 51.4795713], [-0.4037744, 51.4797359], [-0.4037717, 51.4798862], [-0.4037788, 51.4801025], [-0.4038012, 51.4802671], [-0.4038292, 51.4804229], [-0.4038629, 51.4805594], [-0.4039006, 51.4806811], [-0.403946, 51.4808066], [-0.4039918, 51.4809263], [-0.4040587, 51.4810689], [-0.4041258, 51.4811925], [-0.4041982, 51.4813178], [-0.40427, 51.4814259], [-0.4043494, 51.4815408], [-0.4044286, 51.4816412], [-0.4046441, 51.4819215], [-0.4050389, 51.482285], [-0.4055453, 51.4826485], [-0.4063435, 51.4831242], [-0.4071074, 51.4835839], [-0.4077206, 51.483958], [-0.4083949, 51.484391], [-0.4094249, 51.4850324], [-0.4099484, 51.4853798], [-0.4103089, 51.4856684], [-0.4105836, 51.4859623], [-0.4108067, 51.4862296], [-0.4110213, 51.4865182], [-0.4112016, 51.4868068], [-0.4113303, 51.4871489], [-0.4114247, 51.4875069], [-0.4114676, 51.4877688], [-0.4114848, 51.4879666], [-0.4114676, 51.4882338], [-0.4114161, 51.4885598], [-0.4113217, 51.488966], [-0.4111819, 51.4897513], [-0.4110925, 51.4900701], [-0.4110103, 51.4904199]]}}, {"type": "Feature", "properties": {"osm_id": "2272375", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "Jolly Waggoner Roundabout", "operator": "Transport for London", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4044947, 51.4776789], [-0.4044995, 51.4777308], [-0.4044871, 51.4777891], [-0.404425, 51.47787], [-0.4043419, 51.4779226]]}}, {"type": "Feature", "properties": {"osm_id": "2272377", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4093672, 51.4973886], [-0.4097444, 51.4948972], [-0.4097687, 51.4947264], [-0.4097891, 51.4945606], [-0.409844, 51.4939632], [-0.4098541, 51.4938785], [-0.4098684, 51.4938051], [-0.4099597, 51.4934216]]}}, {"type": "Feature", "properties": {"osm_id": "2272378", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4106735, 51.4928243], [-0.4105298, 51.4929058], [-0.4104322, 51.4929709], [-0.4103607, 51.4930453], [-0.4103176, 51.4931201], [-0.4102218, 51.4933552], [-0.4100347, 51.4941446], [-0.4099408, 51.4946422], [-0.4098901, 51.4949343], [-0.4095392, 51.4974055], [-0.409526, 51.4975056], [-0.4095304, 51.4975795], [-0.409545, 51.4976596], [-0.4096008, 51.4978146]]}}, {"type": "Feature", "properties": {"osm_id": "2272383", "highway": "trunk", "ref": "A312", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3909782, 51.525187], [-0.3911753, 51.525148], [-0.3912697, 51.5251106], [-0.3914798, 51.5249636], [-0.3917609, 51.5246353], [-0.3923574, 51.5239182], [-0.3926611, 51.5236035], [-0.3931286, 51.5232121], [-0.3940094, 51.522498], [-0.3951996, 51.5217188]]}}, {"type": "Feature", "properties": {"osm_id": "2272384", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4092195, 51.4986893], [-0.4091227, 51.4989502], [-0.4090965, 51.4990175]]}}, {"type": "Feature", "properties": {"osm_id": "2272385", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "sidewalk": "none", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.390485, 51.5356751], [-0.3906198, 51.5355501], [-0.3907065, 51.5354338], [-0.3907327, 51.5352528], [-0.3907065, 51.5349536], [-0.390644, 51.5347295], [-0.3903286, 51.5339173]]}}, {"type": "Feature", "properties": {"osm_id": "2272386", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "The Parkway", "operator": "Transport for London", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3912722, 51.5257566], [-0.3910294, 51.5258475], [-0.3908663, 51.525965], [-0.3907375, 51.5261412], [-0.390523, 51.5265578], [-0.3902809, 51.5271206], [-0.3901482, 51.5275789], [-0.3900467, 51.5280455], [-0.3899645, 51.5287667], [-0.3898482, 51.5300086], [-0.3898305, 51.5307111], [-0.3898532, 51.5313422], [-0.3899394, 51.5320344], [-0.3901239, 51.5328795], [-0.3903232, 51.5334976]]}}, {"type": "Feature", "properties": {"osm_id": "2272973", "highway": "trunk", "ref": "A312", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Church Road", "operator": "Transport for London", "sidewalk": "separate", "source_name": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3778707, 51.5424874], [-0.3781716, 51.5424684], [-0.3783425, 51.5424536], [-0.3785121, 51.5424333], [-0.3786899, 51.5424074], [-0.3788639, 51.5423742], [-0.3790153, 51.5423351], [-0.3791382, 51.5422926], [-0.3792575, 51.5422439], [-0.3794034, 51.5421718]]}}, {"type": "Feature", "properties": {"osm_id": "2272974", "highway": "trunk", "ref": "A312", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Church Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "source_name": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3906844, 51.53641], [-0.3905865, 51.5364197], [-0.3904723, 51.5364373], [-0.390341, 51.5364699], [-0.3902511, 51.5365069], [-0.3901714, 51.5365426]]}}, {"type": "Feature", "properties": {"osm_id": "2306935", "highway": "trunk", "ref": "A82", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "North Road", "operator": "Transport Scotland", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-5.0943208, 56.8214186], [-5.0942136, 56.8215057], [-5.0942226, 56.8215107]]}}, {"type": "Feature", "properties": {"osm_id": "2313733", "highway": "trunk", "name": "One Ash Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1848492, 52.7518458], [-1.1847998, 52.7518747], [-1.1847019, 52.7519184], [-1.1845786, 52.7519458], [-1.184456, 52.7519506], [-1.1843428, 52.7519366], [-1.1842447, 52.7519075], [-1.184142, 52.7518515], [-1.1840547, 52.7517447], [-1.1840551, 52.7516169]]}}, {"type": "Feature", "properties": {"osm_id": "2314031", "highway": "trunk", "ref": "A6", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.184142, 52.7518515], [-1.1840225, 52.7518299], [-1.1838995, 52.751832], [-1.1836698, 52.7518466], [-1.1835135, 52.7518619], [-1.1820518, 52.7520323], [-1.1798165, 52.7523109], [-1.1789104, 52.7524026], [-1.1781666, 52.7524497], [-1.1773252, 52.7524725], [-1.1767171, 52.7524674], [-1.1761698, 52.7524564], [-1.175337, 52.7524117], [-1.1745213, 52.7523527], [-1.1735996, 52.7522323], [-1.1727441, 52.7520943], [-1.1718775, 52.7519195], [-1.1683232, 52.7511403], [-1.1658007, 52.7505783], [-1.1637995, 52.7501261], [-1.1629349, 52.7499105], [-1.1622431, 52.7497095], [-1.1617256, 52.7495527], [-1.1613365, 52.7494258], [-1.1608103, 52.7492444], [-1.1603649, 52.7490829], [-1.1596007, 52.7487869], [-1.159231, 52.7486273]]}}, {"type": "Feature", "properties": {"osm_id": "2314032", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "maxspeed_type": "GB:national_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1454869, 52.740741], [-1.1455463, 52.7408488], [-1.1456022, 52.7409211], [-1.1456913, 52.740996], [-1.1459329, 52.7411359], [-1.1464644, 52.7414421], [-1.1475626, 52.7420591]]}}, {"type": "Feature", "properties": {"osm_id": "2314423", "highway": "trunk", "maxspeed": "50 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2936306, 52.6963626], [-1.2934388, 52.6964168], [-1.2932698, 52.6964468], [-1.2930824, 52.6964613], [-1.2919177, 52.6964813], [-1.2917911, 52.6964774], [-1.2916092, 52.6964618], [-1.2914362, 52.6964053], [-1.2912522, 52.6963298], [-1.2910937, 52.6962336], [-1.2910068, 52.6961309], [-1.2909698, 52.6960486], [-1.290965, 52.6959642], [-1.2909785, 52.6958785], [-1.2909996, 52.6958036], [-1.2910652, 52.6956992], [-1.2911482, 52.6956074], [-1.2912375, 52.6955508], [-1.291404, 52.6954829], [-1.2915642, 52.6954389], [-1.2917551, 52.6954009], [-1.291954, 52.695375], [-1.2929092, 52.695287], [-1.2930677, 52.6952852], [-1.2933414, 52.6953004], [-1.2934997, 52.6953221], [-1.2936613, 52.6953778], [-1.2937662, 52.6954294], [-1.2938694, 52.6955045], [-1.2939362, 52.695573], [-1.2940102, 52.6956847], [-1.2940432, 52.6957449], [-1.2940679, 52.6959094], [-1.2940449, 52.6960252], [-1.2939926, 52.6961164], [-1.293915, 52.6961982], [-1.2937895, 52.6962881], [-1.2936306, 52.6963626]]}}, {"type": "Feature", "properties": {"osm_id": "2314424", "highway": "trunk", "ref": "A511", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Little Shaw Lane", "source_name": "NaPTAN + Bing", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.303464, 52.7004319], [-1.3033148, 52.7003706], [-1.3030759, 52.7002869], [-1.3025608, 52.7001644], [-1.3021842, 52.7000707]]}}, {"type": "Feature", "properties": {"osm_id": "2314425", "highway": "trunk", "ref": "A511", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2940432, 52.6957449], [-1.2942705, 52.6959374], [-1.2943967, 52.6960295], [-1.2945591, 52.6961105], [-1.2947722, 52.6961957], [-1.2948698, 52.6962279], [-1.295346, 52.6963852], [-1.2958996, 52.6965966], [-1.2965329, 52.6968747], [-1.2972831, 52.6972667], [-1.2980631, 52.6977649], [-1.2982896, 52.6979573], [-1.2987383, 52.6983385]]}}, {"type": "Feature", "properties": {"osm_id": "2314426", "highway": "trunk", "maxspeed": "40 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3039523, 52.7002418], [-1.3040177, 52.7002656], [-1.3040438, 52.7002784], [-1.3040745, 52.7003379], [-1.3040783, 52.7003922], [-1.3040543, 52.7004471], [-1.304026, 52.7004724], [-1.3039918, 52.7004852], [-1.3038677, 52.7005032], [-1.3037198, 52.7005007], [-1.3035932, 52.7004831], [-1.3034927, 52.7004534], [-1.303464, 52.7004319], [-1.3034376, 52.7003811], [-1.3034497, 52.7003411], [-1.3034752, 52.7003025], [-1.3035088, 52.7002604], [-1.3035762, 52.7002271], [-1.3036498, 52.7002113], [-1.3037143, 52.7002051], [-1.3037852, 52.7002054], [-1.3038845, 52.7002206], [-1.3039523, 52.7002418]]}}, {"type": "Feature", "properties": {"osm_id": "2314978", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1716986, 52.6601624], [-1.1717375, 52.6602264], [-1.1717445, 52.6603122], [-1.1717092, 52.6603877], [-1.1716174, 52.6604655], [-1.1714642, 52.6605217], [-1.1713069, 52.6605349], [-1.1712173, 52.660526], [-1.1710484, 52.6604696], [-1.1709602, 52.6604011], [-1.1709118, 52.6602981], [-1.170917, 52.6602382], [-1.1709613, 52.6601608], [-1.1710679, 52.6600834], [-1.1711765, 52.6600453], [-1.1712984, 52.6600285], [-1.1714027, 52.6600317], [-1.1714821, 52.6600454], [-1.1716085, 52.6600926], [-1.1716986, 52.6601624]]}}, {"type": "Feature", "properties": {"osm_id": "2328332", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "oneway": "yes", "name": "Derby Road", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2269097, 52.7819605], [-1.2269908, 52.7819509], [-1.2270815, 52.7819524], [-1.227162, 52.7819582], [-1.227228, 52.7819699], [-1.2273077, 52.7819938], [-1.2273792, 52.7820259], [-1.2274401, 52.7820652], [-1.2274886, 52.7821104], [-1.2275278, 52.7821714], [-1.2275408, 52.7822043], [-1.227546, 52.7822342], [-1.2275427, 52.782291], [-1.227522, 52.7823463], [-1.2274847, 52.7823984], [-1.2274198, 52.7824607], [-1.227377, 52.7824809], [-1.2272925, 52.7825207], [-1.2271679, 52.7825533], [-1.2270784, 52.7825623], [-1.227, 52.7825591], [-1.2268852, 52.7825392], [-1.2267816, 52.7825097], [-1.2266917, 52.7824666], [-1.2266154, 52.7824059], [-1.2265798, 52.7823599], [-1.2265498, 52.7822951], [-1.2265449, 52.7822457], [-1.2265533, 52.7821965], [-1.2265748, 52.7821487], [-1.226609, 52.7821037], [-1.2266755, 52.7820481], [-1.2267034, 52.7820309], [-1.2267834, 52.7819953], [-1.2269097, 52.7819605]]}}, {"type": "Feature", "properties": {"osm_id": "2336251", "highway": "trunk", "ref": "A483", "maxspeed": "30 mph", "oneway": "yes", "name": "Grosvenor Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8946601, 53.1855055], [-2.8943673, 53.1858205], [-2.8940316, 53.1861895], [-2.8938445, 53.1864184], [-2.8937529, 53.1865272], [-2.8937205, 53.1865871], [-2.8937115, 53.1866366], [-2.8937127, 53.1866885], [-2.8937341, 53.1867744]]}}, {"type": "Feature", "properties": {"osm_id": "2336252", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "name": "Nicholas Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8937889, 53.186847], [-2.8938973, 53.1870059], [-2.8939875, 53.1871514], [-2.8940776, 53.187318], [-2.894115, 53.1873891], [-2.8941717, 53.1875232], [-2.894393, 53.1880242], [-2.8946258, 53.1885251], [-2.8948155, 53.1889538], [-2.8950012, 53.1893455], [-2.8951143, 53.189559], [-2.8951866, 53.1896799], [-2.8952597, 53.1897932], [-2.8953821, 53.1900621], [-2.8955341, 53.19048], [-2.8956385, 53.1908208]]}}, {"type": "Feature", "properties": {"osm_id": "2336253", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Nicholas Street", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8955751, 53.1912041], [-2.895562, 53.1911386], [-2.8955189, 53.1909411], [-2.8953973, 53.1905226], [-2.895303, 53.1902397], [-2.8952117, 53.1900414], [-2.8951899, 53.1899942], [-2.8951078, 53.1898339], [-2.8950287, 53.1896955], [-2.8949914, 53.1896326], [-2.8948771, 53.1893875], [-2.8946837, 53.1889775], [-2.8943393, 53.1882036], [-2.8942193, 53.1879548], [-2.8941306, 53.1877639], [-2.8940419, 53.1875683], [-2.8939572, 53.1873954], [-2.8938619, 53.1873151], [-2.8937876, 53.1872818], [-2.8937388, 53.1872679], [-2.8935658, 53.1872407], [-2.8933815, 53.1872181]]}}, {"type": "Feature", "properties": {"osm_id": "2336257", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "St Oswalds Way", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8916996, 53.1956418], [-2.8913395, 53.1956064], [-2.8909851, 53.1955558], [-2.8904547, 53.195448], [-2.890286, 53.1953954], [-2.8901412, 53.1953502], [-2.8893285, 53.1950681], [-2.8889775, 53.1949369], [-2.8885767, 53.1947913], [-2.8882269, 53.1946484], [-2.8881213, 53.1946323], [-2.8879465, 53.1946589]]}}, {"type": "Feature", "properties": {"osm_id": "2336258", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "name": "St. Oswalds Way", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8834493, 53.1921773], [-2.8836384, 53.1924472], [-2.8837398, 53.192575], [-2.8838903, 53.1927257], [-2.884089, 53.1928683], [-2.8842045, 53.192948], [-2.8845411, 53.1931777], [-2.8846168, 53.1932294], [-2.8848017, 53.1933675]]}}, {"type": "Feature", "properties": {"osm_id": "2336259", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "name": "St. Oswalds Way", "bicycle": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8871367, 53.1945145], [-2.887059, 53.1944411], [-2.8869309, 53.1942901], [-2.8867501, 53.1941938], [-2.8866588, 53.194173], [-2.886543, 53.1941475], [-2.8863833, 53.1941154], [-2.8862237, 53.1940784], [-2.8860641, 53.1940389], [-2.8859127, 53.1940043], [-2.8857774, 53.1939684], [-2.8856739, 53.1939305], [-2.8855527, 53.1938821], [-2.88543, 53.1938292], [-2.8853196, 53.1937775], [-2.8851432, 53.1936879]]}}, {"type": "Feature", "properties": {"osm_id": "2336260", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Grosvenor Park Road", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.882307, 53.1917904], [-2.8822777, 53.1917348], [-2.8822504, 53.1916759], [-2.882186, 53.1915843], [-2.8821089, 53.1914773], [-2.8820662, 53.191409], [-2.8820446, 53.1913744], [-2.8819802, 53.1912652], [-2.8819382, 53.1911506]]}}, {"type": "Feature", "properties": {"osm_id": "2340822", "highway": "trunk", "ref": "A650", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "sidewalk": "no", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5341125, 53.7150667], [-1.5342555, 53.714726], [-1.5343083, 53.714467], [-1.534229, 53.714223], [-1.5341099, 53.7140438], [-1.5338236, 53.7136616], [-1.533496, 53.7133269], [-1.5331203, 53.7130017], [-1.5328789, 53.7128187], [-1.5320937, 53.7122506], [-1.5311988, 53.711593], [-1.5311343, 53.7115462], [-1.5305884, 53.7111386], [-1.5303595, 53.7109677], [-1.5300702, 53.7107744], [-1.5298896, 53.7106675], [-1.5296994, 53.710555], [-1.5291179, 53.7102443], [-1.528591, 53.7100134], [-1.5280365, 53.7098028], [-1.5273792, 53.7096043], [-1.5267176, 53.7094539]]}}, {"type": "Feature", "properties": {"osm_id": "2340834", "highway": "trunk", "ref": "A650", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "sidewalk": "no", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5061445, 53.6993698], [-1.5060638, 53.6994193], [-1.5059764, 53.6994884], [-1.5059044, 53.6995699], [-1.5058483, 53.6996808], [-1.505816, 53.6997727], [-1.5057923, 53.6998722], [-1.5057784, 53.6999875], [-1.5058706, 53.700466], [-1.5060288, 53.7009568], [-1.5062393, 53.7014888], [-1.5065044, 53.7020055], [-1.5068857, 53.7025525], [-1.5073318, 53.7031012], [-1.5076273, 53.7034022], [-1.5079419, 53.7036966], [-1.5082705, 53.7039759], [-1.5086232, 53.7042343], [-1.5089013, 53.7044407]]}}, {"type": "Feature", "properties": {"osm_id": "2368987", "highway": "trunk", "ref": "A422", "maxspeed": "60 mph", "oneway": "yes", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2886003, 52.0723024], [-1.288849, 52.072367], [-1.289014, 52.0724781], [-1.2890723, 52.0725592], [-1.2890934, 52.0727149], [-1.2890236, 52.0728457], [-1.2888905, 52.0729469], [-1.2887746, 52.0729884], [-1.2886976, 52.0730159], [-1.2885494, 52.0730358], [-1.2883767, 52.0730299], [-1.2881993, 52.0729892], [-1.2881057, 52.0729426], [-1.2880453, 52.0729126], [-1.2879359, 52.072803], [-1.2879025, 52.0727296], [-1.2879102, 52.072614], [-1.2879129, 52.0725747], [-1.2879962, 52.0724606], [-1.2881445, 52.0723665], [-1.288358, 52.0723067], [-1.2886003, 52.0723024]]}}, {"type": "Feature", "properties": {"osm_id": "2369975", "highway": "trunk", "ref": "A5127", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Salford Circus", "source_maxspeed": "survey", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8598186, 52.5098889], [-1.8597485, 52.5099142]]}}, {"type": "Feature", "properties": {"osm_id": "2371852", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8446516, 53.1955925], [-2.8446001, 53.1962713], [-2.8442817, 53.1982583], [-2.8440946, 53.1993027], [-2.8438226, 53.2007923], [-2.8435373, 53.2024849], [-2.8434852, 53.2031403], [-2.8435759, 53.2040268], [-2.843716, 53.2045901], [-2.8439477, 53.2052173], [-2.8441929, 53.205697], [-2.8445236, 53.2062342]]}}, {"type": "Feature", "properties": {"osm_id": "2372075", "highway": "trunk", "ref": "A400", "maxspeed": "20 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Camden High Street", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1391332, 51.5352138], [-0.1392241, 51.5353398], [-0.1393598, 51.5354914], [-0.1397143, 51.5358425], [-0.139798, 51.5359251], [-0.1398564, 51.5359806], [-0.1406297, 51.5367211], [-0.1411003, 51.5371711]]}}, {"type": "Feature", "properties": {"osm_id": "2374188", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Redmoor Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "layer": "1", "bridge": "yes", "junction": "roundabout", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.7400804, 52.0126328], [-0.7400673, 52.0127118], [-0.74004, 52.0127585]]}}, {"type": "Feature", "properties": {"osm_id": "2374268", "highway": "trunk", "ref": "A5", "maxspeed": "60 mph", "lanes": "3", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "8", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7011502, 51.9923752], [-0.7013236, 51.9924615], [-0.7014124, 51.9925242], [-0.7015234, 51.9926364], [-0.7015835, 51.9927349], [-0.7016154, 51.992833], [-0.7016187, 51.9929619]]}}, {"type": "Feature", "properties": {"osm_id": "2374456", "highway": "trunk", "ref": "A5", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "8", "source_maxspeed": "Stats19", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6992859, 51.9928153], [-0.6988358, 51.9923674], [-0.6983793, 51.9919169], [-0.6975228, 51.9912149], [-0.6965782, 51.9905822], [-0.6957177, 51.9901049], [-0.694559, 51.9895393], [-0.6940742, 51.9893449]]}}, {"type": "Feature", "properties": {"osm_id": "2374459", "highway": "trunk", "ref": "A5", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "operator": "Highways England", "maxspeed_type": "sign", "highways_england_area": "8", "surface": "asphalt", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.586774, 51.9312803], [-0.5862557, 51.9309406], [-0.5851782, 51.9302098], [-0.5848527, 51.9299959], [-0.584561, 51.92982], [-0.5841743, 51.9295868], [-0.5839525, 51.9294416], [-0.5836925, 51.9292785], [-0.583589, 51.9292136], [-0.5835737, 51.929204], [-0.5833156, 51.9290421], [-0.5830145, 51.9288533], [-0.5813557, 51.9277802], [-0.5810123, 51.9275584], [-0.5795709, 51.9266478]]}}, {"type": "Feature", "properties": {"osm_id": "2374460", "highway": "trunk", "ref": "A505", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "maxspeed_type": "gb:national", "highways_england_area": "8", "surface": "asphalt", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5510676, 51.9067892], [-0.5510274, 51.9068595], [-0.5509432, 51.906921], [-0.5508375, 51.9069571], [-0.5506977, 51.9069729], [-0.5505773, 51.9069535], [-0.5504809, 51.9069076], [-0.5504105, 51.906847], [-0.550382, 51.9067929], [-0.5503875, 51.9067], [-0.5504378, 51.9066322], [-0.5505262, 51.9065747], [-0.5506295, 51.9065484], [-0.550731, 51.9065405], [-0.550836, 51.9065508], [-0.550937, 51.906582], [-0.5510134, 51.9066366], [-0.5510622, 51.9066987], [-0.5510711, 51.9067376], [-0.5510676, 51.9067892]]}}, {"type": "Feature", "properties": {"osm_id": "2375300", "highway": "trunk", "ref": "A414", "maxspeed": "40 mph", "lit": "yes", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4801892, 51.7365519], [-0.4801101, 51.7366009], [-0.4800015, 51.736627], [-0.4798593, 51.736631], [-0.4797708, 51.7365918], [-0.4797127, 51.7365279], [-0.4796917, 51.7364738], [-0.4796947, 51.7364192], [-0.4797495, 51.7363651], [-0.4798277, 51.736311], [-0.4799089, 51.7362844], [-0.480031, 51.7362844], [-0.4801581, 51.7363071], [-0.4803046, 51.7363312], [-0.4804642, 51.7363318], [-0.4811079, 51.7362117], [-0.4812863, 51.7361773], [-0.4814303, 51.7361113], [-0.4815008, 51.7360637], [-0.481566, 51.7360278], [-0.4816014, 51.7360121], [-0.4816918, 51.7360022], [-0.481765, 51.7360129], [-0.4818388, 51.7360454], [-0.4818911, 51.7360926], [-0.4819002, 51.7361295], [-0.4819048, 51.7361484], [-0.4818871, 51.7361991], [-0.4818214, 51.7362531], [-0.4817137, 51.73628], [-0.4815987, 51.7362762], [-0.4814698, 51.7362547], [-0.4813433, 51.7362494], [-0.4812671, 51.7362597], [-0.4805523, 51.7363817], [-0.4803994, 51.7364315], [-0.4802643, 51.7364905], [-0.4801892, 51.7365519]]}}, {"type": "Feature", "properties": {"osm_id": "2375368", "highway": "trunk", "ref": "A505", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.1576268, 52.1022016], [0.1586407, 52.1021826], [0.1592075, 52.1021758], [0.1595616, 52.102183], [0.1598317, 52.1021854], [0.1599417, 52.1021888], [0.1602046, 52.1021957], [0.1603478, 52.1022015]]}}, {"type": "Feature", "properties": {"osm_id": "2376266", "highway": "trunk", "ref": "A9", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport Scotland", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.2361653, 57.501719], [-4.2368638, 57.5018217], [-4.2375822, 57.5018744]]}}, {"type": "Feature", "properties": {"osm_id": "2383777", "highway": "trunk", "maxspeed": "50 mph", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8530372, 53.2110125], [-2.8533571, 53.2111287], [-2.8535007, 53.211319], [-2.8534406, 53.2116839], [-2.8532947, 53.2118536], [-2.8528226, 53.2121208], [-2.8524707, 53.2121979], [-2.8519404, 53.2121215], [-2.8516857, 53.2119181], [-2.8516389, 53.2117269], [-2.8516467, 53.2116498], [-2.8517099, 53.2114391], [-2.8520314, 53.2111839], [-2.8523466, 53.2110267], [-2.8525715, 53.2110022], [-2.8530372, 53.2110125]]}}, {"type": "Feature", "properties": {"osm_id": "2383779", "highway": "trunk", "ref": "A56", "maxspeed": "50 mph", "oneway": "yes", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8525715, 53.2110022], [-2.8529256, 53.2108927], [-2.8531451, 53.2107636], [-2.854352, 53.2095081]]}}, {"type": "Feature", "properties": {"osm_id": "2385845", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.894333, 52.6514056], [-1.8959719, 52.6520093], [-1.8971814, 52.6525418], [-1.8986446, 52.653323], [-1.9013369, 52.6549301], [-1.9027995, 52.6557349], [-1.9042744, 52.6564804], [-1.9061166, 52.6573103], [-1.908087, 52.6580913], [-1.9108964, 52.659109]]}}, {"type": "Feature", "properties": {"osm_id": "2385867", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.8946568, 52.6517186], [-1.8937008, 52.6514181], [-1.8927728, 52.651159], [-1.8919917, 52.6509788], [-1.8912355, 52.6508246], [-1.8904959, 52.6507064], [-1.8897599, 52.6505911], [-1.8887113, 52.6504732], [-1.8877281, 52.6504042], [-1.8866295, 52.650362], [-1.8860759, 52.6503591], [-1.885546, 52.6503652], [-1.8846868, 52.6503894], [-1.8840413, 52.6504289], [-1.8834218, 52.6504784], [-1.8828739, 52.6505378], [-1.8823339, 52.6506049], [-1.8815858, 52.6507132], [-1.880778, 52.6508587], [-1.8800563, 52.6510094], [-1.8793013, 52.6511824], [-1.878524, 52.6513806], [-1.8777842, 52.6515748], [-1.8767083, 52.6518709], [-1.8756581, 52.6521592], [-1.8747916, 52.6523953], [-1.8739041, 52.6526101], [-1.872785, 52.6528686], [-1.8716749, 52.6530936], [-1.8710339, 52.6532125], [-1.8703564, 52.6533291], [-1.8690752, 52.6535247], [-1.8678943, 52.6536752], [-1.8668409, 52.6537839], [-1.8660806, 52.6538526], [-1.865405, 52.653906], [-1.8645877, 52.6539598], [-1.8637974, 52.6539913], [-1.8632125, 52.6540177], [-1.8624997, 52.6540398], [-1.8614134, 52.6540422], [-1.8605465, 52.6540381], [-1.8598448, 52.6540219], [-1.8589721, 52.6539939], [-1.858394, 52.6539615], [-1.8578368, 52.6539304], [-1.85646, 52.6538287], [-1.8555568, 52.6537436], [-1.8548174, 52.6536574], [-1.8541705, 52.6535768], [-1.8535094, 52.6534818], [-1.8526457, 52.6533629]]}}, {"type": "Feature", "properties": {"osm_id": "2388761", "highway": "trunk", "maxspeed": "60 mph", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9193474, 53.2537394], [-2.9194484, 53.2537705], [-2.9195375, 53.2538363], [-2.9195664, 53.2538958], [-2.9195618, 53.2539597], [-2.9195527, 53.2539757], [-2.919503, 53.2540313], [-2.919432, 53.254071], [-2.9193476, 53.254095], [-2.9192269, 53.2541019], [-2.9191296, 53.2540862], [-2.9190442, 53.2540517], [-2.9189832, 53.2540033], [-2.9189587, 53.2539595], [-2.9189483, 53.2539145], [-2.9189481, 53.2538987], [-2.9189737, 53.2538437], [-2.9190243, 53.2537957], [-2.9191089, 53.2537545], [-2.9192122, 53.2537336], [-2.9192948, 53.2537343], [-2.9193474, 53.2537394]]}}, {"type": "Feature", "properties": {"osm_id": "2388768", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "name": "Liverpool Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9189481, 53.2538987], [-2.9186566, 53.2534638]]}}, {"type": "Feature", "properties": {"osm_id": "2390554", "highway": "trunk", "ref": "A58", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Armley Gyratory", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "horse": "yes", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5688787, 53.7940781], [-1.5688003, 53.7942041], [-1.5686976, 53.7942973], [-1.5685625, 53.794383], [-1.5684286, 53.7944356], [-1.5683032, 53.7944732], [-1.5680052, 53.7945132], [-1.5677557, 53.7945019], [-1.5674355, 53.7944334], [-1.56711, 53.794317], [-1.566781, 53.794152], [-1.5663021, 53.7939511], [-1.5662823, 53.7939395], [-1.5661402, 53.7938561], [-1.5659766, 53.7937095], [-1.5657956, 53.7934558], [-1.5657987, 53.7932], [-1.5658798, 53.7930323], [-1.5659681, 53.7928711], [-1.5660733, 53.7927609], [-1.5662689, 53.792637], [-1.5664482, 53.7925377], [-1.566659, 53.7924761], [-1.5669143, 53.7924219], [-1.5672256, 53.7924109], [-1.5674817, 53.792421], [-1.567656, 53.7924551], [-1.567834, 53.7925067], [-1.567889, 53.7925258], [-1.5680563, 53.7926112], [-1.5683731, 53.7928322], [-1.5686799, 53.7931177], [-1.5687757, 53.7932629], [-1.5689008, 53.7934651], [-1.5689361, 53.7937043], [-1.5689372, 53.7938835]]}}, {"type": "Feature", "properties": {"osm_id": "2407568", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "lanes": "2", "name": "Leicester Road", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1971983, 52.7636982], [-1.1972939, 52.7638755], [-1.1973935, 52.7640377], [-1.1976546, 52.7643422], [-1.1978963, 52.7646188], [-1.1982991, 52.7650779], [-1.1987953, 52.7656245], [-1.1995054, 52.7663949], [-1.1997202, 52.7666328], [-1.2000449, 52.7669949], [-1.2003127, 52.767307], [-1.2007686, 52.7677883], [-1.2009373, 52.7679526], [-1.2011816, 52.7681845], [-1.20128, 52.7682842], [-1.2016585, 52.768624], [-1.2017392, 52.7686999], [-1.2019822, 52.7689009], [-1.2021689, 52.7690531], [-1.2023939, 52.7692429], [-1.2026845, 52.7694757], [-1.203166, 52.7698697], [-1.2032989, 52.7699785], [-1.2033367, 52.770011]]}}, {"type": "Feature", "properties": {"osm_id": "2407569", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "name": "Leicester Road", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1935424, 52.7589114], [-1.1942082, 52.7594141]]}}, {"type": "Feature", "properties": {"osm_id": "2407570", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Loughborough Road", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1848492, 52.7518458], [-1.1848104, 52.7520195], [-1.1848334, 52.7521022], [-1.184876, 52.7521901], [-1.1849911, 52.7523689], [-1.1851434, 52.7525915], [-1.1854854, 52.7530209], [-1.1857751, 52.7533448], [-1.186038, 52.7536288], [-1.1863558, 52.7539251], [-1.1867715, 52.7542863], [-1.187113, 52.7545675], [-1.1877707, 52.7550452], [-1.188346, 52.7554308], [-1.188857, 52.7557611], [-1.1895168, 52.7561629], [-1.1901344, 52.7565188], [-1.1903144, 52.7566198]]}}, {"type": "Feature", "properties": {"osm_id": "2407571", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Loughborough Road", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.19009, 52.7566386], [-1.1898928, 52.756526], [-1.1891403, 52.7560766], [-1.1887309, 52.7558374], [-1.1882186, 52.7555079], [-1.1876299, 52.7551094], [-1.1869513, 52.7546491], [-1.186565, 52.7543845], [-1.1860675, 52.7540461], [-1.1856826, 52.7537595], [-1.1854023, 52.7534844], [-1.1850938, 52.7531361], [-1.1849342, 52.7529178], [-1.1847813, 52.75268], [-1.1846686, 52.7524476], [-1.184579, 52.7522495], [-1.1845394, 52.7521514], [-1.1844766, 52.7520682], [-1.1843428, 52.7519366]]}}, {"type": "Feature", "properties": {"osm_id": "2407614", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "7", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1952444, 52.6011282], [-1.195331, 52.6015824], [-1.1954345, 52.6020368], [-1.1955719, 52.6026457], [-1.1957506, 52.6032367], [-1.1958737, 52.6036223], [-1.1961953, 52.6045055], [-1.1964233, 52.6050675]]}}, {"type": "Feature", "properties": {"osm_id": "2407615", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "7", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2920972, 52.6952695], [-1.2919903, 52.6948266], [-1.2917942, 52.6941224], [-1.291485, 52.6932361], [-1.2912208, 52.6925556], [-1.2906859, 52.6913859], [-1.2905912, 52.6911819], [-1.2902984, 52.6904991], [-1.2898705, 52.6893323], [-1.2896605, 52.6885877], [-1.2894881, 52.6878404], [-1.2892888, 52.6866171], [-1.2892004, 52.6854172], [-1.2891307, 52.6838595], [-1.2890094, 52.6827916], [-1.2888094, 52.6817922], [-1.2884194, 52.6804643], [-1.2877048, 52.6787159], [-1.2871212, 52.6776042], [-1.2863938, 52.6764262], [-1.2856749, 52.6754104], [-1.2851221, 52.6747113], [-1.2841293, 52.6736253], [-1.2833511, 52.6728515], [-1.2824412, 52.6720035], [-1.2813469, 52.6710985], [-1.2803824, 52.6703839], [-1.278883, 52.6693631], [-1.2765007, 52.6679642], [-1.2736275, 52.6664482], [-1.2682665, 52.6638582], [-1.2662041, 52.6629656]]}}, {"type": "Feature", "properties": {"osm_id": "2407616", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "7", "bicycle": "no", "source_maxspeed": "survey", "layer": "1", "carriageway_ref": "A", "int_ref": "E 13", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-1.2923687, 52.69547], [-1.2924503, 52.6959684], [-1.2925348, 52.6963625]]}}, {"type": "Feature", "properties": {"osm_id": "2407617", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "7", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3054699, 52.8091763], [-1.3050126, 52.8079801], [-1.3044778, 52.8067892], [-1.3040679, 52.8060387], [-1.3038117, 52.8055698], [-1.3034484, 52.8049895], [-1.3024624, 52.8035822], [-1.3018717, 52.8028379], [-1.3011476, 52.8020216], [-1.299966, 52.800863], [-1.2997152, 52.8006468], [-1.2964771, 52.7978552], [-1.2936282, 52.7952485]]}}, {"type": "Feature", "properties": {"osm_id": "2415103", "highway": "trunk", "ref": "A1", "maxspeed": "20 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Upper Street", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "left", "foot": "yes", "horse": "yes", "cycleway": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1037102, 51.5359698], [-0.1037279, 51.5358337], [-0.1037617, 51.5357346], [-0.1037811, 51.53569], [-0.10386, 51.5355463]]}}, {"type": "Feature", "properties": {"osm_id": "2415140", "highway": "trunk", "ref": "A40", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "bicycle": "yes", "surface": "asphalt", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.5044612, 51.8165811], [-4.5042042, 51.8165345], [-4.5040191, 51.8164997], [-4.5037348, 51.8164815], [-4.5033807, 51.8165047], [-4.5030106, 51.8165727]]}}, {"type": "Feature", "properties": {"osm_id": "2415141", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "bicycle": "yes", "surface": "asphalt", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.3163335, 51.8521153], [-4.3166984, 51.8520561], [-4.3169706, 51.8519995], [-4.3173649, 51.8518909], [-4.3186569, 51.8515257], [-4.3195848, 51.8513039], [-4.3201927, 51.8511765], [-4.3208768, 51.8510425], [-4.3218904, 51.8508735], [-4.3227884, 51.8507569], [-4.323587, 51.850674], [-4.3242915, 51.8506136]]}}, {"type": "Feature", "properties": {"osm_id": "2415142", "highway": "trunk", "ref": "A40", "maxspeed": "40 mph", "lanes": "2", "operator": "Welsh Government", "bicycle": "yes", "junction": "roundabout", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.5044612, 51.8165811], [-4.5043396, 51.8165026], [-4.5042727, 51.8164449], [-4.5042321, 51.8163731], [-4.5041998, 51.8163001], [-4.5041952, 51.8162154], [-4.5042197, 51.8161262], [-4.5042512, 51.8160701]]}}, {"type": "Feature", "properties": {"osm_id": "2415196", "highway": "trunk", "ref": "A48", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "source_maxspeed": "GB:nsl_dual", "sidewalk": "none", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.0841019, 51.7967325], [-4.0841863, 51.7969001], [-4.0844331, 51.7973049], [-4.0846074, 51.7976239], [-4.0848584, 51.798195], [-4.0850435, 51.7987466], [-4.0851841, 51.7994103], [-4.0852677, 51.8002983], [-4.0852758, 51.8012959], [-4.0853026, 51.8017556], [-4.0853556, 51.802316], [-4.0855818, 51.8032546]]}}, {"type": "Feature", "properties": {"osm_id": "2415197", "highway": "trunk", "ref": "A48", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "surface": "asphalt", "source_maxspeed": "Mapillary", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.3073975, 51.8482287], [-4.3072685, 51.8481533], [-4.3067205, 51.8478956]]}}, {"type": "Feature", "properties": {"osm_id": "2415229", "highway": "trunk", "ref": "A48", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.0647855, 51.7462167], [-4.0645256, 51.7463122], [-4.0643178, 51.7464119], [-4.0642213, 51.7465315], [-4.0641083, 51.7467321], [-4.0638105, 51.7475065], [-4.0637134, 51.7477605], [-4.0635951, 51.7481496]]}}, {"type": "Feature", "properties": {"osm_id": "2415230", "highway": "trunk", "ref": "A48", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "source_maxspeed": "UK:nsl_dual", "sidewalk": "none", "int_ref": "E 30", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.0829283, 51.7966859], [-4.0829191, 51.7965833], [-4.0828962, 51.7964772], [-4.0828211, 51.7963744], [-4.082628, 51.7962151], [-4.0805018, 51.7946657], [-4.0784367, 51.7931045], [-4.0774549, 51.7923051], [-4.0769908, 51.7918212], [-4.076518, 51.7912913], [-4.0759392, 51.7905313], [-4.075556, 51.789919], [-4.0752496, 51.7893259], [-4.074952, 51.7886527], [-4.0746997, 51.7878731], [-4.0743874, 51.7862527]]}}, {"type": "Feature", "properties": {"osm_id": "2417751", "highway": "trunk", "ref": "A50", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Leicester Road", "source_name": "NaPTAN", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2910937, 52.6962336], [-1.290943, 52.6961762], [-1.2907064, 52.6960702], [-1.2904899, 52.6959862], [-1.2900667, 52.6958877], [-1.2894777, 52.6958004], [-1.2893846, 52.6957873]]}}, {"type": "Feature", "properties": {"osm_id": "2417752", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2677237, 52.6870734], [-1.2677817, 52.6872448], [-1.2679874, 52.6874585]]}}, {"type": "Feature", "properties": {"osm_id": "2417757", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2668826, 52.6867387], [-1.2669858, 52.6866661], [-1.2671085, 52.6866236], [-1.2672832, 52.6865995], [-1.2673654, 52.686612], [-1.267474, 52.6866695], [-1.2676378, 52.6867957], [-1.2677028, 52.6868594], [-1.2677481, 52.6870186], [-1.2677237, 52.6870734], [-1.2675859, 52.6871628], [-1.2674363, 52.6871958], [-1.2673048, 52.6871983], [-1.2671888, 52.6871879], [-1.2670513, 52.6871283], [-1.2668692, 52.6869415], [-1.2668558, 52.6868119], [-1.2668826, 52.6867387]]}}, {"type": "Feature", "properties": {"osm_id": "2417758", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2668826, 52.6867387], [-1.2668702, 52.6865995], [-1.2668051, 52.6864196], [-1.2666965, 52.6862009], [-1.2665691, 52.6858496], [-1.2665238, 52.6857332], [-1.2664406, 52.6855173], [-1.2663609, 52.6852414], [-1.2663132, 52.6850992], [-1.2662356, 52.6848931], [-1.2660785, 52.6846296], [-1.2659066, 52.6843969], [-1.2656705, 52.6841562], [-1.2654774, 52.6840196], [-1.2651918, 52.6838068], [-1.2649295, 52.6836693], [-1.2646709, 52.6835314], [-1.2642437, 52.6833446]]}}, {"type": "Feature", "properties": {"osm_id": "2417759", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2584697, 52.6802563], [-1.2590325, 52.6806816], [-1.2593877, 52.6809342], [-1.2595961, 52.6810792], [-1.2600046, 52.6813298], [-1.260418, 52.6815392], [-1.2609447, 52.6817805], [-1.2618385, 52.6822049], [-1.2632547, 52.6828137], [-1.2639585, 52.6831207], [-1.264308, 52.6832927]]}}, {"type": "Feature", "properties": {"osm_id": "2417760", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Bradgate Hill", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2576942, 52.680165], [-1.2572899, 52.6793913], [-1.2572563, 52.6793318]]}}, {"type": "Feature", "properties": {"osm_id": "2417761", "highway": "trunk", "ref": "A50", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2060042, 52.6619482], [-1.2060499, 52.6620377], [-1.2060767, 52.6620881], [-1.2061142, 52.6621401], [-1.2061731, 52.6622018], [-1.2062536, 52.6622571], [-1.206372, 52.6623176]]}}, {"type": "Feature", "properties": {"osm_id": "2417762", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2582706, 52.6804769], [-1.2581411, 52.6805069], [-1.2580271, 52.6805102], [-1.2578936, 52.6804877], [-1.2577807, 52.6804388], [-1.2577332, 52.6804033], [-1.2576776, 52.6803263], [-1.2576665, 52.6802746], [-1.2576756, 52.6802386], [-1.2576876, 52.6801915], [-1.2576942, 52.680165], [-1.2578498, 52.6800657], [-1.258055, 52.6800229], [-1.258182, 52.6800378], [-1.2583055, 52.6800759], [-1.2584198, 52.6801578], [-1.2584532, 52.6802104], [-1.2584697, 52.6802563], [-1.2584338, 52.6803627], [-1.2583589, 52.6804334], [-1.2582706, 52.6804769]]}}, {"type": "Feature", "properties": {"osm_id": "2417766", "highway": "trunk", "ref": "A50", "maxspeed": "50 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2043644, 52.6614688], [-1.2044143, 52.6613838], [-1.2044662, 52.6613298], [-1.2045519, 52.6612656], [-1.2046614, 52.6612052], [-1.2047206, 52.6611852], [-1.204766, 52.6611742], [-1.2049307, 52.6611446], [-1.2051026, 52.6611458], [-1.2052614, 52.6611671], [-1.2053116, 52.6611772], [-1.2054397, 52.6612252], [-1.2055402, 52.6612888], [-1.2056362, 52.6613622]]}}, {"type": "Feature", "properties": {"osm_id": "2417767", "highway": "trunk", "ref": "A50", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2043644, 52.6614688], [-1.2042871, 52.6613191], [-1.2041784, 52.6611924], [-1.2040284, 52.6610521], [-1.2039063, 52.6609325], [-1.2037489, 52.6607246], [-1.203498, 52.6603823], [-1.2030931, 52.6598788], [-1.2028441, 52.6596527], [-1.2025627, 52.6594312], [-1.2022881, 52.6592686], [-1.2021683, 52.6591958], [-1.2020401, 52.6591062], [-1.2020035, 52.6590846], [-1.2019545, 52.659059], [-1.2016497, 52.6589111], [-1.2012509, 52.6587394], [-1.2007374, 52.6585676], [-1.2003965, 52.6584789], [-1.1999456, 52.6583743], [-1.199844, 52.6583567]]}}, {"type": "Feature", "properties": {"osm_id": "2417768", "highway": "trunk", "ref": "A50", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.195506, 52.6573793], [-1.1956039, 52.6574241], [-1.19589, 52.6575343], [-1.1967816, 52.6577288], [-1.1968449, 52.6577426], [-1.1977894, 52.6579067], [-1.19787, 52.6579207], [-1.198004, 52.657944], [-1.1984028, 52.6580133], [-1.1985163, 52.658033], [-1.1985886, 52.6580488], [-1.1991598, 52.6581449], [-1.1993079, 52.6581729]]}}, {"type": "Feature", "properties": {"osm_id": "2417769", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "3", "maxspeed_type": "sign", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1953112, 52.6572167], [-1.1953251, 52.6572911], [-1.195314, 52.6573656], [-1.195248, 52.6574755], [-1.1951258, 52.657569], [-1.1949946, 52.6576243], [-1.1948432, 52.6576572], [-1.1946457, 52.657663], [-1.1945359, 52.6576491], [-1.194409, 52.6576155], [-1.1943141, 52.6575743], [-1.1942403, 52.6575278], [-1.194164, 52.6574542], [-1.1941177, 52.6573705], [-1.1941053, 52.6572844], [-1.1941065, 52.6572692], [-1.1941701, 52.6571291], [-1.194273, 52.6570404], [-1.1944469, 52.656963], [-1.1945506, 52.656939]]}}, {"type": "Feature", "properties": {"osm_id": "2417770", "highway": "trunk", "ref": "A50", "lanes": "2", "oneway": "yes", "name": "Leicester Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1941065, 52.6572692], [-1.1939393, 52.6571194], [-1.19358, 52.6569339], [-1.1908223, 52.6557413], [-1.1891423, 52.6550718], [-1.1873991, 52.6543897], [-1.187117, 52.6542943], [-1.1868497, 52.654204], [-1.1856054, 52.6537834], [-1.1836449, 52.6531751]]}}, {"type": "Feature", "properties": {"osm_id": "2417771", "highway": "trunk", "ref": "A50", "lanes": "2", "oneway": "yes", "name": "Leicester Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1836966, 52.6530413], [-1.1838689, 52.6530886], [-1.1852123, 52.6534297], [-1.1856559, 52.6535434], [-1.1874622, 52.6541244], [-1.1892054, 52.6548318], [-1.1905068, 52.6553646], [-1.1908728, 52.6555139], [-1.1923065, 52.6561221], [-1.1939115, 52.6568073], [-1.1942445, 52.6569054], [-1.1945506, 52.656939]]}}, {"type": "Feature", "properties": {"osm_id": "2417773", "highway": "trunk", "ref": "A563", "maxspeed": "40 mph", "oneway": "yes", "name": "Glenfrith Way", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1754923, 52.6532446], [-1.1755117, 52.6527473], [-1.1754066, 52.6525252]]}}, {"type": "Feature", "properties": {"osm_id": "2417836", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "maxspeed_type": "GB:national_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1445972, 52.7406311], [-1.1444315, 52.7404547], [-1.1441937, 52.7402911], [-1.1437721, 52.7400506], [-1.1429435, 52.7395828]]}}, {"type": "Feature", "properties": {"osm_id": "2417837", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "maxspeed_type": "GB:national_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1276766, 52.7195254], [-1.1280915, 52.721278], [-1.1281243, 52.7214162], [-1.1284434, 52.7227609], [-1.1286536, 52.7235027]]}}, {"type": "Feature", "properties": {"osm_id": "2417838", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "maxspeed_type": "GB:national_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1275308, 52.7195327], [-1.1275171, 52.719481], [-1.1275077, 52.7194456], [-1.1271035, 52.7179244], [-1.1269347, 52.7174522], [-1.1268272, 52.7171515], [-1.1265628, 52.7165323], [-1.1263667, 52.7160509], [-1.1262294, 52.715786]]}}, {"type": "Feature", "properties": {"osm_id": "2417840", "highway": "trunk", "ref": "A6", "maxspeed": "40 mph", "oneway": "yes", "name": "Loughborough Road", "surface": "asphalt", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1290123, 52.6702181], [-1.1290449, 52.6697422], [-1.1291035, 52.6693406], [-1.1292088, 52.668339], [-1.1291576, 52.6665774], [-1.1291552, 52.666393], [-1.1291124, 52.6656775], [-1.1290525, 52.6654344], [-1.1290053, 52.6653273], [-1.1289504, 52.6652613], [-1.1289293, 52.6652405], [-1.1288056, 52.6651417]]}}, {"type": "Feature", "properties": {"osm_id": "2417841", "highway": "trunk", "ref": "A6", "maxspeed": "40 mph", "name": "Loughborough Road", "source_maxspeed": "survey", "source_name": "NaPTAN", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1290123, 52.6702181], [-1.1287137, 52.6710763], [-1.1284463, 52.671608], [-1.1281436, 52.6723396], [-1.1280463, 52.672629], [-1.1279934, 52.6727403], [-1.1277111, 52.6731066], [-1.1274873, 52.6733955], [-1.1269724, 52.6740164], [-1.126623, 52.6744484], [-1.1265028, 52.6746789], [-1.1264076, 52.6749094], [-1.1262192, 52.675856], [-1.1261902, 52.676156], [-1.1261052, 52.6764651], [-1.1260886, 52.6765511], [-1.1259432, 52.6773026], [-1.1258042, 52.6779941], [-1.1255985, 52.6789702], [-1.1255734, 52.6791742], [-1.1255498, 52.6797743], [-1.1255456, 52.6798577]]}}, {"type": "Feature", "properties": {"osm_id": "2424675", "highway": "trunk", "ref": "A46", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.335382, 51.3973947], [-2.3357012, 51.397592], [-2.3359809, 51.3977818], [-2.336246, 51.3979811], [-2.3366966, 51.3983808], [-2.3369876, 51.3987113], [-2.3372011, 51.3989888], [-2.3373909, 51.399292], [-2.3376086, 51.399706], [-2.3382257, 51.401206], [-2.3387629, 51.4024919]]}}, {"type": "Feature", "properties": {"osm_id": "2424684", "highway": "trunk", "ref": "A46", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "operator": "Highways England", "highways_england_area": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3475639, 51.41558], [-2.347254, 51.4154019], [-2.3468852, 51.4151412]]}}, {"type": "Feature", "properties": {"osm_id": "2424864", "highway": "trunk", "ref": "A46", "maxspeed": "40 mph", "lanes": "2", "operator": "Highways England", "highways_england_area": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.368984, 51.4527314], [-2.3689287, 51.4525433], [-2.3688407, 51.4522962], [-2.3687225, 51.4519893], [-2.3685182, 51.451648], [-2.368279, 51.4513384], [-2.3681433, 51.4512047], [-2.3678852, 51.4509414], [-2.3674575, 51.450512], [-2.3672162, 51.4502221]]}}, {"type": "Feature", "properties": {"osm_id": "2424902", "highway": "trunk", "ref": "A46", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "yes", "source_maxspeed": "GB:nsl_dual", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3529861, 51.497539], [-2.3529508, 51.4976272], [-2.3528362, 51.4977236], [-2.3519189, 51.4984829]]}}, {"type": "Feature", "properties": {"osm_id": "2424903", "highway": "trunk", "ref": "A46", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "yes", "source_maxspeed": "GB:nsl_dual", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3492742, 51.501134], [-2.3495055, 51.5010125], [-2.3496319, 51.5009303], [-2.3497302, 51.5008151], [-2.3497999, 51.500725], [-2.3499001, 51.500582], [-2.3502157, 51.500032], [-2.3503632, 51.4998033], [-2.3506555, 51.4994026], [-2.351023, 51.4990269]]}}, {"type": "Feature", "properties": {"osm_id": "2425274", "highway": "trunk", "ref": "A470", "maxspeed": "30 mph", "lanes": "2", "name": "Ffordd Blaenau / Blaenau Road", "operator": "Welsh Government", "source_name": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.935703, 52.9590907], [-3.935714, 52.9591228], [-3.935725, 52.9591549], [-3.9357187, 52.959181], [-3.9356787, 52.9592414], [-3.9355774, 52.9592919], [-3.9354178, 52.9593695], [-3.9352381, 52.9594544], [-3.9346286, 52.9597226], [-3.9344988, 52.9597796], [-3.9339837, 52.9600057], [-3.9334711, 52.9602306], [-3.9320283, 52.9610592], [-3.9309822, 52.9616731], [-3.930556, 52.9619176], [-3.9303226, 52.9620787], [-3.9300027, 52.9622879], [-3.929741, 52.9625326], [-3.929193, 52.963402]]}}, {"type": "Feature", "properties": {"osm_id": "2425441", "highway": "trunk", "ref": "A483", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "source_maxspeed": "nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9172096, 53.1509345], [-2.917468, 53.1507744], [-2.9181738, 53.1504215], [-2.9195234, 53.1497778]]}}, {"type": "Feature", "properties": {"osm_id": "2428140", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Goswell Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1026284, 51.5298688], [-0.1029863, 51.530114], [-0.1032875, 51.5303222], [-0.1033858, 51.5303894], [-0.1042203, 51.5309346], [-0.1043696, 51.53103], [-0.1044341, 51.531069], [-0.1044668, 51.5310888], [-0.1045516, 51.5311404]]}}, {"type": "Feature", "properties": {"osm_id": "2430028", "highway": "motorway", "ref": "M56", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 22", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.797316, 53.2684802], [-2.7994646, 53.26773], [-2.8044955, 53.2660763], [-2.8094835, 53.2645763], [-2.8170108, 53.2623393], [-2.8185276, 53.2618937], [-2.8199911, 53.2613996], [-2.821078, 53.2609737], [-2.8219759, 53.2605648], [-2.8230551, 53.2600893], [-2.8240288, 53.259585], [-2.8268714, 53.2579924], [-2.8315915, 53.2552942], [-2.8331844, 53.2545133], [-2.8352652, 53.2536391], [-2.8357758, 53.2534478], [-2.8360795, 53.253332], [-2.8372002, 53.2529477], [-2.8378506, 53.2527435], [-2.8382807, 53.2526213], [-2.8394148, 53.2523158], [-2.840033, 53.2521646], [-2.8407129, 53.2519877], [-2.8425003, 53.2515269], [-2.8455717, 53.2508017]]}}, {"type": "Feature", "properties": {"osm_id": "2430998", "highway": "trunk", "ref": "A1", "maxspeed": "20 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Holloway Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "THE A1 GLA ROAD AND GLA SIDE ROADS (HOLLOWAY ROAD, LONDON BOROUGH OF ISLINGTON) (20 M.P.H. SPEED LIMIT) EXPERIMENTAL TRAFFIC ORDER 2017", "sidewalk": "left", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1120533, 51.5524246], [-0.1121446, 51.5524373], [-0.1122087, 51.5524861], [-0.1122313, 51.5525035], [-0.1122732, 51.5525314], [-0.1122806, 51.5526075]]}}, {"type": "Feature", "properties": {"osm_id": "2431024", "highway": "trunk", "ref": "A503", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Seven Sisters Road", "operator": "Transport for London", "sidewalk": "left", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1077163, 51.5632087], [-0.1075775, 51.5632609], [-0.1074821, 51.5633052], [-0.1073482, 51.5633394]]}}, {"type": "Feature", "properties": {"osm_id": "2447535", "highway": "trunk", "ref": "A58", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Ingram Distributor", "bicycle": "yes", "sidewalk": "no", "foot": "yes", "horse": "yes", "source_ref": "photograph", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5660733, 53.7927609], [-1.566546, 53.7923362], [-1.5666894, 53.792132], [-1.5667508, 53.7920428], [-1.5668862, 53.7917673], [-1.5669673, 53.7915585], [-1.5670275, 53.7913858], [-1.5671916, 53.7908817]]}}, {"type": "Feature", "properties": {"osm_id": "2467171", "highway": "trunk", "ref": "A1", "maxspeed": "20 mph", "lanes": "3", "lit": "yes", "name": "Islington High Street", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1061141, 51.532998], [-0.1061381, 51.532929], [-0.1061486, 51.5328969], [-0.1061617, 51.532857], [-0.1061833, 51.5327579]]}}, {"type": "Feature", "properties": {"osm_id": "2471616", "highway": "trunk", "maxspeed": "50 mph", "lit": "yes", "name": "Givons Grove Roundabout", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3275435, 51.2822152], [-0.3275891, 51.2822738], [-0.3276014, 51.2823384], [-0.3275792, 51.282402]]}}, {"type": "Feature", "properties": {"osm_id": "2472619", "highway": "trunk", "maxspeed": "50 mph", "lit": "yes", "name": "Beaverbrook Roundabout", "junction": "roundabout", "alt_name": "Leatherhead By-Pass Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3111709, 51.2868761], [-0.3110756, 51.2868128], [-0.3110434, 51.2866736], [-0.3110702, 51.286583], [-0.3112231, 51.2864991], [-0.3114162, 51.2864706], [-0.3115691, 51.2864807], [-0.3116898, 51.2865461], [-0.311722, 51.2866417], [-0.3116952, 51.2867575]]}}, {"type": "Feature", "properties": {"osm_id": "2472621", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "lit": "yes", "bicycle": "yes", "alt_name": "Leatherhead By-Pass Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3265887, 51.2823297], [-0.3263398, 51.2822975], [-0.3261717, 51.2822886], [-0.3258556, 51.2822674]]}}, {"type": "Feature", "properties": {"osm_id": "2472982", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Mickleham Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3232101, 51.2544917], [-0.3234069, 51.254659], [-0.3235378, 51.2548511], [-0.3242109, 51.2558842]]}}, {"type": "Feature", "properties": {"osm_id": "2472983", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Mickleham Bypass", "alt_name": "Dorking Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3270798, 51.282183], [-0.3271116, 51.282051], [-0.3271169, 51.2819711], [-0.3270747, 51.2818158]]}}, {"type": "Feature", "properties": {"osm_id": "2474445", "highway": "trunk", "ref": "A5", "maxspeed": "30 mph", "lanes": "2", "name": "Watling Street", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9944069, 52.1368559], [-0.9943023, 52.1367649]]}}, {"type": "Feature", "properties": {"osm_id": "2480445", "highway": "trunk", "ref": "A38", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Bristol Road South", "source_maxspeed": "survey", "sidewalk": "separate", "layer": "1", "bridge": "yes", "maintenance": "gritting", "gritting": "priority_1", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-1.9890839, 52.3955342], [-1.9888662, 52.3957176]]}}, {"type": "Feature", "properties": {"osm_id": "2481226", "highway": "trunk", "ref": "A302", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Bressenden Place", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1438622, 51.4980651], [-0.143708, 51.4980154], [-0.1436382, 51.4979955], [-0.1435127, 51.4979645], [-0.1433631, 51.4979348], [-0.1430943, 51.4978966]]}}, {"type": "Feature", "properties": {"osm_id": "2481884", "highway": "trunk", "ref": "A43", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Ardley Roundabout", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2079601, 51.9471241], [-1.2078267, 51.9471866], [-1.207701, 51.9472137], [-1.2075208, 51.9472146], [-1.2073764, 51.9471832], [-1.2072673, 51.947133], [-1.2071467, 51.9470094], [-1.2071308, 51.94688], [-1.2071962, 51.9467686], [-1.2072782, 51.9467065], [-1.2074937, 51.9466348], [-1.2076986, 51.946632], [-1.207837, 51.9466627], [-1.2079688, 51.9467278], [-1.2080372, 51.9467908], [-1.2080784, 51.9468651], [-1.2080864, 51.9469446], [-1.2080492, 51.9470392], [-1.2079601, 51.9471241]]}}, {"type": "Feature", "properties": {"osm_id": "2481885", "highway": "trunk", "ref": "A43", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2055469, 51.9479455], [-1.2069828, 51.9472168], [-1.2071467, 51.9470094]]}}, {"type": "Feature", "properties": {"osm_id": "2481886", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Cherwell Junction", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2046026, 51.9488956], [-1.2046208, 51.9489719], [-1.2046093, 51.9490445], [-1.2045532, 51.9491049], [-1.2044552, 51.9491633], [-1.204281, 51.9491835], [-1.2041312, 51.949168], [-1.204014, 51.9491164], [-1.2039445, 51.9490533]]}}, {"type": "Feature", "properties": {"osm_id": "2481887", "highway": "trunk", "ref": "A43", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2075208, 51.9472146], [-1.2071552, 51.9473075], [-1.2057387, 51.9480672]]}}, {"type": "Feature", "properties": {"osm_id": "2481894", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2044552, 51.9491633], [-1.2042876, 51.9492353], [-1.2041967, 51.9493149], [-1.2041446, 51.949398], [-1.2041217, 51.9495248], [-1.2041442, 51.9496507], [-1.2043821, 51.9503648], [-1.2045249, 51.9509544], [-1.2046387, 51.951356], [-1.2047097, 51.9514573], [-1.2047811, 51.951536]]}}, {"type": "Feature", "properties": {"osm_id": "2481895", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2042737, 51.9516178], [-1.2043306, 51.9514923], [-1.2043645, 51.951383], [-1.2043834, 51.9512279], [-1.2043199, 51.9509587], [-1.204168, 51.9503891], [-1.203868, 51.9496265], [-1.2038374, 51.9495151], [-1.2038319, 51.9494083], [-1.2038645, 51.9492517], [-1.2039008, 51.9491496], [-1.2039445, 51.9490533]]}}, {"type": "Feature", "properties": {"osm_id": "2481896", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2047811, 51.951536], [-1.2048943, 51.9515805], [-1.2049983, 51.9516434], [-1.2050622, 51.9517544], [-1.2050526, 51.9518539], [-1.2049861, 51.9519446], [-1.2048387, 51.9520271], [-1.2046959, 51.9520582], [-1.2045108, 51.9520535]]}}, {"type": "Feature", "properties": {"osm_id": "2481897", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2048387, 51.9520271], [-1.2046835, 51.9521492], [-1.2046053, 51.952259], [-1.2045558, 51.9523727], [-1.2045128, 51.9525325], [-1.2032598, 51.956391], [-1.2030518, 51.9568887], [-1.202758, 51.9574581], [-1.202723, 51.9575722], [-1.2027271, 51.95774]]}}, {"type": "Feature", "properties": {"osm_id": "2481898", "highway": "trunk", "ref": "A43", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2022042, 51.957634], [-1.2024413, 51.9575293], [-1.2025397, 51.9574209], [-1.2028596, 51.9568175], [-1.2030537, 51.9563526], [-1.2043733, 51.9523841], [-1.2043922, 51.952255], [-1.204389, 51.9521403], [-1.2043559, 51.9520078]]}}, {"type": "Feature", "properties": {"osm_id": "2481932", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "Baynard's Green Roundabout", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2027982, 51.9578281], [-1.2028178, 51.9579004], [-1.2028045, 51.9579814], [-1.2027561, 51.9580561], [-1.202668, 51.9581248], [-1.202575, 51.9581665], [-1.2024387, 51.9581974], [-1.2023315, 51.9582029], [-1.2022222, 51.958193], [-1.2021261, 51.9581698], [-1.2020239, 51.9581252], [-1.2019399, 51.9580612], [-1.2018928, 51.9579952], [-1.201873, 51.9579154], [-1.201881, 51.9578587], [-1.2019339, 51.9577689], [-1.2020127, 51.9577052], [-1.2021052, 51.9576611], [-1.2022042, 51.957634], [-1.2023732, 51.9576211], [-1.2024776, 51.9576322], [-1.2026001, 51.9576665], [-1.2027271, 51.95774], [-1.2027566, 51.9577681], [-1.2027982, 51.9578281]]}}, {"type": "Feature", "properties": {"osm_id": "2481933", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2024387, 51.9581974], [-1.2022903, 51.9583056], [-1.2022061, 51.9584618], [-1.2017685, 51.9595238], [-1.2015574, 51.9599766], [-1.2012559, 51.9605019], [-1.2006835, 51.9612765], [-1.2000236, 51.9621591], [-1.1991315, 51.9633459], [-1.1982183, 51.9646166], [-1.196887, 51.9663615], [-1.1956329, 51.9680845], [-1.1941165, 51.9700789], [-1.1933573, 51.9709378], [-1.1923348, 51.9719606], [-1.1919201, 51.972365], [-1.1908827, 51.9732954], [-1.1899998, 51.9740205], [-1.1884769, 51.9751883], [-1.1871319, 51.9760886], [-1.1856929, 51.9769825], [-1.1828982, 51.9785294], [-1.1785342, 51.9808801], [-1.1763595, 51.9820949], [-1.1753814, 51.982701], [-1.1744373, 51.9833153], [-1.1735751, 51.983904], [-1.172794, 51.9845277], [-1.1721528, 51.9850978], [-1.1715819, 51.9857073], [-1.1714506, 51.9858375], [-1.1702971, 51.987084], [-1.1699776, 51.9874115], [-1.1681533, 51.9893224], [-1.167019, 51.9904388], [-1.1660929, 51.9912306], [-1.164684, 51.9923824], [-1.1640005, 51.9929573], [-1.1636059, 51.9933213], [-1.1629311, 51.9940699], [-1.1622968, 51.99479], [-1.161598, 51.9956197], [-1.1613673, 51.9959177], [-1.1613031, 51.9960357], [-1.1612954, 51.9961393], [-1.1613413, 51.9962707]]}}, {"type": "Feature", "properties": {"osm_id": "2481934", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1608509, 51.9962405], [-1.160998, 51.9960967], [-1.1611423, 51.9959082], [-1.16139, 51.9955805], [-1.1620935, 51.994723], [-1.1627137, 51.9939802], [-1.1634208, 51.9932353], [-1.163697, 51.9930111], [-1.1646805, 51.9921264], [-1.1659073, 51.9911477], [-1.1668293, 51.9903619], [-1.1679332, 51.9892855], [-1.1697589, 51.9873609], [-1.1713693, 51.9856423], [-1.1719498, 51.9850119], [-1.1733957, 51.9838185], [-1.1742924, 51.983235], [-1.175033, 51.9827458], [-1.1765809, 51.9817978], [-1.178408, 51.9807978], [-1.1827868, 51.9784334], [-1.1855525, 51.9769055], [-1.1870021, 51.9760162], [-1.1883323, 51.9751052], [-1.1898486, 51.9739672], [-1.1911193, 51.9728368], [-1.1917733, 51.9722956], [-1.1921741, 51.9719118], [-1.1926106, 51.9714698], [-1.1931514, 51.970861], [-1.1938753, 51.9700142], [-1.1954033, 51.9680103], [-1.1966597, 51.9663122], [-1.1980195, 51.9645572], [-1.1989697, 51.9633185], [-1.1998631, 51.962132], [-1.200515, 51.9612278], [-1.2010461, 51.9604123], [-1.201515, 51.9594998], [-1.2019922, 51.9584256], [-1.2020327, 51.9582943], [-1.2020239, 51.9581252]]}}, {"type": "Feature", "properties": {"osm_id": "2481936", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Barleymow Roundabout", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "UK:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.161219, 51.996224], [-1.1613413, 51.9962707], [-1.161397, 51.9963079], [-1.1614636, 51.9963883], [-1.1614801, 51.9964865], [-1.1614574, 51.9965502], [-1.1613987, 51.9966178], [-1.1612533, 51.9966935], [-1.1611036, 51.9967206], [-1.160973, 51.9967159], [-1.1608054, 51.9966677], [-1.1607308, 51.9966218], [-1.1606668, 51.9965496], [-1.1606432, 51.9964528], [-1.1606704, 51.9963715], [-1.1607524, 51.9962895], [-1.1608509, 51.9962405], [-1.1609923, 51.9962089], [-1.1611052, 51.9962066], [-1.161219, 51.996224]]}}, {"type": "Feature", "properties": {"osm_id": "2481937", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1613987, 51.9966178], [-1.1612914, 51.9969685], [-1.1611905, 51.997632], [-1.1609461, 51.9983579], [-1.1606415, 51.9992268], [-1.1600216, 52.0002197], [-1.1587521, 52.0018276], [-1.1584727, 52.0023877], [-1.1583408, 52.0028922], [-1.1582774, 52.0033936], [-1.1582664, 52.0039116], [-1.1583234, 52.0043339], [-1.1584234, 52.0047115], [-1.1585394, 52.0050743], [-1.1587537, 52.0055165], [-1.1593036, 52.0066021], [-1.1594453, 52.0069953], [-1.1595834, 52.0074365], [-1.1596524, 52.0078229], [-1.1596774, 52.0083472], [-1.1596351, 52.0088366], [-1.1595954, 52.0090366], [-1.1595462, 52.0092388], [-1.1594813, 52.0094915], [-1.1593067, 52.0099336], [-1.1589434, 52.0105004], [-1.1586065, 52.0110069], [-1.1579613, 52.0116984], [-1.1577184, 52.0119263], [-1.1576186, 52.0120449], [-1.1576113, 52.0121462]]}}, {"type": "Feature", "properties": {"osm_id": "2481938", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1572203, 52.0120211], [-1.1573558, 52.0119509], [-1.1575099, 52.0118399], [-1.1576984, 52.0116714], [-1.1583593, 52.0109676], [-1.1587672, 52.0104401], [-1.1590955, 52.0099098], [-1.1592837, 52.0094789], [-1.1593733, 52.0092103], [-1.1594428, 52.0088527], [-1.1594969, 52.0083611], [-1.159474, 52.0078257], [-1.1593913, 52.0074476], [-1.1592885, 52.007103], [-1.1591031, 52.0066382], [-1.1585659, 52.0055507], [-1.1583748, 52.0050768], [-1.158239, 52.004712], [-1.1582025, 52.0045554], [-1.158157, 52.0043601], [-1.1580972, 52.003941], [-1.1580991, 52.0034295], [-1.1581769, 52.0028797], [-1.1583127, 52.0024009], [-1.158582, 52.0017844], [-1.1597446, 52.0001928], [-1.1604092, 51.99918], [-1.1607096, 51.9983443], [-1.1609537, 51.9976182], [-1.1609927, 51.9971386], [-1.1609791, 51.9969748], [-1.1608054, 51.9966677]]}}, {"type": "Feature", "properties": {"osm_id": "2482011", "highway": "trunk", "ref": "A422", "maxspeed": "50 mph", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2151482, 52.0512815], [-1.2142411, 52.0511832], [-1.2134392, 52.051104], [-1.2130516, 52.0510783], [-1.2116716, 52.0509868], [-1.2112338, 52.050929], [-1.2108516, 52.0508364], [-1.2105279, 52.0507393], [-1.2099926, 52.0505512], [-1.2091775, 52.0502372], [-1.2083933, 52.049935], [-1.2074106, 52.0496012], [-1.2066214, 52.0493399], [-1.2062817, 52.0492531], [-1.2060216, 52.0492088], [-1.2056061, 52.0491731], [-1.2046504, 52.0491308], [-1.2042573, 52.0490991], [-1.2039104, 52.0490503], [-1.2036311, 52.0489811], [-1.2033906, 52.0489096], [-1.202533, 52.0485881], [-1.2018959, 52.0483317], [-1.2015895, 52.0481882], [-1.2013796, 52.0480643], [-1.201153, 52.0479012], [-1.2009584, 52.0477288], [-1.2003959, 52.0471374], [-1.1994341, 52.046114], [-1.1991864, 52.0458629], [-1.1982092, 52.0448915], [-1.1979379, 52.0446114], [-1.197358, 52.044033], [-1.1972093, 52.0438881], [-1.196941, 52.0437141], [-1.1962731, 52.0433558], [-1.1952737, 52.0428354], [-1.1946891, 52.0425504], [-1.1941922, 52.0423272], [-1.1936968, 52.0421267], [-1.1931523, 52.0419172], [-1.1923502, 52.0416469], [-1.1902354, 52.041037], [-1.1897218, 52.0408974], [-1.1891741, 52.0407551], [-1.1865589, 52.0400756], [-1.1844452, 52.0395479], [-1.1821303, 52.0390089], [-1.1814972, 52.0388552], [-1.1782191, 52.0380858], [-1.1776497, 52.0379512], [-1.1768627, 52.0377511], [-1.1761167, 52.0375518], [-1.1754975, 52.0373833], [-1.1750403, 52.0372456], [-1.1743842, 52.037019], [-1.1732293, 52.0365752], [-1.1725592, 52.0363024], [-1.1718576, 52.0360096], [-1.1712459, 52.0357289], [-1.1704474, 52.0353468], [-1.1696318, 52.0349278], [-1.1689852, 52.0345684], [-1.168525, 52.0343139], [-1.1676194, 52.0338375], [-1.1665573, 52.033308], [-1.1659959, 52.0329952], [-1.165452, 52.0326516], [-1.1646746, 52.0320984]]}}, {"type": "Feature", "properties": {"osm_id": "2482045", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1572875, 52.0125073], [-1.1571326, 52.0125861], [-1.1569777, 52.0126796], [-1.1552423, 52.0140691], [-1.153996, 52.0151523], [-1.153342, 52.0159345], [-1.1527752, 52.01675], [-1.1523576, 52.0175366], [-1.1513858, 52.0194496], [-1.1510122, 52.0200839], [-1.1505675, 52.0205434], [-1.1501679, 52.020896], [-1.1500885, 52.0210036], [-1.1500744, 52.0210343], [-1.1500411, 52.0211377]]}}, {"type": "Feature", "properties": {"osm_id": "2482046", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1494647, 52.0209705], [-1.150002, 52.0206266], [-1.1500795, 52.0205645], [-1.1501187, 52.020533], [-1.1503182, 52.0203731], [-1.1507549, 52.019997], [-1.1511456, 52.0193642], [-1.1520685, 52.0175022], [-1.1522718, 52.0171128], [-1.1524848, 52.0167047], [-1.1530744, 52.015858], [-1.1538086, 52.015029], [-1.1549661, 52.0139848], [-1.1567354, 52.0125627], [-1.1568321, 52.0124602], [-1.1569017, 52.0123633]]}}, {"type": "Feature", "properties": {"osm_id": "2482059", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1492076, 52.0214253], [-1.1491433, 52.0213468], [-1.149126, 52.0212352], [-1.1491381, 52.021172], [-1.1491808, 52.0211094], [-1.149287, 52.0210298], [-1.1493935, 52.0209872], [-1.1494647, 52.0209705], [-1.1496152, 52.0209623], [-1.1497534, 52.0209849], [-1.1498904, 52.02103], [-1.1499784, 52.0210823], [-1.1500411, 52.0211377], [-1.150078, 52.0212273], [-1.1500677, 52.0213209], [-1.1500193, 52.0213981], [-1.149923, 52.0214729], [-1.1498033, 52.021522], [-1.1496625, 52.0215474], [-1.1495248, 52.0215476], [-1.1493406, 52.0215033], [-1.1492076, 52.0214253]]}}, {"type": "Feature", "properties": {"osm_id": "2482060", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1492076, 52.0214253], [-1.1490529, 52.0213727], [-1.1488553, 52.021327], [-1.1487714, 52.0213165], [-1.1485442, 52.0212879], [-1.1470273, 52.0212207], [-1.1456226, 52.0211833], [-1.1442906, 52.0212012], [-1.1430921, 52.0212721], [-1.1421307, 52.0213821], [-1.1409958, 52.0216301], [-1.1395258, 52.0221181], [-1.1384091, 52.0226322], [-1.1369933, 52.0235555], [-1.1359075, 52.0245596], [-1.1346592, 52.0258958], [-1.1345797, 52.0260368], [-1.1345659, 52.0261481]]}}, {"type": "Feature", "properties": {"osm_id": "2482061", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1342036, 52.0260373], [-1.1343609, 52.0259335], [-1.134526, 52.0258045], [-1.1356983, 52.0244131], [-1.1367521, 52.0234625], [-1.1382528, 52.0225173], [-1.1393741, 52.0219864], [-1.1409381, 52.0214661], [-1.1421018, 52.0212285], [-1.1431343, 52.0211055], [-1.1443139, 52.0210181], [-1.1456513, 52.021], [-1.1470773, 52.0210586], [-1.1486802, 52.0211952], [-1.1489487, 52.0211781], [-1.1489998, 52.0211629], [-1.1491808, 52.0211094]]}}, {"type": "Feature", "properties": {"osm_id": "2482062", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1342388, 52.0265336], [-1.1341006, 52.0265207], [-1.133974, 52.0264776], [-1.1338806, 52.0264104], [-1.1338383, 52.026347], [-1.1338256, 52.026288], [-1.1338417, 52.0262158], [-1.1339143, 52.0261299], [-1.1340333, 52.0260681], [-1.1342036, 52.0260373], [-1.1343429, 52.0260469], [-1.1344151, 52.0260647], [-1.1345659, 52.0261481], [-1.1346182, 52.0262185], [-1.134632, 52.0263027], [-1.1345809, 52.0264073], [-1.1344354, 52.0265055], [-1.1343161, 52.0265278], [-1.1342388, 52.0265336]]}}, {"type": "Feature", "properties": {"osm_id": "2482078", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Brackley Bypass", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1358313, 52.0415759], [-1.1358812, 52.0414408], [-1.1359111, 52.0413145], [-1.1359422, 52.0411715], [-1.1359367, 52.0410417], [-1.1331385, 52.0317127]]}}, {"type": "Feature", "properties": {"osm_id": "2482079", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1361753, 52.0421309], [-1.1359423, 52.0420778], [-1.1357969, 52.041991], [-1.1357251, 52.0418768], [-1.1356992, 52.0418286], [-1.1357034, 52.0417447], [-1.1357267, 52.0417011], [-1.1357585, 52.0416417], [-1.1358313, 52.0415759], [-1.1359769, 52.0415031], [-1.1361675, 52.0414636], [-1.1363747, 52.0414701], [-1.1365041, 52.0415008], [-1.1366214, 52.0415532], [-1.1366915, 52.0416032], [-1.1367468, 52.041664], [-1.1367835, 52.0417405], [-1.1367891, 52.0418266], [-1.1367482, 52.0419278], [-1.1366501, 52.0420226], [-1.1365245, 52.042086], [-1.1364075, 52.0421182], [-1.136299, 52.0421318], [-1.1361753, 52.0421309]]}}, {"type": "Feature", "properties": {"osm_id": "2482109", "highway": "trunk", "ref": "A43", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1361753, 52.0421309], [-1.1359503, 52.0421605], [-1.1356874, 52.0422482], [-1.135462, 52.0423471], [-1.1351201, 52.0425616], [-1.1346548, 52.0429316], [-1.1341228, 52.0433786], [-1.1308418, 52.0462476], [-1.1300643, 52.0468599], [-1.1285856, 52.0479123], [-1.1271794, 52.048755], [-1.1238803, 52.050398], [-1.1234071, 52.0506264], [-1.1194038, 52.0525212], [-1.1179102, 52.0532146], [-1.1135428, 52.0552776], [-1.1108147, 52.0563561], [-1.1085571, 52.0571519], [-1.1065823, 52.0577673], [-1.1039058, 52.0585489], [-1.1020536, 52.0590066], [-1.0970874, 52.0600996]]}}, {"type": "Feature", "properties": {"osm_id": "2482110", "highway": "trunk", "ref": "A43", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "7", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.0027731, 52.1290549], [-1.0029562, 52.1286802], [-1.0031249, 52.1282841], [-1.0033919, 52.1276845], [-1.0037211, 52.1270259], [-1.0043263, 52.126015]]}}, {"type": "Feature", "properties": {"osm_id": "2482200", "highway": "trunk", "ref": "A421", "maxspeed": "40 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9680687, 51.9919642], [-0.968146, 51.9919496], [-0.9682264, 51.9919166], [-0.9684707, 51.9917942]]}}, {"type": "Feature", "properties": {"osm_id": "2482201", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9797162, 51.9902104], [-0.979857, 51.9902543]]}}, {"type": "Feature", "properties": {"osm_id": "2482218", "highway": "trunk", "ref": "A421", "maxspeed": "40 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9679044, 51.9921127], [-0.9676766, 51.9920553], [-0.9674435, 51.9920209], [-0.9676578, 51.9920008], [-0.9677973, 51.9920008], [-0.9678643, 51.9920008], [-0.9679665, 51.9919851]]}}, {"type": "Feature", "properties": {"osm_id": "2482494", "highway": "trunk", "ref": "A421", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1606668, 51.9965496], [-1.1604454, 51.9964099], [-1.1601951, 51.9963027]]}}, {"type": "Feature", "properties": {"osm_id": "2482713", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "lanes": "2", "name": "Aylesbury Road", "source_maxspeed": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1199911, 51.879265], [-1.1186403, 51.8791315], [-1.1176527, 51.8790595], [-1.116795, 51.879007], [-1.1161106, 51.8789771], [-1.1152685, 51.8789288]]}}, {"type": "Feature", "properties": {"osm_id": "2482716", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "bicycle": "yes", "source_maxspeed": "GB:nsl_single", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.14198, 51.8862501], [-1.1421129, 51.8861804], [-1.142261, 51.8861473], [-1.1423634, 51.8861429], [-1.1424854, 51.8861562], [-1.1425672, 51.8861776], [-1.142651, 51.8862135], [-1.1427346, 51.8862724], [-1.1428013, 51.8863701], [-1.1428114, 51.8864448], [-1.1427831, 51.8865312], [-1.1427146, 51.8866078], [-1.1426071, 51.8866703], [-1.1424791, 51.8867079]]}}, {"type": "Feature", "properties": {"osm_id": "2482898", "highway": "trunk", "ref": "A41", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1620254, 51.8926409], [-1.1621624, 51.892581], [-1.1622278, 51.892509], [-1.1623216, 51.8923765], [-1.1625015, 51.8921725], [-1.1630766, 51.89152], [-1.1631077, 51.8914792], [-1.1631368, 51.8914411], [-1.163222, 51.8913661], [-1.1632827, 51.8912827], [-1.1637907, 51.8907932], [-1.1640936, 51.8905256], [-1.1641016, 51.8905185], [-1.1641155, 51.8905062], [-1.1641747, 51.8904539], [-1.164533, 51.8900845], [-1.1651203, 51.8895502], [-1.1654739, 51.8891708], [-1.1660306, 51.8886856], [-1.1666877, 51.8881621], [-1.1675843, 51.8875636], [-1.1684991, 51.8870577], [-1.1691567, 51.8867597], [-1.1692511, 51.8867134], [-1.169351, 51.8866038], [-1.1694103, 51.8864861]]}}, {"type": "Feature", "properties": {"osm_id": "2482901", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "source_maxspeed": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1969576, 51.869846], [-1.1963364, 51.8702335], [-1.1959821, 51.8704533], [-1.1954639, 51.8707784], [-1.1952569, 51.8709058]]}}, {"type": "Feature", "properties": {"osm_id": "2482980", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2001371, 51.8677258], [-1.2028796, 51.8660387]]}}, {"type": "Feature", "properties": {"osm_id": "2482981", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2461505, 51.8380647], [-1.2445241, 51.8392171], [-1.2428873, 51.840335], [-1.2392418, 51.8428587], [-1.2367407, 51.8445712], [-1.2340612, 51.8465404], [-1.2307695, 51.8487941], [-1.2295762, 51.8495297], [-1.2272224, 51.8510762], [-1.2231516, 51.853711], [-1.2219674, 51.8544477], [-1.2198216, 51.8557316], [-1.2192329, 51.8560753], [-1.2178082, 51.8569368], [-1.2143819, 51.8590086], [-1.2120007, 51.8605199], [-1.2102428, 51.8616355], [-1.2076147, 51.8632843], [-1.207182, 51.8635558], [-1.2036933, 51.8657229], [-1.2029611, 51.8661705]]}}, {"type": "Feature", "properties": {"osm_id": "2483305", "highway": "trunk", "ref": "A44", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "bicycle": "yes", "source_maxspeed": "Stats19/interpolation", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2872475, 51.7968118], [-1.2872734, 51.7967737], [-1.2874325, 51.7965116], [-1.2875109, 51.7962977], [-1.2875211, 51.796112], [-1.2874965, 51.7959282], [-1.2873928, 51.7957001], [-1.2873726, 51.7956703], [-1.2872752, 51.7955384]]}}, {"type": "Feature", "properties": {"osm_id": "2483307", "highway": "trunk", "ref": "A44", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Peartree Roundabout", "bicycle": "yes", "source_maxspeed": "GB:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2854434, 51.7939515], [-1.2854985, 51.7939437], [-1.2856667, 51.7939352], [-1.2857989, 51.7939376], [-1.2858913, 51.7939434], [-1.285964, 51.7939516], [-1.286101, 51.7939766], [-1.2862481, 51.794019], [-1.2863526, 51.794061], [-1.286428, 51.7940991], [-1.2865328, 51.7941666], [-1.2866548, 51.7943032], [-1.2867001, 51.7943888], [-1.2867436, 51.7945184]]}}, {"type": "Feature", "properties": {"osm_id": "2483333", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Woodstock Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2809996, 51.7882836], [-1.2810034, 51.7883884], [-1.2810469, 51.7884713], [-1.2811072, 51.7885392], [-1.2815357, 51.7888967]]}}, {"type": "Feature", "properties": {"osm_id": "2483334", "highway": "trunk", "ref": "A44", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "name": "Woodstock Road", "bicycle": "yes", "source_maxspeed": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2848033, 51.7942813], [-1.2848113, 51.7940904], [-1.2847395, 51.793965]]}}, {"type": "Feature", "properties": {"osm_id": "2484492", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "oneway": "yes", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7246057, 52.5964195], [-0.7245154, 52.5963517], [-0.7244141, 52.5962899], [-0.7243029, 52.5962346], [-0.724183, 52.5961867]]}}, {"type": "Feature", "properties": {"osm_id": "2484493", "highway": "trunk", "ref": "A47", "maxspeed": "50 mph", "name": "Glaston Road", "source_maxspeed": "Stats19", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6467097, 52.5935345], [-0.645902, 52.5934646], [-0.6450876, 52.5934043], [-0.6442389, 52.5933686], [-0.6427407, 52.5933296], [-0.6414132, 52.59331], [-0.6407701, 52.5932755], [-0.6403259, 52.5932452], [-0.6399421, 52.5932132], [-0.6393175, 52.5931675], [-0.6386009, 52.5931329], [-0.6376894, 52.5931459], [-0.6369705, 52.5931695], [-0.6363769, 52.5931993], [-0.6358925, 52.5931895], [-0.6353437, 52.593174]]}}, {"type": "Feature", "properties": {"osm_id": "2484494", "highway": "trunk", "maxspeed": "60 mph", "maxspeed_type": "gb:national", "junction": "roundabout", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5360635, 52.5997613], [-0.5360002, 52.5998208], [-0.5359143, 52.5998686], [-0.535825, 52.5998984], [-0.535727, 52.5999154], [-0.5356253, 52.5999189], [-0.5355249, 52.5999086], [-0.5354307, 52.5998851], [-0.5353453, 52.5998483], [-0.5352759, 52.5998007], [-0.5352261, 52.5997448]]}}, {"type": "Feature", "properties": {"osm_id": "2484495", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "oneway": "yes", "maxspeed_type": "gb:national", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5347368, 52.5995763], [-0.5349115, 52.5995665], [-0.5350807, 52.5995405], [-0.535255, 52.599502]]}}, {"type": "Feature", "properties": {"osm_id": "2484655", "highway": "trunk", "ref": "A1202", "maxspeed": "20 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great Eastern Street", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0846157, 51.526335], [-0.0842457, 51.5262925], [-0.084169, 51.5262753], [-0.0841021, 51.5262541]]}}, {"type": "Feature", "properties": {"osm_id": "2484879", "highway": "trunk", "ref": "A10", "maxspeed": "20 mph", "lanes": "3", "lit": "yes", "name": "Kingsland High Street", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "cycleway_left": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0756177, 51.5470785], [-0.0756375, 51.5468984], [-0.0756486, 51.5466529], [-0.0756494, 51.5465946], [-0.0756472, 51.5464252], [-0.0756467, 51.5463831]]}}, {"type": "Feature", "properties": {"osm_id": "2495380", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Archway Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.156858, 51.5817339], [-0.1567224, 51.5817327], [-0.1566482, 51.5817299], [-0.1565474, 51.5817118]]}}, {"type": "Feature", "properties": {"osm_id": "2495382", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Archway Road", "operator": "Transport for London", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1446067, 51.576592], [-0.144453, 51.5765297]]}}, {"type": "Feature", "properties": {"osm_id": "2495383", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "4", "lit": "yes", "name": "St John's Way", "operator": "Transport for London", "bicycle": "yes", "foot": "yes", "horse": "yes", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1334426, 51.5662605], [-0.1336392, 51.5661097]]}}, {"type": "Feature", "properties": {"osm_id": "2496401", "highway": "trunk", "ref": "A316", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "layer": "1", "bridge": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.3784846, 51.4367503], [-0.377268, 51.4372955]]}}, {"type": "Feature", "properties": {"osm_id": "2496402", "highway": "trunk", "ref": "A316", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great Chertsey Road", "operator": "Transport for London", "source_name": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3671117, 51.4415946], [-0.3672837, 51.4415172], [-0.3683715, 51.4410334], [-0.369886, 51.4403835], [-0.3703258, 51.4401809], [-0.3716281, 51.4396255], [-0.3730556, 51.4390109], [-0.3740074, 51.4386028]]}}, {"type": "Feature", "properties": {"osm_id": "2499065", "highway": "trunk", "ref": "A316", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chertsey Road", "operator": "Transport for London", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3648469, 51.4428001], [-0.3645668, 51.4428658], [-0.3642757, 51.4429386], [-0.3642012, 51.4429693]]}}, {"type": "Feature", "properties": {"osm_id": "2509157", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Pentonville Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1209725, 51.5308543], [-0.1199257, 51.5309437]]}}, {"type": "Feature", "properties": {"osm_id": "2509158", "highway": "trunk", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Baron Street", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.109153, 51.5318086], [-0.1091617, 51.5319868], [-0.1091953, 51.5323987]]}}, {"type": "Feature", "properties": {"osm_id": "2510857", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "bicycle": "yes", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0122094, 53.1622344], [-3.0109132, 53.1620103], [-3.009774, 53.161789], [-3.0076695, 53.1613729], [-3.006374, 53.1611204], [-3.0042101, 53.1606972], [-3.0027628, 53.1604465], [-3.0016669, 53.1602926], [-3.0005397, 53.1601714], [-2.9993345, 53.1600733], [-2.9984655, 53.1600339], [-2.9967421, 53.1600234], [-2.9958999, 53.1600255], [-2.9945865, 53.1600897], [-2.9933968, 53.1601892], [-2.9927996, 53.1602481], [-2.992163, 53.1603241], [-2.9913979, 53.1604362], [-2.9897095, 53.1607143], [-2.9835162, 53.1617948], [-2.9778847, 53.1627807], [-2.9740896, 53.1633343]]}}, {"type": "Feature", "properties": {"osm_id": "2510858", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Welsh Government", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9740896, 53.1633343], [-2.9719077, 53.1634333], [-2.9702581, 53.1633775], [-2.9686668, 53.1632111], [-2.9678262, 53.1630844], [-2.9672621, 53.1629834], [-2.9664816, 53.1628293], [-2.9647636, 53.1624625], [-2.9627487, 53.1620651]]}}, {"type": "Feature", "properties": {"osm_id": "2510860", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9203027, 53.1560581], [-2.9184745, 53.1560478], [-2.9168952, 53.1560993], [-2.9154447, 53.1561971], [-2.913462, 53.1563669], [-2.9112991, 53.1565574], [-2.9040715, 53.1572721], [-2.9021693, 53.1574519], [-2.8994656, 53.1577205], [-2.8971868, 53.1579174], [-2.8939561, 53.1582802], [-2.8927601, 53.1584571], [-2.8913361, 53.1587061], [-2.8899461, 53.1589765], [-2.8887101, 53.1592612], [-2.8871199, 53.1596467], [-2.886233, 53.1599014], [-2.8851868, 53.1602427], [-2.884574, 53.1604472], [-2.8837243, 53.1607337], [-2.8829542, 53.1610203], [-2.8823924, 53.161247], [-2.8811975, 53.1617151], [-2.8796584, 53.1623181], [-2.8778581, 53.1630218]]}}, {"type": "Feature", "properties": {"osm_id": "2510862", "highway": "trunk", "ref": "A55", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8610261, 53.1735479], [-2.8624435, 53.1719655], [-2.8630035, 53.1713428], [-2.8636046, 53.1706793], [-2.8641708, 53.1700534], [-2.86485, 53.1693581], [-2.8656262, 53.1686549], [-2.8663853, 53.1680657], [-2.867176, 53.1675119], [-2.8681649, 53.1669067], [-2.8694465, 53.1662166], [-2.8705137, 53.1657178], [-2.8726206, 53.1648683], [-2.8745942, 53.1640927], [-2.8763236, 53.1634247]]}}, {"type": "Feature", "properties": {"osm_id": "2510865", "highway": "trunk", "ref": "A483", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Wrexham Road", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "source_maxspeed": "nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9128, 53.1558327], [-2.9129331, 53.1555083], [-2.9131675, 53.1551451], [-2.9134029, 53.1548039], [-2.9138697, 53.1543129], [-2.9142506, 53.15397], [-2.9144579, 53.1537834], [-2.9145923, 53.153666], [-2.9147936, 53.1534864], [-2.9148306, 53.1534438], [-2.9151811, 53.1531172], [-2.9154708, 53.1528386], [-2.9158586, 53.1524341], [-2.9162426, 53.1519098], [-2.9167184, 53.1513966], [-2.9168241, 53.1512792], [-2.9170423, 53.151079], [-2.9172096, 53.1509345]]}}, {"type": "Feature", "properties": {"osm_id": "2510866", "highway": "trunk", "ref": "A51", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Vicars Cross", "bicycle": "yes", "surface": "asphalt", "junction": "roundabout", "foot": "yes", "horse": "yes", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8454244, 53.1946911], [-2.8455176, 53.1947896], [-2.8455634, 53.1949097], [-2.8455312, 53.1949981], [-2.8455064, 53.1950592]]}}, {"type": "Feature", "properties": {"osm_id": "2510870", "highway": "trunk", "ref": "A51", "maxspeed": "40 mph", "oneway": "yes", "name": "Tarvin Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8480723, 53.1946072], [-2.847847, 53.1946456], [-2.8471743, 53.1947657], [-2.846992, 53.1947929], [-2.8468838, 53.1948065], [-2.8462292, 53.1948584], [-2.8458994, 53.1948873], [-2.8456654, 53.1949583], [-2.8455881, 53.1950006], [-2.8455064, 53.1950592]]}}, {"type": "Feature", "properties": {"osm_id": "2510872", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "name": "Ring Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8537515, 53.1880139], [-2.8536851, 53.1880961], [-2.8535915, 53.1881725], [-2.8534567, 53.1882749]]}}, {"type": "Feature", "properties": {"osm_id": "2510873", "highway": "trunk", "ref": "A41", "maxspeed": "40 mph", "oneway": "yes", "name": "Ring Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8480995, 53.1942476], [-2.8480898, 53.1943499], [-2.848072, 53.1945066], [-2.8480723, 53.1946072], [-2.8480858, 53.1948442], [-2.8481337, 53.1950708]]}}, {"type": "Feature", "properties": {"osm_id": "2510874", "highway": "trunk", "ref": "A51", "maxspeed": "40 mph", "oneway": "yes", "name": "Tarvin Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8454244, 53.1946911], [-2.8456393, 53.1947415], [-2.8458741, 53.1947541], [-2.8462045, 53.1947302], [-2.8468482, 53.1946695], [-2.847428, 53.1946108], [-2.8475641, 53.194593], [-2.8478483, 53.1945396]]}}, {"type": "Feature", "properties": {"osm_id": "2510875", "highway": "trunk", "ref": "A51", "maxspeed": "40 mph", "name": "Vicars Cross Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8493904, 53.1943621], [-2.8495628, 53.194339], [-2.8497996, 53.1943075]]}}, {"type": "Feature", "properties": {"osm_id": "2510876", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8468482, 53.1946695], [-2.8471835, 53.194583], [-2.8474491, 53.1944856], [-2.8476744, 53.1943609], [-2.8478246, 53.1942324], [-2.8478979, 53.1941036]]}}, {"type": "Feature", "properties": {"osm_id": "2510877", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8479757, 53.1952879], [-2.8478341, 53.1951504], [-2.8477497, 53.1950298], [-2.8475619, 53.1948833], [-2.8471743, 53.1947657]]}}, {"type": "Feature", "properties": {"osm_id": "2511275", "highway": "trunk", "ref": "A5116", "maxspeed": "30 mph", "name": "Bache Roundabout", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8945651, 53.2075449], [-2.8945481, 53.2075972], [-2.8944835, 53.2076544], [-2.8944089, 53.2076834], [-2.8943222, 53.2076953], [-2.8942741, 53.2076941], [-2.8941894, 53.2076778], [-2.894137, 53.2076558], [-2.8940825, 53.2076137], [-2.8940551, 53.2075624], [-2.8940589, 53.2075092], [-2.8940741, 53.207481], [-2.8941232, 53.2074366], [-2.8941746, 53.2074116], [-2.8942572, 53.2073919], [-2.894371, 53.2073933], [-2.8944522, 53.2074149], [-2.8944887, 53.2074328], [-2.8945403, 53.2074762], [-2.8945651, 53.2075449]]}}, {"type": "Feature", "properties": {"osm_id": "2511277", "highway": "trunk", "ref": "A483", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Wrexham Road", "operator": "Highways England", "highways_england_area": "10", "bicycle": "yes", "source_maxspeed": "nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9174106, 53.1510571], [-2.9168488, 53.1514762], [-2.9164052, 53.1519594], [-2.9159894, 53.1524741], [-2.9156391, 53.1528819], [-2.9153944, 53.1531448], [-2.9152064, 53.1533243], [-2.9151504, 53.1533821]]}}, {"type": "Feature", "properties": {"osm_id": "2511279", "highway": "trunk", "ref": "A483", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "maxspeed_type": "GB:nsl_dual", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.9861401, 53.0775747], [-2.9861327, 53.0779338], [-2.9861476, 53.0783273], [-2.9862445, 53.0788183], [-2.9863466, 53.0792251], [-2.9868694, 53.0803959], [-2.9873311, 53.0812504], [-2.9873701, 53.0813227], [-2.9875737, 53.0817648], [-2.9877706, 53.0822157], [-2.9879085, 53.0826722], [-2.9879836, 53.0830279], [-2.9880398, 53.0834918], [-2.9880545, 53.0838946], [-2.9880246, 53.0842167], [-2.9879553, 53.0846329], [-2.9878794, 53.0849902], [-2.9877255, 53.0854265], [-2.9874763, 53.0859543], [-2.9872228, 53.086385], [-2.9868283, 53.0869157], [-2.9863449, 53.0874492], [-2.9859142, 53.0878563], [-2.9853584, 53.0883088], [-2.9845913, 53.0888193], [-2.984285, 53.0889884], [-2.9839438, 53.0891753], [-2.9834463, 53.089423], [-2.9827721, 53.0897152], [-2.9821577, 53.0899292], [-2.9810074, 53.0903036], [-2.980049, 53.0905263], [-2.9780533, 53.090894], [-2.9769671, 53.0910651], [-2.9754244, 53.0913954], [-2.9737325, 53.0918935], [-2.9717865, 53.0926487], [-2.9702711, 53.093427], [-2.9685859, 53.0945391], [-2.9668773, 53.0960311], [-2.9650234, 53.0978626], [-2.9646649, 53.0982592], [-2.9640426, 53.0989652], [-2.9635339, 53.0994935], [-2.9630746, 53.0999477], [-2.9625392, 53.1004503], [-2.9615667, 53.1013444], [-2.9608029, 53.1020208], [-2.9604238, 53.1024224], [-2.9597994, 53.1030177], [-2.958949, 53.1039391], [-2.957235, 53.1059574], [-2.9561891, 53.1074802]]}}, {"type": "Feature", "properties": {"osm_id": "2521706", "highway": "trunk", "ref": "A1", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Falloden Way", "operator": "Transport for London", "sidewalk": "separate", "alt_name": "Barnet By-pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1981203, 51.5897531], [-0.1979079, 51.5897133], [-0.1977336, 51.5896903], [-0.1971106, 51.5896479], [-0.1969188, 51.5896274], [-0.1967227, 51.5895936], [-0.1964804, 51.5895324], [-0.1962718, 51.5894675], [-0.196116, 51.5894093], [-0.1960453, 51.589379], [-0.1957621, 51.5892298]]}}, {"type": "Feature", "properties": {"osm_id": "2521707", "highway": "trunk", "ref": "A1", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Falloden Way", "operator": "Transport for London", "alt_name": "Barnet By-pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1928438, 51.5875081], [-0.1941771, 51.5881657], [-0.1948021, 51.5885396]]}}, {"type": "Feature", "properties": {"osm_id": "2521708", "highway": "trunk", "ref": "A1", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Falloden Way", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.184285, 51.5860135], [-0.1831856, 51.585995], [-0.1819728, 51.5858565], [-0.1808624, 51.5857298]]}}, {"type": "Feature", "properties": {"osm_id": "2521872", "highway": "trunk", "ref": "A1", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Aylmer Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1677597, 51.5837564], [-0.1666832, 51.5833941], [-0.1659172, 51.5831437], [-0.1648388, 51.5827911]]}}, {"type": "Feature", "properties": {"osm_id": "2521928", "highway": "trunk", "ref": "A1", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Lyttelton Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1678827, 51.5836272], [-0.1682296, 51.5837372], [-0.1691883, 51.5840332], [-0.1699085, 51.5842555]]}}, {"type": "Feature", "properties": {"osm_id": "2522868", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford By-pass", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2588394, 51.6214692], [-0.2596449, 51.6214878], [-0.2600794, 51.6215051], [-0.2605911, 51.6215499], [-0.2609468, 51.6215847], [-0.2612833, 51.6216251], [-0.2638301, 51.6219866]]}}, {"type": "Feature", "properties": {"osm_id": "2522869", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford By-pass", "operator": "Transport for London", "alt_name": "Edgware Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2776801, 51.6214507], [-0.2774172, 51.6214097], [-0.2770415, 51.6213633], [-0.2765507, 51.621328], [-0.2760966, 51.6213228], [-0.2756424, 51.6213447]]}}, {"type": "Feature", "properties": {"osm_id": "2522870", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Watford By-pass", "operator": "Transport for London", "source_maxspeed": "nsl", "alt_name": "Edgware Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2882779, 51.623965], [-0.2883376, 51.6241245], [-0.2883703, 51.6242244], [-0.2884801, 51.6243392], [-0.2887986, 51.6245839], [-0.2894536, 51.625061], [-0.2911001, 51.6262415], [-0.2921827, 51.6269533], [-0.2971527, 51.6302205]]}}, {"type": "Feature", "properties": {"osm_id": "2522871", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford By-Pass", "source_maxspeed": "nsl", "alt_name": "Edgware Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3036582, 51.6369409], [-0.303566, 51.6368539], [-0.3034567, 51.6367664], [-0.3032537, 51.6366477], [-0.3030227, 51.6365423], [-0.3028478, 51.6364491], [-0.3025477, 51.6362663]]}}, {"type": "Feature", "properties": {"osm_id": "2522872", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "name": "Brockley Hill Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.30421, 51.6371532], [-0.3040908, 51.6371564], [-0.3039925, 51.6371448], [-0.3038804, 51.6371139], [-0.3037812, 51.637064], [-0.3037374, 51.6370383]]}}, {"type": "Feature", "properties": {"osm_id": "2532415", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lit": "yes", "name": "Carshalton Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1683855, 51.3627583], [-0.168402, 51.3627568], [-0.1687368, 51.3627261], [-0.1689554, 51.3627226], [-0.1690959, 51.3627274], [-0.1692525, 51.3627433], [-0.1694508, 51.3627713], [-0.1694845, 51.362778], [-0.1702484, 51.3629292], [-0.1706089, 51.3629881], [-0.1711275, 51.3630236], [-0.1716708, 51.3630587]]}}, {"type": "Feature", "properties": {"osm_id": "2532444", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lit": "yes", "name": "Croydon Road", "operator": "Transport for London", "source_name": "OS_OpenData_StreetView", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.133779, 51.3688734], [-0.1343322, 51.3690394], [-0.1346379, 51.3690734], [-0.1353108, 51.3691358], [-0.13607, 51.3692055], [-0.1367751, 51.3693226], [-0.1382674, 51.3696595], [-0.139631, 51.3697923], [-0.1398757, 51.3698067]]}}, {"type": "Feature", "properties": {"osm_id": "2532704", "highway": "trunk", "ref": "A102", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Blackwall Tunnel Northern Approach", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "foot": "no", "maintenance": "salting", "horse": "no", "alt_name": "Blackwall Tunnel Approach", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0070464, 51.5096212], [-0.0070347, 51.5097393], [-0.007036, 51.5098654], [-0.0070707, 51.51007], [-0.007121, 51.5102706], [-0.0072171, 51.5105981], [-0.0072853, 51.5107919], [-0.0073719, 51.5109701], [-0.007486, 51.5111533], [-0.0076496, 51.5113636]]}}, {"type": "Feature", "properties": {"osm_id": "2532705", "highway": "trunk", "ref": "A12", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Blackwall Tunnel Northern Approach", "operator": "Transport for London", "bicycle": "no", "foot": "no", "maintenance": "salting", "old_ref": "A102", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0114712, 51.5277174], [-0.0113974, 51.5276213], [-0.0113136, 51.5275122], [-0.0111234, 51.5271922], [-0.0110795, 51.527041], [-0.0110504, 51.52689], [-0.0110531, 51.5267299], [-0.011106, 51.5265047], [-0.0112306, 51.526187], [-0.0113012, 51.5260401], [-0.0113997, 51.5256546]]}}, {"type": "Feature", "properties": {"osm_id": "2532812", "highway": "trunk", "ref": "A12", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "East Cross Route", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "layer": "1", "bridge": "yes", "foot": "no", "maintenance": "salting", "horse": "no", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.0185337, 51.5514279], [-0.0188711, 51.55141], [-0.0190296, 51.5514014], [-0.0191872, 51.5513953], [-0.0194676, 51.5513823], [-0.0198144, 51.5513549], [-0.0200382, 51.5513346], [-0.0202617, 51.5513067], [-0.0203981, 51.5512886], [-0.0205237, 51.5512704], [-0.020741, 51.551234], [-0.0209129, 51.5512019], [-0.0210829, 51.5511654]]}}, {"type": "Feature", "properties": {"osm_id": "2532894", "highway": "trunk", "ref": "A12", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Redbridge Roundabout", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "junction": "roundabout", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0429754, 51.5763066], [0.0430711, 51.5764215], [0.0432329, 51.576616]]}}, {"type": "Feature", "properties": {"osm_id": "2535040", "highway": "motorway", "ref": "A167(M)", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Central Motorway East", "operator": "Newcastle City Council", "layer": "1", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-1.6142046, 54.9830297], [-1.6134348, 54.9830472], [-1.6130406, 54.9830202]]}}, {"type": "Feature", "properties": {"osm_id": "2540984", "highway": "trunk", "ref": "A308", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Staines Road West", "bicycle": "yes", "surface": "asphalt", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.440048, 51.4219505], [-0.438347, 51.4217137], [-0.4376448, 51.421616], [-0.4370217, 51.4215342], [-0.4366435, 51.4214845], [-0.4359613, 51.4213949], [-0.4342114, 51.4211689], [-0.433204, 51.4210409], [-0.4309543, 51.4207574]]}}, {"type": "Feature", "properties": {"osm_id": "2541890", "highway": "motorway", "ref": "M53", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8856296, 53.2812636], [-2.8854515, 53.2809671], [-2.8852965, 53.2806571], [-2.8850314, 53.2800192], [-2.8848401, 53.2793781]]}}, {"type": "Feature", "properties": {"osm_id": "2541891", "highway": "motorway", "ref": "M53", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8683879, 53.2460826], [-2.8666551, 53.2445325], [-2.8658518, 53.2437127], [-2.8648761, 53.2424418], [-2.8634577, 53.2403525], [-2.8625678, 53.2387769]]}}, {"type": "Feature", "properties": {"osm_id": "2542290", "highway": "trunk", "ref": "A140", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Guardian Road", "sidewalk": "separate", "maintenance": "salting", "salting_ref": "KET033", "lanes_forward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2591757, 52.6339059], [1.2591747, 52.633963], [1.2591862, 52.6342509], [1.2591878, 52.6347619]]}}, {"type": "Feature", "properties": {"osm_id": "2542295", "highway": "trunk", "ref": "A140", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Daniels Road", "sidewalk": "separate", "maintenance": "salting", "turn_lanes": "left;through|through;right", "salting_ref": "KET033", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2741628, 52.6161653], [1.2740012, 52.616259], [1.2739349, 52.6162903], [1.2738312, 52.6163141]]}}, {"type": "Feature", "properties": {"osm_id": "2543097", "highway": "trunk", "ref": "A167", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "layer": "1", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[-1.6078779, 54.9698105], [-1.6075395, 54.9694932]]}}, {"type": "Feature", "properties": {"osm_id": "2543098", "highway": "trunk", "ref": "A167", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Gateshead Highway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6021558, 54.9649195], [-1.6022884, 54.9649741], [-1.6024588, 54.9650294], [-1.6029648, 54.9651854], [-1.6030578, 54.9652285]]}}, {"type": "Feature", "properties": {"osm_id": "2543102", "highway": "trunk", "ref": "A1058", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Coast Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5917044, 54.9882007], [-1.5909079, 54.9884582], [-1.5904193, 54.988595]]}}, {"type": "Feature", "properties": {"osm_id": "2543139", "highway": "trunk", "maxspeed": "30 mph", "lanes": "2", "name": "Silverlink Interchange Roundabout", "operator": "Highways England", "highways_england_area": "14", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4980026, 55.0098037], [-1.497918, 55.0098056], [-1.4978233, 55.0097955], [-1.4977077, 55.0097802], [-1.4975873, 55.0097616], [-1.4974245, 55.0097189], [-1.4973454, 55.0096884], [-1.4972225, 55.0095909], [-1.4971386, 55.0095128], [-1.4970428, 55.0093771], [-1.4968901, 55.0090804], [-1.496863, 55.0090033], [-1.4968589, 55.0089245], [-1.4968708, 55.0089045]]}}, {"type": "Feature", "properties": {"osm_id": "2544086", "highway": "trunk", "ref": "A483", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "operator": "Welsh Government", "maxspeed_type": "GB:nsl_single", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1399437, 52.658046], [-3.1396087, 52.6582259], [-3.1391517, 52.65857], [-3.138387, 52.6592242], [-3.1378842, 52.659674], [-3.1360674, 52.6609992], [-3.1318642, 52.6637914]]}}, {"type": "Feature", "properties": {"osm_id": "2544592", "highway": "trunk", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Newmarket Road", "sidewalk": "separate", "junction": "roundabout", "maintenance": "salting", "salting_ref": "KET033", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2741064, 52.6164954], [1.2740961, 52.6164624]]}}, {"type": "Feature", "properties": {"osm_id": "2544594", "highway": "trunk", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Dereham Road", "sidewalk": "no", "junction": "roundabout", "maintenance": "salting", "salting_ref": "AYL064", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2593297, 52.636952], [1.2592638, 52.6369409], [1.2591692, 52.6369386], [1.2590782, 52.6369545], [1.2589999, 52.6369869], [1.2589381, 52.6370374]]}}, {"type": "Feature", "properties": {"osm_id": "2554147", "highway": "trunk", "ref": "A483", "maxspeed": "30 mph", "oneway": "yes", "name": "Overleigh Roundabout", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8964342, 53.1797719], [-2.8964495, 53.1796676], [-2.8964564, 53.179613], [-2.8964687, 53.1795671], [-2.8965548, 53.1794842], [-2.8966504, 53.1794217], [-2.8967547, 53.1793983], [-2.896927, 53.1793995], [-2.8970652, 53.1794199], [-2.8972209, 53.1794813], [-2.8972938, 53.179537], [-2.8973175, 53.1796253], [-2.8973225, 53.1797293]]}}, {"type": "Feature", "properties": {"osm_id": "2554148", "highway": "trunk", "ref": "A483", "maxspeed": "30 mph", "name": "Grosvenor Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8958636, 53.1842247], [-2.8951263, 53.1850652], [-2.8947844, 53.185387], [-2.8947215, 53.1854462], [-2.8946601, 53.1855055]]}}, {"type": "Feature", "properties": {"osm_id": "2570541", "highway": "motorway", "ref": "A167(M)", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Central Motorway East", "operator": "Newcastle City Council", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6079426, 54.9697378], [-1.6085716, 54.970525], [-1.6086332, 54.9706695], [-1.6086761, 54.9709144]]}}, {"type": "Feature", "properties": {"osm_id": "2570545", "highway": "trunk", "ref": "A1058", "maxspeed": "30 mph", "oneway": "yes", "operator": "Newcastle City Council", "sidewalk": "left", "layer": "1", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[-1.6045235, 54.9825856], [-1.6046622, 54.9825471], [-1.6049994, 54.9824534], [-1.6052584, 54.9823815]]}}, {"type": "Feature", "properties": {"osm_id": "2570551", "highway": "trunk", "ref": "A1058", "maxspeed": "30 mph", "lanes": "4", "lit": "yes", "name": "Jesmond Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.602983, 54.9832241], [-1.6026137, 54.9833468], [-1.6018345, 54.9836107], [-1.60117, 54.9838357]]}}, {"type": "Feature", "properties": {"osm_id": "2587374", "highway": "trunk", "ref": "A10", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great Cambridge Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.086465, 51.6160259], [-0.0865051, 51.6159993], [-0.0865841, 51.6159198], [-0.0866323, 51.6158584], [-0.0866745, 51.6157859], [-0.0866887, 51.6156347], [-0.0866974, 51.6155265]]}}, {"type": "Feature", "properties": {"osm_id": "2587376", "highway": "trunk", "maxspeed": "40 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "name": "Edmonton Great Cambridge Roundabout", "operator": "Transport for London", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0873096, 51.6164919], [-0.0872776, 51.6165274], [-0.0872304, 51.6165608], [-0.0871687, 51.6165867]]}}, {"type": "Feature", "properties": {"osm_id": "2588260", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Barnet By-Pass", "operator": "Highways England", "highways_england_area": "DBFO5", "surface": "asphalt", "source_maxspeed": "UK:national", "carriageway_ref": "A", "old_ref": "A555", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2332556, 51.6807599], [-0.2302992, 51.6852429], [-0.2300705, 51.6855867], [-0.2298385, 51.685916], [-0.229067, 51.6870582], [-0.2284934, 51.6878048], [-0.2278497, 51.6885901], [-0.227514, 51.6889913], [-0.2268518, 51.6898008], [-0.2264907, 51.6902667]]}}, {"type": "Feature", "properties": {"osm_id": "2589346", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "gb:national", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5799178, 52.2858216], [-0.5799491, 52.2857269], [-0.5800232, 52.2856664], [-0.5801115, 52.2856294], [-0.5802294, 52.2856089], [-0.5803922, 52.2856218], [-0.5804981, 52.2856604], [-0.5805763, 52.2857189], [-0.5806171, 52.2857905], [-0.58061, 52.2858803], [-0.5805579, 52.2859494], [-0.58047, 52.2860033], [-0.5802991, 52.2860417], [-0.5801781, 52.2860385], [-0.5800769, 52.2860093], [-0.5799998, 52.2859655], [-0.5799526, 52.2859202], [-0.5799266, 52.285866], [-0.5799178, 52.2858216]]}}, {"type": "Feature", "properties": {"osm_id": "2589454", "highway": "trunk", "ref": "A6", "maxspeed": "60 mph", "oneway": "yes", "maxspeed_type": "GB:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.582879, 52.2999886], [-0.5829749, 52.2999401], [-0.5830886, 52.2999091], [-0.5832117, 52.2998979], [-0.5833209, 52.2999052], [-0.5834242, 52.2999281], [-0.5835156, 52.2999654], [-0.5835992, 52.300023], [-0.583654, 52.3000923], [-0.5836743, 52.300152], [-0.583673, 52.300213], [-0.5836502, 52.3002724], [-0.5836186, 52.3003153], [-0.5835581, 52.300367], [-0.5834801, 52.3004091], [-0.5834247, 52.3004294], [-0.5833652, 52.3004448], [-0.583245, 52.3004593], [-0.5831229, 52.3004538], [-0.5830074, 52.3004288], [-0.5829022, 52.3003835], [-0.5828217, 52.300322], [-0.5827723, 52.3002494], [-0.5827578, 52.3001711], [-0.5827793, 52.3000935], [-0.5828198, 52.3000377], [-0.582879, 52.2999886]]}}, {"type": "Feature", "properties": {"osm_id": "2589672", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "Crookbarrow Interchange", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1812526, 52.1682435], [-2.1815686, 52.1685414], [-2.1816678, 52.168794], [-2.1816872, 52.1689887], [-2.1816291, 52.1691837], [-2.1815148, 52.1693075], [-2.1812973, 52.1694414], [-2.1810945, 52.1695238], [-2.1808594, 52.1695709], [-2.1807054, 52.1695852], [-2.1803764, 52.1695616], [-2.1800612, 52.1694799]]}}, {"type": "Feature", "properties": {"osm_id": "2589673", "highway": "trunk", "ref": "A44", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1843103, 52.172253], [-2.1842535, 52.172082], [-2.1841117, 52.1718364], [-2.1836681, 52.1713413], [-2.1828454, 52.17061], [-2.1818533, 52.169875], [-2.1814235, 52.1695864]]}}, {"type": "Feature", "properties": {"osm_id": "2599187", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Avenue Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "none", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1752844, 51.5441293], [-0.1750959, 51.5438506], [-0.1749584, 51.5436452]]}}, {"type": "Feature", "properties": {"osm_id": "2599188", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lanes": "5", "oneway": "yes", "lit": "yes", "name": "Finchley Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "cycleway": "share_busway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1751767, 51.54199], [-0.1750888, 51.5424307]]}}, {"type": "Feature", "properties": {"osm_id": "2599341", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lit": "yes", "name": "Finchley Road", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1742417, 51.5343749], [-0.1743194, 51.5344428], [-0.1743516, 51.5344722], [-0.1746153, 51.5346868], [-0.1747537, 51.5347912], [-0.1750018, 51.5350037], [-0.1752597, 51.5352201], [-0.1753684, 51.535301]]}}, {"type": "Feature", "properties": {"osm_id": "2599405", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lit": "yes", "name": "Wellington Road", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1742417, 51.5343749], [-0.1741661, 51.5343167], [-0.1740975, 51.5342584], [-0.1739124, 51.5340922], [-0.1737955, 51.5339963], [-0.1733523, 51.5336284], [-0.1732552, 51.5335391], [-0.173048, 51.5333635], [-0.1729448, 51.5332872]]}}, {"type": "Feature", "properties": {"osm_id": "2599447", "highway": "trunk", "ref": "A4380", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Gloucester Place", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "lanes_forward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1596317, 51.5216886], [-0.1596947, 51.5218158]]}}, {"type": "Feature", "properties": {"osm_id": "2599449", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Park Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.161674, 51.5259229], [-0.1615823, 51.5258861], [-0.1614832, 51.525843], [-0.1614111, 51.5258073], [-0.1613138, 51.525754], [-0.1612843, 51.5257358], [-0.161226, 51.5256955], [-0.161137, 51.5256222]]}}, {"type": "Feature", "properties": {"osm_id": "2599450", "highway": "trunk", "ref": "A41", "maxspeed": "30 mph", "lanes": "4", "lit": "yes", "name": "Park Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.161674, 51.5259229], [-0.1619113, 51.5260384], [-0.1621861, 51.5261685], [-0.1624904, 51.5262899], [-0.1628207, 51.5264118], [-0.1630543, 51.5265347], [-0.1630905, 51.5265645], [-0.1631725, 51.5265956], [-0.1632699, 51.5266443], [-0.1642591, 51.5272692], [-0.1642769, 51.5272847], [-0.1644162, 51.5273753], [-0.1651202, 51.5278829], [-0.1652728, 51.5280007], [-0.1654216, 51.5281101], [-0.165461, 51.5281434], [-0.1654922, 51.5281788], [-0.1657782, 51.5283644]]}}, {"type": "Feature", "properties": {"osm_id": "2599451", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "sidewalk": "none", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1681638, 51.5301466], [-0.168112, 51.5302219]]}}, {"type": "Feature", "properties": {"osm_id": "2599786", "highway": "trunk", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Stirling Corner", "operator": "Transport for London", "maxspeed_type": "UK:nsl_dual", "source_maxspeed": "national", "junction": "circular", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2542099, 51.6431296], [-0.2543158, 51.6430412], [-0.2544609, 51.6429416], [-0.2545759, 51.6428692]]}}, {"type": "Feature", "properties": {"osm_id": "2605869", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Devon Expressway", "operator": "Highways England", "highways_england_area": "1", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.9977235, 50.3818461], [-3.9979117, 50.3817837], [-3.9988233, 50.3814672], [-3.9999576, 50.3810143], [-4.0006509, 50.3807437], [-4.0014283, 50.3804584], [-4.0024788, 50.3801361], [-4.0035505, 50.3798594], [-4.0042547, 50.3797125], [-4.0049544, 50.3795859], [-4.0055181, 50.3795127]]}}, {"type": "Feature", "properties": {"osm_id": "2607418", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Devon Expressway", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.6125017, 50.6030386], [-3.6105318, 50.6041101], [-3.6088308, 50.6049989], [-3.6075034, 50.6057001], [-3.6056877, 50.6066667], [-3.604122, 50.6075018], [-3.603357, 50.6079372], [-3.6028254, 50.6082877], [-3.6024793, 50.6085339], [-3.60218, 50.6087611], [-3.6016647, 50.6091853], [-3.601187, 50.6096333], [-3.6009061, 50.609919], [-3.6006946, 50.6101416], [-3.6001876, 50.6107444], [-3.5997332, 50.6113306], [-3.5992377, 50.6119293], [-3.598809, 50.612398], [-3.5984239, 50.6127463], [-3.598062, 50.6130314], [-3.5974926, 50.6134952], [-3.5960362, 50.61448], [-3.5953051, 50.6149079], [-3.5936701, 50.6157587], [-3.5919333, 50.6165795], [-3.5887392, 50.6180585], [-3.5880542, 50.618356], [-3.5874568, 50.6186085], [-3.5864569, 50.6190319], [-3.585785, 50.6193151], [-3.5852423, 50.6195627], [-3.5847728, 50.6197953], [-3.5843, 50.6200634]]}}, {"type": "Feature", "properties": {"osm_id": "2622670", "highway": "trunk", "ref": "A10", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Lordship Lane", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0767875, 51.598375], [-0.0764779, 51.5983877]]}}, {"type": "Feature", "properties": {"osm_id": "2622674", "highway": "trunk", "ref": "A503", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Seven Sisters Road", "operator": "Transport for London", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0863829, 51.5742498], [-0.0865262, 51.5741259], [-0.0867367, 51.5739624], [-0.0868795, 51.573868], [-0.0870119, 51.5737987], [-0.0871893, 51.5737107], [-0.0872934, 51.5736665], [-0.087642, 51.5735344], [-0.0878225, 51.5734622], [-0.0887982, 51.5731138], [-0.0896836, 51.5727976], [-0.0897548, 51.5727691], [-0.0904095, 51.5725376], [-0.0904774, 51.5725136], [-0.0905314, 51.5724945], [-0.0906463, 51.5724539], [-0.0907911, 51.5724075], [-0.0940128, 51.5713746]]}}, {"type": "Feature", "properties": {"osm_id": "2623040", "highway": "trunk", "ref": "A10", "maxspeed": "30 mph", "lanes": "4", "lit": "yes", "name": "Stamford Hill", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0731447, 51.5635402], [-0.0731395, 51.5638895]]}}, {"type": "Feature", "properties": {"osm_id": "2623087", "highway": "trunk", "ref": "A10", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Rectory Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0715668, 51.5628413], [-0.0714189, 51.5627378], [-0.0712003, 51.5626095], [-0.071097, 51.5625264]]}}, {"type": "Feature", "properties": {"osm_id": "2623291", "highway": "trunk", "ref": "A10", "maxspeed": "20 mph", "lanes": "2", "oneway": "no", "lit": "yes", "name": "Kingsland High Street", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0756177, 51.5470785], [-0.0755961, 51.5471964]]}}, {"type": "Feature", "properties": {"osm_id": "2624003", "highway": "trunk", "ref": "A503", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Camden Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1335786, 51.5456391], [-0.1335104, 51.5456897], [-0.1334728, 51.5457175], [-0.1334394, 51.5457423], [-0.1327652, 51.5462282], [-0.1324442, 51.54645], [-0.1324102, 51.5464735], [-0.1323622, 51.5465064], [-0.1323237, 51.5465328], [-0.1320009, 51.5467593], [-0.1319395, 51.5468025], [-0.1313752, 51.5472045], [-0.1310457, 51.5474272]]}}, {"type": "Feature", "properties": {"osm_id": "2624007", "highway": "trunk", "ref": "A503", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Tollington Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1112201, 51.5584381], [-0.1112928, 51.5583491], [-0.1113919, 51.5582674], [-0.1114469, 51.5582373], [-0.1115018, 51.5582073], [-0.1116396, 51.5581574], [-0.1118197, 51.5580922]]}}, {"type": "Feature", "properties": {"osm_id": "2624008", "highway": "trunk", "ref": "A503", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Isledon Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1073482, 51.5633394], [-0.1073892, 51.56328], [-0.1074877, 51.5632082], [-0.107538, 51.5631715], [-0.1075997, 51.5631262], [-0.107652, 51.563079], [-0.1076752, 51.5630063], [-0.1077204, 51.562894]]}}, {"type": "Feature", "properties": {"osm_id": "2625136", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Marylebone Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "horse": "yes", "turn_lanes": "left;through|through|through", "motor_vehicle": "designated", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1669675, 51.5205637], [-0.1666479, 51.5206328], [-0.1665074, 51.5206634], [-0.1661216, 51.5207299], [-0.1657389, 51.5207774], [-0.16568, 51.5207838], [-0.1655272, 51.5207999]]}}, {"type": "Feature", "properties": {"osm_id": "2631580", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.6105932, 51.5021775], [-0.6098928, 51.50215], [-0.6090036, 51.5021299], [-0.6089186, 51.5021302]]}}, {"type": "Feature", "properties": {"osm_id": "2631589", "highway": "motorway", "ref": "M4", "maxspeed": "60 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.452172, 51.4956892], [-0.4493558, 51.495494], [-0.4476888, 51.4953511], [-0.4461667, 51.4951983], [-0.444087, 51.4949724]]}}, {"type": "Feature", "properties": {"osm_id": "2649821", "highway": "trunk", "ref": "A3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Esher Bypass", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "DBFO5", "sidewalk": "none", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3117156, 51.3756319], [-0.3122234, 51.3755558], [-0.3125887, 51.3754756], [-0.3131124, 51.3753417], [-0.3135402, 51.3752103], [-0.3141327, 51.3749913], [-0.3145612, 51.3748172], [-0.3149112, 51.3746522], [-0.3153473, 51.3744112], [-0.3156779, 51.3742107], [-0.3161158, 51.3739051], [-0.3164072, 51.3736698], [-0.316717, 51.3733919], [-0.316943, 51.3731592], [-0.3171127, 51.3729645], [-0.3172812, 51.3727356], [-0.3173822, 51.37261], [-0.317519, 51.3723944], [-0.3178733, 51.3716372], [-0.3179725, 51.3712965], [-0.318034, 51.3710194], [-0.3182885, 51.369356], [-0.3184924, 51.3680532], [-0.3185807, 51.367486]]}}, {"type": "Feature", "properties": {"osm_id": "2660852", "highway": "trunk", "ref": "A66", "maxspeed": "70 mph", "lanes": "3", "lit": "yes", "name": "Kemplay Bank Roundabout", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "13", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7436701, 54.6546406], [-2.7436635, 54.6547095], [-2.743644, 54.6547657], [-2.7435915, 54.6548924], [-2.7435257, 54.6549554], [-2.7434597, 54.6549982], [-2.7433835, 54.6550456], [-2.743296, 54.6550858], [-2.7431706, 54.6551395], [-2.7430201, 54.6551953], [-2.742774, 54.6552885]]}}, {"type": "Feature", "properties": {"osm_id": "2673542", "highway": "trunk", "ref": "A56", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chester Road", "maxspeed_type": "UK:nsl_dual", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6439284, 53.3278791], [-2.6436563, 53.3279963], [-2.6435486, 53.3280533], [-2.6434477, 53.3281169], [-2.6433894, 53.3281607], [-2.6432969, 53.3282615], [-2.6431976, 53.3283703], [-2.6431202, 53.3284549], [-2.642332, 53.3292849], [-2.6413022, 53.3304286], [-2.6410213, 53.3307909]]}}, {"type": "Feature", "properties": {"osm_id": "2673545", "highway": "trunk", "ref": "A533", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6682196, 53.3125011], [-2.6685989, 53.3123876], [-2.6690285, 53.3123533], [-2.6692353, 53.3123655]]}}, {"type": "Feature", "properties": {"osm_id": "2678511", "highway": "trunk", "ref": "B6261", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6694905, 54.5069738], [-2.6689952, 54.5069255]]}}, {"type": "Feature", "properties": {"osm_id": "2681010", "highway": "trunk", "maxspeed": "30 mph", "name": "Clock Garage Roundabout", "sidewalk": "left", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5346109, 52.7695608], [-1.5346507, 52.7695358], [-1.534704, 52.7695221], [-1.5347618, 52.7695225], [-1.5348093, 52.7695344], [-1.5348438, 52.7695534], [-1.5348651, 52.7695759], [-1.5348747, 52.7696097]]}}, {"type": "Feature", "properties": {"osm_id": "2681016", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "sidewalk": "left", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5923592, 52.7668826], [-1.5924427, 52.7668827], [-1.5925019, 52.766893], [-1.5925729, 52.7669201], [-1.5926032, 52.7669416], [-1.5926323, 52.7669818]]}}, {"type": "Feature", "properties": {"osm_id": "2687036", "highway": "trunk", "ref": "A414", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2655938, 51.7438956], [-0.2653822, 51.7439578], [-0.2640995, 51.7444299]]}}, {"type": "Feature", "properties": {"osm_id": "2688867", "highway": "trunk", "ref": "A66", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0137426, 54.5184522], [-2.0156263, 54.5180986], [-2.0165333, 54.5179374]]}}, {"type": "Feature", "properties": {"osm_id": "2690405", "highway": "trunk", "ref": "A6", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5218093, 52.1417623], [-0.5219123, 52.1420888], [-0.5221002, 52.142456]]}}, {"type": "Feature", "properties": {"osm_id": "2692715", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3133547, 51.4882885], [-0.3130099, 51.4884307]]}}, {"type": "Feature", "properties": {"osm_id": "2692875", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "separate", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2826468, 51.4914585], [-0.2827692, 51.4915806], [-0.2828265, 51.4916209], [-0.2829255, 51.4916707]]}}, {"type": "Feature", "properties": {"osm_id": "2700127", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2483791, 53.4280924], [-1.2458133, 53.4316918], [-1.2440458, 53.4342195], [-1.2432656, 53.4352455], [-1.2423626, 53.4362545], [-1.241045, 53.4375122], [-1.2400874, 53.4385776], [-1.2395697, 53.4392324], [-1.2388509, 53.4404954], [-1.2378438, 53.4421803], [-1.2372269, 53.4430258], [-1.2364105, 53.4440457], [-1.2358424, 53.4446668], [-1.2347851, 53.4456652], [-1.2333781, 53.4468111], [-1.2324789, 53.447455], [-1.2313046, 53.4481681], [-1.2301069, 53.4488485], [-1.2286317, 53.4495767], [-1.2275044, 53.4500645], [-1.2263625, 53.4505226], [-1.2222477, 53.4519041], [-1.2198775, 53.4526326], [-1.2161833, 53.4538545], [-1.2133875, 53.4547811], [-1.209259, 53.4562188], [-1.2072566, 53.4569443], [-1.1946321, 53.4613754], [-1.1858236, 53.4644629], [-1.1794092, 53.4666995], [-1.1703823, 53.4699045]]}}, {"type": "Feature", "properties": {"osm_id": "2701363", "highway": "trunk", "ref": "A13", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Newham Way", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "none", "layer": "1", "bridge": "viaduct", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[0.0114471, 51.5160714], [0.008106, 51.5154285], [0.0062296, 51.5150652], [0.0057866, 51.5149667], [0.004868, 51.5147502], [0.0039347, 51.5145521]]}}, {"type": "Feature", "properties": {"osm_id": "2701364", "highway": "trunk", "ref": "A13", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Newham Way", "operator": "Transport for London", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0126448, 51.5163945], [0.0151127, 51.5168864]]}}, {"type": "Feature", "properties": {"osm_id": "2701365", "highway": "trunk", "ref": "A13", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Newham Way", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "foot": "no", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0705483, 51.5242698], [0.069647, 51.5239749], [0.0688738, 51.5236919]]}}, {"type": "Feature", "properties": {"osm_id": "2701478", "highway": "trunk", "maxspeed": "50 mph", "lanes": "3", "lit": "yes", "name": "Beckton Roundabout", "operator": "Transport for London", "bicycle": "no", "surface": "asphalt", "sidewalk": "none", "junction": "roundabout", "foot": "no", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0736936, 51.5259802], [0.0738801, 51.5258809], [0.0739725, 51.5258184], [0.0740543, 51.5257434]]}}, {"type": "Feature", "properties": {"osm_id": "2701533", "highway": "trunk", "ref": "A13", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Ripple Road", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.1137852, 51.5328281], [0.1142826, 51.532824], [0.1146691, 51.5328169], [0.1149787, 51.5328092], [0.1152293, 51.5327991], [0.1154568, 51.5327864], [0.1156707, 51.5327688], [0.1158923, 51.5327497], [0.1161928, 51.532719], [0.1166675, 51.5326626], [0.1171152, 51.5326073]]}}, {"type": "Feature", "properties": {"osm_id": "2701534", "highway": "trunk", "ref": "A13", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "bicycle": "yes", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2091761, 51.5039899], [0.2036812, 51.5069075], [0.1996729, 51.5089376], [0.1988734, 51.509283], [0.1979649, 51.5096213], [0.1972268, 51.5098564], [0.1966345, 51.5099953], [0.1963414, 51.5100629], [0.1954745, 51.5102232], [0.1944941, 51.5103495], [0.1936905, 51.510428], [0.1916478, 51.5105775], [0.1900466, 51.5107508], [0.1893941, 51.5108141], [0.1881607, 51.5109907], [0.1872433, 51.511158]]}}, {"type": "Feature", "properties": {"osm_id": "2701722", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1403316, 53.4827595], [-1.1430074, 53.4815802], [-1.1456851, 53.4803991]]}}, {"type": "Feature", "properties": {"osm_id": "2701756", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 15", "description": "Doncaster Bypass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.0845478, 53.4145131], [-1.0850796, 53.4152937], [-1.085651, 53.4160716], [-1.0861445, 53.4166845], [-1.0866564, 53.4172847], [-1.0873058, 53.4180081], [-1.0879815, 53.4187137], [-1.0892001, 53.4199049], [-1.0904461, 53.4211055], [-1.0912129, 53.4219754], [-1.0917326, 53.4226525], [-1.0922665, 53.4234282], [-1.092691, 53.4241671], [-1.0928484, 53.4244737]]}}, {"type": "Feature", "properties": {"osm_id": "2701761", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Doncaster By-pass", "operator": "Highways England", "highways_england_area": "12", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 15", "description": "Doncaster Bypass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1484445, 53.4796184], [-1.1460705, 53.4771867], [-1.1451681, 53.4762405], [-1.1442654, 53.4753192], [-1.1434143, 53.4744829], [-1.1427785, 53.4739003], [-1.1420722, 53.4732855], [-1.1404309, 53.4719385], [-1.1387017, 53.470668], [-1.1371933, 53.4696658], [-1.1353631, 53.4684771], [-1.1338682, 53.4674077], [-1.1328561, 53.4666398], [-1.132351, 53.4662235], [-1.1317542, 53.4657125], [-1.1308696, 53.4649328], [-1.1303092, 53.4643983], [-1.1296403, 53.463732], [-1.1282341, 53.4622246], [-1.1274994, 53.4614858], [-1.1267371, 53.4607863], [-1.1259324, 53.4601162], [-1.1251063, 53.4594705], [-1.1245696, 53.4590916]]}}, {"type": "Feature", "properties": {"osm_id": "2701771", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1399285, 53.4830753], [-1.1379402, 53.4839879], [-1.1363416, 53.4846387], [-1.1347119, 53.4852455], [-1.1328558, 53.48586], [-1.130813, 53.4864447], [-1.1296307, 53.4867639], [-1.1278465, 53.4871604], [-1.1258226, 53.4875795], [-1.1245666, 53.4878108], [-1.1230938, 53.488046], [-1.1215366, 53.4882576]]}}, {"type": "Feature", "properties": {"osm_id": "2701772", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.0849246, 53.48765], [-1.0858066, 53.4876114], [-1.0876333, 53.4876082], [-1.0891262, 53.4876245], [-1.0999202, 53.4881157]]}}, {"type": "Feature", "properties": {"osm_id": "2702438", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.0849291, 53.4877814], [-1.0827917, 53.4879449], [-1.0816705, 53.4880353], [-1.079812, 53.4882842]]}}, {"type": "Feature", "properties": {"osm_id": "2702448", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9869323, 53.5910465], [-0.9856839, 53.5878046], [-0.9855383, 53.5873728], [-0.9854432, 53.5870145], [-0.9853828, 53.5867333], [-0.9853234, 53.5863127], [-0.9852955, 53.585988], [-0.9852873, 53.5856353]]}}, {"type": "Feature", "properties": {"osm_id": "2704040", "highway": "motorway", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "12", "layer": "1", "bridge": "yes", "junction": "roundabout", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-0.9879839, 53.5922999], [-0.987108, 53.5924127]]}}, {"type": "Feature", "properties": {"osm_id": "2704194", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9900565, 53.5991014], [-0.988961, 53.5962592]]}}, {"type": "Feature", "properties": {"osm_id": "2704200", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9871176, 53.5910401], [-0.9894576, 53.5970651]]}}, {"type": "Feature", "properties": {"osm_id": "2704244", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9880514, 53.6104139], [-0.9884652, 53.6098557], [-0.9888464, 53.6092894], [-0.9891947, 53.6087157], [-0.9895095, 53.6081352], [-0.9897906, 53.6075486], [-0.9900376, 53.6069566], [-0.9902502, 53.60636], [-0.9904282, 53.6057594], [-0.9905713, 53.6051554], [-0.9906794, 53.604549], [-0.9907524, 53.6039406], [-0.9907901, 53.6033312], [-0.9907925, 53.6027213], [-0.9907597, 53.6021117], [-0.9906577, 53.6013184]]}}, {"type": "Feature", "properties": {"osm_id": "2704271", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "layer": "1", "bridge": "yes", "carriageway_ref": "A", "int_ref": "E 22", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-0.9882898, 53.6104205], [-0.9878852, 53.6109407]]}}, {"type": "Feature", "properties": {"osm_id": "2704277", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9730985, 53.6222884], [-0.9737913, 53.6216427], [-0.9749264, 53.6206455], [-0.975853, 53.6199049], [-0.9768156, 53.6191886]]}}, {"type": "Feature", "properties": {"osm_id": "2704300", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9732941, 53.6223561], [-0.9724412, 53.623224], [-0.9709541, 53.6248184], [-0.9702402, 53.625716], [-0.9693137, 53.6270488], [-0.968841, 53.6278274], [-0.9680125, 53.6293908], [-0.9675539, 53.6303899], [-0.9671542, 53.6314733], [-0.9666316, 53.6331469], [-0.966301, 53.6344939]]}}, {"type": "Feature", "properties": {"osm_id": "2704311", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9660056, 53.6344701], [-0.9662651, 53.6333363], [-0.9669344, 53.6312277], [-0.9677161, 53.6294779], [-0.9685212, 53.627813], [-0.9689919, 53.6270504], [-0.9699459, 53.6256957], [-0.9705377, 53.6249571], [-0.9722291, 53.6231572], [-0.9730985, 53.6222884]]}}, {"type": "Feature", "properties": {"osm_id": "2704321", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.966301, 53.6344939], [-0.9661501, 53.6352163], [-0.9660783, 53.635789], [-0.9660003, 53.6366038], [-0.96596, 53.6377236], [-0.9659091, 53.6389163], [-0.9658345, 53.640381], [-0.9657766, 53.6419587], [-0.9655676, 53.6467357], [-0.9655065, 53.6483428]]}}, {"type": "Feature", "properties": {"osm_id": "2704326", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9652667, 53.6483019], [-0.9653474, 53.646475], [-0.9654566, 53.643839], [-0.9655164, 53.642565], [-0.965555, 53.6415294], [-0.9656516, 53.6393465], [-0.9657205, 53.6377817], [-0.9657509, 53.6369924], [-0.9657691, 53.6365242], [-0.9658211, 53.6360313], [-0.9658911, 53.6353231], [-0.9660056, 53.6344701]]}}, {"type": "Feature", "properties": {"osm_id": "2704450", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 22", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9655065, 53.6483428], [-0.9654512, 53.6494412], [-0.9653721, 53.6513842], [-0.9652946, 53.6532439], [-0.9652503, 53.6543964], [-0.9651543, 53.6563498], [-0.965058, 53.658664], [-0.9649923, 53.660131], [-0.964686, 53.6674695], [-0.9645325, 53.6713855], [-0.9645331, 53.671662], [-0.9645417, 53.6719539], [-0.9645514, 53.6721979], [-0.9645722, 53.6724899], [-0.9645995, 53.6728857], [-0.9646339, 53.6732669], [-0.9646821, 53.6736489], [-0.9647719, 53.6742638], [-0.9648664, 53.6748045]]}}, {"type": "Feature", "properties": {"osm_id": "2714200", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.1227417, 51.2629772], [-0.1232303, 51.2630981], [-0.1238791, 51.2632495], [-0.1246002, 51.2634008], [-0.1250911, 51.2634964], [-0.1256133, 51.2635887], [-0.126052, 51.2636638], [-0.1266785, 51.2637535], [-0.1270374, 51.263802], [-0.1283981, 51.263961], [-0.1289972, 51.264023], [-0.1302486, 51.2641434], [-0.1342226, 51.2644871], [-0.1401191, 51.2649049]]}}, {"type": "Feature", "properties": {"osm_id": "2714202", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "source_ref": "local knowledge", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.3181347, 51.3007683], [-0.3190372, 51.3016666], [-0.3196991, 51.3023424], [-0.3203624, 51.3030624], [-0.3208435, 51.3036193], [-0.3210811, 51.3039164], [-0.3219091, 51.3050894], [-0.3224262, 51.3058978], [-0.3229892, 51.3068185]]}}, {"type": "Feature", "properties": {"osm_id": "2722515", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.0927774, 51.2574086], [-0.0943628, 51.2574994], [-0.0982853, 51.2577787], [-0.1000534, 51.257956], [-0.1025597, 51.258289], [-0.1056892, 51.2587341], [-0.106575, 51.2588808], [-0.1074723, 51.2590438], [-0.1083774, 51.2592116], [-0.1092068, 51.2593785], [-0.1094926, 51.2594326]]}}, {"type": "Feature", "properties": {"osm_id": "2722520", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0956554, 51.2802545], [0.0976466, 51.2809149], [0.0977746, 51.280957], [0.0981359, 51.281076], [0.098977, 51.2813659], [0.0997959, 51.2816881], [0.1001346, 51.2818214], [0.1004278, 51.281929], [0.1009854, 51.2821336], [0.1015863, 51.2823805], [0.1044788, 51.2835616], [0.1064568, 51.2843024]]}}, {"type": "Feature", "properties": {"osm_id": "2722521", "highway": "motorway", "ref": "M25", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "horse": "no", "motor_vehicle": "designated", "description": "London Orbital Motorway", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.1475561, 51.293505], [0.1473732, 51.2932817], [0.1470732, 51.2930069], [0.1467254, 51.2927515], [0.1465811, 51.29268], [0.1463161, 51.2925463], [0.1459383, 51.2923937], [0.1455351, 51.2922421], [0.1444409, 51.2918532]]}}, {"type": "Feature", "properties": {"osm_id": "2765313", "highway": "motorway", "ref": "M18", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1701825, 53.469726], [-1.1809011, 53.466004], [-1.1944309, 53.4612668], [-1.2094698, 53.4559428], [-1.2159963, 53.4537214], [-1.2204027, 53.4522923], [-1.2227671, 53.4515766], [-1.2250022, 53.4508456], [-1.2263487, 53.4503692], [-1.2277291, 53.4498068], [-1.2287506, 53.4493172], [-1.2298856, 53.4487621], [-1.2313685, 53.4479374], [-1.2319945, 53.447509], [-1.2329354, 53.4468943], [-1.2338804, 53.4461804], [-1.234674, 53.4455112], [-1.2365115, 53.4436876], [-1.237177, 53.4427548], [-1.2377038, 53.4419998], [-1.2392289, 53.4393579], [-1.2398088, 53.4385699], [-1.2401473, 53.4381858], [-1.2421316, 53.4361218], [-1.2430358, 53.4350716], [-1.2437791, 53.4340735], [-1.2456166, 53.4315571], [-1.2481644, 53.4280444]]}}, {"type": "Feature", "properties": {"osm_id": "2799912", "highway": "motorway", "ref": "M275", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "M", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.086374, 50.8329488], [-1.0853492, 50.8345612], [-1.0851654, 50.8348967], [-1.0850663, 50.8352084], [-1.0849924, 50.8355286], [-1.0849525, 50.8358757], [-1.0849632, 50.8364523], [-1.0850268, 50.8367995], [-1.0851625, 50.837137], [-1.0854275, 50.8376389], [-1.0857035, 50.8380115], [-1.0859543, 50.8382651]]}}, {"type": "Feature", "properties": {"osm_id": "2800303", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7999638, 50.8332508], [-0.8003223, 50.833378], [-0.8014349, 50.8337402], [-0.8020997, 50.8339539], [-0.8028444, 50.8342234], [-0.8031037, 50.8343252], [-0.8034911, 50.8344899], [-0.8037953, 50.8346279], [-0.8041319, 50.8347917], [-0.8045072, 50.8349837], [-0.8049782, 50.8352522], [-0.8052866, 50.8354533], [-0.8055606, 50.8356495]]}}, {"type": "Feature", "properties": {"osm_id": "2800304", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.0349842, 50.8364237], [-1.0342673, 50.8366796], [-1.0330539, 50.8372046], [-1.0321467, 50.8376479], [-1.0256118, 50.8412157], [-1.0239944, 50.8420693], [-1.0226069, 50.8427157]]}}, {"type": "Feature", "properties": {"osm_id": "2800359", "highway": "motorway", "ref": "A3(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Waterlooville Bypass", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9989727, 50.9043209], [-0.9987872, 50.901588], [-0.9986529, 50.9005433], [-0.998476, 50.8988364], [-0.9984238, 50.8978479]]}}, {"type": "Feature", "properties": {"osm_id": "2807321", "highway": "trunk", "ref": "A264", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2899639, 51.083639], [-0.2901869, 51.0838415], [-0.2902567, 51.0839004], [-0.2903291, 51.0839527], [-0.2904081, 51.0840032], [-0.2907565, 51.0841838]]}}, {"type": "Feature", "properties": {"osm_id": "2807322", "highway": "trunk", "ref": "A264", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2910599, 51.0845068], [-0.2906933, 51.0843098]]}}, {"type": "Feature", "properties": {"osm_id": "2807323", "highway": "trunk", "ref": "A264", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Crawley Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2630629, 51.0918629], [-0.2632029, 51.0918508], [-0.263345, 51.0918339], [-0.2634625, 51.0918118], [-0.2639321, 51.0916768], [-0.2647134, 51.0914596], [-0.2651508, 51.091329]]}}, {"type": "Feature", "properties": {"osm_id": "2807393", "highway": "trunk", "ref": "A264", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2897123, 51.0839659], [-0.289511, 51.0840015], [-0.2894171, 51.0840234], [-0.2893394, 51.084047], [-0.2892172, 51.0840908], [-0.2891006, 51.0841397], [-0.2889773, 51.0842037], [-0.2883332, 51.084573]]}}, {"type": "Feature", "properties": {"osm_id": "2807698", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Worthing Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3404628, 50.991904], [-0.3404855, 50.9917734], [-0.3405221, 50.9916256]]}}, {"type": "Feature", "properties": {"osm_id": "2807700", "highway": "trunk", "ref": "A24", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "London Road", "surface": "asphalt", "source_name": "NAPTAN", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.407753, 50.9098964], [-0.4074799, 50.9099708], [-0.4072519, 50.9100501], [-0.4070211, 50.9101701], [-0.4068511, 50.9102811], [-0.4061863, 50.9108192], [-0.4048389, 50.9121195], [-0.4038131, 50.9134278], [-0.4030395, 50.914804], [-0.4024531, 50.9159124], [-0.4021887, 50.9166743], [-0.4020345, 50.9170895], [-0.4016985, 50.9182856], [-0.4014298, 50.9195455]]}}, {"type": "Feature", "properties": {"osm_id": "2807870", "highway": "trunk", "ref": "A24", "maxspeed": "40 mph", "lanes": "2", "name": "Findon Road", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4027981, 50.8576127], [-0.4027203, 50.8574571], [-0.4021994, 50.8567537], [-0.4019063, 50.8563414], [-0.4016676, 50.8560141], [-0.4011838, 50.855251], [-0.4006564, 50.85414], [-0.4003504, 50.8535434], [-0.3998999, 50.8525925], [-0.3996452, 50.8520616], [-0.3992744, 50.851346], [-0.3988665, 50.8505261], [-0.3987671, 50.8503262], [-0.3985361, 50.8498619], [-0.3983849, 50.8496014], [-0.3980461, 50.8488991], [-0.397257, 50.8478922], [-0.3967471, 50.8471141], [-0.396482, 50.8467699], [-0.3963045, 50.8465396], [-0.3958336, 50.8459454], [-0.3957338, 50.8458196], [-0.395692, 50.845755], [-0.3953442, 50.8452975], [-0.3951713, 50.8450701], [-0.3949602, 50.8448106], [-0.3949225, 50.844771], [-0.3947427, 50.8445293], [-0.3947208, 50.8444999], [-0.3946261, 50.8443641], [-0.3943662, 50.8439554], [-0.3942985, 50.8438269], [-0.3941067, 50.8434678], [-0.3939022, 50.8429594], [-0.3938509, 50.8427916], [-0.3936687, 50.8418043], [-0.3935954, 50.8413244], [-0.3935789, 50.8408786], [-0.3935655, 50.8407672], [-0.3934539, 50.8400386], [-0.3933994, 50.8398058], [-0.3933513, 50.8396675], [-0.3932641, 50.839463], [-0.3932368, 50.8394023]]}}, {"type": "Feature", "properties": {"osm_id": "2807871", "highway": "trunk", "ref": "A24", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "name": "Horsham Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4087214, 50.8734522], [-0.4088406, 50.8736646], [-0.4089736, 50.873921], [-0.4090769, 50.8741488], [-0.4091867, 50.8744091], [-0.4093086, 50.8747588], [-0.4096515, 50.8757822], [-0.4097296, 50.8760252], [-0.4098214, 50.8763015], [-0.4099212, 50.8765786], [-0.4100348, 50.8768217], [-0.4101699, 50.8770645], [-0.410212, 50.8771537], [-0.4102734, 50.8772494], [-0.410413, 50.8774774], [-0.4105323, 50.8776529], [-0.4106799, 50.8778364], [-0.4108259, 50.8779991], [-0.4110306, 50.8781913], [-0.4111786, 50.8783139], [-0.4114267, 50.8784841], [-0.411699, 50.8786744], [-0.4118734, 50.8788036], [-0.4120537, 50.8789497], [-0.4121872, 50.8790874], [-0.4123126, 50.8792731], [-0.4124051, 50.8794623], [-0.4124608, 50.8796473], [-0.4124889, 50.8798223], [-0.4124979, 50.8799865], [-0.4124862, 50.8801587], [-0.4124647, 50.8803202], [-0.412433, 50.8804323]]}}, {"type": "Feature", "properties": {"osm_id": "2807872", "highway": "trunk", "ref": "A24", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4078284, 50.9091638], [-0.4081729, 50.9089822], [-0.4083469, 50.9088566], [-0.4085694, 50.9086534], [-0.4087835, 50.9084443], [-0.4107075, 50.9065772], [-0.4109593, 50.9063037], [-0.4112038, 50.9060475], [-0.4115293, 50.9056104], [-0.4118785, 50.9049999], [-0.4122714, 50.9040972], [-0.4123997, 50.9031819], [-0.4123276, 50.9022657], [-0.4121993, 50.9017077], [-0.4119506, 50.9011738], [-0.4107358, 50.8991917], [-0.4101425, 50.8982988], [-0.4098978, 50.8978085], [-0.4096538, 50.8972933], [-0.409561, 50.8969512], [-0.4095073, 50.8966274], [-0.4094928, 50.8959548], [-0.4095758, 50.8953327], [-0.4096539, 50.8950362]]}}, {"type": "Feature", "properties": {"osm_id": "2807941", "highway": "trunk", "ref": "A24", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3328803, 51.0873584], [-0.3328883, 51.0872869], [-0.3329803, 51.0871547], [-0.3330209, 51.0870814], [-0.3330644, 51.0869989], [-0.333198, 51.0864512]]}}, {"type": "Feature", "properties": {"osm_id": "2807944", "highway": "trunk", "ref": "A24", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.326722, 51.1443675], [-0.326723, 51.1442606], [-0.3267497, 51.1440804], [-0.3267603, 51.1440055], [-0.3267916, 51.1436817], [-0.3268629, 51.1433796]]}}, {"type": "Feature", "properties": {"osm_id": "2808131", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Horsham Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3286944, 51.2148949], [-0.328854, 51.2149445], [-0.3289641, 51.2149678], [-0.329078, 51.2149807], [-0.3292288, 51.2149798], [-0.3293986, 51.2149667], [-0.3296829, 51.2149334], [-0.3299341, 51.2148988], [-0.3302651, 51.2148369], [-0.3305658, 51.2147628], [-0.330873, 51.2146669], [-0.3310967, 51.2145811], [-0.3313501, 51.2144507], [-0.3315605, 51.2143323], [-0.3317582, 51.2141931], [-0.331879, 51.2140933], [-0.3320242, 51.2139552], [-0.332117, 51.2138401], [-0.3322377, 51.2136636], [-0.3322937, 51.2135573], [-0.3323567, 51.213418], [-0.3323952, 51.2133007], [-0.332432, 51.2131363], [-0.3324477, 51.2129587], [-0.3324477, 51.2127241], [-0.3324285, 51.2125114], [-0.3324005, 51.2123459], [-0.3323707, 51.2121628], [-0.3323357, 51.2120033], [-0.3318706, 51.2100003], [-0.3316065, 51.2087505], [-0.3315703, 51.2086148], [-0.3314962, 51.208337]]}}, {"type": "Feature", "properties": {"osm_id": "2808132", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3164927, 51.1749111], [-0.3163614, 51.1750635], [-0.3163145, 51.1751332], [-0.3162716, 51.1752106], [-0.3161496, 51.1754847], [-0.3160503, 51.1757622], [-0.3159806, 51.1759951], [-0.315884, 51.1764205], [-0.3158451, 51.1767509], [-0.3158384, 51.177273], [-0.3158666, 51.177664], [-0.3158746, 51.1777565], [-0.3158827, 51.1778069], [-0.3159189, 51.1780499], [-0.3159605, 51.1783206], [-0.3159779, 51.1784198], [-0.3160047, 51.178561], [-0.3160699, 51.1789278], [-0.3160966, 51.1791042]]}}, {"type": "Feature", "properties": {"osm_id": "2808133", "highway": "trunk", "ref": "A24", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3244338, 51.1674247], [-0.3254709, 51.1668146], [-0.3261425, 51.1664017], [-0.3267826, 51.1659844], [-0.327831, 51.1652135], [-0.3282904, 51.1648319], [-0.32872, 51.1644528], [-0.3292998, 51.1639123], [-0.3298269, 51.1633807], [-0.3303123, 51.1628426], [-0.3307332, 51.162307], [-0.331182, 51.1617053], [-0.3315534, 51.1611271], [-0.3318881, 51.1605506], [-0.332195, 51.1599753], [-0.3325838, 51.1590189], [-0.3327381, 51.1585448], [-0.332872, 51.1580734], [-0.3330635, 51.1571128], [-0.3331142, 51.1566384], [-0.333118, 51.1565609], [-0.3331365, 51.1561791], [-0.3331361, 51.1560798], [-0.3331342, 51.1556068], [-0.3330822, 51.1550512], [-0.3330007, 51.154501], [-0.3328724, 51.1539522], [-0.3325067, 51.1528949], [-0.3322795, 51.1523828], [-0.3320076, 51.1518771], [-0.3315123, 51.1510749], [-0.3312239, 51.150688], [-0.3309156, 51.1503099], [-0.3305269, 51.1498552], [-0.3301698, 51.1494542], [-0.3301177, 51.1493986], [-0.328669, 51.1477343], [-0.3280404, 51.1469226], [-0.3278994, 51.1467165], [-0.3277683, 51.1465089], [-0.3276371, 51.1462847], [-0.3275166, 51.1460838], [-0.3274603, 51.1460088], [-0.3274223, 51.1459742], [-0.3273794, 51.1459392], [-0.3273567, 51.1459295], [-0.3272611, 51.1458885], [-0.3271382, 51.1458437]]}}, {"type": "Feature", "properties": {"osm_id": "2808134", "highway": "trunk", "ref": "A24", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "uk:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3304104, 51.1493823], [-0.3308112, 51.1498725], [-0.3311306, 51.1502479], [-0.3314323, 51.150638], [-0.3317152, 51.1510347], [-0.3321961, 51.1518501], [-0.3324408, 51.152336], [-0.3326731, 51.1528634], [-0.3330413, 51.1539387], [-0.3331724, 51.1544858], [-0.3332521, 51.155036], [-0.3333058, 51.1555938], [-0.3333055, 51.1561597], [-0.3332858, 51.1566315], [-0.3332325, 51.1571122], [-0.3330468, 51.1580762], [-0.3329115, 51.158553], [-0.3327556, 51.1590324], [-0.3323615, 51.1599909], [-0.3320462, 51.1605744], [-0.3317115, 51.1611587], [-0.3313401, 51.1617422], [-0.3309023, 51.162333], [-0.3304683, 51.1628741], [-0.3299707, 51.1634307], [-0.3294507, 51.1639656], [-0.3288748, 51.1645004], [-0.3284343, 51.1648852], [-0.3279801, 51.1652657], [-0.3269263, 51.1660437], [-0.3262707, 51.1664729], [-0.3255853, 51.166894], [-0.3245412, 51.1675089]]}}, {"type": "Feature", "properties": {"osm_id": "2808135", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "name": "Beare Green Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3182398, 51.1730223], [-0.3182194, 51.1730743], [-0.3165404, 51.174859], [-0.3164927, 51.1749111]]}}, {"type": "Feature", "properties": {"osm_id": "2808136", "highway": "trunk", "oneway": "yes", "name": "Clark's Green Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3271258, 51.1443405], [-0.3271721, 51.1443801], [-0.3272076, 51.144427], [-0.3272321, 51.1444678], [-0.3272468, 51.1445132], [-0.3272971, 51.1446977], [-0.3273934, 51.1450686]]}}, {"type": "Feature", "properties": {"osm_id": "2808137", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "Great Daux Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3328803, 51.0873584], [-0.3329734, 51.0873344], [-0.333072, 51.0873258], [-0.333174, 51.0873333], [-0.3332644, 51.0873552], [-0.3333482, 51.0873927], [-0.3334188, 51.0874474], [-0.3334618, 51.0875111], [-0.3334755, 51.0875757], [-0.333459, 51.0876474], [-0.3334238, 51.0876994], [-0.3333494, 51.0877588], [-0.3332427, 51.0878038], [-0.3330936, 51.0878262], [-0.3329494, 51.0878133], [-0.3328355, 51.0877752], [-0.3327462, 51.0877157], [-0.332693, 51.087643], [-0.3326785, 51.0875757], [-0.3327038, 51.0874883], [-0.3327512, 51.087432], [-0.3327841, 51.0874064], [-0.3328803, 51.0873584]]}}, {"type": "Feature", "properties": {"osm_id": "2808138", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "Rusper Road Roundabout", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3042748, 51.0879871], [-0.3042401, 51.087973], [-0.3042066, 51.0879578], [-0.304178, 51.0879411], [-0.3041409, 51.087914], [-0.3041069, 51.0878794], [-0.3040832, 51.0878508], [-0.3040711, 51.0878315], [-0.3040644, 51.0878121], [-0.3040591, 51.0877801], [-0.3040591, 51.0877405], [-0.3040631, 51.0877118], [-0.3040752, 51.0876832], [-0.3040872, 51.0876613], [-0.3041087, 51.0876352], [-0.3041328, 51.0876133], [-0.3041496, 51.0875999], [-0.3041972, 51.087567], [-0.3042352, 51.0875492], [-0.3043139, 51.0875198], [-0.3043514, 51.0875105], [-0.3043943, 51.0875046], [-0.3044386, 51.0875004], [-0.3044869, 51.0875004], [-0.3045352, 51.0875021], [-0.3045821, 51.087508], [-0.3046344, 51.0875198], [-0.3046626, 51.087529], [-0.304688, 51.0875383], [-0.3047407, 51.0875651], [-0.3047739, 51.0875838], [-0.3048033, 51.0876096], [-0.3048273, 51.0876307], [-0.3048517, 51.0876647], [-0.3048686, 51.0876929], [-0.3048798, 51.0877262], [-0.3048829, 51.0877596], [-0.3048785, 51.0877919], [-0.3048692, 51.0878264], [-0.3048517, 51.0878576], [-0.3048285, 51.0878888], [-0.3048034, 51.0879132], [-0.3047635, 51.0879423], [-0.3047001, 51.0879752], [-0.3046666, 51.0879873], [-0.3046275, 51.0879994], [-0.3045687, 51.08801], [-0.3045097, 51.0880176], [-0.3044547, 51.0880176], [-0.3043886, 51.0880133], [-0.3043367, 51.0880042], [-0.3042748, 51.0879871]]}}, {"type": "Feature", "properties": {"osm_id": "2808139", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "Moorhead Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2896729, 51.0835391], [-0.2897402, 51.083543], [-0.2898049, 51.0835551], [-0.289852, 51.08357], [-0.2898949, 51.0835892], [-0.2899325, 51.0836124], [-0.2899639, 51.083639], [-0.2899913, 51.0836723], [-0.2900089, 51.0837082], [-0.2900162, 51.0837454], [-0.2900132, 51.0837828], [-0.2899997, 51.0838194], [-0.2899763, 51.0838539], [-0.2899437, 51.0838853], [-0.2899028, 51.0839127], [-0.289855, 51.0839351], [-0.2898016, 51.083952], [-0.2897123, 51.0839659]]}}, {"type": "Feature", "properties": {"osm_id": "2808140", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "Robin Hood Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3372588, 51.07927], [-0.3372467, 51.0792334], [-0.3372467, 51.0791747], [-0.3372701, 51.0791178], [-0.3373154, 51.0790665], [-0.3373796, 51.0790238], [-0.3374587, 51.0789926], [-0.337542, 51.0789755], [-0.3376237, 51.078971], [-0.337705, 51.0789779], [-0.337782, 51.0789958], [-0.3378507, 51.079024], [-0.337908, 51.0790609], [-0.3379509, 51.0791048], [-0.3379775, 51.0791536], [-0.3379847, 51.0792258], [-0.337971, 51.0792704], [-0.3379438, 51.0793126], [-0.3379041, 51.0793506], [-0.3378534, 51.079383], [-0.3377936, 51.0794087], [-0.337727, 51.0794266], [-0.3376303, 51.0794373], [-0.3375326, 51.0794316], [-0.3374406, 51.0794101], [-0.3373608, 51.0793742], [-0.3372987, 51.0793264], [-0.3372588, 51.07927]]}}, {"type": "Feature", "properties": {"osm_id": "2808143", "highway": "trunk", "maxspeed": "70 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4078284, 50.9091638], [-0.4079922, 50.9091606], [-0.4081357, 50.9091843], [-0.4082654, 50.909232], [-0.4083723, 50.9093115], [-0.4084048, 50.9093768], [-0.4083938, 50.9094935], [-0.4083334, 50.9096195], [-0.4082329, 50.9097243], [-0.4080532, 50.9098234], [-0.4078914, 50.9098709], [-0.407753, 50.9098964]]}}, {"type": "Feature", "properties": {"osm_id": "2811094", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "name": "Derby Road", "sidewalk": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2370333, 52.784766], [-1.2378771, 52.7848016], [-1.2386495, 52.7848711], [-1.2392828, 52.7849588], [-1.2403359, 52.785174], [-1.2411131, 52.7853598], [-1.2414035, 52.7854285], [-1.2416785, 52.7854759], [-1.2418593, 52.7854982], [-1.2419753, 52.7855133], [-1.2421794, 52.7855261], [-1.2425008, 52.7855373], [-1.2427709, 52.7855285], [-1.243043, 52.7855082], [-1.2434587, 52.7854705], [-1.2437983, 52.7854312], [-1.2440308, 52.7854152]]}}, {"type": "Feature", "properties": {"osm_id": "2811095", "highway": "trunk", "ref": "A6", "maxspeed": "50 mph", "lanes": "2", "name": "Loughborough Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2518005, 52.7903037], [-1.2518591, 52.7903493]]}}, {"type": "Feature", "properties": {"osm_id": "2811096", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "lanes": "2", "name": "Derby Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.260071, 52.7953774], [-1.2602853, 52.7958348]]}}, {"type": "Feature", "properties": {"osm_id": "2811188", "highway": "trunk", "ref": "A6", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "maxspeed_type": "GB:national_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1266224, 52.692738], [-1.1261964, 52.6931865], [-1.1261214, 52.6933223], [-1.126074, 52.6939106]]}}, {"type": "Feature", "properties": {"osm_id": "2815741", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "gb:national", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6034485, 52.0256775], [-0.6034407, 52.0256241], [-0.6034518, 52.0255701], [-0.6034658, 52.0255417], [-0.603491, 52.0255077], [-0.6035414, 52.0254634], [-0.6035848, 52.0254371], [-0.6036605, 52.0254059], [-0.6037366, 52.0253872], [-0.6038076, 52.0253789], [-0.6038682, 52.0253779], [-0.6039794, 52.025391], [-0.6040736, 52.0254195], [-0.6041192, 52.0254411], [-0.6041641, 52.0254699], [-0.6042178, 52.0255226], [-0.6042506, 52.025588], [-0.6042538, 52.0256538], [-0.6042213, 52.0257295], [-0.6041579, 52.0257916], [-0.60411, 52.0258208], [-0.6040485, 52.025847], [-0.6039445, 52.0258722]]}}, {"type": "Feature", "properties": {"osm_id": "2815963", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "name": "Elfield Park Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7511069, 52.0123051], [-0.7512364, 52.0123431], [-0.7513144, 52.0123824], [-0.7513719, 52.0124451], [-0.7513956, 52.0125191], [-0.7513903, 52.0125721], [-0.7513599, 52.0126205], [-0.7513095, 52.0126783], [-0.7512394, 52.0127193], [-0.7511146, 52.0127519], [-0.7510378, 52.0127632], [-0.7508775, 52.0127429], [-0.7507727, 52.0127006], [-0.7506594, 52.0126021], [-0.7506495, 52.0125463], [-0.7506598, 52.0124829], [-0.7506856, 52.0124243], [-0.7507245, 52.012384], [-0.7508154, 52.0123397], [-0.7508862, 52.0123163], [-0.7509899, 52.0123013], [-0.7511069, 52.0123051]]}}, {"type": "Feature", "properties": {"osm_id": "2815964", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7640825, 52.0027697], [-0.7641967, 52.0028162], [-0.7642671, 52.0028747], [-0.7643176, 52.0029411], [-0.7643019, 52.0030182], [-0.7642536, 52.0030961], [-0.7641369, 52.0031689], [-0.7640069, 52.0032001], [-0.7638432, 52.0031957], [-0.7637405, 52.0031671], [-0.7636404, 52.0031075], [-0.7635877, 52.0030389], [-0.7635752, 52.0029954], [-0.7635789, 52.0029415], [-0.7636101, 52.0028805], [-0.7636927, 52.0028118], [-0.7637936, 52.0027712], [-0.7639501, 52.0027523], [-0.7640825, 52.0027697]]}}, {"type": "Feature", "properties": {"osm_id": "2815965", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7640069, 52.0032001], [-0.7636802, 52.0033321], [-0.7634823, 52.0034639]]}}, {"type": "Feature", "properties": {"osm_id": "2815966", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7511069, 52.0123051], [-0.7513569, 52.0121932], [-0.7517901, 52.0118735]]}}, {"type": "Feature", "properties": {"osm_id": "2816245", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Windmill Hill Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7723801, 51.9979261], [-0.7725026, 51.997924], [-0.7726191, 51.9979476], [-0.7727157, 51.9979939], [-0.7727813, 51.9980577], [-0.7728079, 51.9981314], [-0.7728081, 51.9981502], [-0.7727922, 51.9982072], [-0.7727527, 51.9982596], [-0.7726924, 51.9983039], [-0.7726155, 51.9983371], [-0.7725531, 51.9983526], [-0.772487, 51.9983606], [-0.7723645, 51.9983552], [-0.7722522, 51.9983246], [-0.7721634, 51.9982724], [-0.7721085, 51.9982047], [-0.7720937, 51.9981472], [-0.7721049, 51.9980867], [-0.7721427, 51.9980303], [-0.7722042, 51.9979826], [-0.7722846, 51.997947], [-0.7723801, 51.9979261]]}}, {"type": "Feature", "properties": {"osm_id": "2816247", "highway": "trunk", "ref": "A421", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "H8 Standing Way", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.772487, 51.9983606], [-0.7722871, 51.9984614], [-0.771991, 51.9986204], [-0.7716444, 51.9988336], [-0.7710387, 51.9991897], [-0.7704016, 51.9995121], [-0.769834, 51.9997634], [-0.7690163, 52.0001238], [-0.7682499, 52.0004757], [-0.7681419, 52.0005296], [-0.7674722, 52.0008637], [-0.7670509, 52.0010832]]}}, {"type": "Feature", "properties": {"osm_id": "2816250", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Tattenhoe Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7854873, 51.9893643], [-0.785516, 51.9894266], [-0.7855147, 51.9894913], [-0.7854775, 51.9895607], [-0.7854109, 51.9896163], [-0.78532, 51.9896569], [-0.7852135, 51.9896786], [-0.7850869, 51.9896779], [-0.7849848, 51.9896564], [-0.7848974, 51.9896174], [-0.7848322, 51.9895645], [-0.7847949, 51.9895021], [-0.7847873, 51.9894603], [-0.7847925, 51.9894184], [-0.7848266, 51.9893547], [-0.7848895, 51.9893001], [-0.7849758, 51.9892592], [-0.7850778, 51.9892358], [-0.7851676, 51.9892311], [-0.7852565, 51.9892401], [-0.785352, 51.9892671], [-0.7854311, 51.9893097], [-0.7854873, 51.9893643]]}}, {"type": "Feature", "properties": {"osm_id": "2816251", "highway": "trunk", "ref": "A421", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "name": "Bottledump Roundabout", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8040741, 51.986296], [-0.8041125, 51.9863492], [-0.8041234, 51.9864391], [-0.8040723, 51.9865258], [-0.803967, 51.9865917], [-0.8038353, 51.9866238], [-0.8036976, 51.986622], [-0.8035683, 51.9865864], [-0.8035206, 51.986561], [-0.8034337, 51.9864669], [-0.803429, 51.986365], [-0.8034753, 51.9862946], [-0.8035339, 51.9862509], [-0.8036601, 51.9862044], [-0.8038344, 51.986196], [-0.803979, 51.9862333], [-0.8040741, 51.986296]]}}, {"type": "Feature", "properties": {"osm_id": "2816420", "highway": "trunk", "ref": "A421", "maxspeed": "60 mph", "lanes": "2", "name": "Buckingham Road", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8044097, 51.9863574], [-0.8067548, 51.9862522], [-0.8093021, 51.9862001], [-0.8119478, 51.986064], [-0.8168992, 51.9857297], [-0.8207979, 51.9854537], [-0.8269036, 51.9852337]]}}, {"type": "Feature", "properties": {"osm_id": "2816422", "highway": "trunk", "maxspeed": "60 mph", "source_maxspeed": "UK:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8684286, 51.9830363], [-0.8685242, 51.9830258], [-0.8686207, 51.9830357], [-0.8686931, 51.9830589], [-0.8687245, 51.983075], [-0.8687492, 51.9830917], [-0.8687944, 51.9831409], [-0.868812, 51.9831979], [-0.8687984, 51.9832558], [-0.8687507, 51.983311], [-0.8686765, 51.9833518], [-0.868564, 51.9833765], [-0.8684514, 51.983372], [-0.8683677, 51.9833486], [-0.8682827, 51.9832945], [-0.8682417, 51.9832209], [-0.868246, 51.9831662], [-0.8683429, 51.9830666], [-0.8684286, 51.9830363]]}}, {"type": "Feature", "properties": {"osm_id": "2816423", "highway": "trunk", "ref": "A421", "maxspeed": "60 mph", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8682827, 51.9832945], [-0.8681237, 51.9832547], [-0.8678319, 51.9832158]]}}, {"type": "Feature", "properties": {"osm_id": "2817024", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Pyebush Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6247138, 51.600914], [-0.6248181, 51.6009586], [-0.6249442, 51.6010416], [-0.6250649, 51.6011377]]}}, {"type": "Feature", "properties": {"osm_id": "2817025", "highway": "trunk", "ref": "A355", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Beaconsfield Bypass", "surface": "asphalt", "source_ref": "dictacam", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6239283, 51.6008353], [-0.6240733, 51.6006802], [-0.6241615, 51.600573], [-0.624208, 51.6004622], [-0.6242213, 51.600359], [-0.6242574, 51.6001402], [-0.6243962, 51.5993464], [-0.6244327, 51.5991343], [-0.6245268, 51.5987953], [-0.6246462, 51.5984543], [-0.624816, 51.5980428], [-0.6250279, 51.5976279], [-0.6252563, 51.5972635], [-0.6254598, 51.596958], [-0.6257462, 51.5965683], [-0.6259784, 51.5962603], [-0.626468, 51.5955923], [-0.6265396, 51.5954841], [-0.6265763, 51.5953675], [-0.6265825, 51.5952833], [-0.6265635, 51.5951851], [-0.6265203, 51.5950167]]}}, {"type": "Feature", "properties": {"osm_id": "2818478", "highway": "trunk", "ref": "A1", "maxspeed": "20 mph", "lanes": "5", "lit": "yes", "name": "Holloway Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "THE A1 GLA ROAD AND GLA SIDE ROADS (HOLLOWAY ROAD, LONDON BOROUGH OF ISLINGTON) (20 M.P.H. SPEED LIMIT) EXPERIMENTAL TRAFFIC ORDER 2017", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1120533, 51.5524246], [-0.1118508, 51.5522738]]}}, {"type": "Feature", "properties": {"osm_id": "2818814", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2032041, 51.8412204], [-0.2028183, 51.8417256], [-0.2022125, 51.8425294], [-0.2010042, 51.8441441], [-0.1998881, 51.8456319], [-0.1987991, 51.8470932], [-0.1983112, 51.8477402], [-0.1978924, 51.8483265], [-0.1975945, 51.8487819], [-0.1972005, 51.8494612], [-0.1969293, 51.8500069], [-0.1966475, 51.8506353], [-0.196401, 51.8513354], [-0.196218, 51.8519773], [-0.1960922, 51.8525406], [-0.1959965, 51.8531932], [-0.1959403, 51.8538372], [-0.1959319, 51.854644], [-0.1959483, 51.8550544], [-0.1959858, 51.85546], [-0.1960398, 51.8558259], [-0.1960717, 51.8562739], [-0.196389, 51.8593707], [-0.1964492, 51.8599354], [-0.1965047, 51.8604989], [-0.1966203, 51.8616136], [-0.1967143, 51.8624926]]}}, {"type": "Feature", "properties": {"osm_id": "2818815", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2025028, 51.8792894], [-0.2022202, 51.8786477], [-0.2019436, 51.8780343], [-0.2016114, 51.8772737], [-0.2012412, 51.8764259], [-0.2009131, 51.8756683], [-0.2007097, 51.8752068], [-0.2004783, 51.8746831], [-0.2001733, 51.8739944], [-0.1998442, 51.8732315], [-0.1995135, 51.8724784], [-0.1993409, 51.8720968], [-0.1991485, 51.8716563], [-0.1988769, 51.8710318], [-0.1986072, 51.8704227], [-0.1980389, 51.8691228], [-0.1977995, 51.8685925], [-0.1975712, 51.8680429], [-0.1973525, 51.8674608], [-0.1971847, 51.8669663], [-0.1970627, 51.8665595], [-0.1969922, 51.8662465], [-0.1969116, 51.8658532], [-0.1968491, 51.8654509], [-0.1967822, 51.8648357], [-0.1967732, 51.8646556]]}}, {"type": "Feature", "properties": {"osm_id": "2819161", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2221989, 51.9236907], [-0.2234717, 51.9219979], [-0.2241821, 51.9210422], [-0.2246814, 51.9203826], [-0.2250059, 51.9199433], [-0.2253334, 51.919498], [-0.2257163, 51.9189923], [-0.2259822, 51.9186153], [-0.2262213, 51.9182427], [-0.2264509, 51.9178552], [-0.2266571, 51.9174954], [-0.2268998, 51.9170205], [-0.2271141, 51.916555], [-0.227246, 51.9162345], [-0.2274872, 51.9155242], [-0.2276858, 51.914805], [-0.2278385, 51.9140007], [-0.2279352, 51.9130426], [-0.2279316, 51.9121497], [-0.2278636, 51.9113348], [-0.2277658, 51.9107719], [-0.2276866, 51.9103765], [-0.2275367, 51.9098218], [-0.2274682, 51.9095601], [-0.2273361, 51.9091812], [-0.2272147, 51.908866], [-0.2270512, 51.9084718], [-0.2267965, 51.9079356], [-0.2264243, 51.9072479], [-0.2260307, 51.9066328], [-0.2258331, 51.9063326]]}}, {"type": "Feature", "properties": {"osm_id": "2819254", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.2141311, 51.9405382], [-0.2138607, 51.9411042], [-0.213578, 51.9417474], [-0.2132828, 51.9423991], [-0.2130044, 51.9430548], [-0.2125882, 51.9441962], [-0.2124072, 51.9447841], [-0.2122507, 51.9453651], [-0.2121107, 51.9459362], [-0.2120443, 51.9462727], [-0.2119771, 51.9466141], [-0.2118763, 51.947192], [-0.2117769, 51.9479498], [-0.211691, 51.9486152], [-0.2116379, 51.9490119], [-0.21157, 51.9496318], [-0.211488, 51.9503423], [-0.2114095, 51.9509584], [-0.2113646, 51.9513181]]}}, {"type": "Feature", "properties": {"osm_id": "2819255", "highway": "motorway", "ref": "A1(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.1999803, 51.9662234], [-0.2000974, 51.9661219], [-0.2005116, 51.9657924], [-0.2013371, 51.9651668], [-0.2026665, 51.9641489], [-0.2035483, 51.9634508], [-0.2042087, 51.9629557], [-0.2048381, 51.962449], [-0.205557, 51.9618409], [-0.2061584, 51.9612815], [-0.2065697, 51.9608701]]}}, {"type": "Feature", "properties": {"osm_id": "2819938", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Biggleswade Bypass", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:nsl_dual", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2745461, 52.0923523], [-0.2744693, 52.0925323], [-0.2744177, 52.0926858], [-0.274398, 52.0928742]]}}, {"type": "Feature", "properties": {"osm_id": "2819939", "highway": "trunk", "ref": "A1", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "highways_england_area": "8", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2770794, 52.1032161], [-0.2769963, 52.1028398], [-0.2768965, 52.1023398], [-0.2768027, 52.1016958], [-0.2767217, 52.1011773], [-0.2766349, 52.1008094], [-0.2765413, 52.1004787], [-0.2764323, 52.1001679]]}}, {"type": "Feature", "properties": {"osm_id": "2820316", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Biggleswade South", "operator": "Highways England", "highways_england_area": "8", "surface": "asphalt", "source_maxspeed": "GB:nsl_dual", "junction": "roundabout", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2436225, 52.0717777], [-0.2432992, 52.0719343], [-0.2430045, 52.071979], [-0.2428237, 52.0719487], [-0.2426833, 52.0719047], [-0.2425953, 52.0718391], [-0.2425398, 52.0717697], [-0.2425216, 52.0716918], [-0.2425284, 52.0716356], [-0.2425512, 52.0715737], [-0.2425757, 52.0715278], [-0.2426781, 52.0714135], [-0.242778, 52.071348], [-0.2431064, 52.0712202], [-0.2434419, 52.0711646], [-0.2436823, 52.0711981], [-0.2438476, 52.0712885], [-0.2438831, 52.0713725], [-0.2438945, 52.0714632], [-0.2438356, 52.0716058], [-0.2436225, 52.0717777]]}}, {"type": "Feature", "properties": {"osm_id": "2830240", "highway": "trunk", "ref": "A534", "maxspeed": "60 mph", "lanes": "2", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8904982, 53.0737214], [-2.8884177, 53.0737384]]}}, {"type": "Feature", "properties": {"osm_id": "2830463", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "8", "source_maxspeed": "UK:nsl_dual", "carriageway_ref": "A", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.257142, 52.286486], [-0.2570711, 52.2869942], [-0.2570223, 52.2874773]]}}, {"type": "Feature", "properties": {"osm_id": "2830464", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "8", "bicycle": "yes", "surface": "asphalt", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2480412, 52.3319594], [-0.2478993, 52.3315831], [-0.2477668, 52.3310717], [-0.2476812, 52.3304648]]}}, {"type": "Feature", "properties": {"osm_id": "2846371", "highway": "trunk", "ref": "A3", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "name": "Ripley By-Pass", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "UK:nsl_dual", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5097695, 51.2795137], [-0.5092749, 51.2797137], [-0.5088094, 51.2799219], [-0.5078857, 51.2803487], [-0.5060866, 51.2812336], [-0.5051558, 51.2816818], [-0.5042912, 51.2821482], [-0.5025863, 51.2831216], [-0.500986, 51.284047], [-0.4994539, 51.2850129], [-0.498685, 51.285509], [-0.497939, 51.2860067], [-0.4963769, 51.2871016], [-0.4951498, 51.2879858], [-0.4937912, 51.2890652], [-0.4927859, 51.2898928], [-0.4923619, 51.2902544], [-0.4916819, 51.2908487], [-0.4904811, 51.2919085], [-0.4893332, 51.2929842], [-0.4883135, 51.2940054], [-0.48732, 51.2950311], [-0.4865356, 51.2958961], [-0.4856425, 51.2969187], [-0.4841142, 51.298841], [-0.4833744, 51.2998053], [-0.4819023, 51.3016916], [-0.4811681, 51.3026302], [-0.4804595, 51.3035787], [-0.4792148, 51.305154]]}}, {"type": "Feature", "properties": {"osm_id": "2847380", "highway": "trunk", "ref": "A534", "maxspeed": "60 mph", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.25963, 53.1583201], [-2.2598232, 53.1582004], [-2.2603003, 53.1580897], [-2.26081, 53.1580102], [-2.2614, 53.1580315], [-2.2639473, 53.1584213], [-2.2642286, 53.1584675], [-2.2649935, 53.1586173], [-2.2658528, 53.1588515], [-2.266748, 53.1590174], [-2.2686422, 53.1593422], [-2.2690562, 53.1594151], [-2.2725469, 53.1600296], [-2.2732652, 53.1601561], [-2.2759643, 53.1607238], [-2.2762985, 53.160791], [-2.2783369, 53.161201], [-2.2790599, 53.1613802], [-2.279422, 53.1615076], [-2.2799608, 53.1617365], [-2.2808114, 53.1622604], [-2.2814359, 53.1625249], [-2.2825097, 53.1628776], [-2.2837536, 53.1631781], [-2.2850746, 53.163398], [-2.2862752, 53.1635214], [-2.2872748, 53.1635445], [-2.2881904, 53.163545], [-2.2889984, 53.1634845], [-2.2922258, 53.1632171], [-2.2935545, 53.1630614], [-2.2946725, 53.163034], [-2.2954337, 53.163009], [-2.2960945, 53.1629579], [-2.2967387, 53.162842], [-2.2977151, 53.1625883]]}}, {"type": "Feature", "properties": {"osm_id": "2848370", "highway": "trunk", "maxspeed": "60 mph", "name": "Harperley Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7957958, 54.7138969], [-1.7957402, 54.713977], [-1.795695, 54.7140142], [-1.7956402, 54.7140468], [-1.7955772, 54.714074], [-1.7954675, 54.7141038], [-1.7953486, 54.7141174], [-1.7952275, 54.7141139], [-1.7951115, 54.7140936], [-1.7950181, 54.7140623], [-1.7949386, 54.71402], [-1.7948768, 54.7139688], [-1.7948357, 54.713911], [-1.7948166, 54.7138439], [-1.7948255, 54.7137761], [-1.7948617, 54.7137114], [-1.7949234, 54.7136534], [-1.7949968, 54.7136102], [-1.7950843, 54.7135768], [-1.7951858, 54.7135542], [-1.7952934, 54.7135449], [-1.7954018, 54.7135494], [-1.795506, 54.7135674], [-1.7955926, 54.7135947], [-1.7956681, 54.7136314], [-1.7957296, 54.7136759], [-1.7957746, 54.7137267], [-1.7958077, 54.7138108], [-1.7957958, 54.7138969]]}}, {"type": "Feature", "properties": {"osm_id": "2848371", "highway": "trunk", "ref": "A68", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "West Auckland Road", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5952397, 54.5566052], [-1.5952978, 54.5567781], [-1.5953682, 54.5569052], [-1.5955027, 54.5570391], [-1.5960468, 54.5575458], [-1.5963541, 54.5578334], [-1.5965794, 54.5580837], [-1.5967729, 54.5583999], [-1.5968644, 54.558672], [-1.5968997, 54.5589495], [-1.5969036, 54.5591721], [-1.5967705, 54.559872], [-1.5967409, 54.5602957], [-1.5967513, 54.560695], [-1.5968337, 54.5611449], [-1.5970007, 54.5616954], [-1.5970822, 54.5619052], [-1.5972817, 54.5622979], [-1.5974448, 54.5626112], [-1.5976424, 54.5629001], [-1.5979197, 54.5632867], [-1.598247, 54.5636625], [-1.5986093, 54.5640386], [-1.5989438, 54.5643566]]}}, {"type": "Feature", "properties": {"osm_id": "2848374", "highway": "trunk", "ref": "A68", "maxspeed": "30 mph", "name": "Front Street", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8804471, 54.8336039], [-1.8820612, 54.8345316], [-1.8826215, 54.8348506], [-1.8828356, 54.834983], [-1.8830306, 54.8351338], [-1.8831637, 54.8352804], [-1.8833557, 54.8355722], [-1.8834064, 54.8356625]]}}, {"type": "Feature", "properties": {"osm_id": "2848375", "highway": "trunk", "ref": "A68", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "sidewalk": "left", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.955783, 54.9483602], [-1.9559038, 54.9483683], [-1.9559883, 54.9483856], [-1.9561056, 54.9484308], [-1.9562036, 54.9485043], [-1.9562343, 54.9485466], [-1.956253, 54.9485956]]}}, {"type": "Feature", "properties": {"osm_id": "2852788", "highway": "trunk", "ref": "A322", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7014093, 51.3762929], [-0.7032095, 51.3769512], [-0.7043269, 51.3773611], [-0.7054653, 51.3777649], [-0.7064941, 51.3781288], [-0.7079405, 51.3786332], [-0.7094323, 51.3791458], [-0.7104939, 51.3795105], [-0.7144052, 51.38084], [-0.7165361, 51.3815525], [-0.718096, 51.3820756], [-0.7194096, 51.3825251], [-0.7200077, 51.382717], [-0.7206411, 51.3829352], [-0.7209981, 51.3830628], [-0.7213109, 51.3831888], [-0.7217183, 51.3833627], [-0.7221062, 51.3835569], [-0.7224615, 51.383741], [-0.7227518, 51.3839093], [-0.72328, 51.3842467], [-0.7237607, 51.3845836], [-0.725405, 51.3857432], [-0.7261173, 51.3862443], [-0.7273147, 51.3871025], [-0.728607, 51.3880141]]}}, {"type": "Feature", "properties": {"osm_id": "2863605", "highway": "trunk", "ref": "A113", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Charlie Brown's Roundabout", "operator": "Transport for London", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.036186, 51.5937093], [0.0360924, 51.5938383], [0.0360829, 51.5939126], [0.036101, 51.5939974], [0.0361555, 51.5940957], [0.0362023, 51.5941446], [0.0362734, 51.5941773], [0.0363579, 51.5942017]]}}, {"type": "Feature", "properties": {"osm_id": "2863647", "highway": "trunk", "ref": "A38", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "The Parkway", "operator": "Highways England", "highways_england_area": "1", "bicycle": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.1795302, 50.4114085], [-4.1800935, 50.4112961], [-4.1805738, 50.4111847], [-4.1811624, 50.4110265], [-4.1816632, 50.4108615], [-4.1823164, 50.4106228], [-4.1831192, 50.4102897], [-4.1838182, 50.4099485], [-4.1845078, 50.4095616], [-4.1851737, 50.4091666], [-4.1857239, 50.4088669], [-4.1866007, 50.4084629], [-4.1873545, 50.408213], [-4.1882172, 50.4079436], [-4.1887507, 50.4078094], [-4.1892329, 50.4077016], [-4.1898328, 50.4075844]]}}, {"type": "Feature", "properties": {"osm_id": "2898057", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Northern By-pass Road", "bicycle": "yes", "layer": "1", "bridge": "yes", "source_name": "OS_OpenData_Locator", "alt_name": "Cherwell Bridge", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-1.2538731, 51.7858001], [-1.2546928, 51.7862089]]}}, {"type": "Feature", "properties": {"osm_id": "2898059", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Way", "bicycle": "yes", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2801086, 51.7881905], [-1.2799929, 51.7881554], [-1.2798899, 51.7881242], [-1.2796842, 51.7881112]]}}, {"type": "Feature", "properties": {"osm_id": "2898060", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Way", "bicycle": "yes", "source_name": "OS_OpenData_Locator", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2707172, 51.788088], [-1.2707977, 51.7881149], [-1.270874, 51.7881443], [-1.2709106, 51.7881606], [-1.2709931, 51.7881785], [-1.2710625, 51.7881872], [-1.2712209, 51.7881962], [-1.2721636, 51.7882025]]}}, {"type": "Feature", "properties": {"osm_id": "2898072", "highway": "trunk", "ref": "A40", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Northern By-pass Road", "bicycle": "yes", "source_name": "OS_OpenData_Locator", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2088746, 51.767032], [-1.2124276, 51.7684378], [-1.2142603, 51.7691648], [-1.2167738, 51.7702537], [-1.2175415, 51.7705827], [-1.2186031, 51.7709864], [-1.2186993, 51.7710234], [-1.2188392, 51.7710772]]}}, {"type": "Feature", "properties": {"osm_id": "2898073", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Northern By-pass Road", "maxspeed_type": "GB:nsl_dual", "bicycle": "yes", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2537055, 51.7859126], [-1.251938, 51.785117], [-1.2514516, 51.784898], [-1.2488544, 51.7837854], [-1.2437441, 51.7816433], [-1.2420207, 51.7809167], [-1.2419703, 51.7808916], [-1.2367571, 51.7787874], [-1.2358564, 51.7784193], [-1.2332689, 51.7773461]]}}, {"type": "Feature", "properties": {"osm_id": "2898142", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "London Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1963533, 51.7631229], [-1.196004, 51.7630337], [-1.1957768, 51.7629871], [-1.1952966, 51.7629553], [-1.194253, 51.7628838], [-1.1937216, 51.762831], [-1.1931996, 51.762769], [-1.192867, 51.7627219], [-1.1919382, 51.762572], [-1.1915534, 51.7625243]]}}, {"type": "Feature", "properties": {"osm_id": "2898143", "highway": "trunk", "ref": "A40", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "source_maxspeed": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1818875, 51.762666], [-1.182761, 51.7625618], [-1.1836266, 51.7624538]]}}, {"type": "Feature", "properties": {"osm_id": "2898162", "highway": "trunk", "ref": "A40", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "London Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1819349, 51.7628464], [-1.1806213, 51.7630551], [-1.1792156, 51.7632386]]}}, {"type": "Feature", "properties": {"osm_id": "2898163", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "London Road", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1658317, 51.7625663], [-1.1666641, 51.7627571], [-1.1674892, 51.7629177], [-1.1682539, 51.7630457], [-1.169098, 51.7631664], [-1.1708343, 51.7633348], [-1.1719218, 51.7633991], [-1.1728801, 51.7634001], [-1.1729254, 51.7633991], [-1.1733299, 51.7633902], [-1.1748773, 51.7633665], [-1.1769183, 51.7633103], [-1.1779042, 51.7632332], [-1.178879, 51.7631234], [-1.1791706, 51.7630805]]}}, {"type": "Feature", "properties": {"osm_id": "2898201", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "London Road", "maxspeed_type": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1656572, 51.762839], [-1.1648153, 51.7625819], [-1.1638954, 51.7622365], [-1.1630271, 51.7619137], [-1.1622171, 51.7616601], [-1.1610399, 51.7613096], [-1.1598224, 51.7609484], [-1.157073, 51.760116], [-1.1526651, 51.7587833], [-1.1516693, 51.7584855], [-1.1499272, 51.757952], [-1.1482487, 51.7573805], [-1.1471057, 51.7569424], [-1.1459976, 51.7564744], [-1.1451114, 51.7560253], [-1.1442918, 51.7555662]]}}, {"type": "Feature", "properties": {"osm_id": "2898202", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Wheatley Bypass", "source_maxspeed": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1342119, 51.7489043], [-1.1349098, 51.7491224], [-1.1355882, 51.7493634], [-1.1369117, 51.7499115], [-1.137783, 51.750331], [-1.1384429, 51.7506999], [-1.1397154, 51.7515163], [-1.1406576, 51.7522605]]}}, {"type": "Feature", "properties": {"osm_id": "2898235", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Wheatley Bypass", "source_maxspeed": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1341042, 51.7489888], [-1.1325515, 51.7485917], [-1.1318265, 51.7484548], [-1.1309182, 51.748305], [-1.1302435, 51.748214], [-1.1277107, 51.747937], [-1.1262703, 51.7477769], [-1.1250369, 51.747617], [-1.124583, 51.7475612]]}}, {"type": "Feature", "properties": {"osm_id": "2898470", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Cumberland Gate", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "none", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1581826, 51.5129786], [-0.1582357, 51.512909], [-0.1582117, 51.5128279], [-0.1582398, 51.5127539], [-0.1582885, 51.5127207]]}}, {"type": "Feature", "properties": {"osm_id": "2898488", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "6", "oneway": "yes", "lit": "yes", "name": "Park Lane", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.15831, 51.5132895], [-0.1581826, 51.5129786]]}}, {"type": "Feature", "properties": {"osm_id": "2898501", "highway": "trunk", "ref": "A4202", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Park Lane", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "left", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1513159, 51.5032364], [-0.1512118, 51.5032786], [-0.1511669, 51.5033087], [-0.1511338, 51.5033433], [-0.1511165, 51.5033728], [-0.1511128, 51.503416], [-0.1511181, 51.5034485], [-0.1511293, 51.5034856], [-0.1512696, 51.5039183], [-0.1513294, 51.5039787], [-0.151403, 51.5040261], [-0.1514906, 51.5040574], [-0.1516097, 51.5040834], [-0.1519354, 51.5041258], [-0.1519656, 51.5041285], [-0.1520357, 51.5041497], [-0.1520851, 51.5041745], [-0.1521241, 51.5042056], [-0.1521539, 51.5042367], [-0.152171, 51.5042677], [-0.1521842, 51.5043098]]}}, {"type": "Feature", "properties": {"osm_id": "2913476", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "name": "St Nicholas Roundabout", "maxspeed_type": "UK:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.2664739, 51.3560141], [1.2663894, 51.3560534], [1.2663226, 51.3561041], [1.2662804, 51.3561581], [1.2662584, 51.3562166], [1.2662612, 51.3562931], [1.2662981, 51.356366], [1.2663663, 51.3564295], [1.2664176, 51.3564597], [1.2664759, 51.3564843], [1.2665904, 51.356512], [1.2667127, 51.3565185], [1.266833, 51.3565032], [1.2669018, 51.3564835], [1.266964, 51.3564567], [1.2670531, 51.3563934], [1.2671067, 51.356316], [1.2671194, 51.356232], [1.2671079, 51.3561849], [1.2670834, 51.3561397], [1.2670153, 51.3560725], [1.2669189, 51.3560206], [1.2668024, 51.3559884], [1.2666866, 51.3559788], [1.266571, 51.3559888], [1.2664739, 51.3560141]]}}, {"type": "Feature", "properties": {"osm_id": "2913644", "highway": "trunk", "maxspeed": "40 mph", "lanes": "3", "lit": "yes", "name": "Flushdyke Interchange", "sidewalk": "no", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5547005, 53.6841511], [-1.5543697, 53.6841501], [-1.5540491, 53.6841014], [-1.5537144, 53.6839433], [-1.5535168, 53.6837714], [-1.5534501, 53.6836363], [-1.553449, 53.6835174], [-1.553499, 53.683391], [-1.5536463, 53.6832318]]}}, {"type": "Feature", "properties": {"osm_id": "2913646", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.5514088, 53.6036836], [-1.5516905, 53.6043644], [-1.5519539, 53.6051208], [-1.552114, 53.6057549], [-1.552247, 53.6063737], [-1.5525683, 53.6086591]]}}, {"type": "Feature", "properties": {"osm_id": "2915877", "highway": "trunk", "ref": "A133", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "6", "source_maxspeed": "GB:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.0365626, 51.8854214], [1.0384678, 51.8856252], [1.0395589, 51.8857664], [1.0409099, 51.8860066], [1.0416627, 51.8861253], [1.0425186, 51.8861983], [1.0430501, 51.8861681], [1.0435129, 51.8861039], [1.0438918, 51.886048], [1.0443576, 51.8859399], [1.0448159, 51.885789], [1.0453519, 51.8855469], [1.045581, 51.8854245], [1.0457875, 51.8852932]]}}, {"type": "Feature", "properties": {"osm_id": "2915878", "highway": "trunk", "ref": "A133", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Colchester Road", "maxspeed_type": "national", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[1.0556496, 51.8714764], [1.0558356, 51.8712933], [1.0558998, 51.8712424], [1.0560383, 51.8711726], [1.0561537, 51.8711181]]}}, {"type": "Feature", "properties": {"osm_id": "2916036", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "name": "Congleton Road North", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2579434, 53.0940063], [-2.2578505, 53.0941652], [-2.2577232, 53.0943471], [-2.2574116, 53.0946735], [-2.25701, 53.094983], [-2.2562901, 53.0956519], [-2.2561167, 53.0958067], [-2.2555439, 53.0963183], [-2.2553023, 53.0965115], [-2.2550705, 53.0967695], [-2.254945, 53.0969092], [-2.2546907, 53.0972445], [-2.2544711, 53.0976172], [-2.2542554, 53.0979991], [-2.2540898, 53.0983001], [-2.2539956, 53.0984382], [-2.2539058, 53.09857], [-2.2536374, 53.0989559], [-2.2533571, 53.0993215], [-2.2529559, 53.0997871], [-2.2526196, 53.1001782], [-2.252282, 53.1005948], [-2.252026, 53.1009711], [-2.2518501, 53.1012815], [-2.2517099, 53.101634], [-2.2516253, 53.1019039], [-2.2516052, 53.1019656], [-2.2515018, 53.1022835], [-2.2514151, 53.1026433], [-2.2513726, 53.1029997], [-2.2513578, 53.1033486], [-2.2513077, 53.1040303], [-2.2512137, 53.1045928], [-2.251088, 53.1051624], [-2.2510221, 53.1056166], [-2.2511301, 53.106474], [-2.2512531, 53.1074272]]}}, {"type": "Feature", "properties": {"osm_id": "2916056", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "name": "Congleton Road North", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2512531, 53.1074272], [-2.2513191, 53.107635], [-2.2513682, 53.1077316], [-2.2515306, 53.1079503], [-2.2517519, 53.1081377], [-2.2522019, 53.108496], [-2.2524348, 53.108729], [-2.2525384, 53.1088373], [-2.2526327, 53.1089357], [-2.2528004, 53.1091682], [-2.2529103, 53.1093736], [-2.2530293, 53.1096486], [-2.2530813, 53.1098425], [-2.2531021, 53.1099435], [-2.2531175, 53.1100298], [-2.2531698, 53.110324], [-2.2531898, 53.1106648], [-2.2531829, 53.1111777], [-2.2531324, 53.1114944], [-2.2530714, 53.1117467], [-2.2530508, 53.1118117], [-2.2530032, 53.1120206]]}}, {"type": "Feature", "properties": {"osm_id": "2916084", "highway": "trunk", "ref": "A34", "maxspeed": "60 mph", "name": "Congleton Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2541262, 53.1256819], [-2.254114, 53.1249654], [-2.2539255, 53.1243791], [-2.2538549, 53.1242123], [-2.2529916, 53.1227191], [-2.2522854, 53.1206803], [-2.2517678, 53.1187321], [-2.2517888, 53.1182793]]}}, {"type": "Feature", "properties": {"osm_id": "2916124", "highway": "trunk", "ref": "A34", "maxspeed": "60 mph", "name": "Congleton Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2541262, 53.1256819], [-2.2540928, 53.1261822]]}}, {"type": "Feature", "properties": {"osm_id": "2916148", "highway": "trunk", "ref": "A34", "maxspeed": "60 mph", "name": "Congleton Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2531372, 53.1378581], [-2.2513133, 53.1397243]]}}, {"type": "Feature", "properties": {"osm_id": "2916168", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "lit": "yes", "name": "Congleton Road North", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2325875, 53.15526], [-2.2324818, 53.155089], [-2.2324443, 53.1550283], [-2.2323676, 53.1548762], [-2.2323121, 53.1546477], [-2.2322938, 53.1544245], [-2.2323034, 53.1543263], [-2.2323209, 53.1541481], [-2.2323478, 53.1540162]]}}, {"type": "Feature", "properties": {"osm_id": "2920702", "highway": "motorway", "ref": "M40", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO30", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "horse": "no", "old_ref": "A41", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.5970722, 52.2572072], [-1.5961485, 52.2572662], [-1.5949649, 52.257332]]}}, {"type": "Feature", "properties": {"osm_id": "2920713", "highway": "motorway", "ref": "M40", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO30", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6132592, 52.2600903], [-1.6116919, 52.2595231]]}}, {"type": "Feature", "properties": {"osm_id": "2925395", "highway": "trunk", "ref": "A54", "maxspeed": "50 mph", "name": "Holmes Chapel Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2825659, 53.1756271], [-2.2820894, 53.1750433], [-2.2818703, 53.1748384], [-2.2816725, 53.1746843], [-2.2813269, 53.1744784], [-2.2807751, 53.1742061], [-2.2805149, 53.174104], [-2.2800909, 53.1739377], [-2.2789902, 53.1735954], [-2.2784154, 53.1734277], [-2.2778379, 53.1732795], [-2.2769481, 53.1730817], [-2.276053, 53.1729034], [-2.2751171, 53.1727265], [-2.2740489, 53.1725482], [-2.2722236, 53.1723049], [-2.2711524, 53.1722112], [-2.2703139, 53.1721706], [-2.2696743, 53.1721659], [-2.2691945, 53.172178], [-2.2689271, 53.1721847], [-2.2678795, 53.1723258], [-2.2670439, 53.1724488], [-2.2664023, 53.172513], [-2.266199, 53.1725205], [-2.2661128, 53.1725236], [-2.2660211, 53.172527], [-2.2656513, 53.1725175], [-2.2651606, 53.1724896], [-2.2650269, 53.172482], [-2.2642246, 53.1724027], [-2.263509, 53.1722996], [-2.2631985, 53.1722517], [-2.2628657, 53.1721747]]}}, {"type": "Feature", "properties": {"osm_id": "2925417", "highway": "trunk", "ref": "A54", "maxspeed": "50 mph", "name": "Holmes Chapel Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2575062, 53.1706379], [-2.2571034, 53.1704363], [-2.2561892, 53.1698547], [-2.2559014, 53.1696898], [-2.2556197, 53.1695477]]}}, {"type": "Feature", "properties": {"osm_id": "2925654", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "oneway": "yes", "name": "West Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.221991, 53.1646611], [-2.2221708, 53.164681], [-2.2222377, 53.1646725], [-2.2223884, 53.1646533]]}}, {"type": "Feature", "properties": {"osm_id": "2925695", "highway": "trunk", "maxspeed": "30 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2221352, 53.1647603], [-2.2221439, 53.1647987], [-2.2221304, 53.1648487]]}}, {"type": "Feature", "properties": {"osm_id": "2926557", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "lit": "yes", "name": "Newcastle Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2325875, 53.15526], [-2.2330197, 53.1558999], [-2.2332903, 53.1563007], [-2.2333857, 53.1564404], [-2.2334828, 53.1565826], [-2.233562, 53.1566988], [-2.2336058, 53.1567629], [-2.2337895, 53.157032], [-2.2341471, 53.1575117], [-2.2341703, 53.1575427]]}}, {"type": "Feature", "properties": {"osm_id": "2928128", "highway": "motorway", "ref": "M42", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7110325, 52.4432462], [-1.7104034, 52.4443104], [-1.7101014, 52.4449037], [-1.7098163, 52.4455264], [-1.7094985, 52.446354]]}}, {"type": "Feature", "properties": {"osm_id": "2928129", "highway": "motorway", "ref": "M42", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7112739, 52.4719846], [-1.711226, 52.4717343], [-1.7109881, 52.4705144], [-1.7105935, 52.4692185], [-1.7103177, 52.4682824], [-1.7101093, 52.4673389], [-1.7099383, 52.4657562], [-1.7099124, 52.4650025], [-1.709929, 52.4642158], [-1.7099819, 52.4634641], [-1.7100663, 52.4626979], [-1.7102702, 52.4611497], [-1.710362, 52.4603501], [-1.7104181, 52.4595495], [-1.7104299, 52.4587327], [-1.7104059, 52.4582696], [-1.7103686, 52.4577812], [-1.7102658, 52.4570121], [-1.710126, 52.4562907], [-1.7099358, 52.4555237], [-1.7097124, 52.4547861], [-1.7093746, 52.4537557], [-1.7092238, 52.4533099], [-1.7091807, 52.4531853], [-1.7088646, 52.4519261], [-1.7087293, 52.4513063], [-1.7086333, 52.4502902], [-1.7086467, 52.4492553], [-1.7087079, 52.4485334], [-1.7088785, 52.44759], [-1.7090475, 52.4469126], [-1.7092323, 52.4463844]]}}, {"type": "Feature", "properties": {"osm_id": "2928130", "highway": "motorway", "ref": "M42", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7094985, 52.446354], [-1.7093097, 52.4469559], [-1.7091687, 52.4475231], [-1.7090021, 52.4483776], [-1.7089358, 52.4489872], [-1.7088953, 52.4495589], [-1.7088919, 52.4499444], [-1.7088911, 52.4503563], [-1.7089314, 52.4509705], [-1.7089661, 52.4512987], [-1.7090238, 52.4516502], [-1.7090925, 52.4520133], [-1.7092802, 52.4527403], [-1.7099069, 52.4547023], [-1.7101575, 52.4555298], [-1.7103389, 52.4562634], [-1.7104876, 52.4570044], [-1.7105772, 52.4577788], [-1.7106227, 52.4582715], [-1.7106433, 52.4587091], [-1.7106404, 52.4595591], [-1.7105756, 52.4603693], [-1.7104824, 52.4611523], [-1.710286, 52.4627066], [-1.7101923, 52.4634718], [-1.7101416, 52.4642254], [-1.7101127, 52.4650123], [-1.7101452, 52.4657541], [-1.7103595, 52.4673388], [-1.7105682, 52.4682659], [-1.7107897, 52.4692214], [-1.7108881, 52.4695448]]}}, {"type": "Feature", "properties": {"osm_id": "2929244", "highway": "motorway", "ref": "M5", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "A", "foot": "no", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9692965, 52.5374267], [-1.969342, 52.5373429], [-1.9697242, 52.5362665], [-1.9699967, 52.5353558], [-1.9702198, 52.5344641], [-1.9703945, 52.5335711], [-1.9705407, 52.5326663], [-1.9706077, 52.5311849], [-1.9706617, 52.5300648], [-1.9706172, 52.529052], [-1.9705515, 52.5280754], [-1.970421, 52.5270651], [-1.9702586, 52.5260446], [-1.9701814, 52.5247859], [-1.970146, 52.5240062], [-1.9702278, 52.5230139], [-1.9703357, 52.5220591], [-1.9705193, 52.5210932], [-1.970749, 52.5200997], [-1.971024, 52.5192588], [-1.971188, 52.5187894], [-1.9714479, 52.5181085], [-1.9720573, 52.5167497], [-1.972207, 52.5164264]]}}, {"type": "Feature", "properties": {"osm_id": "2929306", "highway": "motorway", "ref": "M5", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "B", "foot": "no", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9779963, 52.5082693], [-1.9779729, 52.5082895], [-1.9779494, 52.508322], [-1.9775754, 52.5088185], [-1.9768528, 52.5098528], [-1.9764359, 52.5104488], [-1.9757901, 52.5113807], [-1.9755131, 52.5117759], [-1.9747043, 52.512921], [-1.9737702, 52.5142842], [-1.9733636, 52.5148645], [-1.9729116, 52.5156101], [-1.972436, 52.5164535], [-1.972169, 52.5169704], [-1.9719133, 52.5175523], [-1.9716695, 52.518117], [-1.9714558, 52.5186827], [-1.9712707, 52.519241], [-1.9709734, 52.5201163], [-1.9708501, 52.5205908], [-1.9707301, 52.5211103], [-1.9705664, 52.522075], [-1.9704497, 52.5230352], [-1.9704023, 52.5240111], [-1.9704016, 52.5247816], [-1.9704845, 52.5260528], [-1.9706225, 52.527068], [-1.9707556, 52.5280722], [-1.9708421, 52.5290481], [-1.9708886, 52.5300517], [-1.9708611, 52.5310616], [-1.970792, 52.5321388], [-1.9707551, 52.5325381], [-1.9706059, 52.5335459], [-1.9704448, 52.5343782], [-1.9703694, 52.5347712]]}}, {"type": "Feature", "properties": {"osm_id": "2935185", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "name": "Congleton Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2617976, 53.0814716], [-2.2617725, 53.0815965], [-2.2617078, 53.0819346], [-2.2616673, 53.0821734], [-2.2616533, 53.0822557], [-2.2615465, 53.0827636], [-2.2615123, 53.0828547], [-2.2614332, 53.0830549], [-2.2613199, 53.0832587], [-2.2610923, 53.0835293]]}}, {"type": "Feature", "properties": {"osm_id": "2936417", "highway": "trunk", "ref": "A34", "maxspeed": "30 mph", "name": "Newcastle Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2353006, 53.1609466], [-2.2352297, 53.1611792], [-2.2350862, 53.1613809], [-2.234809, 53.1616006], [-2.2347615, 53.1616383], [-2.2344597, 53.1618957], [-2.2338139, 53.1624244]]}}, {"type": "Feature", "properties": {"osm_id": "2940837", "highway": "trunk", "ref": "A11", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Mile End Road", "operator": "Transport for London", "sidewalk": "left", "cycleway_left": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0562965, 51.5198867], [-0.0560857, 51.5199242], [-0.0559511, 51.5199451], [-0.0558698, 51.5199279]]}}, {"type": "Feature", "properties": {"osm_id": "2952178", "highway": "trunk", "ref": "A11", "maxspeed": "30 mph", "lit": "yes", "name": "Bow Road", "operator": "Transport for London", "bicycle": "designated", "sidewalk": "both", "cycleway": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0279578, 51.5265727], [-0.0277813, 51.5266102]]}}, {"type": "Feature", "properties": {"osm_id": "2952876", "highway": "trunk", "ref": "A68", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "operator": "Transport Scotland", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.8994386, 55.8373158], [-2.8995357, 55.837355], [-2.9003102, 55.8376672], [-2.9003649, 55.8376869], [-2.9005008, 55.8377359], [-2.9005697, 55.8377597], [-2.9012977, 55.8379963], [-2.9014039, 55.8380314], [-2.9016445, 55.8381107], [-2.9019622, 55.8382155], [-2.9021314, 55.8382596], [-2.9022633, 55.838293], [-2.9025689, 55.8383663], [-2.9028966, 55.8384331], [-2.9032636, 55.8385049], [-2.9036643, 55.8385687], [-2.9039997, 55.8386147], [-2.9041833, 55.8386379], [-2.9045494, 55.8386782], [-2.9048252, 55.8387033], [-2.9051774, 55.8387316], [-2.9055286, 55.8387584], [-2.9058967, 55.838779], [-2.9062999, 55.8387997], [-2.9066001, 55.8388065], [-2.9068722, 55.8388097], [-2.907079, 55.8388076], [-2.9073371, 55.8388006], [-2.9076652, 55.8387843], [-2.9079559, 55.8387613], [-2.9081851, 55.8387362], [-2.9084681, 55.8387034], [-2.9088674, 55.8386426], [-2.9094725, 55.8385326], [-2.9099613, 55.8384418], [-2.9102895, 55.8383885], [-2.9106583, 55.838329], [-2.9109993, 55.838283], [-2.9112081, 55.8382622], [-2.911431, 55.8382502], [-2.9117522, 55.8382491], [-2.9120791, 55.8382705], [-2.9126655, 55.838335], [-2.9132026, 55.8383936], [-2.914253, 55.8385035], [-2.914762, 55.8385652], [-2.9149399, 55.838598], [-2.9151198, 55.8386405], [-2.9152801, 55.838697], [-2.9154532, 55.8387771], [-2.9157393, 55.8389272], [-2.9163873, 55.8392969], [-2.9172824, 55.8398179], [-2.9201356, 55.8415024], [-2.9215746, 55.8423453], [-2.9230148, 55.8431988], [-2.9238258, 55.8436759], [-2.9244455, 55.8440399], [-2.9248082, 55.8442563], [-2.9251395, 55.8444546], [-2.9255409, 55.8446717], [-2.9257258, 55.8447552], [-2.925785, 55.8447819], [-2.9259322, 55.8448456], [-2.9261779, 55.8449391], [-2.9263507, 55.8450048], [-2.9266689, 55.8451123], [-2.9269982, 55.8452182], [-2.9273177, 55.8453067], [-2.927577, 55.845372], [-2.9278001, 55.8454212], [-2.9281162, 55.8454854], [-2.9287695, 55.8456033], [-2.9288939, 55.8456285], [-2.9291871, 55.8456879], [-2.9294025, 55.8457435], [-2.9297454, 55.8458453], [-2.930026, 55.8459297], [-2.9304912, 55.8460881], [-2.9311912, 55.8463456], [-2.9318576, 55.8466082], [-2.9321817, 55.8467574], [-2.9323971, 55.8468602], [-2.9326352, 55.846989], [-2.9330685, 55.8472526], [-2.9335787, 55.8475809], [-2.9340842, 55.8478839], [-2.9344821, 55.848114], [-2.9348836, 55.8483374], [-2.935065, 55.8484253], [-2.9352082, 55.8484946], [-2.93555, 55.8486457], [-2.9366615, 55.8491026], [-2.9377842, 55.8495549], [-2.9388511, 55.8499882], [-2.9397369, 55.8503423], [-2.9401834, 55.8505259], [-2.9404288, 55.8506355], [-2.9406481, 55.8507395], [-2.940937, 55.850879], [-2.9410474, 55.8509409], [-2.9412125, 55.8510335], [-2.9413714, 55.8511308], [-2.9417575, 55.8513839], [-2.9420742, 55.8516212], [-2.9421253, 55.8516597], [-2.9422534, 55.8517672], [-2.9427457, 55.8521753], [-2.9430538, 55.85242], [-2.9432458, 55.8525614], [-2.9433144, 55.852611], [-2.9434357, 55.8526921], [-2.943504, 55.8527358], [-2.9436841, 55.8528466], [-2.9439635, 55.8530083], [-2.9441746, 55.8531268], [-2.9444916, 55.8532849], [-2.944839, 55.8534406], [-2.9452414, 55.8536125], [-2.9459325, 55.8538941], [-2.9463024, 55.8540515], [-2.9464236, 55.8541071], [-2.9465889, 55.854183], [-2.9467963, 55.8542752], [-2.9472443, 55.8545114], [-2.947902, 55.8548688], [-2.9485392, 55.8552168], [-2.9487112, 55.8553132], [-2.9489001, 55.8554192], [-2.9490153, 55.8554838], [-2.9490968, 55.8555279], [-2.9497006, 55.8558545], [-2.950306, 55.8561874], [-2.9538829, 55.8581685], [-2.9540954, 55.8582859], [-2.9547206, 55.8586311], [-2.9551946, 55.8588928], [-2.955604, 55.8591233], [-2.9556856, 55.8591754], [-2.9557825, 55.8592373], [-2.9559424, 55.8593575], [-2.9561106, 55.859484], [-2.9567839, 55.8599762], [-2.9572717, 55.860336], [-2.9576604, 55.8606451], [-2.9578349, 55.8607938], [-2.9586691, 55.8614687], [-2.9588095, 55.8615749], [-2.9589946, 55.8617016], [-2.9590994, 55.8617635], [-2.9592494, 55.8618504], [-2.9595593, 55.8619981], [-2.9597842, 55.8621008], [-2.9599741, 55.8621757], [-2.9602302, 55.8622713], [-2.9605825, 55.8623796], [-2.9609256, 55.862481]]}}, {"type": "Feature", "properties": {"osm_id": "2953330", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0918434, 55.9004761], [-3.0917242, 55.9004567], [-3.0915837, 55.9004402], [-3.0914286, 55.9004362], [-3.09125, 55.9004399]]}}, {"type": "Feature", "properties": {"osm_id": "2953332", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0597712, 55.9240047], [-3.0602779, 55.9238741], [-3.0604868, 55.9238002], [-3.0606445, 55.9237254], [-3.0608113, 55.9236301], [-3.0610227, 55.9234721], [-3.0612231, 55.923295], [-3.0614825, 55.923061], [-3.0617291, 55.9228251], [-3.062193, 55.9223246], [-3.0623884, 55.9220889], [-3.0626053, 55.9217995], [-3.0627912, 55.9215346], [-3.0629515, 55.9212875], [-3.0630929, 55.9210404], [-3.0632349, 55.9207635], [-3.0633873, 55.9204225], [-3.063507, 55.9201097], [-3.0636265, 55.9197169], [-3.0637538, 55.9191913], [-3.0639305, 55.9183348], [-3.0640993, 55.9175104], [-3.064121, 55.9174063], [-3.0642755, 55.9166673], [-3.064398, 55.9160953], [-3.0645133, 55.9156242], [-3.0646211, 55.9152869], [-3.0647483, 55.914959], [-3.0649403, 55.9145416], [-3.0650541, 55.9143214], [-3.0651851, 55.9140978]]}}, {"type": "Feature", "properties": {"osm_id": "2953338", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1090875, 55.8991578], [-3.1085225, 55.8992009], [-3.1078302, 55.8992494], [-3.107074, 55.8992917], [-3.1058731, 55.8993483], [-3.1050433, 55.8993786], [-3.1041994, 55.8993937], [-3.1033615, 55.8993994], [-3.102404, 55.8993977], [-3.1007146, 55.8993653], [-3.0999936, 55.8993558], [-3.0994446, 55.8993566], [-3.0987141, 55.8993678], [-3.0980308, 55.8993914], [-3.0973307, 55.8994292], [-3.0967615, 55.8994704], [-3.0960842, 55.8995345]]}}, {"type": "Feature", "properties": {"osm_id": "2953480", "highway": "trunk", "maxspeed": "50 mph", "lanes": "3", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3198796, 52.0719461], [-1.3199279, 52.0719912], [-1.3199592, 52.0720393], [-1.3199765, 52.072079], [-1.3199854, 52.0721341], [-1.3199758, 52.0721838], [-1.3199509, 52.0722377], [-1.3199042, 52.072293], [-1.3198371, 52.0723367], [-1.3197796, 52.0723639], [-1.3197468, 52.0723743], [-1.3196946, 52.0723908], [-1.3196277, 52.0724024], [-1.3195453, 52.0724077], [-1.3194617, 52.0724046], [-1.3193619, 52.0723884], [-1.3192726, 52.0723566], [-1.3191917, 52.0723108], [-1.3191664, 52.0722925], [-1.3191364, 52.0722572], [-1.3191061, 52.0722165], [-1.3190873, 52.0721638], [-1.319086, 52.072107], [-1.3191047, 52.072052], [-1.3191571, 52.0719806], [-1.3192025, 52.0719452], [-1.3192689, 52.0719078], [-1.319387, 52.0718725], [-1.3194813, 52.0718563], [-1.3195739, 52.0718554], [-1.3196594, 52.0718652], [-1.3198202, 52.071917], [-1.3198796, 52.0719461]]}}, {"type": "Feature", "properties": {"osm_id": "2953481", "highway": "trunk", "ref": "A36", "maxspeed": "30 mph", "lanes": "2", "name": "Warminster Road", "operator": "Highways England", "highways_england_area": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3243178, 51.3919614], [-2.3241676, 51.3919606], [-2.3227296, 51.3919531], [-2.3221013, 51.3919397], [-2.3214814, 51.3919158], [-2.3209981, 51.3918577]]}}, {"type": "Feature", "properties": {"osm_id": "2953484", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "lanes": "2", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5250223, 51.9517964], [-1.5250324, 51.9518571], [-1.5250119, 51.9519505], [-1.5249391, 51.9520451], [-1.5247599, 51.9521256], [-1.524544, 51.9521343]]}}, {"type": "Feature", "properties": {"osm_id": "2953568", "highway": "trunk", "ref": "A24", "maxspeed": "40 mph", "lanes": "2", "lit": "yes", "name": "Epsom Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2886579, 51.3199803], [-0.2882102, 51.3205702], [-0.2875592, 51.3211979], [-0.2874372, 51.321279]]}}, {"type": "Feature", "properties": {"osm_id": "2953569", "highway": "trunk", "ref": "A24", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "South Street", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2705666, 51.331325], [-0.2706482, 51.3314679], [-0.2706673, 51.3315013], [-0.2707173, 51.3316172], [-0.2707857, 51.3319101], [-0.2707937, 51.3320619], [-0.2707468, 51.3322], [-0.2706697, 51.3323659], [-0.2705074, 51.3326592]]}}, {"type": "Feature", "properties": {"osm_id": "2953612", "highway": "trunk", "ref": "A243", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Leatherhead Road", "operator": "Transport for London", "surface": "asphalt", "source_name": "OS OpenData StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3180908, 51.3413184], [-0.3180282, 51.3414278], [-0.3176216, 51.3421875], [-0.3170964, 51.3431199], [-0.3167837, 51.3436539], [-0.3163095, 51.3444475], [-0.316162, 51.3447043], [-0.3160867, 51.3448446], [-0.3158461, 51.3452932], [-0.3157376, 51.3455177], [-0.3151707, 51.346471], [-0.3142209, 51.347988], [-0.3138711, 51.3486775], [-0.3135075, 51.3495525], [-0.3133619, 51.3499651]]}}, {"type": "Feature", "properties": {"osm_id": "2953627", "highway": "trunk", "ref": "A243", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.322478, 51.3037872], [-0.3223696, 51.3038109], [-0.3222387, 51.3038249], [-0.3221041, 51.303834], [-0.3219785, 51.3038278], [-0.3218409, 51.3037992], [-0.321749, 51.3037588], [-0.3216665, 51.3037062], [-0.3216097, 51.303649], [-0.321572, 51.3035911], [-0.3215454, 51.3035284], [-0.3215472, 51.3034541], [-0.3215593, 51.3033933], [-0.3215973, 51.3033296], [-0.3216649, 51.3032652], [-0.3217278, 51.3032123], [-0.321824, 51.3031491], [-0.321871, 51.3031219]]}}, {"type": "Feature", "properties": {"osm_id": "2953648", "highway": "trunk", "ref": "A272", "maxspeed": "40 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9234962, 51.0118499], [-0.9233605, 51.0119403], [-0.9232461, 51.0120293], [-0.9231118, 51.0122416]]}}, {"type": "Feature", "properties": {"osm_id": "2953649", "highway": "trunk", "ref": "A272", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9275512, 51.0161939], [-0.927637, 51.0162007], [-0.9282499, 51.0167537], [-0.9290918, 51.017604]]}}, {"type": "Feature", "properties": {"osm_id": "2953707", "highway": "trunk", "ref": "A692", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.797986, 54.8543241], [-1.7976833, 54.8544814], [-1.7969065, 54.8549035], [-1.7964183, 54.8551861], [-1.7960418, 54.8554341], [-1.7957638, 54.8556369], [-1.7954715, 54.855867], [-1.7950933, 54.8562097], [-1.7947902, 54.8565293], [-1.7945022, 54.8568746], [-1.7942833, 54.8571901], [-1.7940928, 54.8575128], [-1.7939577, 54.8577793], [-1.793838, 54.8580995], [-1.7937468, 54.8584376], [-1.7936887, 54.8587679], [-1.7936529, 54.8591524], [-1.793669, 54.8595337], [-1.7937182, 54.859892], [-1.7938005, 54.8602362], [-1.7941443, 54.861223], [-1.7943061, 54.8617375]]}}, {"type": "Feature", "properties": {"osm_id": "2953710", "highway": "trunk", "maxspeed": "40 mph", "lanes": "3", "name": "Moor Farm Roundabout", "operator": "Highways England", "highways_england_area": "14", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5793503, 55.0654716], [-1.5794268, 55.0655688], [-1.5794532, 55.0656501]]}}, {"type": "Feature", "properties": {"osm_id": "2953712", "highway": "trunk", "ref": "A1068", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5803187, 55.3234894], [-1.5803217, 55.323416], [-1.5803255, 55.3233463], [-1.5803131, 55.3232763], [-1.5802677, 55.3231149], [-1.5799355, 55.3223676], [-1.5790766, 55.3205005], [-1.5787499, 55.3197353]]}}, {"type": "Feature", "properties": {"osm_id": "2953719", "highway": "trunk", "ref": "A696", "maxspeed": "70 mph", "oneway": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6699394, 55.0053729], [-1.6701527, 55.0056044]]}}, {"type": "Feature", "properties": {"osm_id": "2953721", "highway": "trunk", "ref": "A692", "maxspeed": "40 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.735219, 54.8931709], [-1.734875, 54.8933699], [-1.7341392, 54.8938056], [-1.7334164, 54.8943076], [-1.7322455, 54.8951164], [-1.7319067, 54.8953583], [-1.7317169, 54.8954937], [-1.7310176, 54.896048], [-1.7309394, 54.8961108], [-1.7307573, 54.8962569], [-1.7302862, 54.896635], [-1.7296917, 54.8971236], [-1.7278306, 54.8986701], [-1.7274853, 54.8989475], [-1.7267529, 54.8995557], [-1.7248637, 54.9011244], [-1.7242079, 54.9017043], [-1.7237428, 54.9021358], [-1.7235146, 54.9023474], [-1.7230579, 54.9028079], [-1.7222889, 54.903615]]}}, {"type": "Feature", "properties": {"osm_id": "2953732", "highway": "trunk", "ref": "A692", "name": "Front Street", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.794066, 54.8625688], [-1.7938896, 54.8626957], [-1.7937468, 54.8627826], [-1.7935591, 54.8628691], [-1.7931643, 54.8630196], [-1.7909767, 54.863835], [-1.7893598, 54.8644465], [-1.7864416, 54.8655324], [-1.7856285, 54.865835], [-1.7847009, 54.8661817]]}}, {"type": "Feature", "properties": {"osm_id": "2953736", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "int_ref": "E 15", "parking_lane_both": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6796343, 54.9963232], [-1.6785061, 54.9972871], [-1.6773679, 54.9982595]]}}, {"type": "Feature", "properties": {"osm_id": "2953738", "highway": "trunk", "ref": "A19", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "14", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5792278, 55.0653479], [-1.5795543, 55.0654752], [-1.579759, 55.0655252], [-1.5801267, 55.0655857], [-1.58031, 55.0656124], [-1.5819039, 55.0658875]]}}, {"type": "Feature", "properties": {"osm_id": "2953762", "highway": "trunk", "maxspeed": "60 mph", "maxspeed_type": "GB:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5727972, 55.2084782], [-1.5728539, 55.2084609], [-1.5729141, 55.2084555], [-1.5729774, 55.208462], [-1.573034, 55.2084808], [-1.5730754, 55.2085091], [-1.5731005, 55.2085598], [-1.5730909, 55.2085966], [-1.5730462, 55.208638]]}}, {"type": "Feature", "properties": {"osm_id": "2953763", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "name": "Widdrington Roundabout", "maxspeed_type": "GB:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6020243, 55.2575521], [-1.6019242, 55.2575884], [-1.6018088, 55.257604], [-1.6016908, 55.2575973], [-1.6015831, 55.2575691]]}}, {"type": "Feature", "properties": {"osm_id": "2953768", "highway": "trunk", "ref": "A189", "maxspeed": "50 mph", "lanes": "2", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5331811, 55.1711971], [-1.5331243, 55.1713359], [-1.5330037, 55.1714653], [-1.5327791, 55.1716243]]}}, {"type": "Feature", "properties": {"osm_id": "2953774", "highway": "trunk", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7941089, 54.8621741], [-1.7941303, 54.8621396], [-1.7941772, 54.8620997], [-1.7942416, 54.862069], [-1.7942896, 54.8620554], [-1.7943412, 54.862047], [-1.7943945, 54.8620441], [-1.7944478, 54.8620469], [-1.7944929, 54.8620538], [-1.7945355, 54.8620647], [-1.7945943, 54.8620889], [-1.794641, 54.8621205], [-1.7946729, 54.8621578], [-1.794688, 54.8621984], [-1.7946856, 54.86224], [-1.7946708, 54.8622724], [-1.7946452, 54.8623025], [-1.7946099, 54.8623291], [-1.7945661, 54.8623512], [-1.7945085, 54.8623696], [-1.7944453, 54.8623803], [-1.7943795, 54.8623825], [-1.7943155, 54.8623765], [-1.7942554, 54.8623625], [-1.7942021, 54.8623413], [-1.7941581, 54.8623138], [-1.7941261, 54.8622821], [-1.7941067, 54.8622471], [-1.7941009, 54.8622105], [-1.7941089, 54.8621741]]}}, {"type": "Feature", "properties": {"osm_id": "2953775", "highway": "trunk", "ref": "A167", "maxspeed": "40 mph", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5977213, 54.7890722], [-1.597859, 54.789187], [-1.5979478, 54.789273], [-1.5979835, 54.7893368], [-1.59799, 54.7894024], [-1.5979841, 54.7894566], [-1.5979476, 54.7895135], [-1.5978715, 54.7895915], [-1.5977774, 54.7896657], [-1.5976843, 54.7897152], [-1.5975922, 54.7897421], [-1.5974969, 54.7897483], [-1.5973884, 54.7897436], [-1.5973072, 54.7897292], [-1.5972208, 54.789704], [-1.5971546, 54.7896821], [-1.5970546, 54.7896463], [-1.5969775, 54.7896096], [-1.5969066, 54.7895508], [-1.5968451, 54.7894719], [-1.5968341, 54.7894505], [-1.5968185, 54.7894204], [-1.5968096, 54.7893491], [-1.5968029, 54.7892461], [-1.5968307, 54.7891877], [-1.5968709, 54.7891267], [-1.5969694, 54.7890508], [-1.597166, 54.7889768], [-1.597271, 54.7889585], [-1.5973577, 54.7889523], [-1.5974733, 54.7889633], [-1.5975539, 54.7889823], [-1.5976364, 54.7890141], [-1.5977213, 54.7890722]]}}, {"type": "Feature", "properties": {"osm_id": "2953777", "highway": "trunk", "ref": "A189", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5785732, 55.0660688], [-1.5781979, 55.066218], [-1.5780469, 55.066299], [-1.5779784, 55.0663613], [-1.577919, 55.066433], [-1.5776271, 55.066991]]}}, {"type": "Feature", "properties": {"osm_id": "2953790", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6679659, 55.0056603], [-1.6679254, 55.0055882], [-1.6678968, 55.0055143], [-1.6678759, 55.0053906], [-1.6678879, 55.0052665], [-1.6679197, 55.005177], [-1.6679848, 55.0050935], [-1.6680781, 55.0050192], [-1.6681957, 55.0049574], [-1.6683328, 55.0049106], [-1.6684901, 55.0048785], [-1.6685998, 55.0048706], [-1.6687394, 55.0048735], [-1.6688779, 55.0048839]]}}, {"type": "Feature", "properties": {"osm_id": "2953792", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6842522, 54.9923624], [-1.685222, 54.9916373], [-1.6887481, 54.9889641], [-1.6901964, 54.9878387]]}}, {"type": "Feature", "properties": {"osm_id": "2953803", "highway": "trunk", "ref": "A691", "maxspeed": "60 mph", "lanes": "1", "source_ref": "local knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6024042, 54.791772], [-1.6045223, 54.7929201], [-1.6051638, 54.7932739], [-1.6054223, 54.7934041], [-1.6055966, 54.7934884], [-1.6059408, 54.7936352], [-1.6072343, 54.7941561], [-1.6082396, 54.7947004], [-1.6097604, 54.7955896], [-1.6112815, 54.7966256], [-1.612729, 54.7976563], [-1.6134505, 54.7983021]]}}, {"type": "Feature", "properties": {"osm_id": "2953811", "highway": "trunk", "ref": "A1068", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "High Street", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5892148, 55.3322211], [-1.5891859, 55.332219], [-1.5890858, 55.3322119], [-1.5889864, 55.3322167], [-1.5888821, 55.332231], [-1.588394, 55.3323848], [-1.5883365, 55.332391], [-1.5882668, 55.3323795]]}}, {"type": "Feature", "properties": {"osm_id": "2953817", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "East Denton Interchange", "operator": "Highways England", "highways_england_area": "14", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6941646, 54.9847667], [-1.6942629, 54.9848425], [-1.6943156, 54.9848951]]}}, {"type": "Feature", "properties": {"osm_id": "2953822", "highway": "trunk", "ref": "A1068", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6017457, 55.257015], [-1.6017845, 55.256635], [-1.6019805, 55.2544928], [-1.6020909, 55.2533113], [-1.602181, 55.2523479], [-1.6022394, 55.2517318], [-1.6022792, 55.2513125], [-1.6023111, 55.251117], [-1.6023847, 55.2508445], [-1.602428, 55.2507275], [-1.6025066, 55.2505501], [-1.6026924, 55.2501878], [-1.6027594, 55.2500262]]}}, {"type": "Feature", "properties": {"osm_id": "2953845", "highway": "trunk", "ref": "A691", "maxspeed": "60 mph", "oneway": "yes", "source_ref": "local knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6453761, 54.8051933], [-1.6459137, 54.8055509]]}}, {"type": "Feature", "properties": {"osm_id": "2953850", "highway": "trunk", "maxspeed": "60 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6565074, 54.8064977], [-1.6565811, 54.8065495], [-1.6566016, 54.8065758], [-1.6566196, 54.8066443], [-1.6565875, 54.8067168], [-1.6565164, 54.8067711], [-1.6564316, 54.8068028], [-1.6563417, 54.8068169], [-1.6562421, 54.8068144], [-1.6561678, 54.8067999], [-1.6560848, 54.8067662], [-1.6560551, 54.8067469], [-1.656012, 54.8067028], [-1.6559955, 54.8066694], [-1.6559927, 54.8066147], [-1.6560155, 54.8065657], [-1.6560673, 54.8065179], [-1.6561126, 54.8064975], [-1.6561625, 54.806475], [-1.6562557, 54.8064576], [-1.6563684, 54.806459], [-1.6565074, 54.8064977]]}}, {"type": "Feature", "properties": {"osm_id": "2953854", "highway": "trunk", "ref": "A19", "maxspeed": "70 mph", "lit": "yes", "name": "Seaton Burn Roundabout", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "14", "junction": "roundabout", "alt_name": "Fisher Lane Roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6332555, 55.0648105], [-1.6333842, 55.0649052], [-1.6334638, 55.0650162], [-1.6334869, 55.0650984], [-1.6334827, 55.0651817]]}}, {"type": "Feature", "properties": {"osm_id": "2953861", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6161288, 54.9592979], [-1.616, 54.9593631], [-1.6158454, 54.9594106], [-1.6156365, 54.9594567], [-1.6154278, 54.959467], [-1.6152177, 54.9594509], [-1.6150233, 54.9593886], [-1.6148643, 54.9593032], [-1.6147617, 54.9591796], [-1.6147265, 54.9590264], [-1.6147742, 54.9587698], [-1.6148506, 54.9586351], [-1.6151038, 54.9584477], [-1.6153068, 54.9583796], [-1.6155783, 54.9583495], [-1.6158731, 54.9583909], [-1.61597, 54.9584153], [-1.6161814, 54.9584977], [-1.6162805, 54.9585864], [-1.6163524, 54.9586717], [-1.6163907, 54.9588091], [-1.6163359, 54.959034], [-1.6163069, 54.9591312], [-1.6162252, 54.9592276], [-1.6161288, 54.9592979]]}}, {"type": "Feature", "properties": {"osm_id": "2953869", "highway": "trunk", "maxspeed": "60 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6450389, 54.8051173], [-1.6451396, 54.8051102], [-1.6452384, 54.8051235], [-1.6453235, 54.8051554], [-1.6453761, 54.8051933], [-1.6454114, 54.8052482], [-1.6454119, 54.8053066], [-1.6453778, 54.8053617], [-1.6453064, 54.8054098], [-1.6452174, 54.8054379], [-1.645074, 54.8054442], [-1.6449786, 54.8054244], [-1.6449007, 54.8053869], [-1.644844, 54.8053263], [-1.6448324, 54.8052682], [-1.6448561, 54.8052113], [-1.644912, 54.8051625], [-1.6450389, 54.8051173]]}}, {"type": "Feature", "properties": {"osm_id": "2953870", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "GB:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5726736, 55.222374], [-1.5726225, 55.2223914], [-1.5725722, 55.222399], [-1.5725182, 55.2223988], [-1.5724618, 55.2223894], [-1.5724109, 55.2223701], [-1.5723708, 55.2223413]]}}, {"type": "Feature", "properties": {"osm_id": "2953878", "highway": "trunk", "maxspeed": "60 mph", "lit": "yes", "maxspeed_type": "GB:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.602973, 55.2498062], [-1.602858, 55.2498298], [-1.6027721, 55.249826], [-1.6027277, 55.2498168], [-1.6026574, 55.2497884]]}}, {"type": "Feature", "properties": {"osm_id": "2953883", "highway": "trunk", "ref": "A1068", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5727432, 55.2220564], [-1.5728129, 55.2219569], [-1.5728662, 55.22183], [-1.5729009, 55.2216558], [-1.5728746, 55.2214422], [-1.5728036, 55.2212295], [-1.572216, 55.2198473], [-1.5713838, 55.2177605]]}}, {"type": "Feature", "properties": {"osm_id": "2953890", "highway": "trunk", "maxspeed": "40 mph", "lanes": "1", "name": "Sniperley roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6019775, 54.7915462], [-1.6019357, 54.7915926], [-1.601877, 54.7916233], [-1.6017965, 54.7916425], [-1.6017217, 54.7916449], [-1.6016419, 54.7916321], [-1.6015673, 54.7916003], [-1.6015241, 54.791562], [-1.6015048, 54.7915184], [-1.601504, 54.791501], [-1.6015084, 54.791479], [-1.6015358, 54.7914368], [-1.6015887, 54.7914], [-1.6016575, 54.7913762], [-1.601738, 54.7913667], [-1.6018215, 54.7913736], [-1.601869, 54.7913861], [-1.6019354, 54.7914195], [-1.6019772, 54.7914654], [-1.6019869, 54.7915177], [-1.6019775, 54.7915462]]}}, {"type": "Feature", "properties": {"osm_id": "2953893", "highway": "trunk", "maxspeed": "60 mph", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7983143, 54.854186], [-1.7982805, 54.8541674], [-1.7982527, 54.8541457], [-1.7982318, 54.8541216], [-1.7982182, 54.8540958], [-1.7982123, 54.8540638], [-1.7982178, 54.8540318], [-1.7982346, 54.8540009], [-1.7982619, 54.8539727], [-1.7982987, 54.8539482], [-1.7983434, 54.8539286], [-1.7983941, 54.8539147], [-1.7984487, 54.853907], [-1.7984731, 54.8539057], [-1.7984977, 54.8539056], [-1.7985479, 54.8539095], [-1.798596, 54.8539187], [-1.7986404, 54.8539328], [-1.7986795, 54.8539514], [-1.798712, 54.8539738], [-1.7987367, 54.8539992], [-1.7987529, 54.8540269], [-1.79876, 54.8540558], [-1.7987577, 54.8540849], [-1.798744, 54.8541167], [-1.7987192, 54.8541463], [-1.7986843, 54.8541722], [-1.7986409, 54.8541934], [-1.7985843, 54.8542105], [-1.7985222, 54.8542196], [-1.7984582, 54.8542201], [-1.7983958, 54.8542121], [-1.7983531, 54.854201], [-1.7983143, 54.854186]]}}, {"type": "Feature", "properties": {"osm_id": "2953904", "highway": "trunk", "ref": "A691", "maxspeed": "40 mph", "lanes": "1", "oneway": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5979478, 54.789273], [-1.5982291, 54.7894537], [-1.598382, 54.7895817]]}}, {"type": "Feature", "properties": {"osm_id": "2953905", "highway": "trunk", "ref": "A691", "maxspeed": "60 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6566016, 54.8065758], [-1.6568077, 54.8066056], [-1.6570692, 54.8066434]]}}, {"type": "Feature", "properties": {"osm_id": "2953970", "highway": "trunk", "ref": "A692", "maxspeed": "30 mph", "lanes": "2", "name": "Lobley Hill Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6755837, 54.9220997], [-1.6755163, 54.9221595], [-1.6752601, 54.9224463], [-1.6747901, 54.9229726], [-1.6747785, 54.9229855], [-1.6744243, 54.9233934], [-1.6737913, 54.9241223]]}}, {"type": "Feature", "properties": {"osm_id": "2954015", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "City of Edinburgh Council", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0974384, 55.9342267], [-3.0977359, 55.9344156], [-3.0981546, 55.9346988], [-3.0984473, 55.9349119], [-3.0986962, 55.9351061], [-3.0989483, 55.9353117], [-3.099062, 55.9354087], [-3.0992418, 55.9355733], [-3.0994589, 55.9357706], [-3.0995997, 55.9359135], [-3.0996734, 55.935983]]}}, {"type": "Feature", "properties": {"osm_id": "2954016", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "City of Edinburgh Council", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1019059, 55.9400826], [-3.1019275, 55.9400371], [-3.10194, 55.9399909], [-3.1019434, 55.9399455], [-3.1019326, 55.9398845], [-3.1019147, 55.9398415], [-3.1017978, 55.9396096], [-3.1016372, 55.9393324], [-3.1014588, 55.9390126], [-3.1012454, 55.9386402]]}}, {"type": "Feature", "properties": {"osm_id": "2954019", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "City of Edinburgh Council", "layer": "1", "bridge": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-3.0972118, 55.9342571], [-3.0966038, 55.9338947]]}}, {"type": "Feature", "properties": {"osm_id": "2954020", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "City of Edinburgh Council", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0791052, 55.9302454], [-3.0779112, 55.9299777], [-3.0772118, 55.9298135], [-3.0768037, 55.9297124], [-3.0761999, 55.9295661], [-3.0756122, 55.9294212], [-3.0745053, 55.9291339], [-3.0737329, 55.9289259], [-3.0729704, 55.9287132]]}}, {"type": "Feature", "properties": {"osm_id": "2954021", "highway": "trunk", "ref": "A1", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "City of Edinburgh Council", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0799084, 55.9302973], [-3.0809006, 55.9305086], [-3.0815605, 55.9306403], [-3.0822115, 55.9307532], [-3.082755, 55.9308414], [-3.0831785, 55.9309044], [-3.0839276, 55.9310042], [-3.0846685, 55.9310934], [-3.0852865, 55.9311571], [-3.0857989, 55.9312026], [-3.0864449, 55.9312538], [-3.0870476, 55.9312987], [-3.0877349, 55.9313536], [-3.0884685, 55.9314204], [-3.0888168, 55.9314595], [-3.089292, 55.9315178]]}}, {"type": "Feature", "properties": {"osm_id": "2954022", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0180957, 55.9290618], [-3.0187509, 55.9289792], [-3.0193607, 55.9289084], [-3.0201719, 55.9288188], [-3.0209157, 55.9287488], [-3.0221028, 55.9286529], [-3.0230034, 55.928595], [-3.0240112, 55.9285316], [-3.0256318, 55.9284296], [-3.0272161, 55.9283301], [-3.0281079, 55.9282729], [-3.0289623, 55.9282186]]}}, {"type": "Feature", "properties": {"osm_id": "2954110", "highway": "trunk", "ref": "A205", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Sangley Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0180207, 51.4438826], [-0.0181605, 51.4438791], [-0.0186469, 51.4439977], [-0.0188121, 51.4440256], [-0.0195369, 51.4441478], [-0.0199102, 51.4442146]]}}, {"type": "Feature", "properties": {"osm_id": "2954137", "highway": "trunk", "maxspeed": "60 mph", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6762882, 53.1643205], [-2.6762257, 53.1643649], [-2.6761445, 53.1643965], [-2.6760515, 53.1644128], [-2.6759449, 53.1644114], [-2.6758446, 53.1643899], [-2.6757607, 53.1643504], [-2.6757019, 53.1642971], [-2.6756828, 53.1642642], [-2.6756734, 53.1642298], [-2.6756838, 53.1641637], [-2.6757298, 53.1641032], [-2.6758063, 53.1640552], [-2.6758744, 53.1640316], [-2.6759796, 53.1640161], [-2.6760876, 53.1640217], [-2.6761868, 53.1640477], [-2.6762669, 53.1640915], [-2.6763216, 53.1641524], [-2.6763383, 53.1642096], [-2.6763269, 53.1642673], [-2.6762882, 53.1643205]]}}, {"type": "Feature", "properties": {"osm_id": "2954138", "highway": "trunk", "ref": "A49", "maxspeed": "40 mph", "name": "Luddington Hill", "bicycle": "yes", "foot": "yes", "alt_name": "Tarporley Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6443603, 53.1813906], [-2.6448174, 53.1811186], [-2.6461026, 53.1806521]]}}, {"type": "Feature", "properties": {"osm_id": "2954139", "highway": "trunk", "ref": "A49", "maxspeed": "60 mph", "oneway": "yes", "name": "Weaverham By-pass Roundabout", "bicycle": "yes", "sidewalk": "left", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5864415, 53.2593361], [-2.5865037, 53.2593654], [-2.5865498, 53.2594039], [-2.5865695, 53.2594325], [-2.5865801, 53.2594628], [-2.586576, 53.2595171], [-2.5865433, 53.2595679], [-2.5864854, 53.2596099], [-2.5864082, 53.2596387], [-2.5863241, 53.2596511], [-2.5862428, 53.2596484], [-2.5861661, 53.259632], [-2.5861004, 53.2596032], [-2.5860511, 53.2595644], [-2.5860224, 53.2595188], [-2.5860166, 53.2594692], [-2.5860352, 53.2594207], [-2.5860765, 53.2593776], [-2.586137, 53.2593435], [-2.5862115, 53.2593213], [-2.5862895, 53.2593131], [-2.5863682, 53.2593182], [-2.5864415, 53.2593361]]}}, {"type": "Feature", "properties": {"osm_id": "2954140", "highway": "trunk", "ref": "A49", "maxspeed": "40 mph", "name": "Forest Road", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6020281, 53.2392666], [-2.6024064, 53.2378005], [-2.6030077, 53.2369561], [-2.603621, 53.2363808], [-2.6040889, 53.2359117], [-2.6047659, 53.2352542], [-2.6048243, 53.2351964], [-2.6052424, 53.2347826], [-2.6064778, 53.2336066], [-2.6071807, 53.2329375]]}}, {"type": "Feature", "properties": {"osm_id": "2954141", "highway": "trunk", "ref": "A49", "maxspeed": "70 mph", "lit": "yes", "name": "Stretton Roundabout", "bicycle": "yes", "layer": "1", "bridge": "yes", "junction": "roundabout", "foot": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-2.572272, 53.3343524], [-2.5724005, 53.3346799]]}}, {"type": "Feature", "properties": {"osm_id": "2954142", "highway": "trunk", "ref": "A49", "maxspeed": "60 mph", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5867385, 53.2596571], [-2.5871616, 53.2598963], [-2.5885813, 53.2606831], [-2.5895112, 53.261237], [-2.5900989, 53.2616457], [-2.5904583, 53.2619454], [-2.5909217, 53.2623602], [-2.5914623, 53.2629699], [-2.5919857, 53.2637875], [-2.5921649, 53.2644404], [-2.5923265, 53.265012], [-2.5925306, 53.2669577], [-2.5926541, 53.2681393], [-2.5927405, 53.2688196], [-2.5928219, 53.2694603]]}}, {"type": "Feature", "properties": {"osm_id": "2954143", "highway": "trunk", "ref": "A49", "maxspeed": "70 mph", "oneway": "yes", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5723297, 53.3352412], [-2.5723024, 53.3353644], [-2.5722883, 53.3354324], [-2.5722969, 53.3355005], [-2.5723079, 53.335544], [-2.5723437, 53.3356636]]}}, {"type": "Feature", "properties": {"osm_id": "2954144", "highway": "trunk", "ref": "A49", "maxspeed": "30 mph", "lanes": "2", "name": "London Road", "bicycle": "yes", "surface": "asphalt", "foot": "yes", "cycleway": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5775108, 53.3597146], [-2.5776254, 53.3593044], [-2.57848, 53.3577377], [-2.578523, 53.3574844], [-2.5785144, 53.3566078]]}}, {"type": "Feature", "properties": {"osm_id": "2954145", "highway": "trunk", "ref": "A49", "maxspeed": "40 mph", "name": "London Road", "bicycle": "yes", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5748613, 53.3462806], [-2.5749251, 53.3462505], [-2.5750019, 53.3462346], [-2.5750831, 53.3462347], [-2.5751598, 53.3462508], [-2.5752144, 53.3462753], [-2.5752554, 53.3463078], [-2.5752797, 53.3463459], [-2.5752854, 53.3463864], [-2.575272, 53.3464264], [-2.5752343, 53.3464676], [-2.5751765, 53.3464995], [-2.5751048, 53.3465187], [-2.5750265, 53.3465233], [-2.5749629, 53.3465158], [-2.574905, 53.3464985], [-2.5748567, 53.3464727], [-2.5748216, 53.3464402], [-2.5748026, 53.3464053], [-2.5747988, 53.3463687], [-2.5748176, 53.3463215], [-2.5748613, 53.3462806]]}}, {"type": "Feature", "properties": {"osm_id": "2954212", "highway": "trunk", "ref": "A19", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO26", "surface": "paved", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4608948, 54.9092095], [-1.4608549, 54.9089159], [-1.4607735, 54.908614], [-1.4606921, 54.9083672], [-1.4605964, 54.908114], [-1.4604623, 54.9078002], [-1.4602444, 54.907354], [-1.4600617, 54.9070349]]}}, {"type": "Feature", "properties": {"osm_id": "2954214", "highway": "trunk", "ref": "A19", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Fleet Bridge Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "DBFO26", "bicycle": "no", "sidewalk": "no", "foot": "no", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3005308, 54.5872125], [-1.3001034, 54.5865037], [-1.2998189, 54.5861081], [-1.2995913, 54.5858242], [-1.2993429, 54.5855484], [-1.2990666, 54.5852591], [-1.2988181, 54.5850115], [-1.2983724, 54.5846132], [-1.2979916, 54.5843051], [-1.2976061, 54.5840252], [-1.2971139, 54.5836848], [-1.2966472, 54.5833955], [-1.296162, 54.583117], [-1.295686, 54.5828708]]}}, {"type": "Feature", "properties": {"osm_id": "2954219", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4727908, 53.8371831], [-1.4727522, 53.8372061], [-1.4726775, 53.837226], [-1.4725858, 53.8372449], [-1.4724619, 53.8372572], [-1.4723498, 53.8372371], [-1.4722785, 53.8372069], [-1.4722545, 53.8371844], [-1.4722025, 53.8371363], [-1.4721677, 53.8370572], [-1.4721504, 53.836989], [-1.4721535, 53.8369112], [-1.4721916, 53.8368626], [-1.4722551, 53.8368253], [-1.47233, 53.8367928], [-1.472495, 53.8367567], [-1.4726633, 53.8367839], [-1.4727762, 53.836828], [-1.4728403, 53.8369101], [-1.472877, 53.837031], [-1.4728535, 53.8371167], [-1.4727908, 53.8371831]]}}, {"type": "Feature", "properties": {"osm_id": "2954221", "highway": "trunk", "ref": "A58", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Wetherby Road", "turn_lanes": "left|through;right", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3868603, 53.9237551], [-1.3866189, 53.9237225], [-1.386407, 53.9236957], [-1.3862768, 53.9236885], [-1.3861683, 53.9236948], [-1.3860218, 53.9237151]]}}, {"type": "Feature", "properties": {"osm_id": "2954223", "highway": "trunk", "ref": "A1231", "name": "Galleries North Interchange", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5382411, 54.9013576], [-1.53839, 54.9013419], [-1.5385414, 54.9013391], [-1.5388205, 54.9013726], [-1.5389302, 54.9014012], [-1.5391542, 54.9014799], [-1.5392722, 54.9015324], [-1.5393851, 54.9016009], [-1.5394844, 54.9016987], [-1.5395625, 54.9018506], [-1.5395601, 54.9019469], [-1.5395179, 54.9020803], [-1.5394633, 54.9021567], [-1.5394112, 54.902218], [-1.5393529, 54.9022791], [-1.5392052, 54.9023757], [-1.539096, 54.9024285], [-1.5389868, 54.9024606], [-1.5388292, 54.9024977], [-1.538519, 54.9025491], [-1.5383627, 54.9025662], [-1.5381927, 54.9025776], [-1.5379123, 54.9025605], [-1.5377497, 54.9025227], [-1.5377185, 54.9025126], [-1.5374805, 54.9024214], [-1.5373604, 54.9023534], [-1.5372745, 54.9022547], [-1.5372174, 54.9021774], [-1.5371752, 54.9020725], [-1.5371641, 54.9019905], [-1.5371827, 54.9019134], [-1.5372062, 54.9018321], [-1.5372608, 54.9017629], [-1.5373341, 54.9016737], [-1.5373899, 54.901608], [-1.5375698, 54.9015096], [-1.5376864, 54.9014646], [-1.5378974, 54.9014211], [-1.5382411, 54.9013576]]}}, {"type": "Feature", "properties": {"osm_id": "2954224", "highway": "trunk", "ref": "A1231", "maxspeed": "70 mph", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5595695, 54.9068843], [-1.5595539, 54.9069463], [-1.5595148, 54.9070049], [-1.5594519, 54.9070586], [-1.5593694, 54.9071026], [-1.5592716, 54.9071347], [-1.5591631, 54.9071537], [-1.5590452, 54.9071568], [-1.5589286, 54.907144], [-1.5588149, 54.9071133], [-1.5587184, 54.9070671], [-1.5586455, 54.9070083], [-1.5586008, 54.9069408], [-1.5585893, 54.9068503], [-1.5586282, 54.9067624], [-1.558703, 54.9066931], [-1.5588092, 54.9066389], [-1.5589379, 54.9066045], [-1.5590783, 54.9065927], [-1.5592012, 54.9066016], [-1.5593237, 54.9066304], [-1.5594285, 54.9066769], [-1.5595078, 54.9067378], [-1.559556, 54.9068086], [-1.5595695, 54.9068843]]}}, {"type": "Feature", "properties": {"osm_id": "2954225", "highway": "trunk", "ref": "A1231", "maxspeed": "70 mph", "oneway": "yes", "name": "Sunderland Highway", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5586282, 54.9067624], [-1.5585941, 54.9066504], [-1.5585312, 54.9065358], [-1.5584647, 54.9064594], [-1.5578369, 54.90609], [-1.5574693, 54.9058814]]}}, {"type": "Feature", "properties": {"osm_id": "2954226", "highway": "trunk", "ref": "A1231", "maxspeed": "70 mph", "oneway": "yes", "name": "Sunderland Highway", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5374805, 54.9024214], [-1.5372596, 54.9023821], [-1.5370735, 54.9023593], [-1.5368563, 54.9023622], [-1.5366107, 54.902395], [-1.5362992, 54.9024799], [-1.5359357, 54.9025819], [-1.5353376, 54.9027545], [-1.5346216, 54.9029793], [-1.5339876, 54.903209], [-1.5334863, 54.903408], [-1.5331873, 54.9035357], [-1.5324552, 54.9038796], [-1.5319328, 54.9041293], [-1.5313037, 54.9044282], [-1.5299082, 54.9050505]]}}, {"type": "Feature", "properties": {"osm_id": "2954284", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.6233189, 51.504665], [-0.6197735, 51.5039026], [-0.6173912, 51.5033794]]}}, {"type": "Feature", "properties": {"osm_id": "2954285", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.652367, 51.511003], [-0.6464962, 51.5097156], [-0.6326775, 51.5066973], [-0.6249046, 51.5050138], [-0.6233189, 51.504665]]}}, {"type": "Feature", "properties": {"osm_id": "2954286", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.7998827, 51.4555881], [-0.7970209, 51.4571228], [-0.7948785, 51.4581791], [-0.7924077, 51.4592218], [-0.7892739, 51.460374], [-0.7863684, 51.4614326], [-0.7833142, 51.4627401], [-0.7805614, 51.4641046], [-0.7782877, 51.465385], [-0.7758252, 51.4669834], [-0.7740353, 51.4682929], [-0.7719437, 51.4700274], [-0.7704991, 51.4714268], [-0.7694005, 51.4725805], [-0.7684596, 51.4736882], [-0.7659619, 51.4770229], [-0.7644877, 51.4787629], [-0.7631284, 51.4802162], [-0.7618484, 51.4814667], [-0.7603499, 51.4827634], [-0.7591485, 51.4837011], [-0.7582055, 51.4843808], [-0.7567767, 51.4852804], [-0.7548956, 51.4863426], [-0.7524634, 51.4875251], [-0.7496291, 51.4886921], [-0.7470249, 51.4895752], [-0.7443972, 51.49047], [-0.7416267, 51.4915309], [-0.7411825, 51.4917237]]}}, {"type": "Feature", "properties": {"osm_id": "2954300", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0244811, 51.3776561], [-0.0244655, 51.3777026], [-0.0244255, 51.3777468], [-0.0243839, 51.3777779], [-0.0243243, 51.3778015], [-0.0242592, 51.3778183], [-0.0241914, 51.3778225], [-0.0241136, 51.3778138], [-0.024043, 51.3777947], [-0.0239774, 51.3777629], [-0.0239284, 51.3777116], [-0.0239048, 51.3776572], [-0.0239033, 51.377615], [-0.023915, 51.3775777], [-0.0239503, 51.3775412]]}}, {"type": "Feature", "properties": {"osm_id": "2954305", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "High Street", "operator": "Transport for London", "source_name": "knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0239503, 51.3775412], [-0.02388, 51.3775193], [-0.0237644, 51.3774792], [-0.0237017, 51.3774602], [-0.0236449, 51.3774476], [-0.0235809, 51.3774381], [-0.02308, 51.3773792], [-0.022659, 51.3773331], [-0.0222263, 51.3772812], [-0.0216203, 51.3772128], [-0.0215127, 51.3771999], [-0.0213633, 51.3771805], [-0.0212176, 51.3771596], [-0.0209338, 51.3771165], [-0.0205557, 51.3770581], [-0.0204259, 51.377037], [-0.0203507, 51.3770223], [-0.0202715, 51.3770029], [-0.0201963, 51.37698], [-0.0199569, 51.3768897], [-0.0196555, 51.3767829], [-0.0195522, 51.3767523], [-0.0193813, 51.3767036], [-0.0192003, 51.3766529], [-0.0187204, 51.376525], [-0.0185574, 51.3764801], [-0.0182517, 51.3764002], [-0.0178571, 51.3763007], [-0.0175044, 51.3762112], [-0.0172269, 51.3761446], [-0.0170699, 51.3761066], [-0.0169509, 51.3760828], [-0.0167948, 51.3760528], [-0.0165453, 51.3760097], [-0.016346, 51.3759785], [-0.0161274, 51.3759473], [-0.015578, 51.3758742], [-0.015182, 51.3758221], [-0.0148699, 51.3757828], [-0.0147466, 51.3757706], [-0.0146105, 51.3757584]]}}, {"type": "Feature", "properties": {"osm_id": "2954314", "highway": "trunk", "maxspeed": "30 mph", "lit": "yes", "operator": "Transport for London", "source_maxspeed": "GB:urban", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0598532, 51.3763203], [-0.059862, 51.3762867], [-0.0599014, 51.3762484], [-0.0599437, 51.3762302]]}}, {"type": "Feature", "properties": {"osm_id": "2954315", "highway": "trunk", "maxspeed": "30 mph", "lit": "yes", "operator": "Transport for London", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0561957, 51.3735883], [-0.0562161, 51.373574], [-0.0562819, 51.3735456], [-0.0563795, 51.3735324]]}}, {"type": "Feature", "properties": {"osm_id": "2954317", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Shirley Road", "operator": "Transport for London", "source_maxspeed": "GB:urban", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0598532, 51.3763203], [-0.0596616, 51.3762], [-0.0595401, 51.3761281], [-0.0586091, 51.3757454], [-0.0578395, 51.3753107], [-0.0572543, 51.3748757], [-0.0568766, 51.374509], [-0.0566306, 51.3742311], [-0.0564786, 51.3739981], [-0.0562903, 51.3738094]]}}, {"type": "Feature", "properties": {"osm_id": "2954318", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Shirley Road", "operator": "Transport for London", "source_maxspeed": "GB:urban", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0565759, 51.3737503], [-0.0566195, 51.3738943], [-0.0567332, 51.374043], [-0.0569059, 51.3742307], [-0.0571686, 51.3745009], [-0.0575329, 51.3748212], [-0.0580097, 51.375164], [-0.0593027, 51.3758717], [-0.0593587, 51.3759024], [-0.0599437, 51.3762302]]}}, {"type": "Feature", "properties": {"osm_id": "2954319", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Wickham Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0246656, 51.3775689], [-0.0246258, 51.3776], [-0.0245684, 51.3776243], [-0.0244811, 51.3776561]]}}, {"type": "Feature", "properties": {"osm_id": "2954342", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Addiscombe Road", "operator": "Transport for London", "source_maxspeed": "GB:urban", "cycleway": "lane", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0601676, 51.3763119], [-0.0610545, 51.3761633], [-0.0617951, 51.3760577], [-0.0619343, 51.3760379], [-0.0627078, 51.3758475], [-0.0629579, 51.375786], [-0.0631777, 51.3757319], [-0.0638006, 51.3755674], [-0.0646779, 51.3753357], [-0.0650167, 51.3752558]]}}, {"type": "Feature", "properties": {"osm_id": "2954345", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.9586194, 51.4122915], [-0.9576459, 51.4124561], [-0.9562991, 51.4127265], [-0.955816, 51.4128316], [-0.9543874, 51.4131632], [-0.9526193, 51.4136024], [-0.9514429, 51.4139225], [-0.9493861, 51.414537], [-0.9474123, 51.4151908], [-0.946024, 51.4156835], [-0.9447304, 51.4161758], [-0.9433254, 51.4167513], [-0.9407846, 51.417829], [-0.9392348, 51.4184228], [-0.9379141, 51.4188623], [-0.9365671, 51.4192588], [-0.9352665, 51.4195746], [-0.9340541, 51.4198321], [-0.932685, 51.42009], [-0.9315167, 51.42027], [-0.9308366, 51.4203526], [-0.9292522, 51.4205162], [-0.9272887, 51.4206427], [-0.9261188, 51.4206626], [-0.9248425, 51.4206595], [-0.9227451, 51.4206149], [-0.9200065, 51.4203823], [-0.9174143, 51.4201462], [-0.9154359, 51.4200617], [-0.9134833, 51.4200611], [-0.9120021, 51.4201438]]}}, {"type": "Feature", "properties": {"osm_id": "2954346", "highway": "motorway", "ref": "A329(M)", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Wokingham Borough Council", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.8001833, 51.4138346], [-0.801739, 51.4147045], [-0.8021813, 51.4149475], [-0.8030116, 51.4152983], [-0.8034797, 51.415485], [-0.8044455, 51.4158701]]}}, {"type": "Feature", "properties": {"osm_id": "2954353", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.0593118, 51.4364924], [-1.0584019, 51.4361375], [-1.057146, 51.4355716]]}}, {"type": "Feature", "properties": {"osm_id": "2954355", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3087348, 51.4528902], [-1.3077794, 51.4529759], [-1.3068865, 51.4530698], [-1.3053027, 51.4532673], [-1.3039819, 51.4534742], [-1.3021305, 51.4538262], [-1.3005873, 51.4541361], [-1.2980931, 51.4547836], [-1.2956016, 51.4555761], [-1.2933264, 51.4564562], [-1.2911142, 51.4574095], [-1.2894322, 51.4582252], [-1.2873583, 51.4594011], [-1.2846074, 51.4611434], [-1.282566, 51.4622661], [-1.2807287, 51.4631049], [-1.2785753, 51.4638736], [-1.2766947, 51.4643882], [-1.2745683, 51.4648197], [-1.2735014, 51.4649718], [-1.2719812, 51.4651946], [-1.2703003, 51.4653507], [-1.2680607, 51.4654089], [-1.2657942, 51.4653507], [-1.2636287, 51.4651098], [-1.2608589, 51.4646574], [-1.2566043, 51.4639126], [-1.2529892, 51.4634127], [-1.2489506, 51.463086], [-1.2449802, 51.462891], [-1.2401308, 51.4628375], [-1.2361597, 51.4628263], [-1.2311025, 51.4628735], [-1.2274667, 51.4630413], [-1.225889, 51.4631018]]}}, {"type": "Feature", "properties": {"osm_id": "2954357", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.225889, 51.4629365], [-1.2275137, 51.4628818], [-1.2311615, 51.4627306], [-1.2361986, 51.4626668], [-1.2402121, 51.4626651], [-1.2449373, 51.4627306], [-1.2489714, 51.4629063], [-1.2531179, 51.4632374], [-1.2567289, 51.4637095], [-1.2609685, 51.4644786], [-1.2637821, 51.4649246], [-1.265941, 51.4651654], [-1.2681546, 51.4652225], [-1.2703003, 51.4651404], [-1.2719975, 51.4650059], [-1.2732546, 51.4648522], [-1.2742466, 51.4646928], [-1.2766947, 51.4642011], [-1.2784854, 51.4637116], [-1.2806, 51.4629979], [-1.2824382, 51.4621348], [-1.2844941, 51.4610124], [-1.287202, 51.4593086], [-1.2893305, 51.4580985], [-1.2909485, 51.4573057], [-1.2931834, 51.4563199], [-1.2954413, 51.4554721], [-1.2979162, 51.4546907], [-1.2997127, 51.4542127], [-1.3003356, 51.4540521], [-1.3014461, 51.4538166], [-1.3026441, 51.4535814], [-1.3053546, 51.4531233], [-1.3072946, 51.4528844], [-1.3086786, 51.4527574]]}}, {"type": "Feature", "properties": {"osm_id": "2954358", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.5294466, 51.4718138], [-1.5252556, 51.4709212], [-1.5210141, 51.4699373], [-1.5189745, 51.4693694], [-1.5169928, 51.4687367], [-1.5150759, 51.4680097], [-1.5130924, 51.4671769], [-1.5103748, 51.4658886], [-1.5089725, 51.4650784], [-1.507994, 51.4645217], [-1.5070574, 51.4638992], [-1.5041432, 51.4619298], [-1.5010723, 51.460079], [-1.4994534, 51.4591873], [-1.496815, 51.4578668], [-1.4944287, 51.4568894], [-1.4923692, 51.456121], [-1.4891569, 51.4550423], [-1.483581, 51.4533868]]}}, {"type": "Feature", "properties": {"osm_id": "2954359", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lit": "yes", "name": "Burford Bridge Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3226965, 51.2545372], [-0.3226813, 51.2544891], [-0.3226892, 51.2544405], [-0.3227194, 51.2543953]]}}, {"type": "Feature", "properties": {"osm_id": "2954360", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3247523, 51.2450796], [-0.3246939, 51.2451998], [-0.3246134, 51.2454319]]}}, {"type": "Feature", "properties": {"osm_id": "2954361", "highway": "trunk", "ref": "A24", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "London Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3227649, 51.2543603], [-0.322796, 51.2542638], [-0.3228742, 51.254096], [-0.3229477, 51.2540225]]}}, {"type": "Feature", "properties": {"osm_id": "2954384", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4253578, 51.4476726], [-1.4286203, 51.4473174], [-1.4324627, 51.4470046], [-1.4357208, 51.4468481], [-1.4419566, 51.4467892], [-1.4449081, 51.4468476], [-1.4493434, 51.4470707], [-1.4559156, 51.4476449], [-1.4599543, 51.4481346], [-1.4632056, 51.4485945], [-1.4703708, 51.4498712], [-1.4759816, 51.4511144], [-1.4816154, 51.4526109]]}}, {"type": "Feature", "properties": {"osm_id": "2954385", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7173159, 51.5261693], [-1.7138308, 51.5258645], [-1.7097822, 51.525633], [-1.7056017, 51.5256235], [-1.7017107, 51.5258141], [-1.6972566, 51.526158], [-1.6921849, 51.5268442], [-1.6900597, 51.5270753], [-1.6882782, 51.5271595], [-1.6858352, 51.5272088], [-1.6823904, 51.5270167], [-1.6789889, 51.5265674], [-1.6754977, 51.5257668], [-1.6723528, 51.5247082], [-1.6696107, 51.5235402], [-1.6649871, 51.5211225], [-1.6600361, 51.5189995], [-1.6556641, 51.5175914], [-1.6525809, 51.5167673]]}}, {"type": "Feature", "properties": {"osm_id": "2954386", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.112858, 51.5151917], [-2.1108032, 51.5151469], [-2.1046588, 51.5148637], [-2.1005016, 51.5146068], [-2.0961012, 51.5144424], [-2.0935523, 51.5144108], [-2.0907574, 51.514404], [-2.0882638, 51.5144471], [-2.0832467, 51.5146619], [-2.0812026, 51.5147874], [-2.0786931, 51.5149835], [-2.0750491, 51.5153396], [-2.0724132, 51.5156455]]}}, {"type": "Feature", "properties": {"osm_id": "2954387", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9106077, 51.5589606], [-1.9108068, 51.5589164], [-1.9117262, 51.5587216], [-1.9125279, 51.5585019], [-1.913211, 51.5582835], [-1.9144859, 51.5578037], [-1.915396, 51.5573964], [-1.9169409, 51.5566181], [-1.9187527, 51.555561], [-1.9208253, 51.5545039], [-1.9231374, 51.5534016], [-1.9251335, 51.5525224], [-1.9268281, 51.5518698], [-1.9286037, 51.551233], [-1.9304441, 51.5505943]]}}, {"type": "Feature", "properties": {"osm_id": "2954388", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.7179519, 51.5260515], [-1.7203928, 51.5262911], [-1.7225253, 51.5265146], [-1.7247941, 51.5267569]]}}, {"type": "Feature", "properties": {"osm_id": "2954389", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.8565318, 51.5462966], [-1.855078, 51.5458055], [-1.8539437, 51.5454481], [-1.852541, 51.5450388], [-1.8512552, 51.5446898], [-1.8493906, 51.5442254], [-1.8478403, 51.5438785], [-1.8459702, 51.543504], [-1.8424438, 51.5429345], [-1.8393974, 51.542454], [-1.8387284, 51.5423308]]}}, {"type": "Feature", "properties": {"osm_id": "2954392", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3383386, 51.5019084], [-2.3368835, 51.5019915], [-2.3357111, 51.5020778], [-2.3345524, 51.5021824], [-2.3334015, 51.5023005], [-2.332048, 51.5024646], [-2.3302294, 51.5027136], [-2.3281934, 51.5030425], [-2.3261757, 51.5034178], [-2.3242942, 51.5038141], [-2.3223765, 51.5042729], [-2.320421, 51.5048072], [-2.315837, 51.5061865], [-2.313999, 51.5067093], [-2.3121707, 51.5071885], [-2.3080106, 51.5080158], [-2.3020681, 51.5089459], [-2.2979307, 51.5097546], [-2.2952654, 51.5104699], [-2.2927115, 51.5112365], [-2.2887664, 51.5126204], [-2.2870597, 51.5133355], [-2.2853135, 51.5141294], [-2.2835802, 51.5149727], [-2.2819138, 51.5157266], [-2.2807703, 51.5161837], [-2.2795379, 51.5166286], [-2.2773564, 51.5173032], [-2.2760688, 51.5176485], [-2.2748597, 51.5179344], [-2.2737931, 51.5181432], [-2.2725804, 51.5183636], [-2.2711675, 51.518569], [-2.2699822, 51.5187065], [-2.268742, 51.5188266], [-2.2680924, 51.5188794], [-2.2675482, 51.5189074], [-2.2663403, 51.5189536], [-2.2655689, 51.5189723], [-2.2648019, 51.5189749], [-2.2641985, 51.518967], [-2.2636491, 51.5189519], [-2.2631204, 51.518941], [-2.2625034, 51.5189116], [-2.2617704, 51.5188708], [-2.2610475, 51.5188183], [-2.2601175, 51.5187255], [-2.2591923, 51.5186172], [-2.2579744, 51.5184646], [-2.257228, 51.518347], [-2.2565189, 51.5182252], [-2.255145, 51.5179621], [-2.2523033, 51.5173808], [-2.2486039, 51.5166552], [-2.2453218, 51.5160387], [-2.2413021, 51.5153183]]}}, {"type": "Feature", "properties": {"osm_id": "2954393", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3381002, 51.5017805], [-2.3396129, 51.501701], [-2.3410896, 51.5016489], [-2.3434657, 51.5016373], [-2.3452523, 51.5016569], [-2.3475246, 51.5017485], [-2.3497363, 51.5018235], [-2.3501866, 51.5018357], [-2.350923, 51.5018405], [-2.3518982, 51.5018306], [-2.3525986, 51.501822], [-2.3534407, 51.5017817], [-2.3555566, 51.5016752], [-2.3573256, 51.5015226], [-2.3588853, 51.5013239], [-2.361053, 51.5009932], [-2.36251, 51.5007163], [-2.3643126, 51.500339]]}}, {"type": "Feature", "properties": {"osm_id": "2954394", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3618859, 51.501008], [-2.360425, 51.5012544], [-2.358955, 51.5014683], [-2.3573505, 51.5016723], [-2.3556359, 51.5018152], [-2.353455, 51.501942]]}}, {"type": "Feature", "properties": {"osm_id": "2954395", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3643126, 51.500339], [-2.3658161, 51.5000355], [-2.3680195, 51.4995971], [-2.370242, 51.4992222], [-2.3723807, 51.4989024], [-2.3745309, 51.498637], [-2.3766557, 51.4984122], [-2.3787309, 51.4982294], [-2.3806535, 51.4981033], [-2.3829723, 51.4979761], [-2.3852246, 51.4979044], [-2.3924502, 51.4978813], [-2.3982456, 51.4978573], [-2.3989097, 51.4978539], [-2.4026096, 51.4978503], [-2.4079907, 51.4978317], [-2.413373, 51.4978328], [-2.4231024, 51.4978026], [-2.4305303, 51.4977706], [-2.4355359, 51.4978106], [-2.4383606, 51.4979137], [-2.4429714, 51.4982425], [-2.446959, 51.4986963], [-2.4483694, 51.4988851], [-2.4493913, 51.4990309]]}}, {"type": "Feature", "properties": {"osm_id": "2954396", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5105778, 51.5062565], [-2.5096406, 51.505907], [-2.5086025, 51.5055893], [-2.507793, 51.5053818], [-2.5069073, 51.5051981], [-2.5058406, 51.5050112], [-2.5050134, 51.5049155], [-2.5039118, 51.5048225], [-2.5030162, 51.5047841], [-2.5020637, 51.5047864], [-2.5011274, 51.5048205], [-2.5003378, 51.5048831], [-2.4994584, 51.5049615], [-2.4982286, 51.5051309], [-2.4972326, 51.505289], [-2.4943662, 51.5057819], [-2.4934838, 51.5059415], [-2.4927387, 51.5060571], [-2.491478, 51.5062326], [-2.490464, 51.5063401], [-2.489158, 51.5064536], [-2.4885645, 51.5064838], [-2.4873437, 51.5065218], [-2.4861013, 51.5065394], [-2.4838813, 51.506487], [-2.4819973, 51.5063472], [-2.4798671, 51.5060879], [-2.4792778, 51.5059902], [-2.4786398, 51.5058846], [-2.4784029, 51.5058453], [-2.4770842, 51.5055792], [-2.4695312, 51.5037355], [-2.4620371, 51.5018463], [-2.4606611, 51.5015047]]}}, {"type": "Feature", "properties": {"osm_id": "2954397", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5184704, 51.5134099], [-2.5185759, 51.5135717], [-2.5194904, 51.5149748], [-2.5200493, 51.5157761], [-2.5210022, 51.517084], [-2.5215855, 51.5178695]]}}, {"type": "Feature", "properties": {"osm_id": "2954398", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5463153, 51.5444586], [-2.5460047, 51.5441137], [-2.5448602, 51.5428699], [-2.5425145, 51.5404244]]}}, {"type": "Feature", "properties": {"osm_id": "2954399", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "2", "bridge": "viaduct", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "maxspeed_variable": "yes", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.5522627, 51.551067], [-2.5528736, 51.5518336]]}}, {"type": "Feature", "properties": {"osm_id": "2954400", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5601453, 51.5601412], [-2.5610442, 51.5607966], [-2.5623087, 51.5616113], [-2.5639999, 51.5625574], [-2.5689257, 51.5651475], [-2.5717246, 51.5666152], [-2.5743708, 51.5680028], [-2.5760285, 51.5688581]]}}, {"type": "Feature", "properties": {"osm_id": "2954401", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5760285, 51.5688581], [-2.5797045, 51.570782], [-2.5804071, 51.5711497], [-2.5825821, 51.5722413], [-2.5839806, 51.5728711], [-2.5854367, 51.5734403], [-2.5876156, 51.5741613], [-2.5882107, 51.5743468], [-2.5894381, 51.5746847], [-2.5913821, 51.5751273], [-2.5932452, 51.5754777], [-2.5955282, 51.5757833], [-2.5970143, 51.5759305], [-2.5988904, 51.5760415], [-2.6017511, 51.5760752], [-2.6049095, 51.5759595], [-2.6067433, 51.5758363], [-2.6087112, 51.5756649], [-2.610324, 51.5754906], [-2.6117224, 51.5753168], [-2.6147948, 51.5748514], [-2.6183647, 51.5741642], [-2.6205273, 51.5736751], [-2.6224479, 51.5731855], [-2.6239436, 51.5727654], [-2.6255258, 51.572281], [-2.6286988, 51.5712339], [-2.6301048, 51.5707959], [-2.6316035, 51.5703965], [-2.6332555, 51.5700211], [-2.634772, 51.5697326], [-2.6362291, 51.5694997], [-2.6375135, 51.5693371], [-2.6385955, 51.5692222], [-2.6403678, 51.5691003], [-2.6416663, 51.5690421], [-2.6429136, 51.5690026], [-2.6445566, 51.5690193], [-2.6506651, 51.5691547]]}}, {"type": "Feature", "properties": {"osm_id": "2954402", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6506651, 51.5691547], [-2.6541407, 51.5692363], [-2.6579834, 51.5693115]]}}, {"type": "Feature", "properties": {"osm_id": "2954403", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Prince of Wales Bridge", "operator": "Severn River Crossing Plc", "highways_england_area": "2", "bicycle": "no", "layer": "1", "bridge": "yes", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.664082, 51.5694421], [-2.6652521, 51.5694737], [-2.6661214, 51.5694701]]}}, {"type": "Feature", "properties": {"osm_id": "2954405", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Prince of Wales Bridge", "operator": "Severn River Crossing Plc", "bicycle": "no", "surface": "asphalt", "layer": "1", "bridge": "yes", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.7345964, 51.582184], [-2.7337617, 51.5821186], [-2.7327942, 51.582024], [-2.7313818, 51.5818599], [-2.7300715, 51.5816754], [-2.7287934, 51.5814716], [-2.7277022, 51.5812743], [-2.726684, 51.5810714], [-2.7260193, 51.5809329], [-2.725197, 51.5807532], [-2.7228066, 51.5801594], [-2.7216936, 51.5798776], [-2.7203332, 51.5795266], [-2.7189889, 51.5791798], [-2.7179022, 51.5789065], [-2.7165147, 51.5785501], [-2.7138477, 51.5778609], [-2.7112822, 51.5772112], [-2.7088818, 51.5765886], [-2.7069922, 51.5760605], [-2.7046181, 51.5754465], [-2.7020433, 51.5747955], [-2.6999204, 51.5742454], [-2.6977929, 51.5736976], [-2.6956791, 51.5731558], [-2.6929575, 51.5724666], [-2.6907876, 51.5719584], [-2.6890722, 51.5716015], [-2.6866008, 51.5711492], [-2.6839964, 51.5707283], [-2.6831996, 51.5706086], [-2.6818969, 51.5704496], [-2.6796689, 51.5701879], [-2.6783507, 51.5700637], [-2.6763734, 51.5698988], [-2.6735391, 51.5697548], [-2.6717839, 51.5696959], [-2.6656155, 51.5695713]]}}, {"type": "Feature", "properties": {"osm_id": "2954406", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6506206, 51.569258], [-2.6478609, 51.5692019], [-2.6445084, 51.5691319], [-2.6429258, 51.569124], [-2.6416387, 51.5691619], [-2.6403603, 51.5692246], [-2.6386179, 51.5693429], [-2.6375549, 51.5694485], [-2.6363006, 51.569613], [-2.6347714, 51.569858], [-2.6333182, 51.5701345], [-2.6316708, 51.570509], [-2.6301509, 51.5709096], [-2.6287447, 51.5713543], [-2.625535, 51.572396], [-2.6240073, 51.5728622], [-2.6224848, 51.5732906], [-2.6205599, 51.573776], [-2.6183273, 51.5742839], [-2.6150643, 51.5749158], [-2.6117739, 51.5754157], [-2.610314, 51.5755979], [-2.6087561, 51.5757613], [-2.6067663, 51.5759421], [-2.6048963, 51.5760684], [-2.6018009, 51.5761926], [-2.5988929, 51.5761603], [-2.5970081, 51.5760491], [-2.5954201, 51.5758973], [-2.5931926, 51.5755901], [-2.5913132, 51.5752433], [-2.589817, 51.5749113], [-2.5884647, 51.574556], [-2.5871575, 51.5741649], [-2.5869957, 51.5741165], [-2.586384, 51.5739074], [-2.5855199, 51.5736119], [-2.5839427, 51.5729941], [-2.5824413, 51.5723239], [-2.5792806, 51.5707431]]}}, {"type": "Feature", "properties": {"osm_id": "2954408", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "2", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "2", "bridge": "viaduct", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "maxspeed_variable": "yes", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.5526027, 51.5517586], [-2.5519793, 51.5509873]]}}, {"type": "Feature", "properties": {"osm_id": "2954409", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8344408, 51.586243], [-2.8336514, 51.5861632]]}}, {"type": "Feature", "properties": {"osm_id": "2954410", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8145713, 51.5872995], [-2.815952, 51.587219], [-2.8173861, 51.5870986], [-2.8180742, 51.5870359], [-2.8200195, 51.5868163], [-2.8255433, 51.5861007], [-2.8268773, 51.5859885], [-2.8282095, 51.585913], [-2.8294056, 51.5858897], [-2.8306202, 51.5859017], [-2.8317197, 51.5859377], [-2.8325346, 51.5859735]]}}, {"type": "Feature", "properties": {"osm_id": "2954411", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8336317, 51.5860543], [-2.8346522, 51.5861585], [-2.8357172, 51.5862915], [-2.8369201, 51.5864813], [-2.8382809, 51.5867417], [-2.8406196, 51.5873385], [-2.8454885, 51.588993]]}}, {"type": "Feature", "properties": {"osm_id": "2954412", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8454885, 51.588993], [-2.8461576, 51.589232], [-2.8544707, 51.5920806], [-2.8574484, 51.592978], [-2.8635521, 51.5946159]]}}, {"type": "Feature", "properties": {"osm_id": "2954413", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9177935, 51.6015924], [-2.9166912, 51.6015741], [-2.9155324, 51.6015941], [-2.9140894, 51.601634], [-2.9116579, 51.6018233], [-2.9087839, 51.6021922]]}}, {"type": "Feature", "properties": {"osm_id": "2954414", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8434458, 51.5884491], [-2.8406055, 51.5874655], [-2.83817, 51.5868546], [-2.8360615, 51.5864566], [-2.8351698, 51.5863267], [-2.8344408, 51.586243]]}}, {"type": "Feature", "properties": {"osm_id": "2954415", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "maxspeed_type": "GB:national_dual", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0607296, 51.5528349], [-3.0604993, 51.552891], [-3.0602919, 51.5529416], [-3.0589615, 51.5532618], [-3.0571934, 51.5537262], [-3.0553996, 51.5542652], [-3.0533053, 51.5549643], [-3.0515462, 51.5556081], [-3.0511262, 51.5557867]]}}, {"type": "Feature", "properties": {"osm_id": "2954417", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0348756, 51.5683994], [-3.0344677, 51.5691595], [-3.0341936, 51.5697359], [-3.0339474, 51.5703171], [-3.0336653, 51.5710875], [-3.0333046, 51.5722539], [-3.0331807, 51.5727544]]}}, {"type": "Feature", "properties": {"osm_id": "2954418", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0356857, 51.5813255], [-3.0357857, 51.5815396], [-3.0358724, 51.5817679], [-3.03598, 51.5821732], [-3.0360181, 51.5825549], [-3.036007, 51.5829092], [-3.0359608, 51.5831944], [-3.0358884, 51.5834589], [-3.0357078, 51.5838982], [-3.0355118, 51.5842384], [-3.035146, 51.5847805], [-3.0347426, 51.585316]]}}, {"type": "Feature", "properties": {"osm_id": "2954419", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0347426, 51.585316], [-3.0344909, 51.5856526], [-3.0314435, 51.5897198]]}}, {"type": "Feature", "properties": {"osm_id": "2954420", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "bridge": "yes", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-3.0120011, 51.5980858], [-3.0091073, 51.5990453], [-3.00832, 51.5993553], [-3.0078133, 51.5995814]]}}, {"type": "Feature", "properties": {"osm_id": "2954422", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9889307, 51.6046734], [-2.9872715, 51.6049011], [-2.9869182, 51.6049285]]}}, {"type": "Feature", "properties": {"osm_id": "2954423", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9723899, 51.6009852], [-2.9720264, 51.600898], [-2.9716042, 51.600799], [-2.9706874, 51.6005336], [-2.970058, 51.6003269], [-2.9695061, 51.6001106], [-2.9688495, 51.5998315], [-2.9682912, 51.5995658], [-2.9678944, 51.5993625], [-2.9675491, 51.5991776], [-2.9672149, 51.5990011], [-2.9669437, 51.5988343], [-2.9666787, 51.598663], [-2.966179, 51.5983016], [-2.9658314, 51.5980221], [-2.9654072, 51.5976588], [-2.9639907, 51.5961964], [-2.9636691, 51.5958945], [-2.9633456, 51.5956204], [-2.9630533, 51.5954092], [-2.9627024, 51.59521], [-2.9622486, 51.5949609], [-2.9616392, 51.5946783], [-2.9609008, 51.5944369], [-2.9603402, 51.5943171], [-2.9599041, 51.5942391], [-2.9593913, 51.5941695], [-2.9588961, 51.5941252], [-2.9583078, 51.5941074], [-2.9578333, 51.5941174], [-2.9572817, 51.5941585], [-2.9567871, 51.5942178], [-2.9562307, 51.5943237], [-2.9556188, 51.5944547], [-2.9550894, 51.5945915], [-2.9539369, 51.5948828], [-2.9533918, 51.5950154], [-2.9528711, 51.5951151], [-2.952261, 51.5952075], [-2.9516209, 51.5952656], [-2.9500273, 51.5953921], [-2.9494829, 51.5954436], [-2.9488283, 51.5955294], [-2.9483588, 51.5956066], [-2.9479739, 51.5956917], [-2.9476145, 51.5957917], [-2.9471894, 51.595926], [-2.9465028, 51.5961819], [-2.9404471, 51.5986582], [-2.940138, 51.5987648], [-2.9393362, 51.5989727]]}}, {"type": "Feature", "properties": {"osm_id": "2954424", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9318644, 51.601001], [-2.9297669, 51.6015324], [-2.9287015, 51.6017586], [-2.9280128, 51.6018689], [-2.9271707, 51.6019623]]}}, {"type": "Feature", "properties": {"osm_id": "2954425", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9180108, 51.6014924], [-2.9223278, 51.6017285]]}}, {"type": "Feature", "properties": {"osm_id": "2954428", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "operator": "Welsh Government", "carriageway_ref": "A", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9841289, 51.6046203], [-2.9842151, 51.6046365]]}}, {"type": "Feature", "properties": {"osm_id": "2954429", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0007065, 51.6027316], [-3.0012131, 51.6026074], [-3.0014564, 51.6025333], [-3.0017525, 51.6024381]]}}, {"type": "Feature", "properties": {"osm_id": "2954430", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "bridge": "yes", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-3.0093424, 51.5988478], [-3.009863, 51.5986638], [-3.0114045, 51.5981355]]}}, {"type": "Feature", "properties": {"osm_id": "2954431", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0353848, 51.5840467], [-3.0354982, 51.5838497], [-3.035564, 51.5836972], [-3.0356383, 51.5835211], [-3.0357089, 51.5833017], [-3.0357715, 51.5830191], [-3.035796, 51.5827786], [-3.0357952, 51.582495], [-3.0357812, 51.5822881], [-3.0357337, 51.5820363], [-3.0356421, 51.5817446], [-3.0355576, 51.5815324], [-3.0354433, 51.5813168], [-3.0352948, 51.5810574], [-3.0351601, 51.5808703], [-3.0349197, 51.5805807], [-3.034673, 51.5803408], [-3.0345099, 51.5801869], [-3.0332855, 51.5790918], [-3.0328831, 51.5786814], [-3.0326486, 51.578397], [-3.0325003, 51.5781584], [-3.032317, 51.5778206], [-3.0322246, 51.577578], [-3.0321355, 51.5772512], [-3.0320793, 51.5765911], [-3.0321571, 51.5758762], [-3.0322841, 51.5753914], [-3.0324795, 51.5746301], [-3.0326462, 51.5739992]]}}, {"type": "Feature", "properties": {"osm_id": "2954432", "highway": "motorway", "ref": "M4", "maxspeed": "signals", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.0331347, 51.57212], [-3.0334961, 51.570957], [-3.0336601, 51.5705072], [-3.034035, 51.569591], [-3.034255, 51.5691442], [-3.0347469, 51.5682218]]}}, {"type": "Feature", "properties": {"osm_id": "2954433", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.037926, 51.5639777], [-3.0382516, 51.5636424], [-3.0387237, 51.5631723], [-3.0393605, 51.5625924], [-3.0397835, 51.5622029], [-3.0401317, 51.5619126], [-3.0406027, 51.5615278], [-3.0412233, 51.561045], [-3.0420898, 51.5604144], [-3.043218, 51.5596568], [-3.0435797, 51.5594271], [-3.0448243, 51.558673], [-3.0463401, 51.5578278], [-3.0494963, 51.556315], [-3.0508868, 51.5557234]]}}, {"type": "Feature", "properties": {"osm_id": "2954443", "highway": "trunk", "ref": "A405", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3538914, 51.7262289], [-0.3537405, 51.726328], [-0.353663, 51.7264086], [-0.3528018, 51.7274469], [-0.3523194, 51.7279532], [-0.3517218, 51.7284729], [-0.3510351, 51.7289924], [-0.3503663, 51.7294437], [-0.3499549, 51.7297017], [-0.3494457, 51.7299947], [-0.3488988, 51.7302913], [-0.348471, 51.7305003], [-0.3478111, 51.7308164], [-0.3470833, 51.7311816], [-0.3463993, 51.7315718], [-0.3456916, 51.7320142], [-0.3452657, 51.7322852], [-0.3451462, 51.7324611]]}}, {"type": "Feature", "properties": {"osm_id": "2954444", "highway": "trunk", "ref": "A414", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital", "source_maxspeed": "UK:nsl_dual", "layer": "1", "bridge": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.3324201, 51.7297709], [-0.3321362, 51.7296918]]}}, {"type": "Feature", "properties": {"osm_id": "2954564", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "maxspeed_type": "GB:national_dual", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.1346442, 51.5426994], [-3.1329839, 51.5423447], [-3.1312588, 51.5420159], [-3.1296341, 51.5417705], [-3.128594, 51.5416555], [-3.1275425, 51.5415221], [-3.1255948, 51.5413901], [-3.1228218, 51.5413317], [-3.1218176, 51.5413477], [-3.1213112, 51.5413531], [-3.1208903, 51.5413721], [-3.1199944, 51.5414204]]}}, {"type": "Feature", "properties": {"osm_id": "2954565", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.134645, 51.5425169], [-3.1376545, 51.5431089], [-3.1398511, 51.5435211], [-3.1422302, 51.5439514], [-3.1444887, 51.5443251], [-3.1466371, 51.544652], [-3.1481257, 51.5448722], [-3.1502742, 51.5451558], [-3.1521303, 51.5453793], [-3.1532237, 51.5455003], [-3.154892, 51.5456871], [-3.1565764, 51.5458539], [-3.1577137, 51.5459556], [-3.1592452, 51.5460908], [-3.1607473, 51.5462092], [-3.1621661, 51.5463118], [-3.1639284, 51.5464169], [-3.1653902, 51.5464936]]}}, {"type": "Feature", "properties": {"osm_id": "2954567", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.2315001, 51.5306949], [-3.2331853, 51.5297854], [-3.2337063, 51.5294941], [-3.2341281, 51.5292711], [-3.2345815, 51.5290428], [-3.235421, 51.5286568]]}}, {"type": "Feature", "properties": {"osm_id": "2954568", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.2509288, 51.5258336], [-3.2500659, 51.5258748], [-3.2487372, 51.5259575], [-3.2471043, 51.5260647]]}}, {"type": "Feature", "properties": {"osm_id": "2954569", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "A", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.2508924, 51.5256946], [-3.2524867, 51.5255918]]}}, {"type": "Feature", "properties": {"osm_id": "2954577", "highway": "trunk", "ref": "A2", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Bricklayers Arms", "operator": "Transport for London", "sidewalk": "both", "junction": "circular", "cycleway_left": "lane", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0858512, 51.4948903], [-0.0857458, 51.4948785], [-0.0855694, 51.4948456]]}}, {"type": "Feature", "properties": {"osm_id": "2954579", "highway": "trunk", "ref": "A2", "maxspeed": "30 mph", "lit": "yes", "name": "Old Kent Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0526638, 51.4780023], [-0.0530977, 51.4781691], [-0.0534921, 51.4783208], [-0.053567, 51.4783486], [-0.0541546, 51.4785728]]}}, {"type": "Feature", "properties": {"osm_id": "2954595", "highway": "trunk", "ref": "A631", "maxspeed": "40 mph", "name": "Rotherham Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2325884, 53.4231108], [-1.2322968, 53.4230876], [-1.232087, 53.4230606], [-1.2317519, 53.4229962], [-1.2312075, 53.4228997], [-1.2303852, 53.4227435], [-1.2298922, 53.4226557], [-1.2295123, 53.4225929], [-1.2294832, 53.4225893], [-1.2289906, 53.4225279], [-1.2282616, 53.4224821], [-1.2267426, 53.422483], [-1.2263167, 53.4224695]]}}, {"type": "Feature", "properties": {"osm_id": "2954606", "highway": "trunk", "ref": "A631", "maxspeed": "30 mph", "name": "High Street", "source_ref": "http://www.flickr.com/photos/russ_osm/497875346/", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.206729, 53.4224425], [-1.206387, 53.4225208], [-1.2056046, 53.4226879]]}}, {"type": "Feature", "properties": {"osm_id": "2954616", "highway": "trunk", "ref": "A631", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Bawtry Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2456861, 53.4230082], [-1.2464884, 53.4230693], [-1.2469096, 53.423113], [-1.247257, 53.4231491], [-1.2486458, 53.4233036], [-1.2493096, 53.4233664], [-1.2496671, 53.423337], [-1.2497785, 53.4233154], [-1.2500508, 53.4232424]]}}, {"type": "Feature", "properties": {"osm_id": "2954617", "highway": "trunk", "ref": "A631", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Bawtry Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2499985, 53.4237822], [-1.2498069, 53.423635], [-1.2496924, 53.4235729], [-1.2494967, 53.4235013], [-1.2492169, 53.4234444], [-1.2475774, 53.423266], [-1.2464591, 53.423148], [-1.2462061, 53.4231196], [-1.2459452, 53.4231116], [-1.2457024, 53.4231491]]}}, {"type": "Feature", "properties": {"osm_id": "2954618", "highway": "trunk", "ref": "A631", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Bawtry Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2395428, 53.4228681], [-1.2414201, 53.4227508], [-1.2428802, 53.4227087], [-1.2435771, 53.4227503], [-1.2442579, 53.4228214], [-1.2448638, 53.4229548], [-1.2450584, 53.4230016], [-1.2452635, 53.4230135]]}}, {"type": "Feature", "properties": {"osm_id": "2954655", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-4.0644743, 51.7450191], [-4.0646862, 51.7450033], [-4.0648476, 51.744985], [-4.0649723, 51.7449567], [-4.0650925, 51.7449136], [-4.0651987, 51.7448548], [-4.0652848, 51.7447865], [-4.0653421, 51.7447202], [-4.0654242, 51.7446188], [-4.0656479, 51.7442477], [-4.0659342, 51.7437818]]}}, {"type": "Feature", "properties": {"osm_id": "2954656", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "0", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.9574997, 51.6755316], [-3.9609599, 51.6753852], [-3.9626741, 51.6752664], [-3.9631533, 51.6752287], [-3.9638619, 51.6751637], [-3.965097, 51.6750301]]}}, {"type": "Feature", "properties": {"osm_id": "2954657", "highway": "trunk", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Pont Abraham", "operator": "Welsh Government", "junction": "roundabout", "int_ref": "E 30", "turn_lanes": "left;through|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-4.0631358, 51.7453313], [-4.0631734, 51.745254], [-4.0632382, 51.7451834], [-4.0632999, 51.7451361], [-4.0633812, 51.7450822], [-4.0634863, 51.7450356], [-4.0635923, 51.7449933], [-4.0637177, 51.7449583]]}}, {"type": "Feature", "properties": {"osm_id": "2954691", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "0", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.9539085, 51.6757602], [-3.9548288, 51.6756649], [-3.9557342, 51.6756058], [-3.9574997, 51.6755316]]}}, {"type": "Feature", "properties": {"osm_id": "2954692", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "0", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.9539241, 51.675857], [-3.9526349, 51.67604], [-3.9517848, 51.6761824], [-3.9509297, 51.6763507], [-3.9499561, 51.6765625], [-3.9490358, 51.6767774]]}}, {"type": "Feature", "properties": {"osm_id": "2954701", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "UK:motorway", "layer": "1", "bridge": "yes", "foot": "no", "int_ref": "E 30", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-3.8448666, 51.6442431], [-3.8431907, 51.6424473]]}}, {"type": "Feature", "properties": {"osm_id": "2954702", "highway": "motorway", "ref": "M4", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "layer": "1", "foot": "no", "int_ref": "E 30", "z_order": 19}, "geometry": {"type": "LineString", "coordinates": [[-3.8381702, 51.6316739], [-3.8382416, 51.6317291], [-3.8383524, 51.6318142], [-3.8387982, 51.632195], [-3.8390888, 51.63248], [-3.8392939, 51.6327346], [-3.8396314, 51.6332307], [-3.8397902, 51.6335617], [-3.8398921, 51.6338214], [-3.8399619, 51.6341377], [-3.8400212, 51.6343934], [-3.8400417, 51.6346558], [-3.8400448, 51.6348699], [-3.8400295, 51.6351132], [-3.8399652, 51.6355061], [-3.839748, 51.6362901], [-3.8396869, 51.6366008], [-3.8396739, 51.6367573]]}}, {"type": "Feature", "properties": {"osm_id": "2954723", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.5962165, 51.5332615], [-3.5992952, 51.5331711], [-3.6009871, 51.53307], [-3.6025686, 51.5329568], [-3.6047572, 51.5327578], [-3.6066917, 51.5325502], [-3.6085134, 51.5323126], [-3.6101772, 51.5320663], [-3.6128207, 51.5316188], [-3.6138456, 51.5314299], [-3.6160665, 51.5309771], [-3.6178046, 51.5305686], [-3.6197143, 51.5300964], [-3.6217678, 51.5295367]]}}, {"type": "Feature", "properties": {"osm_id": "2954724", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "foot": "no", "int_ref": "E 30", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.6921218, 51.5164322], [-3.6815326, 51.5158828], [-3.6764688, 51.5155929], [-3.6745037, 51.51554], [-3.6729288, 51.5155304], [-3.6712873, 51.5155631], [-3.6698711, 51.5156112], [-3.6685814, 51.5156869], [-3.6658236, 51.5159053], [-3.6648613, 51.5160101], [-3.6623153, 51.5163259], [-3.6608379, 51.5165796], [-3.6587458, 51.5169592], [-3.6574208, 51.5172499], [-3.6558812, 51.5176195], [-3.6543438, 51.518009]]}}, {"type": "Feature", "properties": {"osm_id": "2954727", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "layer": "1", "bridge": "yes", "foot": "no", "int_ref": "E 30", "horse": "no", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-3.6952276, 51.5166062], [-3.6946122, 51.5165686]]}}, {"type": "Feature", "properties": {"osm_id": "2954728", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "layer": "1", "bridge": "yes", "foot": "no", "int_ref": "E 30", "horse": "no", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-3.6921179, 51.5162996], [-3.6928436, 51.5163394]]}}, {"type": "Feature", "properties": {"osm_id": "2954729", "highway": "motorway", "ref": "M4", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Welsh Government", "bicycle": "no", "surface": "asphalt", "foot": "no", "int_ref": "E 30", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-3.6952452, 51.5164692], [-3.7002262, 51.5167262], [-3.7039371, 51.5169735]]}}, {"type": "Feature", "properties": {"osm_id": "2954900", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4237517, 51.7560355], [-0.4238368, 51.7560725], [-0.4239035, 51.7561187], [-0.4239607, 51.7561752], [-0.4240023, 51.7562697], [-0.423989, 51.7563786], [-0.423942, 51.7564505], [-0.4238347, 51.7565317], [-0.4237339, 51.7565733], [-0.4235777, 51.7566029], [-0.4234719, 51.7566044], [-0.4233733, 51.7565929], [-0.4231942, 51.7565373], [-0.4231724, 51.75652], [-0.4231231, 51.7564856], [-0.4230855, 51.7564523], [-0.423047, 51.7563956], [-0.4230252, 51.7563318], [-0.4230365, 51.7562301], [-0.4230788, 51.7561605], [-0.4231456, 51.7561004], [-0.4232625, 51.7560404], [-0.4234584, 51.7559995], [-0.4236708, 51.7560134], [-0.4237517, 51.7560355]]}}, {"type": "Feature", "properties": {"osm_id": "2954966", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4363881, 51.753569], [-0.4364612, 51.7535937], [-0.4365292, 51.7536311], [-0.4365986, 51.7537013], [-0.4366196, 51.7537479], [-0.4366237, 51.7538093], [-0.436606, 51.7538623], [-0.4365856, 51.753893], [-0.4365617, 51.7539188], [-0.4364655, 51.7539807], [-0.4363734, 51.7540108], [-0.4362885, 51.7540233], [-0.4362014, 51.7540237], [-0.43611, 51.7540104], [-0.4360476, 51.7539921], [-0.4359619, 51.7539366], [-0.4358839, 51.7538628], [-0.4358626, 51.7538305], [-0.4358477, 51.7537771], [-0.435863, 51.7537259], [-0.4359361, 51.753646], [-0.436033, 51.7535898], [-0.4361341, 51.7535609], [-0.4362206, 51.7535515], [-0.4363132, 51.7535552], [-0.4363881, 51.753569]]}}, {"type": "Feature", "properties": {"osm_id": "2954967", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4516721, 51.7494928], [-0.4516931, 51.749564], [-0.4516787, 51.7496322], [-0.4516175, 51.7497163], [-0.4515302, 51.7497834], [-0.4514226, 51.7498203], [-0.4513348, 51.7498379], [-0.4512444, 51.7498448], [-0.4511293, 51.7498341], [-0.4510462, 51.7498139], [-0.4509619, 51.7497793], [-0.4508888, 51.7497278], [-0.4508332, 51.749659], [-0.4508188, 51.7496347], [-0.4507948, 51.7495892], [-0.4507925, 51.7495514], [-0.450806, 51.7494982], [-0.4508462, 51.7494273], [-0.4509491, 51.7493452], [-0.4510958, 51.7492996], [-0.4511492, 51.7492883], [-0.4511997, 51.7492818], [-0.451251, 51.7492821], [-0.4513514, 51.7492887], [-0.4514443, 51.7493105], [-0.4515179, 51.7493363], [-0.4515719, 51.7493696], [-0.4516126, 51.7494049], [-0.451649, 51.7494431], [-0.4516721, 51.7494928]]}}, {"type": "Feature", "properties": {"osm_id": "2954968", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4559495, 51.7496881], [-0.4559981, 51.7497598], [-0.4560048, 51.7498343], [-0.4559662, 51.7499127], [-0.45589, 51.7499743], [-0.4558298, 51.750002], [-0.4557535, 51.7500231], [-0.4556305, 51.7500333], [-0.455547, 51.7500245], [-0.4554911, 51.7500122], [-0.455388, 51.7499672], [-0.4553289, 51.7499186], [-0.4552925, 51.7498603], [-0.4552855, 51.7497828], [-0.4552985, 51.7497443], [-0.4553549, 51.7496753], [-0.455442, 51.7496237], [-0.4555557, 51.7495921], [-0.4556307, 51.7495854], [-0.4557652, 51.7495979], [-0.4558548, 51.7496267], [-0.4559072, 51.7496548], [-0.4559495, 51.7496881]]}}, {"type": "Feature", "properties": {"osm_id": "2955303", "highway": "trunk", "ref": "A631", "lit": "yes", "name": "Bawtry Road", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2457024, 53.4231491], [-1.2456543, 53.4231907], [-1.2455417, 53.4232299], [-1.2453471, 53.4232128], [-1.2452497, 53.4231449], [-1.2452343, 53.4230607], [-1.2452635, 53.4230135], [-1.2453516, 53.4229606], [-1.2455028, 53.4229408], [-1.2456861, 53.4230082], [-1.2457245, 53.4230778], [-1.2457024, 53.4231491]]}}, {"type": "Feature", "properties": {"osm_id": "2955991", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "oneway": "yes", "lit": "no", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.0515292, 55.9245732], [-3.0514273, 55.9245855], [-3.0506389, 55.9246965], [-3.0501566, 55.924776], [-3.0496396, 55.924871], [-3.0488483, 55.9250333], [-3.0479929, 55.9252173], [-3.0474112, 55.9253368]]}}, {"type": "Feature", "properties": {"osm_id": "2956009", "highway": "trunk", "ref": "A205", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Catford Hill", "operator": "Transport for London", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0268264, 51.4433485], [-0.0265702, 51.4435308], [-0.0265516, 51.443544]]}}, {"type": "Feature", "properties": {"osm_id": "2956011", "highway": "trunk", "ref": "A205", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Stanstead Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0472685, 51.4422884], [-0.0471685, 51.4423088], [-0.0466875, 51.4422986], [-0.0464903, 51.4422944], [-0.0459504, 51.442283]]}}, {"type": "Feature", "properties": {"osm_id": "2956090", "highway": "trunk", "ref": "A205", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Brownhill Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0172529, 51.4458992], [-0.0158353, 51.4457058], [-0.0144987, 51.4455158], [-0.0137998, 51.445424], [-0.0131496, 51.4453386], [-0.0118908, 51.445187], [-0.0110762, 51.4451123], [-0.0091133, 51.4450916], [-0.0089727, 51.4450901], [-0.0087976, 51.4450869], [-0.0071437, 51.4450754], [-0.0062975, 51.4450779], [-0.0056353, 51.4450798], [-0.0053143, 51.4450755], [-0.0038456, 51.4450653], [-0.0031678, 51.4450629], [-0.0021616, 51.4450756], [-0.0010121, 51.4451071], [7.56e-05, 51.4451322], [0.0001435, 51.4451356], [0.0012206, 51.4451574], [0.0012719, 51.4451585], [0.0023898, 51.4451794], [0.0035605, 51.4452075], [0.0044587, 51.4452452]]}}, {"type": "Feature", "properties": {"osm_id": "2956243", "highway": "trunk", "ref": "A54", "maxspeed": "70 mph", "oneway": "yes", "name": "Chester Road", "bicycle": "yes", "sidewalk": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6992137, 53.2137031], [-2.7011705, 53.21462], [-2.7018928, 53.2148455], [-2.7022565, 53.2149315], [-2.7026494, 53.2150053], [-2.7033444, 53.2150803], [-2.7040775, 53.2151038], [-2.7049232, 53.2150482], [-2.7055267, 53.2149606], [-2.7061398, 53.214815], [-2.7069077, 53.2146028], [-2.7078894, 53.2142289], [-2.7088732, 53.213867], [-2.7095138, 53.213663], [-2.7101355, 53.2134879], [-2.7108184, 53.2133373], [-2.7117921, 53.2131696], [-2.7125182, 53.2130894], [-2.7134182, 53.2130429], [-2.7141658, 53.2130438], [-2.7155214, 53.213084], [-2.7177087, 53.2131977]]}}, {"type": "Feature", "properties": {"osm_id": "2956249", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.395096, 53.4079598], [-1.3948342, 53.4077495], [-1.3937174, 53.4069228], [-1.3928706, 53.4063627], [-1.3921244, 53.4059215], [-1.3912696, 53.4054618], [-1.3900554, 53.4048508], [-1.3887918, 53.4042832], [-1.3871197, 53.4035919], [-1.3845909, 53.4025386], [-1.3816904, 53.4013773], [-1.3786935, 53.4001207], [-1.3774578, 53.3996078]]}}, {"type": "Feature", "properties": {"osm_id": "2956250", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3552274, 53.3973922], [-1.3573556, 53.3969132], [-1.3579893, 53.3968102], [-1.3586129, 53.3967149], [-1.3591406, 53.3966508], [-1.3596813, 53.3965925]]}}, {"type": "Feature", "properties": {"osm_id": "2956253", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4152825, 53.4259209], [-1.4148255, 53.4253504], [-1.4143064, 53.4248276], [-1.4138487, 53.4244049], [-1.4133401, 53.4239679]]}}, {"type": "Feature", "properties": {"osm_id": "2956254", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3955395, 53.4080925], [-1.3980039, 53.4101682], [-1.4000665, 53.4118341], [-1.4006243, 53.412292]]}}, {"type": "Feature", "properties": {"osm_id": "2956264", "highway": "motorway", "ref": "M53", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.8917774, 53.285855], [-2.8910997, 53.2855425]]}}, {"type": "Feature", "properties": {"osm_id": "2956266", "highway": "motorway", "ref": "M53", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "layer": "1", "bridge": "yes", "carriageway_ref": "B", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.8918338, 53.285749], [-2.8921568, 53.2858969]]}}, {"type": "Feature", "properties": {"osm_id": "2956349", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1091103, 55.8990469], [-3.1098244, 55.8989873], [-3.1110925, 55.8988557], [-3.1119304, 55.8987581], [-3.1130927, 55.8986012], [-3.1141231, 55.8984502], [-3.1150761, 55.8982904], [-3.1158814, 55.8981443], [-3.1167026, 55.8979818], [-3.1175013, 55.8978176], [-3.1193236, 55.8974042], [-3.1203771, 55.897136], [-3.1221517, 55.8966406], [-3.1231256, 55.8963409], [-3.1238722, 55.8960898], [-3.1246451, 55.8958254], [-3.125409, 55.8955587], [-3.1271106, 55.894955], [-3.1288845, 55.894327], [-3.1303282, 55.8938211], [-3.131152, 55.893531], [-3.1328523, 55.8929267]]}}, {"type": "Feature", "properties": {"osm_id": "2956350", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "motor_vehicle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1329636, 55.8930132], [-3.1312666, 55.8936146], [-3.1304093, 55.893916], [-3.1290148, 55.8944108], [-3.1272322, 55.8950427], [-3.1239001, 55.8962086], [-3.1226479, 55.8966122], [-3.1212578, 55.8970143], [-3.1201147, 55.8973212], [-3.1195533, 55.8974678], [-3.1184624, 55.8977183], [-3.117943, 55.8978346], [-3.1171323, 55.8980058], [-3.1162773, 55.8981797], [-3.1150737, 55.8984036], [-3.1142049, 55.8985455], [-3.1129888, 55.8987271], [-3.1120433, 55.8988516], [-3.1110656, 55.8989629], [-3.1099223, 55.8990838], [-3.1090875, 55.8991578]]}}, {"type": "Feature", "properties": {"osm_id": "2956364", "highway": "trunk", "ref": "A41", "maxspeed": "40 mph", "lanes": "3", "lit": "yes", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.959587, 53.3051109], [-2.9593506, 53.3049721], [-2.959164, 53.3048255], [-2.9590721, 53.3047161], [-2.9589705, 53.3045476], [-2.9589368, 53.3043946], [-2.9589426, 53.3042361], [-2.9589646, 53.3040626]]}}, {"type": "Feature", "properties": {"osm_id": "2956368", "highway": "trunk", "ref": "A494", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Welsh Government", "bicycle": "no", "sidewalk": "no", "int_ref": "E 22", "parking_lane_both": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.065307, 53.1875486], [-3.0644617, 53.1875679], [-3.0639532, 53.1875961], [-3.063155, 53.187666], [-3.0624296, 53.1877527], [-3.0614578, 53.187903], [-3.0607792, 53.1880517], [-3.0598917, 53.1882713], [-3.0590506, 53.1885233], [-3.0581585, 53.1888371]]}}, {"type": "Feature", "properties": {"osm_id": "2956386", "highway": "trunk", "ref": "A6003", "maxspeed": "30 mph", "name": "Orange Street", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7229332, 52.5889864], [-0.7229714, 52.5884127], [-0.7229532, 52.5882888], [-0.7229309, 52.5882043], [-0.7228857, 52.5881331], [-0.7228333, 52.5880694], [-0.7227654, 52.5880107], [-0.7227299, 52.5879748], [-0.7227038, 52.58793], [-0.722639, 52.5878189], [-0.7226097, 52.5875949]]}}, {"type": "Feature", "properties": {"osm_id": "2956401", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1377135, 55.8914654], [-3.1384533, 55.8912915], [-3.1389947, 55.891166], [-3.1397658, 55.8910044], [-3.1406394, 55.8908369], [-3.1418468, 55.8906138], [-3.142404, 55.8905236], [-3.143016, 55.8904314], [-3.1435707, 55.8903513], [-3.144234, 55.8902588], [-3.1448454, 55.8901845], [-3.1456848, 55.8900908], [-3.14635, 55.8900239], [-3.1470955, 55.8899581], [-3.1479731, 55.8898875], [-3.1488498, 55.8898299], [-3.1494098, 55.8897995], [-3.1500027, 55.8897781], [-3.1510704, 55.8897435], [-3.1522429, 55.8897194], [-3.1530342, 55.8897054], [-3.153808, 55.8896967], [-3.155051, 55.8896807], [-3.1557996, 55.8896785], [-3.1567785, 55.8896803], [-3.1587799, 55.8896938], [-3.1597235, 55.8897055], [-3.1606276, 55.8897202], [-3.1615341, 55.8897437]]}}, {"type": "Feature", "properties": {"osm_id": "2956402", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1614571, 55.8898469], [-3.160488, 55.8898233], [-3.1587561, 55.8897938], [-3.1567623, 55.889787], [-3.1558825, 55.8897858], [-3.1550458, 55.8897895], [-3.153895, 55.8898008], [-3.1530342, 55.8898131], [-3.1521785, 55.8898257], [-3.1510571, 55.8898466], [-3.1501108, 55.8898809], [-3.149432, 55.8899047], [-3.1488449, 55.8899391], [-3.1479938, 55.88999], [-3.1470734, 55.8900651], [-3.1464087, 55.8901244], [-3.1457194, 55.8901935], [-3.1448849, 55.8902852], [-3.144062, 55.890389], [-3.1433883, 55.8904867], [-3.1422962, 55.8906518], [-3.1413267, 55.8908151], [-3.13987, 55.8910982], [-3.1390531, 55.8912695], [-3.1385142, 55.8913896], [-3.1377228, 55.8915791]]}}, {"type": "Feature", "properties": {"osm_id": "2956409", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.1896595, 55.8925084], [-3.1913615, 55.8927644], [-3.1927401, 55.8929946], [-3.1944916, 55.8933199], [-3.1958383, 55.8936352], [-3.1975658, 55.89406], [-3.1988341, 55.8944163], [-3.2004264, 55.8948983], [-3.2010222, 55.8950995], [-3.2017568, 55.8953552], [-3.2039112, 55.8961187], [-3.2045889, 55.8963394], [-3.2051718, 55.8965206], [-3.2057413, 55.8966758], [-3.206441, 55.8968525], [-3.207152, 55.8970204], [-3.2079312, 55.8971853], [-3.2085529, 55.8973068], [-3.2092467, 55.8974278], [-3.2100649, 55.8975531], [-3.2116045, 55.8977706], [-3.2124771, 55.8978845], [-3.2140457, 55.8980817], [-3.215563, 55.8982623], [-3.216892, 55.8984122], [-3.2185304, 55.8985828], [-3.2200583, 55.8987259], [-3.2222352, 55.8989131], [-3.223248, 55.8989942], [-3.2247117, 55.8991034], [-3.2281032, 55.899327], [-3.2313352, 55.8994768], [-3.232657, 55.8994982], [-3.2339374, 55.8994938], [-3.2352418, 55.8994425], [-3.2360526, 55.8993972], [-3.2377279, 55.8992783], [-3.2395358, 55.8991479], [-3.241377, 55.8989957], [-3.242653, 55.8988902], [-3.2445619, 55.8987159], [-3.2460626, 55.8985788], [-3.2474831, 55.8984522], [-3.2484556, 55.8983844], [-3.2492607, 55.8983347], [-3.2501087, 55.8982911], [-3.2512299, 55.8982539], [-3.2527755, 55.8982244]]}}, {"type": "Feature", "properties": {"osm_id": "2956413", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.2532389, 55.8982235], [-3.2546701, 55.898237], [-3.2554819, 55.8982607], [-3.2562937, 55.8982873], [-3.2570182, 55.8983247], [-3.2594504, 55.8984752], [-3.2602536, 55.8985498], [-3.2609385, 55.8986172], [-3.2617576, 55.8987054], [-3.2624327, 55.8987894], [-3.2630019, 55.8988701], [-3.2638284, 55.8989999], [-3.2645964, 55.8991441], [-3.2651243, 55.8992558], [-3.2656728, 55.8993907], [-3.26632, 55.899561], [-3.2669976, 55.8997577], [-3.2676135, 55.8999651], [-3.2681904, 55.9001772], [-3.2688523, 55.9004364], [-3.2695528, 55.9007317], [-3.2702026, 55.9010439], [-3.2708214, 55.901356], [-3.2712613, 55.9016062], [-3.2717732, 55.9019285], [-3.2723132, 55.9023018], [-3.2726165, 55.902528], [-3.2729268, 55.9027754], [-3.2732216, 55.9030228]]}}, {"type": "Feature", "properties": {"osm_id": "2956414", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.2730456, 55.9030441], [-3.2727294, 55.9027899], [-3.2724337, 55.9025617], [-3.2720939, 55.9023109], [-3.2717129, 55.9020543], [-3.2712154, 55.9017395], [-3.2709718, 55.9015965], [-3.2707231, 55.9014593], [-3.2701197, 55.9011396], [-3.2695575, 55.9008675], [-3.268882, 55.9005648], [-3.2681448, 55.9002809], [-3.2674519, 55.9000267], [-3.2669365, 55.8998648], [-3.2664318, 55.8997119], [-3.2656518, 55.8995027], [-3.2651309, 55.8993817], [-3.264592, 55.8992649], [-3.2640411, 55.8991579], [-3.2634953, 55.8990654], [-3.2629675, 55.8989815], [-3.2624243, 55.8989062], [-3.2616803, 55.8988055], [-3.2609466, 55.898725], [-3.2594329, 55.8985726], [-3.2578168, 55.8984614], [-3.2569984, 55.898416], [-3.2562727, 55.8983791], [-3.2554599, 55.8983529], [-3.2546471, 55.8983324], [-3.2532115, 55.8983157]]}}, {"type": "Feature", "properties": {"osm_id": "2956434", "highway": "trunk", "ref": "A720", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "City of Edinburgh Bypass", "operator": "Transport Scotland", "maxspeed_type": "GB:special_road", "bicycle": "no", "foot": "no", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-3.2934648, 55.9138771], [-3.294778, 55.9142187], [-3.2954818, 55.9144544], [-3.2973108, 55.9151777], [-3.2988589, 55.9159542], [-3.2997164, 55.9164263]]}}, {"type": "Feature", "properties": {"osm_id": "2956454", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3103936, 51.6696777], [-1.3093223, 51.6715667], [-1.3086445, 51.6727231], [-1.3083768, 51.6731611], [-1.3076465, 51.6741552], [-1.3072158, 51.6746183], [-1.3067258, 51.6750678], [-1.3062074, 51.6754825], [-1.3056141, 51.6759064], [-1.3050374, 51.6762541], [-1.3043651, 51.6766132], [-1.3037487, 51.6768994], [-1.3029497, 51.6772297], [-1.3008231, 51.6779852], [-1.299947, 51.678338], [-1.2991199, 51.6787243], [-1.2984371, 51.6791053], [-1.2977957, 51.6795075], [-1.2973218, 51.6798608], [-1.2968723, 51.6802179], [-1.2962505, 51.6808155], [-1.2957633, 51.6813862], [-1.2952254, 51.6821721], [-1.2945705, 51.6832822], [-1.2934131, 51.68517], [-1.2930895, 51.6856412], [-1.2927268, 51.6861137]]}}, {"type": "Feature", "properties": {"osm_id": "2956455", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2547768, 51.7124175], [-1.2550338, 51.7116425], [-1.2553071, 51.7109077], [-1.2559209, 51.7095742], [-1.2566438, 51.7082404], [-1.2572847, 51.7071938], [-1.2579637, 51.7061504], [-1.2588151, 51.7048642], [-1.2597106, 51.7035356], [-1.260061, 51.7030084], [-1.2605047, 51.7024382], [-1.2609921, 51.7018746], [-1.2613734, 51.7015045], [-1.2620639, 51.7009408], [-1.2624958, 51.7006373], [-1.263189, 51.7001666]]}}, {"type": "Feature", "properties": {"osm_id": "2956456", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2549389, 51.7124418], [-1.2546857, 51.713378], [-1.2544957, 51.7143192], [-1.2543924, 51.7149295], [-1.2543331, 51.7153859], [-1.2542969, 51.7158468], [-1.2542447, 51.7167702], [-1.2542443, 51.7172951], [-1.2543114, 51.7186636], [-1.2544146, 51.7196194], [-1.2545322, 51.7202904], [-1.2546725, 51.7209407], [-1.2549335, 51.7218666], [-1.2551432, 51.7225583], [-1.255258, 51.7228373], [-1.2554344, 51.7232184], [-1.2557075, 51.7237359], [-1.2558528, 51.7239568]]}}, {"type": "Feature", "properties": {"osm_id": "2956457", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Southern By-pass Road", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "cycleway_left": "track", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2799404, 51.7416408], [-1.2752422, 51.7388324], [-1.271288, 51.7364528], [-1.2691608, 51.7351138], [-1.2687746, 51.7348613]]}}, {"type": "Feature", "properties": {"osm_id": "2956471", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "bicycle": "no", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1543212, 52.3501786], [-1.153631, 52.3470324], [-1.152836, 52.34462], [-1.1521218, 52.3427993], [-1.1517017, 52.3418228], [-1.1510883, 52.3404235], [-1.150267, 52.3387127], [-1.1493771, 52.3369153], [-1.1481992, 52.3345826], [-1.1476828, 52.333708], [-1.1467371, 52.3322355], [-1.1462221, 52.331453], [-1.145699, 52.3306597], [-1.1450755, 52.3298159], [-1.1443674, 52.3289937], [-1.1436708, 52.3281272], [-1.1430823, 52.3273985], [-1.1421614, 52.3264023], [-1.1414246, 52.3255948], [-1.1408785, 52.3250198], [-1.1397589, 52.3238821], [-1.1391751, 52.3233067], [-1.1384105, 52.3225739], [-1.1377885, 52.322], [-1.1372366, 52.3215015], [-1.1364032, 52.3207599], [-1.1358875, 52.3203177], [-1.1353642, 52.3198725], [-1.1346063, 52.3192059], [-1.1341294, 52.3188306], [-1.1330495, 52.3179637], [-1.1320235, 52.317129], [-1.1314739, 52.3166707], [-1.130626, 52.315948]]}}, {"type": "Feature", "properties": {"osm_id": "2956624", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Western By-pass Road", "operator": "Highways England", "highways_england_area": "3", "bicycle": "yes", "foot": "no", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2963204, 51.7870621], [-1.297412, 51.7863903], [-1.2979655, 51.7860291], [-1.2985977, 51.7855854], [-1.2992131, 51.7851245], [-1.3000834, 51.7844339], [-1.3005861, 51.7839606], [-1.300969, 51.7835733], [-1.3012314, 51.7833027], [-1.3017971, 51.7826628], [-1.3020908, 51.7822897], [-1.3024755, 51.7817699], [-1.3028268, 51.7812411], [-1.3029497, 51.7810462]]}}, {"type": "Feature", "properties": {"osm_id": "2956625", "highway": "trunk", "ref": "A34", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Western By-pass Road", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2966903, 51.7611952], [-1.2970443, 51.7618165], [-1.2974296, 51.7623694], [-1.3007594, 51.7670684], [-1.301079, 51.767525], [-1.3013502, 51.7678837], [-1.3013916, 51.7679443]]}}, {"type": "Feature", "properties": {"osm_id": "2956626", "highway": "trunk", "ref": "A34", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Western By-pass Road", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2964566, 51.7611906], [-1.2961114, 51.7603425], [-1.295996, 51.7599575], [-1.2958825, 51.7594573], [-1.2957995, 51.7588594]]}}, {"type": "Feature", "properties": {"osm_id": "2956627", "highway": "trunk", "ref": "A34", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Southern By-pass Road", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2801623, 51.7415027], [-1.2849938, 51.7444285], [-1.2862244, 51.7450641]]}}, {"type": "Feature", "properties": {"osm_id": "2956684", "highway": "motorway", "ref": "M53", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.9709848, 53.3020571], [-2.9714912, 53.3022007], [-2.9721521, 53.302488], [-2.972916, 53.3028932], [-2.97351, 53.3031856], [-2.973787, 53.3032842], [-2.9744352, 53.3034779]]}}, {"type": "Feature", "properties": {"osm_id": "2956709", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "lanes": "1", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "junction": "roundabout", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1088041, 52.6268246], [-0.1088498, 52.6267465], [-0.1088888, 52.6267122], [-0.1089558, 52.6266776]]}}, {"type": "Feature", "properties": {"osm_id": "2956710", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "junction": "roundabout", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1211876, 52.6204828], [-0.1213503, 52.6205022], [-0.1214717, 52.6205426], [-0.1215673, 52.6206289]]}}, {"type": "Feature", "properties": {"osm_id": "2956711", "highway": "trunk", "ref": "A47", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Thorney Bypass", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.121256, 52.6209539], [-0.1209534, 52.6210534], [-0.1206567, 52.6211958], [-0.1204679, 52.6213155], [-0.1202241, 52.6214938], [-0.1184264, 52.6226538], [-0.1173699, 52.6232727], [-0.1159829, 52.6240633], [-0.115086, 52.6244852], [-0.1122392, 52.6257777], [-0.1112813, 52.6261595], [-0.1102058, 52.626571], [-0.1097203, 52.6267489], [-0.1095813, 52.6268334]]}}, {"type": "Feature", "properties": {"osm_id": "2956712", "highway": "trunk", "ref": "A47", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Thorney Bypass", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.109883, 52.626579], [-0.1110507, 52.6261302], [-0.1121166, 52.6256935], [-0.1142586, 52.6247536], [-0.115863, 52.6239586], [-0.1163507, 52.6236945], [-0.1182769, 52.6225894], [-0.1200846, 52.621401], [-0.1206078, 52.6210476], [-0.1207924, 52.6209133], [-0.1208516, 52.6208105]]}}, {"type": "Feature", "properties": {"osm_id": "2956713", "highway": "trunk", "ref": "A47", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Thorney Bypass", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1088806, 52.62701], [-0.1084776, 52.6269715], [-0.1069311, 52.6270551], [-0.1049052, 52.6270139], [-0.102992, 52.626851], [-0.101579, 52.6266513], [-0.0966006, 52.6259731], [-0.0908271, 52.6251932], [-0.0802173, 52.6237382], [-0.0714138, 52.6225455], [-0.0689945, 52.6222248], [-0.0670633, 52.622018], [-0.0650029, 52.6218626], [-0.0627833, 52.6217609], [-0.0604683, 52.6217337], [-0.0576846, 52.621757], [-0.0575079, 52.621768], [-0.0573555, 52.6217981], [-0.0572724, 52.6218422]]}}, {"type": "Feature", "properties": {"osm_id": "2956714", "highway": "trunk", "ref": "A47", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Thorney Bypass", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0572244, 52.6216137], [-0.0574576, 52.6216479], [-0.0577026, 52.6216524], [-0.0604726, 52.6216287], [-0.0627776, 52.6216557], [-0.0649822, 52.6217557], [-0.0670713, 52.6219154], [-0.0690186, 52.6221173], [-0.0714594, 52.6224381], [-0.0802361, 52.6236374], [-0.0908555, 52.62508], [-0.096655, 52.6258795], [-0.1015225, 52.6265589], [-0.1030551, 52.6267384], [-0.1049296, 52.6269128], [-0.1068554, 52.6269461], [-0.1085098, 52.6268681], [-0.1088041, 52.6268246]]}}, {"type": "Feature", "properties": {"osm_id": "2956715", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "6", "junction": "roundabout", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.0565557, 52.621842], [-0.0565279, 52.6217424], [-0.0565715, 52.6216449], [-0.0566787, 52.6215675]]}}, {"type": "Feature", "properties": {"osm_id": "2956729", "highway": "trunk", "ref": "A47", "maxspeed": "60 mph", "lanes": "1", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_single", "highways_england_area": "6", "junction": "roundabout", "maintenance": "salting", "parking_lane_both": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.6346473, 52.6571879], [0.6346066, 52.6572913]]}}, {"type": "Feature", "properties": {"osm_id": "2956730", "highway": "trunk", "ref": "A1122", "maxspeed": "40 mph", "lanes": "1", "name": "Station Road", "junction": "roundabout", "maintenance": "salting", "salting_ref": "KLY004", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.3637108, 52.6035805], [0.3636952, 52.6035556], [0.3636649, 52.6035355], [0.3636042, 52.6035218], [0.3635611, 52.6035246], [0.36352, 52.603538], [0.3634847, 52.6035683], [0.3634776, 52.6035949]]}}, {"type": "Feature", "properties": {"osm_id": "2956731", "highway": "trunk", "ref": "A10", "maxspeed": "60 mph", "maxspeed_type": "GB:national", "junction": "roundabout", "maintenance": "salting", "salting_ref": "KLY006", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.399339, 52.6041215], [0.3992367, 52.6041695]]}}, {"type": "Feature", "properties": {"osm_id": "2956767", "highway": "trunk", "ref": "A47", "maxspeed": "30 mph", "name": "Uppingham Road", "source_maxspeed": "Stats19", "maintenance": "salting", "source_name": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.0917407, 52.6421902], [-1.0907174, 52.6421684], [-1.0900092, 52.6421525], [-1.0897529, 52.6421467], [-1.08882, 52.6421207], [-1.0880544, 52.6421081], [-1.0876777, 52.6420985], [-1.0872979, 52.6420699], [-1.0870025, 52.6420687], [-1.0867541, 52.6420615], [-1.0866277, 52.6420582], [-1.0865057, 52.6420554], [-1.0861795, 52.6420478], [-1.0861369, 52.6420468], [-1.0860863, 52.6420456], [-1.0856312, 52.6420386]]}}, {"type": "Feature", "properties": {"osm_id": "2956768", "highway": "trunk", "ref": "A47", "maxspeed": "50 mph", "name": "Uppingham Road", "source_maxspeed": "Stats19", "maintenance": "salting", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9173267, 52.6188308], [-0.9159024, 52.6187752], [-0.9143642, 52.6187687], [-0.913206, 52.6187793], [-0.9128881, 52.6187732], [-0.9124412, 52.6187536], [-0.9117073, 52.6186887], [-0.9103766, 52.6184797], [-0.9096005, 52.6183653], [-0.9093847, 52.6183397], [-0.9070706, 52.6180898], [-0.9068999, 52.618077], [-0.9053876, 52.6179635], [-0.9047907, 52.6179384], [-0.9031944, 52.6178271], [-0.9020704, 52.6176804], [-0.9019157, 52.6176552], [-0.9011495, 52.6175319], [-0.900298, 52.6173191], [-0.8997141, 52.6170904], [-0.8980084, 52.6160053]]}}, {"type": "Feature", "properties": {"osm_id": "2956909", "highway": "trunk", "ref": "A4142", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Eastern By-pass Road", "bicycle": "no", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1954644, 51.7471134], [-1.1954501, 51.748066], [-1.1954516, 51.7489586], [-1.1955044, 51.750096], [-1.1955348, 51.7514119], [-1.1955038, 51.7523675], [-1.1954767, 51.7528056], [-1.1954411, 51.7531824], [-1.1952855, 51.7544215], [-1.1950735, 51.7555087], [-1.194812, 51.7565745], [-1.1947515, 51.756951], [-1.194734, 51.7571572]]}}, {"type": "Feature", "properties": {"osm_id": "2956910", "highway": "trunk", "ref": "A4142", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern By-pass Road", "bicycle": "yes", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1964343, 51.7627774], [-1.1964722, 51.762631], [-1.1964764, 51.7625331], [-1.1964514, 51.7624299], [-1.1962276, 51.7618722], [-1.1960922, 51.76163]]}}, {"type": "Feature", "properties": {"osm_id": "2957926", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 15", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6107945, 52.8031183], [-0.6107382, 52.8029172], [-0.6107002, 52.8027247], [-0.6106569, 52.8024467], [-0.6106176, 52.8021069], [-0.6105993, 52.8018225]]}}, {"type": "Feature", "properties": {"osm_id": "2959893", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "name": "North Western Avenue", "alt_name": "Watford By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3054963, 51.6372565], [-0.3055449, 51.6372701], [-0.3089739, 51.6382791], [-0.3129597, 51.6393712], [-0.314927, 51.6399622], [-0.3156737, 51.6402179], [-0.3159998, 51.6403564], [-0.3201755, 51.6422847]]}}, {"type": "Feature", "properties": {"osm_id": "2959895", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "name": "North Western Avenue", "alt_name": "Tylers Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3216946, 51.6430234], [-0.3244337, 51.6442587], [-0.3246423, 51.6443757], [-0.3263406, 51.6451642], [-0.327177, 51.6455205], [-0.327922, 51.6457751], [-0.328868, 51.6460334], [-0.3297791, 51.6462462], [-0.3307378, 51.6463896], [-0.3318503, 51.6466324], [-0.3326637, 51.6468419], [-0.3332556, 51.6470254], [-0.3347076, 51.647565], [-0.335774, 51.6481158], [-0.3415315, 51.6519088], [-0.3427911, 51.6527426]]}}, {"type": "Feature", "properties": {"osm_id": "2959959", "highway": "trunk", "ref": "A1020", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Royal Docks Road", "operator": "Transport for London", "surface": "asphalt", "foot": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0703122, 51.5087191], [0.0704719, 51.508809], [0.0705195, 51.5088505], [0.0706039, 51.5089241], [0.0707367, 51.5096516], [0.0707661, 51.5104369], [0.0707976, 51.511176], [0.0708968, 51.5123333], [0.0708069, 51.5129081], [0.0706168, 51.5134556], [0.0703804, 51.5140061], [0.0703975, 51.5142038], [0.0705177, 51.5144441], [0.0712718, 51.5150831], [0.0713113, 51.5151166], [0.0715166, 51.5152573]]}}, {"type": "Feature", "properties": {"osm_id": "2959977", "highway": "trunk", "ref": "A117", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Pier Road", "operator": "Transport for London", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.059736, 51.4983925], [0.0597504, 51.4984629], [0.0597685, 51.4985068], [0.0598123, 51.4985349], [0.0598835, 51.4985626]]}}, {"type": "Feature", "properties": {"osm_id": "2959978", "highway": "trunk", "ref": "A117", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Albert Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0634103, 51.5000173], [0.0635738, 51.5000066], [0.0637715, 51.5000071], [0.0640339, 51.500008], [0.0642994, 51.5000084], [0.0645013, 51.5000097], [0.0649375, 51.5000262], [0.0654023, 51.5000595], [0.0656127, 51.5000775], [0.0662221, 51.5001555], [0.0665724, 51.5002154], [0.0669967, 51.5002949], [0.0674703, 51.5003945], [0.0675708, 51.500419], [0.0676828, 51.5004463], [0.0680509, 51.500543], [0.0684011, 51.5006381], [0.0685887, 51.5007028], [0.0687777, 51.5007665], [0.0689152, 51.50081], [0.0694057, 51.500987], [0.0695447, 51.5010343], [0.0695801, 51.5010415], [0.0697196, 51.5010764]]}}, {"type": "Feature", "properties": {"osm_id": "2959979", "highway": "trunk", "ref": "A117", "maxspeed": "30 mph", "lanes": "3", "lit": "yes", "name": "Woolwich Manor Way", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0697196, 51.5010764], [0.0699635, 51.5011087], [0.0700376, 51.5011172], [0.0701337, 51.5011283], [0.0702358, 51.5011408], [0.0703551, 51.5011625], [0.0704839, 51.5011921], [0.0705906, 51.5012272], [0.0706646, 51.5012605], [0.070729, 51.5012998], [0.0707784, 51.5013665], [0.0708089, 51.5014226], [0.0708214, 51.5014436]]}}, {"type": "Feature", "properties": {"osm_id": "2959980", "highway": "trunk", "ref": "A117", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Woolwich Manor Way", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "both", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0701781, 51.5024796], [0.0702091, 51.502556]]}}, {"type": "Feature", "properties": {"osm_id": "2960268", "highway": "trunk", "ref": "A102", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Blackwall Tunnel", "operator": "Transport for London", "bicycle": "no", "sidewalk": "right", "foot": "no", "horse": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0017133, 51.4992627], [0.0016932, 51.4991124], [0.0016818, 51.4988511], [0.0017086, 51.4986165], [0.0017569, 51.4983772], [0.0020276, 51.4974534], [0.0021635, 51.4969596], [0.0021857, 51.4968789]]}}, {"type": "Feature", "properties": {"osm_id": "2960269", "highway": "trunk", "ref": "A102", "maxspeed": "50 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "name": "Blackwall Tunnel Approach", "operator": "Transport for London", "bicycle": "no", "sidewalk": "none", "foot": "no", "horse": "no", "old_ref": "A102(M)", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0134349, 51.488667], [0.0130165, 51.4888519], [0.0126006, 51.489064], [0.0121582, 51.4893387], [0.0117836, 51.4896057]]}}, {"type": "Feature", "properties": {"osm_id": "2960270", "highway": "trunk", "ref": "A2", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Rochester Way Relief Road", "operator": "Transport for London", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0390821, 51.4581918], [0.0387938, 51.4582798], [0.0374738, 51.4587066]]}}, {"type": "Feature", "properties": {"osm_id": "2960271", "highway": "trunk", "ref": "A2", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Rochester Way Relief Road", "operator": "Transport for London", "sidewalk": "none", "carriageway_ref": "A", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0264271, 51.47218], [0.0266245, 51.4718699], [0.0269515, 51.4714196], [0.0272817, 51.470922], [0.02779, 51.4700878], [0.0279893, 51.4697156], [0.0294977, 51.4670655], [0.0299063, 51.4662227], [0.0302723, 51.4653242], [0.0304707, 51.464671], [0.030507, 51.4644861], [0.030515, 51.4643104], [0.0305028, 51.4641265], [0.0304638, 51.4639732], [0.030425, 51.4638431], [0.0301575, 51.4632586], [0.0300172, 51.462907], [0.0299739, 51.462758], [0.0299631, 51.4625947], [0.0299749, 51.4623996], [0.0300096, 51.4622259], [0.0300905, 51.4620247], [0.0302163, 51.4618368], [0.0303643, 51.461673], [0.0305968, 51.4614775], [0.0308769, 51.4613041], [0.0313931, 51.4610891], [0.0320144, 51.4608515], [0.0325608, 51.4606489], [0.0334818, 51.4602942]]}}, {"type": "Feature", "properties": {"osm_id": "2968752", "highway": "motorway", "ref": "M11", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0839014, 51.6401945], [0.0836837, 51.6400586], [0.0826991, 51.6394307], [0.0800359, 51.637727], [0.075468, 51.6345888], [0.0726854, 51.6325872], [0.0688161, 51.6296235], [0.0675418, 51.6285548], [0.0669137, 51.6279412], [0.0664683, 51.6274599], [0.065873, 51.6267296], [0.0654458, 51.6261296], [0.0650621, 51.6254913], [0.0646779, 51.6247974], [0.0643289, 51.6239679], [0.0641357, 51.6233425], [0.0638435, 51.6216579], [0.063705, 51.6209226], [0.063492, 51.6201585], [0.0631783, 51.6192821], [0.0626137, 51.6182727], [0.0619899, 51.6174452], [0.061196, 51.6165992], [0.0603377, 51.6159064], [0.0593486, 51.6152003], [0.0581645, 51.6145591]]}}, {"type": "Feature", "properties": {"osm_id": "2968753", "highway": "motorway", "ref": "M11", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO5", "bicycle": "no", "foot": "no", "horse": "no", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0399546, 51.5958975], [0.040633, 51.5965903], [0.0414126, 51.5972129], [0.0421723, 51.5977009]]}}, {"type": "Feature", "properties": {"osm_id": "2968755", "highway": "motorway", "ref": "M11", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "DBFO5", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[0.0861412, 51.6417473], [0.0871753, 51.6423553], [0.0918788, 51.6450823], [0.0931577, 51.6458812], [0.094325, 51.6466322], [0.095561, 51.6474843], [0.0965072, 51.648182], [0.0979042, 51.6492684], [0.0993547, 51.650488], [0.1018438, 51.6527938], [0.1037492, 51.6546043], [0.106204, 51.6569898], [0.108736, 51.6595456], [0.1106586, 51.6615209], [0.1123638, 51.6633792]]}}, {"type": "Feature", "properties": {"osm_id": "2969393", "highway": "trunk", "ref": "A12", "maxspeed": "40 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Eastern Avenue", "operator": "Transport for London", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0449887, 51.5762334], [0.0452459, 51.5760916], [0.0455198, 51.5760515]]}}, {"type": "Feature", "properties": {"osm_id": "2969394", "highway": "trunk", "ref": "A12", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern Avenue", "operator": "Transport for London", "sidewalk": "left", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0659394, 51.5764512], [0.06586, 51.5764745], [0.0657823, 51.5764871], [0.0657183, 51.5764955], [0.0656647, 51.5765002], [0.065523, 51.5765052], [0.0653605, 51.5765011], [0.0651496, 51.5764923], [0.0649057, 51.5764882], [0.0644714, 51.5765]]}}, {"type": "Feature", "properties": {"osm_id": "2969460", "highway": "trunk", "ref": "A1400", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodford Avenue", "operator": "Transport for London", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0660853, 51.5767454], [0.0661073, 51.5767847], [0.0661159, 51.5768205], [0.0661321, 51.5768644], [0.0661285, 51.5768998], [0.0661104, 51.5769304], [0.0659501, 51.5770409], [0.0659036, 51.5770729], [0.0656285, 51.5772653]]}}, {"type": "Feature", "properties": {"osm_id": "2969461", "highway": "trunk", "ref": "A1400", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodford Avenue", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.058384, 51.5817138], [0.058433, 51.5816366], [0.0585149, 51.5815341], [0.0586281, 51.5814418], [0.0587618, 51.5813609]]}}, {"type": "Feature", "properties": {"osm_id": "2969462", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodford Avenue", "operator": "Transport for London", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.058384, 51.5817138], [0.0583683, 51.5816821], [0.0583419, 51.5816589], [0.058275, 51.5816169], [0.0582064, 51.581593]]}}, {"type": "Feature", "properties": {"osm_id": "2969463", "highway": "trunk", "ref": "A1400", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodford Avenue", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0578156, 51.581788], [0.0577259, 51.5819063], [0.0576397, 51.5819986], [0.0574932, 51.5821234], [0.0573678, 51.5822375], [0.0572492, 51.5823586], [0.0568603, 51.5827907], [0.0566511, 51.5830242], [0.0560454, 51.5837033], [0.0552185, 51.5846211]]}}, {"type": "Feature", "properties": {"osm_id": "2969464", "highway": "trunk", "ref": "A1400", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Woodford Avenue", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0465321, 51.591267], [0.0474782, 51.5908547], [0.0477438, 51.5907389], [0.0486781, 51.5902818], [0.0487205, 51.5902611], [0.0488908, 51.5901579]]}}, {"type": "Feature", "properties": {"osm_id": "2969465", "highway": "trunk", "ref": "A1400", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Southend Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0464027, 51.5911405], [0.045051, 51.5916671], [0.0438266, 51.5920401], [0.0429668, 51.5922679], [0.042094, 51.5924996], [0.0411491, 51.5927505], [0.0408932, 51.5928184], [0.0397835, 51.5930977], [0.0391311, 51.5932642], [0.0382899, 51.5934813], [0.0381787, 51.5935111], [0.0381376, 51.5935222], [0.0378476, 51.593591]]}}, {"type": "Feature", "properties": {"osm_id": "2969466", "highway": "trunk", "ref": "A1400", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Southend Road", "operator": "Transport for London", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.037646, 51.5938499], [0.0377639, 51.5937686]]}}, {"type": "Feature", "properties": {"osm_id": "2969579", "highway": "trunk", "ref": "A12", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Gants Hill Roundabout", "operator": "Transport for London", "junction": "circular", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0660853, 51.5767454], [0.0661612, 51.5767752], [0.0662209, 51.5767907], [0.0663081, 51.5768061], [0.0663971, 51.5768059], [0.0664746, 51.5768019]]}}, {"type": "Feature", "properties": {"osm_id": "2969610", "highway": "trunk", "ref": "A12", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Eastern Avenue", "operator": "Transport for London", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0668838, 51.5765527], [0.0669867, 51.5764917], [0.0670549, 51.5764575], [0.0670669, 51.5764515], [0.0671486, 51.5764222], [0.0672384, 51.5764051], [0.0673342, 51.5763862], [0.0674888, 51.5763638], [0.0679947, 51.5762874]]}}, {"type": "Feature", "properties": {"osm_id": "2969611", "highway": "trunk", "ref": "A12", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Eastern Avenue", "operator": "Transport for London", "maintenance": "salting", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0998758, 51.578136], [0.0996164, 51.5780075], [0.0980057, 51.5772094], [0.0965122, 51.5764733], [0.0954199, 51.5760496], [0.0951733, 51.5759826], [0.0940817, 51.5756514], [0.0936435, 51.5755378], [0.0927603, 51.5753415], [0.0922, 51.5752324], [0.091483, 51.5751031], [0.0909116, 51.5749991], [0.0902556, 51.5748907]]}}, {"type": "Feature", "properties": {"osm_id": "2969829", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Hogarth Lane", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "separate", "foot": "yes", "horse": "yes", "alt_name": "Great West Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2528189, 51.4867945], [-0.2529364, 51.4868477], [-0.2530438, 51.4868902], [-0.25319, 51.4869189], [-0.2532727, 51.4869289], [-0.2535546, 51.4869584], [-0.253908, 51.4870014], [-0.254198, 51.4870472], [-0.2565978, 51.4873978], [-0.2568446, 51.4874289], [-0.2579454, 51.4875172], [-0.2582681, 51.4875343], [-0.2586718, 51.4875497]]}}, {"type": "Feature", "properties": {"osm_id": "2969937", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "bicycle": "yes", "sidewalk": "none", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2523332, 51.4872899], [-0.2521005, 51.4873096], [-0.2519306, 51.4873414], [-0.2518306, 51.4873703], [-0.2517309, 51.4874099], [-0.2510541, 51.4877362], [-0.2506394, 51.4879356], [-0.2502346, 51.488121], [-0.2497268, 51.4883443], [-0.2477103, 51.489166]]}}, {"type": "Feature", "properties": {"osm_id": "2969938", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Great West Road", "operator": "Transport for London", "sidewalk": "separate", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.23274, 51.4909895], [-0.2351384, 51.4912209], [-0.2357002, 51.491251], [-0.2362337, 51.491271], [-0.2370673, 51.4912962], [-0.2377896, 51.4913047], [-0.2384081, 51.4912985], [-0.2390405, 51.4912835], [-0.2397491, 51.4912705], [-0.2403678, 51.4912288], [-0.2408863, 51.4911608], [-0.2413212, 51.491096], [-0.2417209, 51.4910077], [-0.2422298, 51.4908807], [-0.2429332, 51.4907196], [-0.2437506, 51.4905239], [-0.2443657, 51.4903518], [-0.2449234, 51.4901433], [-0.2454464, 51.4899452], [-0.2461704, 51.4896538], [-0.2463244, 51.489592], [-0.2473143, 51.4892092], [-0.2483405, 51.4887955], [-0.2497188, 51.4882298], [-0.2504672, 51.4878907], [-0.2514043, 51.4874318], [-0.2515026, 51.4873741], [-0.2515713, 51.4873173], [-0.2516297, 51.4872653], [-0.2516761, 51.4872091], [-0.2517297, 51.4871365], [-0.2517844, 51.4870505], [-0.251851, 51.4869421], [-0.2518869, 51.4868766], [-0.2519432, 51.4868081], [-0.2519924, 51.4867652]]}}, {"type": "Feature", "properties": {"osm_id": "2970100", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Hammersmith Flyover", "operator": "Transport for London", "bicycle": "no", "sidewalk": "none", "layer": "2", "bridge": "yes", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 38}, "geometry": {"type": "LineString", "coordinates": [[-0.229546, 51.491042], [-0.2281065, 51.4911165], [-0.226419, 51.4912214], [-0.2251536, 51.4912544], [-0.2236785, 51.4912699], [-0.2217688, 51.4912891], [-0.220427, 51.49132], [-0.2199447, 51.4913184], [-0.2194646, 51.4912984], [-0.2192265, 51.4912748], [-0.2190063, 51.491242], [-0.2185405, 51.4911483]]}}, {"type": "Feature", "properties": {"osm_id": "2970101", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Hammersmith Flyover", "operator": "Transport for London", "bicycle": "no", "sidewalk": "none", "foot": "no", "horse": "no", "motor_vehicle": "designated", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2174504, 51.4908147], [-0.2179974, 51.4909563], [-0.2185529, 51.4910802]]}}, {"type": "Feature", "properties": {"osm_id": "2970109", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Talgarth Road", "operator": "Transport for London", "source_maxspeed": "survey of 30-07-2013", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2170157, 51.4908432], [-0.2167343, 51.4908084], [-0.2165367, 51.490794], [-0.2163534, 51.4907912], [-0.2159994, 51.4907982], [-0.2151473, 51.4908268], [-0.2142693, 51.4908256], [-0.2136377, 51.4908155], [-0.2135786, 51.4908118], [-0.2132408, 51.490784]]}}, {"type": "Feature", "properties": {"osm_id": "2970110", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Talgarth Road", "operator": "Transport for London", "source_maxspeed": "survey of 30-07-2013", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2068559, 51.4908523], [-0.20715, 51.4907994], [-0.2083138, 51.4906009], [-0.2087094, 51.4905408], [-0.2091104, 51.4904957], [-0.2094913, 51.4904656], [-0.2098748, 51.4904497], [-0.2102584, 51.4904456], [-0.2106419, 51.4904489], [-0.2110255, 51.4904673], [-0.2112213, 51.4904823], [-0.212144, 51.4905792], [-0.2130613, 51.490666], [-0.2131182, 51.4906711], [-0.2132399, 51.4906821]]}}, {"type": "Feature", "properties": {"osm_id": "2972659", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9786433, 51.4220136], [-0.9784879, 51.4218753], [-0.9783428, 51.4217285], [-0.9781631, 51.4214905], [-0.9779996, 51.4211177], [-0.9777827, 51.4206319], [-0.9777624, 51.4205906], [-0.9775063, 51.4200682], [-0.9774806, 51.4200258], [-0.9773549, 51.4198187], [-0.977131, 51.419506], [-0.9768946, 51.419225], [-0.9767009, 51.4190269], [-0.9764255, 51.4187958], [-0.976097, 51.4185597], [-0.9758487, 51.4184252]]}}, {"type": "Feature", "properties": {"osm_id": "2972968", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9790626, 51.4221966], [-0.9790095, 51.4223017], [-0.9789651, 51.4224434], [-0.9789366, 51.4226246], [-0.9789509, 51.422819], [-0.9790528, 51.4230661], [-0.9792212, 51.4233675], [-0.9792476, 51.4234146], [-0.9795121, 51.4238618], [-0.9797057, 51.4242056], [-0.9798371, 51.4243905], [-0.9800493, 51.424677]]}}, {"type": "Feature", "properties": {"osm_id": "2972969", "highway": "trunk", "ref": "A33", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9813123, 51.4267122], [-0.9812736, 51.4268907], [-0.9812351, 51.4269787], [-0.980821, 51.4275295], [-0.9805369, 51.4279708], [-0.9800142, 51.4288514], [-0.9794982, 51.4297231], [-0.9793433, 51.4299936], [-0.9793131, 51.4300463], [-0.9788826, 51.4308818], [-0.9787698, 51.4311013], [-0.9787438, 51.4311519], [-0.9786865, 51.4312623], [-0.9786164, 51.4314176]]}}, {"type": "Feature", "properties": {"osm_id": "2975294", "highway": "trunk", "ref": "A6003", "maxspeed": "60 mph", "oneway": "yes", "name": "Ayston Road", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7248266, 52.5961025], [-0.7249317, 52.5960355], [-0.7250174, 52.595959], [-0.7250812, 52.5958749], [-0.7251216, 52.5957856]]}}, {"type": "Feature", "properties": {"osm_id": "2975295", "highway": "trunk", "ref": "A6003", "maxspeed": "30 mph", "name": "London Road", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7226097, 52.5875949], [-0.7226429, 52.5871969], [-0.7226754, 52.5867321], [-0.7226668, 52.5863165], [-0.7226701, 52.5861799], [-0.7225856, 52.5844944], [-0.7226055, 52.5840623]]}}, {"type": "Feature", "properties": {"osm_id": "2978207", "highway": "trunk", "ref": "A1", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Great North Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "7", "surface": "asphalt", "carriageway_ref": "B", "int_ref": "E 15", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.630761, 52.8725892], [-0.6304618, 52.8718032], [-0.6302675, 52.8712011], [-0.6300532, 52.8704386], [-0.6298967, 52.8696911]]}}, {"type": "Feature", "properties": {"osm_id": "2987848", "highway": "trunk", "ref": "A3", "maxspeed": "60 mph", "name": "Ham Barn Roundabout", "operator": "Highways England", "maxspeed_type": "GB:nsl_single", "highways_england_area": "3", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8989864, 51.0594735], [-0.8989012, 51.0594152], [-0.8988483, 51.0593597], [-0.8988121, 51.0592964], [-0.8987879, 51.0591547], [-0.8987919, 51.059014], [-0.8988103, 51.0589307], [-0.8988576, 51.0588562], [-0.8990038, 51.0587936], [-0.8991055, 51.0587747], [-0.8992333, 51.0587739], [-0.8993455, 51.058792]]}}, {"type": "Feature", "properties": {"osm_id": "2988297", "highway": "trunk", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Botley Interchange", "source_maxspeed": "GB:nsl_dual", "bridge": "yes", "junction": "roundabout", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[-1.2963323, 51.7554576], [-1.2967669, 51.7555107]]}}, {"type": "Feature", "properties": {"osm_id": "2988324", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3158439, 51.7506689], [-1.3155414, 51.7510655], [-1.3151849, 51.7514502], [-1.3147725, 51.7518201], [-1.3143089, 51.752168], [-1.3138563, 51.7524576], [-1.31345, 51.752684], [-1.3130625, 51.7528763], [-1.3126281, 51.7530706], [-1.3120721, 51.7532789]]}}, {"type": "Feature", "properties": {"osm_id": "2988326", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3176718, 51.747048], [-1.317306, 51.7475743], [-1.3169859, 51.7482161], [-1.3162819, 51.7498619]]}}, {"type": "Feature", "properties": {"osm_id": "2988327", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3137418, 51.7523756], [-1.314191, 51.7520946], [-1.3146394, 51.751756], [-1.3150327, 51.7513957], [-1.3153925, 51.7510267], [-1.3156705, 51.7506305]]}}, {"type": "Feature", "properties": {"osm_id": "2988365", "highway": "trunk", "ref": "A272", "maxspeed": "40 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9231749, 51.0117308], [-0.9230229, 51.0116469], [-0.9228448, 51.0115665]]}}, {"type": "Feature", "properties": {"osm_id": "2988544", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3175147, 51.7470063], [-1.3179584, 51.7464556], [-1.3182306, 51.7461677], [-1.3183855, 51.7460149], [-1.3185741, 51.7458291], [-1.3189578, 51.7454968], [-1.3193053, 51.7452282], [-1.3196602, 51.7449707], [-1.3204077, 51.7444635], [-1.3213225, 51.743856], [-1.3222896, 51.7432051], [-1.3235024, 51.7423822], [-1.3240635, 51.7419912], [-1.3246394, 51.741531], [-1.3250917, 51.7411296], [-1.3255388, 51.7406815], [-1.3260609, 51.7400385], [-1.3264465, 51.7395463], [-1.3267786, 51.7390195], [-1.3269218, 51.7387428], [-1.3270616, 51.7384506], [-1.3272242, 51.7380641], [-1.3273708, 51.7376519], [-1.3274188, 51.7374778], [-1.3275989, 51.7366617], [-1.3276317, 51.7362963], [-1.3276581, 51.7357802], [-1.3276743, 51.7340523], [-1.3276831, 51.7330729], [-1.3277254, 51.7323169], [-1.3278581, 51.7315966], [-1.32806, 51.731025], [-1.3283058, 51.730464], [-1.3286272, 51.729907], [-1.32895, 51.7294534], [-1.3299737, 51.7281008]]}}, {"type": "Feature", "properties": {"osm_id": "2988545", "highway": "trunk", "ref": "A420", "maxspeed": "50 mph", "lanes": "2", "name": "Faringdon Road", "source_name": "OS_OpenData_Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3315251, 51.7248425], [-1.3315328, 51.7242302], [-1.3315435, 51.7238762], [-1.331578, 51.7228857], [-1.3315869, 51.7226297], [-1.3316067, 51.7220614], [-1.3316164, 51.7217827], [-1.3316446, 51.7192497], [-1.3316509, 51.7190345], [-1.3316554, 51.7188814], [-1.3316577, 51.7188036], [-1.3316688, 51.7184258], [-1.3316835, 51.717924], [-1.3316855, 51.7178548], [-1.3316942, 51.7175601], [-1.3317394, 51.7171884], [-1.3318015, 51.716851], [-1.3318967, 51.7165403], [-1.3320084, 51.7162272], [-1.332174, 51.7158726], [-1.3323716, 51.7155312], [-1.3326325, 51.7151512], [-1.3328619, 51.7148652], [-1.3332417, 51.7144555], [-1.3336415, 51.714094], [-1.3338763, 51.7139026], [-1.3342286, 51.7136406], [-1.3348006, 51.7132603]]}}, {"type": "Feature", "properties": {"osm_id": "2988546", "highway": "trunk", "ref": "A420", "lanes": "2", "name": "Tubney Wood Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3492444, 51.7031207], [-1.3491616, 51.7031774], [-1.3490688, 51.7032078], [-1.348949, 51.7032185], [-1.3488395, 51.7032038], [-1.3487416, 51.7031659], [-1.3486643, 51.7031013], [-1.348642, 51.7030622], [-1.3486331, 51.7030226], [-1.348644, 51.7029611], [-1.3486973, 51.7028926], [-1.3487729, 51.7028468], [-1.3488253, 51.7028281], [-1.3489469, 51.7028098], [-1.3490267, 51.7028235], [-1.3491521, 51.7028494], [-1.3492277, 51.702892], [-1.3492842, 51.7029674], [-1.3492929, 51.703013], [-1.3492696, 51.7030895], [-1.3492444, 51.7031207]]}}, {"type": "Feature", "properties": {"osm_id": "2988547", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3490267, 51.7028235], [-1.3496399, 51.7026297], [-1.3504275, 51.7023353], [-1.3515711, 51.7017181], [-1.3526353, 51.7010962], [-1.3529055, 51.7009216], [-1.353552, 51.7004646], [-1.3539679, 51.7001184], [-1.3544279, 51.69969], [-1.3550473, 51.6990641], [-1.3556544, 51.6985159], [-1.3562227, 51.6981034]]}}, {"type": "Feature", "properties": {"osm_id": "2988675", "highway": "trunk", "maxspeed": "40 mph", "name": "Bournemouth West Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8898059, 50.722509], [-1.8898148, 50.7225199], [-1.8898231, 50.7225317], [-1.8898329, 50.7225485], [-1.8898418, 50.7225691], [-1.8898455, 50.7225806], [-1.8898497, 50.7226023], [-1.8898505, 50.7226278], [-1.8898478, 50.7226487], [-1.8898456, 50.7226581], [-1.8898406, 50.7226735], [-1.8898353, 50.7226859], [-1.8898271, 50.7227012], [-1.8898208, 50.7227111], [-1.8898109, 50.7227244], [-1.8897973, 50.7227397], [-1.8897815, 50.7227547], [-1.8897653, 50.7227678], [-1.8897572, 50.7227735], [-1.8897508, 50.7227781], [-1.889735, 50.722788], [-1.8897163, 50.7227983], [-1.8897001, 50.7228061], [-1.8896739, 50.722817], [-1.8896525, 50.7228245], [-1.8896354, 50.7228297], [-1.8896117, 50.7228358], [-1.8895941, 50.7228395], [-1.8895776, 50.7228425], [-1.8895552, 50.7228456], [-1.8895388, 50.7228474], [-1.8895278, 50.7228483], [-1.8895165, 50.7228489], [-1.8894894, 50.7228497], [-1.8894666, 50.7228493], [-1.8894572, 50.7228489], [-1.8894389, 50.7228476], [-1.8894234, 50.7228461], [-1.8893996, 50.7228429], [-1.8893863, 50.7228406], [-1.8893702, 50.7228374], [-1.8893508, 50.7228328], [-1.8893337, 50.7228281], [-1.8893257, 50.7228257], [-1.8893027, 50.7228178], [-1.8892891, 50.7228124], [-1.8892737, 50.7228057], [-1.8892625, 50.7228003], [-1.8892513, 50.7227946], [-1.88924, 50.7227881], [-1.8892183, 50.7227743], [-1.8892036, 50.7227634], [-1.8891909, 50.7227527], [-1.8891784, 50.7227407], [-1.8891653, 50.7227262], [-1.8891509, 50.7227065], [-1.8891426, 50.7226923], [-1.8891388, 50.7226847], [-1.8891336, 50.7226723], [-1.8891306, 50.7226634], [-1.8891273, 50.7226508], [-1.8891251, 50.7226377], [-1.8891241, 50.7226247], [-1.8891243, 50.7226105], [-1.8891265, 50.7225926], [-1.8891297, 50.7225791], [-1.8891379, 50.7225565], [-1.8891446, 50.7225433], [-1.8891519, 50.7225312], [-1.8891564, 50.7225247], [-1.8891636, 50.7225151], [-1.8891743, 50.7225028], [-1.8891832, 50.7224938], [-1.8891995, 50.7224792], [-1.8892261, 50.7224597], [-1.8892316, 50.7224564], [-1.8892467, 50.7224473], [-1.8892604, 50.72244], [-1.8892782, 50.7224315], [-1.8892963, 50.722424], [-1.8893107, 50.7224186], [-1.8893237, 50.7224142], [-1.8893422, 50.7224087], [-1.8893547, 50.7224055], [-1.8893744, 50.722401], [-1.8893921, 50.7223976], [-1.8894199, 50.7223936], [-1.889443, 50.7223913], [-1.8894612, 50.7223902], [-1.8894832, 50.7223896], [-1.8895094, 50.72239], [-1.8895338, 50.7223915], [-1.8895478, 50.7223928], [-1.8895719, 50.7223959], [-1.8895867, 50.7223983], [-1.8896029, 50.7224015], [-1.8896102, 50.7224031], [-1.8896311, 50.7224084], [-1.8896493, 50.7224137], [-1.8896767, 50.7224233], [-1.8896944, 50.7224306], [-1.8897107, 50.7224382], [-1.8897125, 50.7224391], [-1.8897349, 50.7224512], [-1.8897496, 50.7224604], [-1.8897633, 50.7224699], [-1.8897767, 50.7224805], [-1.8897897, 50.7224921], [-1.8897962, 50.7224985], [-1.8898059, 50.722509]]}}, {"type": "Feature", "properties": {"osm_id": "2988907", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "name": "Ashley Heath Roundabout", "maxspeed_type": "GB:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8141071, 50.8389029], [-1.8141597, 50.8389635], [-1.8141878, 50.8390423], [-1.8141904, 50.8390898], [-1.8141848, 50.8391399]]}}, {"type": "Feature", "properties": {"osm_id": "2989015", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8365215, 50.8296996], [-1.8357906, 50.8300452], [-1.8343501, 50.8307307], [-1.8327459, 50.8314641], [-1.8318876, 50.8318326], [-1.830452, 50.8324401]]}}, {"type": "Feature", "properties": {"osm_id": "2989016", "highway": "trunk", "ref": "A31", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "3", "bicycle": "yes", "surface": "asphalt", "foot": "yes", "horse": "yes", "cycleway": "no", "motor_vehicle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5948551, 50.9168107], [-1.5963201, 50.9159212], [-1.5983545, 50.9147492], [-1.603513, 50.9117771], [-1.6067629, 50.9099804], [-1.6099097, 50.9082083], [-1.6105381, 50.9078442], [-1.6110142, 50.9075997], [-1.6115496, 50.9074042], [-1.6118385, 50.9073309], [-1.6122609, 50.907256], [-1.612854, 50.9071799], [-1.6130624, 50.9071582], [-1.614539, 50.9070516], [-1.6153954, 50.9069817], [-1.6171621, 50.9068438], [-1.6181063, 50.9067671], [-1.6188308, 50.9067106], [-1.6200382, 50.9066098], [-1.6237202, 50.9063319], [-1.6265938, 50.9061173], [-1.6275013, 50.9060556], [-1.6298585, 50.9058864], [-1.6305127, 50.9058396], [-1.6311445, 50.9057697], [-1.6321884, 50.9055632], [-1.632729, 50.9053813], [-1.6335566, 50.9050889], [-1.6336904, 50.905037], [-1.6359208, 50.9040156], [-1.6384556, 50.9029037], [-1.6403962, 50.9020275], [-1.6412896, 50.9016376], [-1.6421801, 50.901284], [-1.6439968, 50.9005669], [-1.6463661, 50.8998011], [-1.6483586, 50.8992134], [-1.6507444, 50.8985656], [-1.6531332, 50.8978995], [-1.6542581, 50.8976064], [-1.6553879, 50.8972809], [-1.6563744, 50.8969416], [-1.6573599, 50.8965798], [-1.6580668, 50.8963021], [-1.6587476, 50.8960019], [-1.6599235, 50.8953817], [-1.660564, 50.8949809], [-1.6611691, 50.8945463], [-1.6618906, 50.8939105], [-1.662345, 50.8934396], [-1.6627693, 50.8929345], [-1.6634399, 50.8920035], [-1.6646161, 50.8902045], [-1.6647408, 50.8900198], [-1.6657679, 50.888457], [-1.6660532, 50.8880909], [-1.6663298, 50.8876993], [-1.6668074, 50.8871084]]}}, {"type": "Feature", "properties": {"osm_id": "2989164", "highway": "trunk", "ref": "A34", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "name": "Winchester By-Pass", "operator": "Highways England", "maxspeed_type": "GB:limit", "highways_england_area": "3", "source_maxspeed": "sign", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2937247, 51.0715324], [-1.2940722, 51.0719556], [-1.2943214, 51.0723158]]}}, {"type": "Feature", "properties": {"osm_id": "2989328", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "GB:nsl_dual", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.292584, 51.6860513], [-1.2929481, 51.6855864], [-1.2932688, 51.6851199], [-1.2944267, 51.6832964], [-1.2950987, 51.6821658], [-1.2956399, 51.6813533], [-1.2961221, 51.6808011], [-1.2967633, 51.6801873], [-1.297214, 51.6798246], [-1.2976887, 51.6794718], [-1.2983454, 51.6790583], [-1.2990485, 51.6786646], [-1.2998832, 51.6782764], [-1.3007288, 51.6779283], [-1.3028646, 51.6771717], [-1.3036762, 51.6768431], [-1.304269, 51.6765672], [-1.3049249, 51.6762067], [-1.3055148, 51.6758468], [-1.3060973, 51.6754499], [-1.3066145, 51.6750324], [-1.3071009, 51.6745841], [-1.3075211, 51.6741218], [-1.3079983, 51.6734684], [-1.3083232, 51.6729438], [-1.3091769, 51.6715672], [-1.310233, 51.6696411]]}}, {"type": "Feature", "properties": {"osm_id": "2989329", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2797109, 51.59196], [-1.2793682, 51.5925218], [-1.2790005, 51.5933004], [-1.2786224, 51.5945678], [-1.2784717, 51.595825], [-1.2785829, 51.5974216], [-1.2788784, 51.598767], [-1.2794107, 51.6004447], [-1.280089, 51.6020502], [-1.2809737, 51.6035936], [-1.2820843, 51.6051511], [-1.2835169, 51.606844], [-1.2850968, 51.6083669], [-1.287589, 51.6103149], [-1.2898791, 51.611808], [-1.291933, 51.6129209], [-1.2933519, 51.6136151], [-1.2956419, 51.6147354], [-1.298579, 51.6161723], [-1.2998478, 51.6167775], [-1.30144, 51.617566], [-1.3021959, 51.6180192]]}}, {"type": "Feature", "properties": {"osm_id": "2989364", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2795699, 51.5918286], [-1.2800592, 51.59108], [-1.2804892, 51.5905122], [-1.2820389, 51.5887532], [-1.2837182, 51.5869464], [-1.2878202, 51.5825213], [-1.2897359, 51.5804051], [-1.2927674, 51.5771171], [-1.2935979, 51.5762257], [-1.2948981, 51.5748841], [-1.2962694, 51.5733957], [-1.2976283, 51.5718975], [-1.2981167, 51.5713859], [-1.2991599, 51.570184], [-1.2995623, 51.5696536], [-1.2998908, 51.5692177], [-1.3004731, 51.5682054], [-1.3011379, 51.5667309], [-1.3014997, 51.5654332], [-1.3016408, 51.5648006], [-1.3017344, 51.5641665], [-1.3017658, 51.5632617], [-1.3017717, 51.5630923], [-1.3017462, 51.5625309], [-1.3016833, 51.5619441], [-1.3016635, 51.5617587], [-1.3015274, 51.5610142], [-1.3014883, 51.5608242], [-1.3011893, 51.5596774], [-1.3008922, 51.5589349], [-1.3004973, 51.558157], [-1.2994841, 51.5562748], [-1.2986318, 51.5546922], [-1.2974839, 51.5525604], [-1.2966163, 51.5514868], [-1.295795, 51.5506011], [-1.2953819, 51.5501541], [-1.2950199, 51.5496955], [-1.2946121, 51.5490933], [-1.2942844, 51.5485208], [-1.2940059, 51.5478474], [-1.2939535, 51.5476794], [-1.2937903, 51.5471561], [-1.293676, 51.546528], [-1.2936339, 51.5459048], [-1.2936159, 51.5442047], [-1.2936727, 51.5400576], [-1.293726, 51.5377808], [-1.2939121, 51.5348521], [-1.2941402, 51.531853], [-1.2944847, 51.5288034]]}}, {"type": "Feature", "properties": {"osm_id": "2989365", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2946846, 51.5288247], [-1.2945432, 51.5302648], [-1.2945006, 51.5306121], [-1.2943452, 51.5318774], [-1.2939759, 51.5361271], [-1.2938412, 51.5401401], [-1.2938092, 51.5442031], [-1.2937715, 51.5460166], [-1.2938408, 51.5465625], [-1.2939349, 51.547132], [-1.2941138, 51.5476468], [-1.2944183, 51.5485232], [-1.2951609, 51.5496418], [-1.2967666, 51.5514329], [-1.2976985, 51.5525838], [-1.2986458, 51.5542922], [-1.2996775, 51.5562968], [-1.3010236, 51.5588398], [-1.3013889, 51.5597079], [-1.3017372, 51.5611379], [-1.3018715, 51.5617233], [-1.3019004, 51.5622336], [-1.3019446, 51.5630131], [-1.3018943, 51.564283], [-1.3018, 51.564878], [-1.3016692, 51.5655264], [-1.3013018, 51.5668213], [-1.3006201, 51.5682421], [-1.2999396, 51.5694172], [-1.2995877, 51.5698891], [-1.2993061, 51.5702577], [-1.2982521, 51.5714695], [-1.2978059, 51.5719231], [-1.2938479, 51.5762001], [-1.292963, 51.5771908], [-1.2899068, 51.5804751], [-1.2879818, 51.5826], [-1.2838552, 51.5869949], [-1.2821665, 51.5888497], [-1.2806529, 51.5906009], [-1.2797109, 51.59196]]}}, {"type": "Feature", "properties": {"osm_id": "2989387", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2944847, 51.5288034], [-1.2945607, 51.5282631]]}}, {"type": "Feature", "properties": {"osm_id": "2989388", "highway": "trunk", "ref": "A34", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "operator": "Highways England", "highways_england_area": "3", "int_ref": "E 05", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3094185, 51.4614007], [-1.3089697, 51.4626165], [-1.3084381, 51.463728], [-1.3078552, 51.4648211], [-1.3066753, 51.4669942], [-1.3044019, 51.4712629], [-1.3037157, 51.4728605], [-1.3032727, 51.474186], [-1.3029636, 51.4755367], [-1.3028323, 51.476249], [-1.3027431, 51.4769936], [-1.3025971, 51.4784431], [-1.3023073, 51.4796789], [-1.3018972, 51.4806023], [-1.3014495, 51.4813276], [-1.3009325, 51.4820186], [-1.3002213, 51.4827518], [-1.2994547, 51.4834458], [-1.2988146, 51.4839926], [-1.2982255, 51.4845701], [-1.2978838, 51.484913], [-1.2975901, 51.4852792], [-1.2971329, 51.4858806], [-1.2967805, 51.4865193]]}}, {"type": "Feature", "properties": {"osm_id": "2989522", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "3", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.310639, 51.4519297], [-1.3107996, 51.4520152], [-1.310944, 51.4520984], [-1.3110303, 51.4521954], [-1.3111039, 51.4522942], [-1.31116, 51.4524474], [-1.3112136, 51.4526597], [-1.3112195, 51.4529763], [-1.3111167, 51.453228], [-1.3109619, 51.4533658], [-1.3108072, 51.4534876]]}}, {"type": "Feature", "properties": {"osm_id": "2990367", "highway": "trunk", "ref": "A355", "maxspeed": "60 mph", "lanes": "2", "lit": "yes", "name": "Gore Hill", "surface": "asphalt", "source_maxspeed": "Stats19 2010-2012", "old_ref": "B473", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6132098, 51.663188], [-0.6132678, 51.6629054], [-0.6133984, 51.6620508]]}}, {"type": "Feature", "properties": {"osm_id": "2990371", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "surface": "asphalt", "source_maxspeed": "Stats19 2010-2012", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6318282, 51.6023107], [-0.631843, 51.6022882], [-0.6318889, 51.6022575], [-0.6319336, 51.6022457]]}}, {"type": "Feature", "properties": {"osm_id": "2990394", "highway": "trunk", "ref": "A40", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "London Road", "surface": "asphalt", "source_maxspeed": "Stats19 2010-2012", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6318282, 51.6023107], [-0.6316892, 51.6022158]]}}, {"type": "Feature", "properties": {"osm_id": "2990939", "highway": "trunk", "ref": "A45", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Fletchamstead Highway", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5511783, 52.3928566], [-1.5511257, 52.3927408], [-1.5510649, 52.3926526], [-1.5509652, 52.3925614]]}}, {"type": "Feature", "properties": {"osm_id": "3015041", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3685094, 51.7879894], [-1.3685489, 51.7880083], [-1.3686078, 51.7880502], [-1.3686458, 51.7880968], [-1.3686654, 51.7881906], [-1.3686636, 51.7882006], [-1.3686472, 51.7882427]]}}, {"type": "Feature", "properties": {"osm_id": "3015042", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4355063, 51.789017], [-1.4335761, 51.789355], [-1.4324956, 51.7895689], [-1.432115, 51.7896488], [-1.4315209, 51.7897734], [-1.4303857, 51.7900115], [-1.4282339, 51.7904259], [-1.4271574, 51.7906042], [-1.4260266, 51.7907602]]}}, {"type": "Feature", "properties": {"osm_id": "3015089", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4746651, 51.7760645], [-1.4727453, 51.7764454], [-1.4714224, 51.7767479], [-1.4697775, 51.7771803], [-1.4681529, 51.7776785], [-1.4669059, 51.7781081], [-1.4658165, 51.7785098], [-1.4646839, 51.7789798], [-1.4638366, 51.7793638], [-1.4632487, 51.7796323], [-1.4619841, 51.7802761], [-1.4607173, 51.7809879], [-1.4592867, 51.781877], [-1.4583855, 51.7824191], [-1.4573766, 51.7829846]]}}, {"type": "Feature", "properties": {"osm_id": "3015090", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4355063, 51.789017], [-1.435658, 51.7889607], [-1.4373033, 51.788631], [-1.4378866, 51.7885167]]}}, {"type": "Feature", "properties": {"osm_id": "3015093", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4995209, 51.7756421], [-1.4985474, 51.7755676], [-1.4974406, 51.7754965]]}}, {"type": "Feature", "properties": {"osm_id": "3015094", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4746762, 51.7759544], [-1.4761272, 51.7757279], [-1.4775698, 51.7755457]]}}, {"type": "Feature", "properties": {"osm_id": "3015156", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.520034, 51.7787087], [-1.5163006, 51.7781908], [-1.5134411, 51.7777274], [-1.5105951, 51.7772054], [-1.5077624, 51.7766745], [-1.5052451, 51.7762747], [-1.5020573, 51.7758822], [-1.4995209, 51.7756421]]}}, {"type": "Feature", "properties": {"osm_id": "3015157", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5024867, 51.7758248], [-1.505439, 51.7761993], [-1.5078053, 51.7765787], [-1.5105204, 51.7770856], [-1.5105655, 51.777094], [-1.51345, 51.7776236], [-1.5164031, 51.7781035], [-1.5200356, 51.7786073]]}}, {"type": "Feature", "properties": {"osm_id": "3015231", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5200356, 51.7786073], [-1.5226306, 51.7789268], [-1.523688, 51.7790265], [-1.5241608, 51.7790845]]}}, {"type": "Feature", "properties": {"osm_id": "3015232", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5611367, 51.7842228], [-1.5630738, 51.7845675], [-1.5667563, 51.785244], [-1.5710052, 51.7861056], [-1.5750551, 51.7869931], [-1.578541, 51.7878057], [-1.5813547, 51.7884869], [-1.5821588, 51.7887039], [-1.5826059, 51.7888232], [-1.5827285, 51.788849]]}}, {"type": "Feature", "properties": {"osm_id": "3015233", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5666864, 51.7853454], [-1.563021, 51.7846606], [-1.5611059, 51.784334]]}}, {"type": "Feature", "properties": {"osm_id": "3015234", "highway": "trunk", "ref": "A40", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5611059, 51.784334], [-1.5573425, 51.7837229], [-1.5538803, 51.7831604]]}}, {"type": "Feature", "properties": {"osm_id": "3015273", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "source_maxspeed": "UK:nsl_single", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5831049, 51.7894059], [-1.5829552, 51.7894434], [-1.5827819, 51.7894481], [-1.5825849, 51.7894042], [-1.5825394, 51.7893799]]}}, {"type": "Feature", "properties": {"osm_id": "3015275", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5934648, 51.7913143], [-1.5901473, 51.7905527], [-1.5885937, 51.7902553], [-1.5868789, 51.7899661], [-1.5854871, 51.7896983], [-1.5841438, 51.7894877]]}}, {"type": "Feature", "properties": {"osm_id": "3015288", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "sidewalk": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6203327, 51.7976685], [-1.6209592, 51.7977494], [-1.6215854, 51.7978562], [-1.6223108, 51.7980178], [-1.623324, 51.7983203], [-1.6242236, 51.7986233], [-1.6256638, 51.7991341], [-1.6262428, 51.7993854], [-1.6272469, 51.79986], [-1.6277832, 51.8000753], [-1.6288574, 51.8004573], [-1.629479, 51.8006791]]}}, {"type": "Feature", "properties": {"osm_id": "3015289", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6203327, 51.7976685], [-1.6191153, 51.7975055], [-1.6178853, 51.7973582], [-1.6165849, 51.7972889], [-1.6157627, 51.7972617], [-1.6149371, 51.7972506], [-1.6127366, 51.79724], [-1.6120542, 51.7972387], [-1.6116729, 51.7972257], [-1.6109919, 51.7971584], [-1.6098278, 51.7969621], [-1.609017, 51.7967922], [-1.6082018, 51.7966061], [-1.6077202, 51.7964904], [-1.6072691, 51.7963691], [-1.6063446, 51.7960884], [-1.6053064, 51.7957526]]}}, {"type": "Feature", "properties": {"osm_id": "3015310", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7116972, 51.8065222], [-1.7123437, 51.8066296], [-1.7129936, 51.8067661], [-1.7142133, 51.8071854], [-1.7162796, 51.8080026], [-1.7182227, 51.8087024], [-1.7194113, 51.8090389], [-1.721141, 51.8095086], [-1.7233175, 51.8100967], [-1.7252138, 51.8106563]]}}, {"type": "Feature", "properties": {"osm_id": "3015311", "highway": "trunk", "ref": "A40", "maxspeed": "60 mph", "lanes": "2", "source_maxspeed": "UK:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.739532, 51.8145979], [-1.7411876, 51.8148053], [-1.7428079, 51.8149691], [-1.7443545, 51.8151024], [-1.7464843, 51.8153021], [-1.7478676, 51.815472], [-1.7492024, 51.815677], [-1.7501047, 51.8158423], [-1.7518088, 51.8162298], [-1.7536174, 51.8167179]]}}, {"type": "Feature", "properties": {"osm_id": "3017372", "highway": "trunk", "ref": "A31", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chawton Roundabout", "maxspeed_type": "GB:national", "surface": "asphalt", "sidewalk": "no", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.995326, 51.1328566], [-0.9952539, 51.1328737], [-0.9951614, 51.13289], [-0.9950975, 51.132897], [-0.9949934, 51.1328942], [-0.9949162, 51.1328871], [-0.9948301, 51.1328746], [-0.9947373, 51.1328524], [-0.9946224, 51.1328095], [-0.9945164, 51.1327568], [-0.9944037, 51.132693], [-0.9942977, 51.1326223], [-0.9942447, 51.1325849], [-0.9942071, 51.1325405], [-0.9941652, 51.1324865], [-0.9941464, 51.1324439], [-0.9941364, 51.1324213], [-0.9941183, 51.1323541], [-0.9941134, 51.1323358], [-0.9941099, 51.1323229], [-0.9941077, 51.1322702], [-0.9941144, 51.1322065], [-0.9941409, 51.1321302], [-0.9941564, 51.1321043], [-0.9941723, 51.1320776], [-0.9941806, 51.1320637], [-0.9942026, 51.1320374], [-0.994227, 51.1320082], [-0.9942911, 51.1319556], [-0.9943529, 51.1319126], [-0.9944391, 51.1318627], [-0.9945738, 51.1318072], [-0.9947793, 51.1317615], [-0.9949869, 51.1317532], [-0.9950832, 51.1317623], [-0.995104, 51.1317643], [-0.9951946, 51.1317809], [-0.9953006, 51.1318017], [-0.9953956, 51.1318336], [-0.9954773, 51.1318696], [-0.9955392, 51.1319057], [-0.9956541, 51.1319819], [-0.9957557, 51.1320484], [-0.9958418, 51.1321191], [-0.9958772, 51.1321718], [-0.9958993, 51.1322189], [-0.9959122, 51.1322617], [-0.9959217, 51.1323496], [-0.995916, 51.1324006], [-0.9959015, 51.1324449], [-0.9958617, 51.1325198], [-0.9958065, 51.1325904], [-0.9955856, 51.1327499], [-0.9955047, 51.1327898], [-0.9954041, 51.1328341], [-0.995326, 51.1328566]]}}, {"type": "Feature", "properties": {"osm_id": "3017374", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "maxspeed_type": "GB:national", "surface": "asphalt", "sidewalk": "no", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9508614, 51.1567409], [-0.9509143, 51.1568082], [-0.9509643, 51.1568895], [-0.9509899, 51.1569781], [-0.9509856, 51.1570634], [-0.9509726, 51.1571298], [-0.9509451, 51.1571916], [-0.9509123, 51.1572475], [-0.9508705, 51.1572977], [-0.9508159, 51.1573468], [-0.9507304, 51.157405], [-0.9506285, 51.157454], [-0.9505106, 51.1575123], [-0.950352, 51.1575421], [-0.9502446, 51.1575556], [-0.9501664, 51.1575613], [-0.9500317, 51.1575556], [-0.9498862, 51.1575362], [-0.9496661, 51.1574871], [-0.9494423, 51.1574289], [-0.9493222, 51.1573879], [-0.9492694, 51.1573639], [-0.9492221, 51.1573388], [-0.9491475, 51.1572886], [-0.9490675, 51.1572293], [-0.9490238, 51.1571711], [-0.9489856, 51.1571015], [-0.9489583, 51.1570033], [-0.9489583, 51.1568972], [-0.9489929, 51.1567991], [-0.9490657, 51.1567009], [-0.9491384, 51.1566382], [-0.9492203, 51.1565811], [-0.949304, 51.1565366], [-0.9494192, 51.1564901]]}}, {"type": "Feature", "properties": {"osm_id": "3017376", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "name": "North Street", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.0796793, 51.0977827], [-1.0798487, 51.0976681], [-1.0800791, 51.097502], [-1.0805899, 51.0971436], [-1.0808672, 51.0968715], [-1.08123, 51.0964458], [-1.0815055, 51.0960827], [-1.0817556, 51.0957163], [-1.0820854, 51.0950163], [-1.0822215, 51.0947274], [-1.0824268, 51.0942396], [-1.0825483, 51.0939855], [-1.0828187, 51.0935104], [-1.0829344, 51.0933299]]}}, {"type": "Feature", "properties": {"osm_id": "3017378", "highway": "trunk", "ref": "A31", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Alton Bypass", "maxspeed_type": "GB:national", "bicycle": "yes", "surface": "asphalt", "sidewalk": "no", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9505106, 51.1575123], [-0.9503277, 51.1575917], [-0.9502015, 51.157654], [-0.9500875, 51.1577378], [-0.9500124, 51.1578034], [-0.9498729, 51.15798], [-0.9497869, 51.1580945]]}}, {"type": "Feature", "properties": {"osm_id": "3017379", "highway": "trunk", "ref": "A31", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Alton Road", "maxspeed_type": "GB:national", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8163684, 51.2062553], [-0.8164747, 51.2062745], [-0.8165208, 51.2062805], [-0.8166037, 51.2062864], [-0.8167593, 51.2062919], [-0.8168907, 51.2062885], [-0.8170899, 51.2062613]]}}, {"type": "Feature", "properties": {"osm_id": "3017543", "highway": "trunk", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7420373, 51.2288109], [-0.7418932, 51.228777], [-0.7417706, 51.2287188], [-0.7416796, 51.2286411], [-0.7416458, 51.2285818], [-0.7416279, 51.2285504], [-0.7416177, 51.2284759], [-0.7416218, 51.2284576], [-0.7416341, 51.2284019], [-0.7416845, 51.2283226], [-0.7417654, 51.2282539], [-0.7418715, 51.2282002], [-0.7419221, 51.228186]]}}, {"type": "Feature", "properties": {"osm_id": "3017544", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Guildford Road", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.776757, 51.2206279], [-0.7765652, 51.2205011], [-0.776466, 51.2204381], [-0.7763665, 51.220383], [-0.7762833, 51.2203418], [-0.7762015, 51.2203099], [-0.7761271, 51.2202847], [-0.7760567, 51.2202651], [-0.7759823, 51.2202495], [-0.775891, 51.2202332], [-0.7757825, 51.220217], [-0.7756769, 51.220206]]}}, {"type": "Feature", "properties": {"osm_id": "3017545", "highway": "trunk", "ref": "A31", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Farnham Road", "maxspeed_type": "GB:nsl_dual", "layer": "1", "bridge": "yes", "foot": "no", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-0.7428508, 51.2274592], [-0.7433178, 51.227433], [-0.7437821, 51.2273995]]}}, {"type": "Feature", "properties": {"osm_id": "3018318", "highway": "trunk", "ref": "A331", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Blackwater Valley Road", "surface": "asphalt", "sidewalk": "separate", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7420373, 51.2288109], [-0.7418024, 51.2288509], [-0.7416742, 51.2288772], [-0.7415638, 51.2289131], [-0.7414661, 51.2289533]]}}, {"type": "Feature", "properties": {"osm_id": "3018319", "highway": "trunk", "ref": "A331", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "surface": "asphalt", "sidewalk": "none", "description": "Blackwater Valley Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7337721, 51.2807487], [-0.7341139, 51.2801595], [-0.7344362, 51.2795936], [-0.7346814, 51.2789581], [-0.7347618, 51.2785555]]}}, {"type": "Feature", "properties": {"osm_id": "3018320", "highway": "trunk", "maxspeed": "70 mph", "lanes": "3", "lit": "yes", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7535615, 51.3150704], [-0.7534691, 51.3149627], [-0.7534265, 51.3148492], [-0.7534391, 51.3147349], [-0.7534858, 51.3146663], [-0.7535676, 51.3145979], [-0.7536362, 51.3145615], [-0.7537071, 51.3145273], [-0.7537853, 51.3145], [-0.7538692, 51.3144802], [-0.7539683, 51.3144589], [-0.7540297, 51.3144521], [-0.7541553, 51.3144455], [-0.7543012, 51.3144615], [-0.7544213, 51.3144982], [-0.7545131, 51.3145446], [-0.7545742, 51.3146162], [-0.7546222, 51.3147168], [-0.7546107, 51.3148472], [-0.7545911, 51.314946], [-0.7545635, 51.3150256], [-0.7544388, 51.3151223], [-0.7542705, 51.3151884], [-0.754089, 51.3152036], [-0.7538248, 51.3151897], [-0.7536953, 51.3151441], [-0.7535615, 51.3150704]]}}, {"type": "Feature", "properties": {"osm_id": "3018321", "highway": "trunk", "ref": "A331", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7545571, 51.315372], [-0.7545865, 51.3154893], [-0.7546191, 51.3155707], [-0.7547426, 51.3157404], [-0.7548962, 51.3159037], [-0.7551468, 51.3161141], [-0.7554774, 51.3163242], [-0.7564731, 51.316905], [-0.7575822, 51.3175287], [-0.7578615, 51.3176422], [-0.7581161, 51.3176996], [-0.758391, 51.3177378], [-0.7585243, 51.3177433]]}}, {"type": "Feature", "properties": {"osm_id": "3025229", "highway": "trunk", "ref": "A5268", "maxspeed": "30 mph", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.893729, 53.1870892], [-2.8936359, 53.187152], [-2.8935167, 53.1871962], [-2.8933815, 53.1872181], [-2.8932764, 53.1872188], [-2.8931736, 53.1872059], [-2.8930642, 53.1871752], [-2.8929709, 53.1871292], [-2.8928995, 53.1870708], [-2.8928612, 53.1870177], [-2.8928412, 53.1869611], [-2.8928483, 53.1868708], [-2.8929013, 53.1867861], [-2.8929655, 53.1867332], [-2.8930478, 53.1866902], [-2.8931441, 53.1866593], [-2.8932745, 53.1866401], [-2.8934086, 53.1866431], [-2.8935362, 53.186668], [-2.8936476, 53.1867129], [-2.8937341, 53.1867744], [-2.8937889, 53.186847], [-2.8938088, 53.1869301], [-2.8937883, 53.1870132], [-2.893729, 53.1870892]]}}, {"type": "Feature", "properties": {"osm_id": "3025519", "highway": "trunk", "ref": "A36", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "name": "Cleveland Place", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3562707, 51.3896813], [-2.3567164, 51.3899382], [-2.3567746, 51.3899987], [-2.3567883, 51.3900341], [-2.3567944, 51.390081], [-2.3567782, 51.3901246], [-2.3567557, 51.3901661], [-2.3566892, 51.3902212]]}}, {"type": "Feature", "properties": {"osm_id": "3025539", "highway": "trunk", "ref": "A36", "maxspeed": "30 mph", "lanes": "2", "name": "Warminster Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3243178, 51.3919614], [-2.3265914, 51.3919421], [-2.3282219, 51.3919895], [-2.3291311, 51.3920081], [-2.330927, 51.3920671], [-2.3324953, 51.392133], [-2.3327416, 51.392126], [-2.3330142, 51.3921056], [-2.3332071, 51.3920732], [-2.3334575, 51.392026], [-2.3337083, 51.3919509], [-2.3339509, 51.3918671]]}}, {"type": "Feature", "properties": {"osm_id": "3025859", "highway": "trunk", "ref": "A36", "maxspeed": "30 mph", "lanes": "2", "name": "Pulteney Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3517207, 51.3778219], [-2.3516218, 51.3779275], [-2.3512287, 51.3783281], [-2.351162, 51.3784365], [-2.3511013, 51.378562], [-2.3510784, 51.378711], [-2.3511011, 51.3790102], [-2.3511228, 51.3791065], [-2.351166, 51.3793501], [-2.351238, 51.3797862], [-2.3512437, 51.3800801], [-2.3512433, 51.3801245], [-2.3512509, 51.3802639]]}}, {"type": "Feature", "properties": {"osm_id": "3027099", "highway": "trunk", "ref": "A36", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "Rossiter Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3596329, 51.3771742], [-2.3595519, 51.3771091], [-2.3594946, 51.3770758], [-2.3594265, 51.377051], [-2.3593431, 51.3770346], [-2.3592328, 51.3770313], [-2.3589949, 51.3770388], [-2.3586855, 51.377036], [-2.3582952, 51.377016], [-2.3580563, 51.3769891], [-2.3577935, 51.3769363], [-2.3573146, 51.3768229], [-2.3571497, 51.3767923], [-2.3569445, 51.3767646], [-2.3567306, 51.3767511], [-2.3564973, 51.3767482], [-2.3563089, 51.3767595], [-2.3561265, 51.3767831], [-2.3559493, 51.3768188]]}}, {"type": "Feature", "properties": {"osm_id": "3027922", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "name": "London Road Junction", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3367967, 51.3989129], [-2.3366269, 51.398903]]}}, {"type": "Feature", "properties": {"osm_id": "3027944", "highway": "trunk", "ref": "A46", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "layer": "1", "bridge": "yes", "z_order": 28}, "geometry": {"type": "LineString", "coordinates": [[-2.3352377, 51.3974634], [-2.334776, 51.3972242], [-2.3343021, 51.3970082], [-2.3338052, 51.3968313], [-2.3333343, 51.3966913]]}}, {"type": "Feature", "properties": {"osm_id": "3027945", "highway": "trunk", "ref": "A4", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3099015, 51.4024227], [-2.310059, 51.4023813], [-2.3101155, 51.402365]]}}, {"type": "Feature", "properties": {"osm_id": "3030361", "highway": "trunk", "ref": "A414", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.301916, 51.731293], [-0.3011176, 51.7315165], [-0.3008513, 51.731591], [-0.3006699, 51.7316321], [-0.3005035, 51.7316547], [-0.3002327, 51.7316813], [-0.2999844, 51.7316774], [-0.2997093, 51.7316719], [-0.2988929, 51.7315639], [-0.2975969, 51.7314014], [-0.2969146, 51.7313127], [-0.2954533, 51.7311245], [-0.2930468, 51.7308187], [-0.2925591, 51.73079], [-0.2921837, 51.7307795], [-0.2915761, 51.730802], [-0.2910396, 51.7308517], [-0.2905134, 51.7309348], [-0.2902638, 51.7309893], [-0.2900419, 51.7310452], [-0.2896907, 51.7311418], [-0.2894808, 51.7312088], [-0.2892758, 51.731283], [-0.2891076, 51.7313504], [-0.2889117, 51.7314325], [-0.2887196, 51.7315247], [-0.2884357, 51.7316728], [-0.2881917, 51.7318182], [-0.2879475, 51.7319766], [-0.2874589, 51.7322963], [-0.2835063, 51.7348597], [-0.2801981, 51.7370231], [-0.2766924, 51.7393118], [-0.2760416, 51.7396862], [-0.2755494, 51.7399483], [-0.2747898, 51.7403068], [-0.2742749, 51.7405263]]}}, {"type": "Feature", "properties": {"osm_id": "3031898", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2283701, 53.0541093], [-2.2274785, 53.0531439], [-2.2264512, 53.0519047], [-2.225634, 53.0508253], [-2.225277, 53.0503129], [-2.2242807, 53.0486717], [-2.2219701, 53.0443847], [-2.2216918, 53.0439208], [-2.2209021, 53.0428806], [-2.2200275, 53.0421941], [-2.2193299, 53.0417304], [-2.2185639, 53.0413281], [-2.2182355, 53.0411714], [-2.217849, 53.0410068], [-2.2173382, 53.0408122], [-2.2160263, 53.0403567], [-2.2157604, 53.0402601], [-2.2153178, 53.0400901], [-2.2150206, 53.0399668], [-2.2140571, 53.0394716], [-2.2134604, 53.0390939], [-2.2124676, 53.0384031], [-2.2120947, 53.0380416], [-2.2117864, 53.0377942], [-2.2117124, 53.0377281]]}}, {"type": "Feature", "properties": {"osm_id": "3031899", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2338935, 53.0578381], [-2.2358539, 53.0587377], [-2.2365449, 53.0590079], [-2.2374085, 53.0593317], [-2.2390021, 53.0598551], [-2.2402292, 53.060206], [-2.2423929, 53.0607795], [-2.2429771, 53.0609316]]}}, {"type": "Feature", "properties": {"osm_id": "3031900", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2428559, 53.0610091], [-2.2408507, 53.0604786], [-2.2391458, 53.0600126], [-2.2373724, 53.0594469], [-2.2364175, 53.0590846], [-2.2357644, 53.0588308], [-2.2338216, 53.0579343]]}}, {"type": "Feature", "properties": {"osm_id": "3031906", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2429771, 53.0609316], [-2.2437547, 53.0611343], [-2.245709, 53.0616076], [-2.2474425, 53.0620214], [-2.2489257, 53.0623529], [-2.2499855, 53.0625736], [-2.251251, 53.0627799], [-2.2531541, 53.0630296], [-2.2543113, 53.0631045], [-2.2550374, 53.0631368], [-2.2558311, 53.0631588], [-2.25693, 53.0631529], [-2.2575351, 53.0631258]]}}, {"type": "Feature", "properties": {"osm_id": "3031907", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "9", "bicycle": "yes", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3328466, 53.069127], [-2.3326244, 53.069085], [-2.3324113, 53.0690537], [-2.3321617, 53.0690553], [-2.3319293, 53.0690784], [-2.3312435, 53.0692279], [-2.3303805, 53.0694252], [-2.3296646, 53.0695848], [-2.3288287, 53.0697524], [-2.3279956, 53.0698789], [-2.3271979, 53.0699535], [-2.3264885, 53.0699895], [-2.3259011, 53.0699898], [-2.3251026, 53.0699532], [-2.3245903, 53.0699177], [-2.3241096, 53.0698557], [-2.3233071, 53.0697292], [-2.321848, 53.0694596], [-2.3207177, 53.069266], [-2.3198476, 53.0691569], [-2.3186326, 53.0690414], [-2.317358, 53.0689903], [-2.3149837, 53.0689705], [-2.3134929, 53.0689319], [-2.3124104, 53.0688791], [-2.3115556, 53.0688306], [-2.3104124, 53.0687253], [-2.3098931, 53.0686649], [-2.3085056, 53.0684904], [-2.3074134, 53.0683361], [-2.3061665, 53.0681242], [-2.3050812, 53.0679068], [-2.3037487, 53.0676228], [-2.3022131, 53.067271], [-2.3011346, 53.0670328], [-2.3000376, 53.0668336], [-2.2992321, 53.0667058], [-2.2988501, 53.0666494], [-2.298159, 53.0665709], [-2.2973554, 53.0664929], [-2.2972197, 53.0664798], [-2.2968927, 53.0664579], [-2.2961865, 53.0664105], [-2.2948781, 53.0663665], [-2.2930075, 53.0663061], [-2.2900067, 53.0662272], [-2.2869712, 53.0661439], [-2.2832958, 53.0660462], [-2.279931, 53.0659531]]}}, {"type": "Feature", "properties": {"osm_id": "3033425", "highway": "trunk", "ref": "A6", "maxspeed": "40 mph", "oneway": "yes", "name": "Loughborough Road", "surface": "asphalt", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1294888, 52.6650294], [-1.1293133, 52.6652283], [-1.1292488, 52.6653349], [-1.1292144, 52.6654282], [-1.1292128, 52.6655194], [-1.129228, 52.66561], [-1.1292491, 52.6656793], [-1.1293093, 52.6669152], [-1.1293285, 52.6673016], [-1.1293319, 52.6674258], [-1.1293538, 52.6679379], [-1.1293529, 52.6683549], [-1.129258, 52.6692072], [-1.1291879, 52.6697578], [-1.1290863, 52.6701127], [-1.1290123, 52.6702181]]}}, {"type": "Feature", "properties": {"osm_id": "3033426", "highway": "trunk", "ref": "A6", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Loughborough Road", "source_maxspeed": "survey", "source_name": "NaPTAN", "turn_lanes": "left;through|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1256007, 52.6802437], [-1.1256017, 52.6802982], [-1.1256187, 52.6804099], [-1.1256226, 52.6804835], [-1.125645, 52.680609]]}}, {"type": "Feature", "properties": {"osm_id": "3033427", "highway": "trunk", "ref": "A6", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Loughborough Road", "maxspeed_type": "gb:national", "source_maxspeed": "survey", "source_name": "NaPTAN", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1250978, 52.6918975], [-1.1252755, 52.6915734]]}}, {"type": "Feature", "properties": {"osm_id": "3040365", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Brompton Road", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "Survey of 2015-11-04", "sidewalk": "left", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1689699, 51.4967806], [-0.1689257, 51.4968028], [-0.1688419, 51.4968477], [-0.1687647, 51.4968876], [-0.1687048, 51.4969205], [-0.1685621, 51.4970037], [-0.1683283, 51.4971513]]}}, {"type": "Feature", "properties": {"osm_id": "3040412", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "West Cromwell Road", "operator": "Transport for London", "source_maxspeed": "survey of 30-07-2013", "sidewalk": "left", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2004886, 51.4925271], [-0.2010114, 51.4921404], [-0.2012286, 51.4920221]]}}, {"type": "Feature", "properties": {"osm_id": "3040458", "highway": "trunk", "ref": "A4", "maxspeed": "30 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Knightsbridge", "operator": "Transport for London", "bicycle": "yes", "surface": "asphalt", "sidewalk": "left", "foot": "yes", "horse": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1583257, 51.5022386], [-0.1583579, 51.5022023], [-0.1584518, 51.5021893], [-0.1585698, 51.5021696], [-0.1586151, 51.5021992]]}}, {"type": "Feature", "properties": {"osm_id": "3042358", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "9", "bicycle": "yes", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2985608, 53.0665036], [-2.2997954, 53.0666821], [-2.3011325, 53.0669222], [-2.3022231, 53.0671683], [-2.3037769, 53.0675188], [-2.3051148, 53.0678083], [-2.3062426, 53.0680357], [-2.3074271, 53.0682267], [-2.3085723, 53.0683945], [-2.3102611, 53.0686049], [-2.3118519, 53.0687353], [-2.3135436, 53.0688293], [-2.3148723, 53.0688748], [-2.3173767, 53.0688794], [-2.318657, 53.0689355], [-2.3193914, 53.0689945], [-2.3200965, 53.0690678], [-2.3208057, 53.0691666], [-2.3215701, 53.0692907], [-2.3233854, 53.0696348], [-2.3241686, 53.0697566], [-2.3246504, 53.0698114], [-2.325087, 53.0698493], [-2.325903, 53.0698802], [-2.3265317, 53.0698794], [-2.3272567, 53.0698417], [-2.327997, 53.0697664], [-2.3287783, 53.0696522], [-2.3296146, 53.0694836], [-2.3311637, 53.0691384], [-2.3318886, 53.0689728], [-2.3320938, 53.0689107], [-2.3322914, 53.0688082], [-2.3324099, 53.0687053], [-2.3324868, 53.068591]]}}, {"type": "Feature", "properties": {"osm_id": "3042364", "highway": "trunk", "ref": "A500", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:nsl_dual", "highways_england_area": "9", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.333558, 53.0680914], [-2.3337861, 53.0680824], [-2.3340234, 53.068089], [-2.3342475, 53.0681113], [-2.3343929, 53.0681347], [-2.334677, 53.0681994], [-2.3348645, 53.0682832], [-2.3349539, 53.0683473], [-2.3349964, 53.0683999], [-2.3350369, 53.0684671], [-2.3350679, 53.0685661], [-2.3350631, 53.0686239], [-2.3350489, 53.06868], [-2.3349931, 53.0687783], [-2.3348705, 53.0688875], [-2.3347583, 53.0689508], [-2.3346549, 53.0689919], [-2.3344149, 53.0690489], [-2.3343032, 53.0690744], [-2.3335154, 53.0692126], [-2.3333249, 53.0692165], [-2.333191, 53.0692085], [-2.3330215, 53.0691858], [-2.3329399, 53.0691615], [-2.3328466, 53.069127], [-2.3326601, 53.0690147], [-2.3325644, 53.0689089], [-2.3325241, 53.0688502], [-2.3324953, 53.0687786], [-2.3324868, 53.068591], [-2.3325292, 53.0685114], [-2.3325998, 53.0684112], [-2.3326881, 53.0683352], [-2.3328202, 53.068265], [-2.3329341, 53.0682188], [-2.3330783, 53.068175], [-2.333558, 53.0680914]]}}, {"type": "Feature", "properties": {"osm_id": "3042367", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3331177, 53.0679538], [-2.3329886, 53.067687], [-2.3326817, 53.0668984], [-2.3324883, 53.0662813], [-2.3322145, 53.0651561], [-2.3321087, 53.0645001], [-2.3319799, 53.0632852], [-2.3318738, 53.0624147]]}}, {"type": "Feature", "properties": {"osm_id": "3042368", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "carriageway_ref": "A", "int_ref": "E 05", "description": "Newcastle-under-Lyme By-Pass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.330334, 53.0445616], [-2.330536, 53.0466737]]}}, {"type": "Feature", "properties": {"osm_id": "3042398", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "carriageway_ref": "A", "int_ref": "E 05", "description": "Newcastle-under-Lyme By-Pass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3238407, 53.0272128], [-2.3244916, 53.0278268], [-2.3256091, 53.0288699], [-2.3260792, 53.0293294], [-2.326404, 53.0296664], [-2.3267478, 53.0300488], [-2.3269866, 53.0303166], [-2.3272661, 53.0306748], [-2.3277419, 53.0313322], [-2.3280332, 53.0317748], [-2.3283513, 53.0323368], [-2.3287659, 53.0332187], [-2.3290245, 53.0338986], [-2.3291748, 53.0343699], [-2.3292809, 53.0348605], [-2.32936, 53.035246], [-2.3294814, 53.036245], [-2.3296001, 53.0375087], [-2.3298115, 53.0394994], [-2.3300239, 53.0416498], [-2.3301178, 53.0425835], [-2.3303048, 53.0442732]]}}, {"type": "Feature", "properties": {"osm_id": "3042399", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "carriageway_ref": "B", "int_ref": "E 05", "description": "Newcastle-under-Lyme By-Pass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3300838, 53.0444439], [-2.3298871, 53.0425677], [-2.329804, 53.0416617], [-2.3295848, 53.0395081], [-2.3293882, 53.0375198], [-2.3292648, 53.0362566], [-2.3291213, 53.0352476], [-2.3290682, 53.0348888], [-2.328958, 53.034437], [-2.3288059, 53.033932], [-2.3285304, 53.0332335], [-2.3281597, 53.032424], [-2.3278309, 53.0318425], [-2.3275332, 53.0313959], [-2.327056, 53.0307173], [-2.3267811, 53.0303682], [-2.3265714, 53.0301511], [-2.3262224, 53.0297472], [-2.3258906, 53.0293959], [-2.325365, 53.0288923], [-2.3246877, 53.0282546], [-2.3241899, 53.027786], [-2.3235405, 53.0271803]]}}, {"type": "Feature", "properties": {"osm_id": "3042400", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "carriageway_ref": "A", "int_ref": "E 05", "description": "Newcastle-under-Lyme By-Pass", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3296505, 53.0115975], [-2.3294419, 53.0121744], [-2.329183, 53.0127579], [-2.3290092, 53.01308], [-2.3288282, 53.0133505], [-2.3283709, 53.0139589], [-2.3277886, 53.0145713], [-2.3272819, 53.0150878], [-2.326315, 53.0159913], [-2.3249861, 53.0172592], [-2.3232484, 53.0188955], [-2.3229435, 53.0192466], [-2.3226806, 53.0195772], [-2.3224397, 53.0199231], [-2.3222769, 53.020183], [-2.322128, 53.0204645], [-2.32194, 53.020858], [-2.3218086, 53.0211638], [-2.3217023, 53.0215339], [-2.3216246, 53.021868], [-2.3215578, 53.0224824], [-2.3215358, 53.0230363], [-2.3216125, 53.0235154], [-2.3217223, 53.0240406], [-2.321963, 53.0247238], [-2.3222058, 53.0252436], [-2.3227216, 53.026017], [-2.3232173, 53.0265884], [-2.3237197, 53.0271022]]}}, {"type": "Feature", "properties": {"osm_id": "3044529", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3880622, 51.8811748], [-1.3876635, 51.8807758], [-1.3871316, 51.8802365], [-1.3865475, 51.8796435], [-1.386116, 51.8792134], [-1.3856926, 51.8788671], [-1.3851309, 51.8784102], [-1.3849394, 51.8782253], [-1.3847708, 51.8779998], [-1.3846585, 51.8777889], [-1.3842516, 51.8767672], [-1.3841088, 51.8763969], [-1.3840302, 51.8761669], [-1.3839841, 51.8759494], [-1.3839617, 51.8756941], [-1.3839709, 51.875496], [-1.3839948, 51.8752796], [-1.3840072, 51.8751727], [-1.3840256, 51.8750136], [-1.3840186, 51.8747612], [-1.3839778, 51.874512], [-1.3839192, 51.8742947], [-1.3838398, 51.8740571], [-1.3836143, 51.8734587], [-1.3833727, 51.8728643], [-1.3832384, 51.8726308], [-1.383087, 51.872429], [-1.3828622, 51.8722156], [-1.3824516, 51.8719702], [-1.3817156, 51.8714769], [-1.3813287, 51.8712227], [-1.3807142, 51.8708131]]}}, {"type": "Feature", "properties": {"osm_id": "3044530", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "source_maxspeed": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4125293, 51.8989742], [-1.4118831, 51.8986615], [-1.4114631, 51.8984582], [-1.4109697, 51.8982194], [-1.4098673, 51.8976491], [-1.4092772, 51.8973594], [-1.4087042, 51.8969665], [-1.408408, 51.896805], [-1.4082009, 51.896695]]}}, {"type": "Feature", "properties": {"osm_id": "3044531", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "source_maxspeed": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.437758, 51.9082664], [-1.437048, 51.9080166], [-1.436608, 51.9078872], [-1.4363727, 51.9078406], [-1.4361332, 51.9078015], [-1.4354564, 51.9077007]]}}, {"type": "Feature", "properties": {"osm_id": "3044532", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "name": "Oxford Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4556292, 51.9182847], [-1.4553033, 51.9179736], [-1.4550903, 51.9177395], [-1.4547149, 51.9173192], [-1.4545326, 51.9170596], [-1.4544412, 51.9168919], [-1.4543618, 51.9166868], [-1.4542839, 51.9163481], [-1.454072, 51.9160124], [-1.4539162, 51.9157511], [-1.4538607, 51.9156577], [-1.4536992, 51.9153564], [-1.4536201, 51.9152806], [-1.4535271, 51.9152042], [-1.4534227, 51.9151357], [-1.4532846, 51.9150668], [-1.4521884, 51.9148345], [-1.4518219, 51.9147568], [-1.4513226, 51.9146274], [-1.4510875, 51.9145398], [-1.4508435, 51.9144236], [-1.4506141, 51.9142679], [-1.4503264, 51.9139918], [-1.4502179, 51.9138583], [-1.4495701, 51.9131138], [-1.4492827, 51.9128799], [-1.4489057, 51.9126642], [-1.4488473, 51.9126307], [-1.4486068, 51.9125032], [-1.4479149, 51.9121333], [-1.4473141, 51.9117571]]}}, {"type": "Feature", "properties": {"osm_id": "3044545", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4783806, 51.9248357], [-1.4756029, 51.9236638], [-1.4751613, 51.9234805], [-1.4748273, 51.9233518], [-1.4744639, 51.9232471], [-1.4736791, 51.923063], [-1.4715672, 51.9226244], [-1.4710785, 51.9224818], [-1.4702421, 51.9221785], [-1.4696082, 51.9219833], [-1.4687539, 51.921776], [-1.4682841, 51.9216186], [-1.4681637, 51.9215738], [-1.4678308, 51.9214499], [-1.4670396, 51.921076], [-1.4662024, 51.9207528], [-1.4643574, 51.9201375], [-1.4625955, 51.9194567], [-1.4619106, 51.9192493], [-1.4612409, 51.9191028], [-1.460495, 51.9189729], [-1.4600194, 51.9189049]]}}, {"type": "Feature", "properties": {"osm_id": "3047080", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Brampton Hut Interchange", "operator": "Highways England", "highways_england_area": "8", "bicycle": "yes", "surface": "asphalt", "source_maxspeed": "survey", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2493307, 52.3324012], [-0.2494378, 52.3324326], [-0.2495334, 52.3324757], [-0.2496327, 52.3325339], [-0.249684, 52.3325772], [-0.2496976, 52.3325984], [-0.2497217, 52.3326628], [-0.2497422, 52.332739], [-0.2497373, 52.3328162], [-0.2497075, 52.3328912], [-0.2496537, 52.3329611], [-0.2495783, 52.333023], [-0.249529, 52.3330525], [-0.2494536, 52.3330873], [-0.2493705, 52.3331148], [-0.2492817, 52.3331344], [-0.249189, 52.3331457], [-0.2490946, 52.3331484], [-0.2490006, 52.3331425], [-0.247973, 52.3329855], [-0.2477524, 52.3329508], [-0.2476398, 52.3329295], [-0.2475349, 52.3329064], [-0.2474382, 52.3328724], [-0.2473528, 52.3328285], [-0.2472813, 52.3327762], [-0.2472259, 52.332717], [-0.2471852, 52.3326449], [-0.2471684, 52.3325693], [-0.2471762, 52.3324932], [-0.2472083, 52.3324194], [-0.2472634, 52.332351], [-0.2473395, 52.3322905], [-0.2473948, 52.3322586], [-0.2474689, 52.3322259], [-0.2475498, 52.3322002], [-0.247636, 52.3321818], [-0.2477256, 52.3321711], [-0.2478168, 52.3321685], [-0.2479077, 52.3321739], [-0.2489084, 52.3323133], [-0.2491825, 52.3323611], [-0.2493307, 52.3324012]]}}, {"type": "Feature", "properties": {"osm_id": "3055343", "highway": "trunk", "ref": "A51", "maxspeed": "60 mph", "name": "Nantwich Road", "bicycle": "yes", "foot": "yes", "alt_name": "Chester Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6603729, 53.1457985], [-2.6601213, 53.1456298], [-2.6598324, 53.1453764], [-2.6594774, 53.1449277], [-2.6593916, 53.1448193], [-2.6591664, 53.1445443], [-2.6587055, 53.1439829], [-2.6584555, 53.1437317], [-2.658184, 53.1434898], [-2.6581235, 53.143436]]}}, {"type": "Feature", "properties": {"osm_id": "3055344", "highway": "trunk", "ref": "A49", "maxspeed": "60 mph", "oneway": "no", "bicycle": "yes", "surface": "asphalt", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6603729, 53.1457985], [-2.6609429, 53.1461664], [-2.662224, 53.1467702], [-2.6631823, 53.1472618], [-2.6665037, 53.1493577]]}}, {"type": "Feature", "properties": {"osm_id": "3056048", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2276451, 52.3882284], [0.227551, 52.3882272], [0.2274073, 52.3882425], [0.2272754, 52.3883035], [0.2271888, 52.3883832], [0.2271779, 52.3884635], [0.2272091, 52.3885457], [0.2272604, 52.3886096], [0.227342, 52.3886529], [0.227457, 52.3886865], [0.2275921, 52.3886903], [0.2276941, 52.3886781], [0.2278093, 52.3886381], [0.2278932, 52.3885876], [0.227944, 52.3885373], [0.2279681, 52.3884829], [0.227954, 52.3884273], [0.2279118, 52.3883508], [0.2278135, 52.3882865], [0.2277254, 52.3882536], [0.2276451, 52.3882284]]}}, {"type": "Feature", "properties": {"osm_id": "3056049", "highway": "trunk", "ref": "A142", "maxspeed": "60 mph", "lanes": "2", "maxspeed_type": "gb:national", "source_maxspeed": "Stats19", "source_ref": "dictaphone", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.227954, 52.3884273], [0.2281598, 52.3884131], [0.2300214, 52.3882206], [0.2304332, 52.3881983], [0.2310674, 52.3881664], [0.2315973, 52.3881719], [0.23184, 52.3881784], [0.2319306, 52.3881826], [0.2326938, 52.3882401], [0.2330494, 52.3882804], [0.2338792, 52.3884015], [0.2343983, 52.3885135], [0.2352642, 52.3887376], [0.2367575, 52.3891961], [0.2387997, 52.3898414], [0.2391751, 52.3899724], [0.2393907, 52.3900476], [0.2398557, 52.3902269], [0.2404357, 52.3904789]]}}, {"type": "Feature", "properties": {"osm_id": "3056050", "highway": "trunk", "maxspeed": "60 mph", "oneway": "yes", "maxspeed_type": "gb:national", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.243279, 52.3917558], [0.2432233, 52.3917143], [0.2431506, 52.3916841], [0.2430669, 52.3916676], [0.2429795, 52.3916663], [0.242895, 52.3916801], [0.2428155, 52.3917102], [0.2427546, 52.3917535], [0.2427179, 52.3918061], [0.2427084, 52.3918466], [0.2427136, 52.3918873], [0.2427331, 52.3919265], [0.2427762, 52.3919702], [0.242837, 52.3920053], [0.2429111, 52.392029], [0.2430082, 52.3920401], [0.243106, 52.3920319], [0.2431795, 52.3920113], [0.2432417, 52.3919797], [0.2432882, 52.3919393], [0.2433159, 52.3918929], [0.2433229, 52.3918576], [0.243319, 52.3918222], [0.2433041, 52.3917879], [0.243279, 52.3917558]]}}, {"type": "Feature", "properties": {"osm_id": "3056593", "highway": "trunk", "ref": "A142", "maxspeed": "60 mph", "oneway": "yes", "name": "Angel Drove", "maxspeed_type": "gb:national", "junction": "approach", "source_name": "dictaphone", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.2479599, 52.3862891], [0.2480992, 52.3862198], [0.24849, 52.3860308]]}}, {"type": "Feature", "properties": {"osm_id": "3057626", "highway": "trunk", "ref": "A46", "maxspeed": "40 mph", "name": "Ashchurch Road", "operator": "Highways England", "highways_england_area": "9", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1205211, 51.9966326], [-2.1200584, 51.9966878]]}}, {"type": "Feature", "properties": {"osm_id": "3058007", "highway": "trunk", "ref": "A606", "maxspeed": "60 mph", "name": "Nottingham Road", "source_maxspeed": "survey", "source_name": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.9161595, 52.7921461], [-0.9156715, 52.7919069], [-0.9133185, 52.7907537]]}}, {"type": "Feature", "properties": {"osm_id": "3058605", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3440954, 53.3988895], [-1.3429327, 53.3989105], [-1.337764, 53.3989294]]}}, {"type": "Feature", "properties": {"osm_id": "3058610", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3376753, 53.3987763], [-1.340538, 53.3987516], [-1.3423765, 53.3987329], [-1.3440847, 53.3987063]]}}, {"type": "Feature", "properties": {"osm_id": "3058611", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3597441, 53.3967329], [-1.3589873, 53.3968186], [-1.3581282, 53.396949], [-1.3570063, 53.3971617], [-1.3562112, 53.397328], [-1.3556877, 53.3974446], [-1.3552945, 53.3975289]]}}, {"type": "Feature", "properties": {"osm_id": "3058645", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2784427, 53.3797226], [-1.2786296, 53.3790129], [-1.2789148, 53.3781136], [-1.2792187, 53.3772811], [-1.2799161, 53.3757057], [-1.2803579, 53.3749197], [-1.2807669, 53.3741087], [-1.2813215, 53.3729611], [-1.2816413, 53.3721841], [-1.2819331, 53.3714239], [-1.2820803, 53.3709667], [-1.2822566, 53.3703984], [-1.2823956, 53.3698357]]}}, {"type": "Feature", "properties": {"osm_id": "3058646", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2886099, 53.3365518], [-1.288939, 53.336973], [-1.2897437, 53.3383571], [-1.2903091, 53.3398471], [-1.2904636, 53.3405394], [-1.2905478, 53.3412879], [-1.2905451, 53.3424654], [-1.2904196, 53.3435198], [-1.2903404, 53.3438905], [-1.2899837, 53.3451227], [-1.2896381, 53.3459597], [-1.2889022, 53.3473881], [-1.2883167, 53.3485018], [-1.2876935, 53.3498403]]}}, {"type": "Feature", "properties": {"osm_id": "3058660", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2874343, 53.3498061], [-1.288214, 53.3482157], [-1.2889926, 53.3466707], [-1.2894706, 53.3458105], [-1.2899578, 53.3444848], [-1.2902042, 53.3433055], [-1.2902587, 53.3429942], [-1.2902908, 53.3418861], [-1.2902163, 53.3408525], [-1.2901406, 53.3402914], [-1.2894969, 53.338408], [-1.2886601, 53.3370297], [-1.2883662, 53.3366149]]}}, {"type": "Feature", "properties": {"osm_id": "3058661", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2837177, 53.3105918], [-1.2830255, 53.312822], [-1.2827089, 53.313882], [-1.2825339, 53.3144683], [-1.2822228, 53.3155131], [-1.2817654, 53.3169835], [-1.2816139, 53.3175076], [-1.2814378, 53.3182562], [-1.2812809, 53.3191404], [-1.2812294, 53.3194497], [-1.2811032, 53.3207211]]}}, {"type": "Feature", "properties": {"osm_id": "3058679", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2808559, 53.3206913], [-1.2810104, 53.3193897], [-1.2810536, 53.3190144], [-1.2813911, 53.3174967], [-1.2815255, 53.316976], [-1.2819653, 53.3154599], [-1.2822985, 53.3144457], [-1.2831203, 53.3117115], [-1.2835239, 53.3104177]]}}, {"type": "Feature", "properties": {"osm_id": "3058680", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3046144, 53.269692], [-1.3035967, 53.2716105], [-1.3011377, 53.2762604], [-1.3001303, 53.2780909], [-1.2982049, 53.2816515], [-1.2974798, 53.283174], [-1.2974257, 53.2832968], [-1.2973672, 53.283417], [-1.2972631, 53.2836628], [-1.2970526, 53.2841514], [-1.2968812, 53.2845673], [-1.2967057, 53.2849956], [-1.296372, 53.285861], [-1.2962544, 53.2861644], [-1.296131, 53.2865107]]}}, {"type": "Feature", "properties": {"osm_id": "3058683", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "12", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2836546, 53.3100676], [-1.28392, 53.3093716], [-1.284203, 53.3087083], [-1.2845893, 53.3079279], [-1.2851747, 53.3069704], [-1.2856874, 53.3061973], [-1.2862016, 53.3054757], [-1.2880056, 53.3034746], [-1.288903, 53.3022807], [-1.2899976, 53.3007909], [-1.2909131, 53.2992555], [-1.2917929, 53.2973575], [-1.2945302, 53.290082]]}}, {"type": "Feature", "properties": {"osm_id": "3058684", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "layer": "1", "bridge": "yes", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-1.305971, 53.26722], [-1.3058707, 53.2674116]]}}, {"type": "Feature", "properties": {"osm_id": "3058692", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3056889, 53.2671828], [-1.3063803, 53.2660913], [-1.3073193, 53.2649016]]}}, {"type": "Feature", "properties": {"osm_id": "3058693", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.323206, 53.1832778], [-1.3231849, 53.1838988], [-1.3231997, 53.1850201], [-1.3232708, 53.1861357], [-1.3233689, 53.1870857], [-1.3235021, 53.1880121], [-1.3236843, 53.1890245], [-1.3238575, 53.1900502], [-1.323917, 53.1904851], [-1.323952, 53.1909204], [-1.3239871, 53.1913519], [-1.3239999, 53.1917579], [-1.3239957, 53.1926721], [-1.323968, 53.1932268], [-1.3239185, 53.1937594], [-1.3237762, 53.1947039], [-1.3236135, 53.1955592], [-1.3234211, 53.1963617], [-1.3233111, 53.1967373], [-1.3232013, 53.1971118], [-1.3228469, 53.1980858], [-1.3226689, 53.1985826], [-1.322513, 53.1990577], [-1.3223061, 53.1997623], [-1.3222137, 53.20012], [-1.3221395, 53.2004695], [-1.3220425, 53.2010257], [-1.3219563, 53.2015659], [-1.3218807, 53.2024435], [-1.3218483, 53.2031155], [-1.3218833, 53.2040269], [-1.3218749, 53.2043859], [-1.3219231, 53.2050426], [-1.3219997, 53.2057955], [-1.322038, 53.2061774], [-1.3220827, 53.2065461], [-1.3222611, 53.207635], [-1.3224891, 53.2087559], [-1.3226554, 53.2094609], [-1.3228393, 53.210124], [-1.3231646, 53.2111855], [-1.3233472, 53.2117172], [-1.3235422, 53.2122375], [-1.3238925, 53.213103], [-1.3242692, 53.2139866], [-1.3247915, 53.2150784], [-1.3253473, 53.2161575], [-1.3259092, 53.2171145], [-1.3262021, 53.2175894], [-1.3265087, 53.2180603], [-1.3268691, 53.2186148], [-1.3272521, 53.2191599], [-1.3280638, 53.2202653], [-1.3288617, 53.2213539], [-1.3292345, 53.2218862], [-1.3295729, 53.222399], [-1.3299005, 53.2229241], [-1.330216, 53.2234526], [-1.3307744, 53.2245062], [-1.3312867, 53.225574], [-1.3315034, 53.2261082], [-1.3317137, 53.2266162], [-1.3319525, 53.2272759], [-1.3321472, 53.2278715]]}}, {"type": "Feature", "properties": {"osm_id": "3058702", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3318976, 53.2279043], [-1.3317297, 53.2273272], [-1.3315053, 53.226724], [-1.3310637, 53.225616], [-1.3305471, 53.2245284], [-1.3299961, 53.2235003], [-1.329687, 53.2229737], [-1.3293607, 53.2224533], [-1.3290115, 53.2219205], [-1.3286259, 53.2213692], [-1.3278053, 53.2202635], [-1.3270268, 53.2191896], [-1.326646, 53.2186445], [-1.3262848, 53.2181017], [-1.3259768, 53.2176218], [-1.3256771, 53.2171293], [-1.3251147, 53.2161426], [-1.3245504, 53.2150892], [-1.3240443, 53.2140187], [-1.3236739, 53.2131529], [-1.3233226, 53.212279], [-1.3231308, 53.2117563], [-1.3229506, 53.2112435], [-1.3226286, 53.210204], [-1.3224301, 53.2094906], [-1.3222638, 53.2087836], [-1.3220335, 53.2076741], [-1.3218696, 53.2065652], [-1.3217698, 53.2058063], [-1.3217012, 53.205045], [-1.3216234, 53.2038863], [-1.3216427, 53.2025848], [-1.3216797, 53.2020704], [-1.3217323, 53.2015513], [-1.3218194, 53.2009825], [-1.3219236, 53.2004019], [-1.322074, 53.1997488], [-1.3222824, 53.1990482], [-1.3224413, 53.198561], [-1.3226171, 53.1980777], [-1.3229699, 53.1971329], [-1.3231645, 53.1964325], [-1.3232863, 53.1959976], [-1.3233797, 53.195585], [-1.3235435, 53.1947039], [-1.3236856, 53.1937555], [-1.3237353, 53.1932268], [-1.3237589, 53.1926635], [-1.3237704, 53.1922264], [-1.3237647, 53.1917737], [-1.3237576, 53.1913577], [-1.3237226, 53.1909243], [-1.3236907, 53.1904794], [-1.3236244, 53.1900534], [-1.3232761, 53.1880384], [-1.3231522, 53.1871174], [-1.3230236, 53.1861651], [-1.3229777, 53.1850233], [-1.3229586, 53.1839079], [-1.32298, 53.1832808]]}}, {"type": "Feature", "properties": {"osm_id": "3058713", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3298176, 53.133922], [-1.3302124, 53.1350522], [-1.3303462, 53.1354446], [-1.3304529, 53.1358292], [-1.3307073, 53.1367836], [-1.3309971, 53.1382448], [-1.3310951, 53.1390262], [-1.3311677, 53.1397554], [-1.331206, 53.1405016], [-1.3312168, 53.1411997], [-1.331214, 53.141623], [-1.3311589, 53.1425827], [-1.3310731, 53.1434589], [-1.3310413, 53.1437961], [-1.3310008, 53.1441444], [-1.3308196, 53.145132], [-1.3306798, 53.1457355], [-1.3305277, 53.1463336], [-1.3301815, 53.1474736], [-1.329728, 53.1486866], [-1.3295083, 53.1492411], [-1.3292812, 53.1497916], [-1.328964, 53.1505712], [-1.3281423, 53.1526384], [-1.3277233, 53.1536702], [-1.3275166, 53.1541895], [-1.327311, 53.1547048], [-1.3270166, 53.1554374], [-1.3268714, 53.1557992], [-1.3266767, 53.1562809], [-1.3262987, 53.1572062], [-1.3259153, 53.1581252], [-1.3255501, 53.1590419], [-1.3252422, 53.1599361], [-1.3250501, 53.160566], [-1.3248756, 53.1611863], [-1.3247177, 53.1619042], [-1.3245704, 53.1626204], [-1.3244356, 53.1634952], [-1.3243489, 53.1643651], [-1.3242959, 53.1652687], [-1.3242791, 53.165756], [-1.3242845, 53.1662502], [-1.324321, 53.1672062], [-1.3244142, 53.1681472], [-1.3245333, 53.1689561], [-1.3246641, 53.1698179]]}}, {"type": "Feature", "properties": {"osm_id": "3058782", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3244055, 53.1696063], [-1.3242847, 53.1689042], [-1.3241838, 53.1681737], [-1.3240976, 53.1672414], [-1.3240531, 53.1662894], [-1.3240501, 53.1658196], [-1.3240529, 53.1653306], [-1.324078, 53.1648517], [-1.3241119, 53.1644022], [-1.3242037, 53.1634969], [-1.3243432, 53.1625967], [-1.3244886, 53.1618858], [-1.3246451, 53.1611766], [-1.3248182, 53.1605459], [-1.3250127, 53.1599078], [-1.3253155, 53.1590469], [-1.3256843, 53.1581021], [-1.3259831, 53.1573771], [-1.3262847, 53.156635], [-1.3264811, 53.1561196], [-1.3267848, 53.1553972], [-1.3270945, 53.1546594], [-1.3275027, 53.1536317], [-1.3279161, 53.1526015], [-1.3287412, 53.1505353], [-1.3291228, 53.1495996], [-1.329506, 53.1486491], [-1.3297457, 53.1480131], [-1.3299859, 53.1473513], [-1.3303695, 53.1460389], [-1.3305356, 53.1453623], [-1.3306828, 53.1446692], [-1.3307884, 53.1440378], [-1.3308515, 53.1434592], [-1.3309865, 53.1422061], [-1.3309864, 53.1412177], [-1.330985, 53.1408736], [-1.3309776, 53.1405021], [-1.3309338, 53.1397576], [-1.3308704, 53.1390321], [-1.3307695, 53.1382902], [-1.3304867, 53.1368108], [-1.3303811, 53.1364157], [-1.3302402, 53.1358628], [-1.3299979, 53.135081], [-1.3295986, 53.1339506]]}}, {"type": "Feature", "properties": {"osm_id": "3058783", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3138338, 53.0966796], [-1.3146552, 53.0970813], [-1.3155689, 53.0974339], [-1.3159896, 53.0975827]]}}, {"type": "Feature", "properties": {"osm_id": "3058784", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3333672, 53.1147547], [-1.3331587, 53.114173], [-1.3328841, 53.1134658], [-1.3324961, 53.1126771], [-1.3317725, 53.1115804], [-1.3314007, 53.1110775], [-1.3309045, 53.1104792], [-1.3298488, 53.1093944], [-1.3287721, 53.1083022], [-1.3283866, 53.1078361], [-1.328118, 53.1074802], [-1.3278851, 53.1071372], [-1.3276964, 53.106839], [-1.3274414, 53.1063068], [-1.3272037, 53.1057701], [-1.3267195, 53.1046899], [-1.3265481, 53.1043644], [-1.326303, 53.1039602], [-1.3261093, 53.1036828], [-1.3258943, 53.1033802], [-1.3256833, 53.1031151], [-1.3254654, 53.1028601], [-1.3250681, 53.1024321], [-1.3246543, 53.10204], [-1.3242214, 53.1016553], [-1.3237438, 53.1012722], [-1.3234671, 53.1010712], [-1.3232048, 53.1008825], [-1.3228966, 53.1006781], [-1.322583, 53.1004801], [-1.3219801, 53.100123], [-1.3208375, 53.0994969], [-1.3201082, 53.099175], [-1.3194422, 53.0989098], [-1.319052, 53.0987628], [-1.3184641, 53.0985614], [-1.317889, 53.0983664], [-1.3164782, 53.0979033]]}}, {"type": "Feature", "properties": {"osm_id": "3058788", "highway": "trunk", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "layer": "0", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3255683, 53.1014224], [-1.3254777, 53.1015019], [-1.3253497, 53.1015911], [-1.3252169, 53.1016682], [-1.3250641, 53.1017417]]}}, {"type": "Feature", "properties": {"osm_id": "3058790", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2565978, 53.0472084], [-1.2566088, 53.0475767], [-1.2566032, 53.0479257], [-1.2566199, 53.0485017], [-1.2566643, 53.0491444], [-1.256753, 53.0497791], [-1.2567921, 53.0499758], [-1.2568393, 53.0501795], [-1.2569226, 53.0505418], [-1.257131, 53.0512239], [-1.2572142, 53.05147], [-1.2573142, 53.051707], [-1.2574781, 53.052116], [-1.2577954, 53.0527695], [-1.258003, 53.0531494], [-1.2582224, 53.0535133], [-1.258589, 53.0540846], [-1.2588667, 53.0544665], [-1.2591944, 53.0548871], [-1.2595638, 53.0553261], [-1.259937, 53.0557431], [-1.2604332, 53.056257], [-1.260895, 53.0566987], [-1.2614014, 53.0571328], [-1.2619248, 53.0575596], [-1.2625286, 53.0580251], [-1.2631414, 53.0584512], [-1.2644039, 53.0593224], [-1.2650093, 53.0597273], [-1.2666778, 53.0610485], [-1.2678841, 53.0620923], [-1.2682047, 53.0623899], [-1.2685044, 53.0626738], [-1.2689222, 53.0630784], [-1.2693429, 53.0634906], [-1.2697795, 53.0639062], [-1.2702215, 53.0643185], [-1.2706004, 53.064665], [-1.2709637, 53.0649919], [-1.2713765, 53.065349], [-1.2717913, 53.0656824], [-1.272118, 53.0659665], [-1.2724569, 53.0662352], [-1.2728596, 53.0665523], [-1.2732581, 53.066847], [-1.273848, 53.0672938], [-1.2748334, 53.0679852], [-1.2755368, 53.0684547], [-1.2762312, 53.0689052], [-1.2769755, 53.0693608], [-1.2776812, 53.0697861], [-1.2785585, 53.0702853], [-1.2794195, 53.0707592], [-1.2803665, 53.0712714], [-1.2812229, 53.0717388], [-1.2836492, 53.0730652], [-1.2848435, 53.0737243], [-1.2854434, 53.074058], [-1.2859911, 53.0743746], [-1.2877346, 53.0753894], [-1.288515, 53.0758716], [-1.2889927, 53.0761786], [-1.2893881, 53.0764425], [-1.2896645, 53.0766262], [-1.2903435, 53.0770544], [-1.2912228, 53.0776368], [-1.2920238, 53.0781901], [-1.2928837, 53.0788064], [-1.2933336, 53.0791317], [-1.2937466, 53.0794368], [-1.2945861, 53.0800726], [-1.2954269, 53.0807418], [-1.2962164, 53.0813705], [-1.2969811, 53.0820034], [-1.2978494, 53.0827635], [-1.2982965, 53.0831639], [-1.2987201, 53.0835484], [-1.2997241, 53.0844934], [-1.3002351, 53.0849821], [-1.3007167, 53.0854502], [-1.3013423, 53.0860643], [-1.3019959, 53.0867003], [-1.3026346, 53.0873358], [-1.3032484, 53.0879581]]}}, {"type": "Feature", "properties": {"osm_id": "3058823", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "carriageway_ref": "B", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.303062, 53.0880627], [-1.302418, 53.0874325], [-1.3017709, 53.086792], [-1.3011185, 53.0861555], [-1.3004643, 53.0855176], [-1.2999823, 53.0850405], [-1.2994852, 53.0845584], [-1.2985037, 53.0836209], [-1.2980633, 53.0832389], [-1.2976106, 53.0828352], [-1.2967166, 53.0820566], [-1.2963747, 53.0817676], [-1.2960358, 53.081479], [-1.2953342, 53.0809193], [-1.2948487, 53.0805314], [-1.2941723, 53.0800092], [-1.2934696, 53.0794759], [-1.2930808, 53.0791934], [-1.2927031, 53.0789215], [-1.2919547, 53.0783824], [-1.2910868, 53.0777853], [-1.2901804, 53.0771742], [-1.2894362, 53.0766956], [-1.2891787, 53.0765243], [-1.2880226, 53.0757902], [-1.2875069, 53.0754812], [-1.2869125, 53.0751225], [-1.2857988, 53.0744782], [-1.2852545, 53.0741648], [-1.2846574, 53.0738294], [-1.2834521, 53.0731703], [-1.2810463, 53.0718635], [-1.2801804, 53.0713866], [-1.2792389, 53.0708776], [-1.2774533, 53.0698684], [-1.2767311, 53.0694376], [-1.2760062, 53.068987], [-1.275323, 53.0685465], [-1.2746227, 53.068082], [-1.2741232, 53.0677321], [-1.273615, 53.0673707], [-1.2728218, 53.0667766], [-1.2716814, 53.0658779], [-1.271196, 53.0654725], [-1.2707261, 53.065064], [-1.2703491, 53.0647228], [-1.2699687, 53.0643746], [-1.2695223, 53.0639558], [-1.2691152, 53.0635532], [-1.2687444, 53.0631785], [-1.2683345, 53.0627875], [-1.2678425, 53.0623385], [-1.267312, 53.0618703], [-1.2661947, 53.0609307], [-1.2655207, 53.0603983], [-1.2645796, 53.0596953], [-1.2640585, 53.0593198], [-1.2632884, 53.0587901], [-1.2624678, 53.058221], [-1.262077, 53.057933], [-1.2616968, 53.0576388], [-1.2611736, 53.0572095], [-1.2606752, 53.0567719], [-1.2601563, 53.0562771], [-1.2596727, 53.0557795], [-1.2594332, 53.0555164], [-1.2591944, 53.055236], [-1.2587489, 53.0546904], [-1.2583133, 53.0540953], [-1.2579307, 53.0534949], [-1.2575614, 53.0528324], [-1.2573864, 53.052495], [-1.2572225, 53.0521377], [-1.257042, 53.0517104], [-1.2568865, 53.0512863], [-1.2566643, 53.0505652], [-1.2565754, 53.0501862], [-1.2565338, 53.0499792], [-1.256492, 53.0497657], [-1.2564005, 53.0491161], [-1.2563588, 53.048495], [-1.2563449, 53.0479607], [-1.2563511, 53.047209]]}}, {"type": "Feature", "properties": {"osm_id": "3058826", "highway": "motorway", "ref": "M1", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "source_maxspeed": "survey", "layer": "1", "bridge": "yes", "carriageway_ref": "A", "int_ref": "E 13", "maxspeed_variable": "yes", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-1.2350913, 52.9893802], [-1.2348262, 52.9896581]]}}, {"type": "Feature", "properties": {"osm_id": "3059936", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4344446, 53.4387235], [-1.4335797, 53.4380947], [-1.4320961, 53.4371401], [-1.4313805, 53.436705], [-1.4304683, 53.436209], [-1.4270458, 53.4343778], [-1.4243934, 53.4329868], [-1.4218045, 53.4316263], [-1.4194828, 53.4303433], [-1.4184129, 53.429609], [-1.417922, 53.4291966]]}}, {"type": "Feature", "properties": {"osm_id": "3059960", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4181202, 53.4291286], [-1.4183673, 53.429311], [-1.4188275, 53.429675], [-1.4192631, 53.4299812], [-1.4196534, 53.4302319], [-1.4201438, 53.4304868], [-1.4225495, 53.4317917], [-1.4252918, 53.4332801], [-1.4273965, 53.4343627], [-1.4306668, 53.4361034], [-1.4317351, 53.4367119], [-1.4324427, 53.4371401], [-1.4337532, 53.4379965], [-1.4345838, 53.4385753]]}}, {"type": "Feature", "properties": {"osm_id": "3059961", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4476389, 53.4610432], [-1.4469987, 53.4601492], [-1.4466829, 53.4595772], [-1.4462334, 53.4587374], [-1.4457616, 53.4578464], [-1.4453831, 53.4567489], [-1.4450434, 53.4554081], [-1.4448181, 53.4532826], [-1.4445177, 53.4505587], [-1.4441529, 53.4492578], [-1.4437904, 53.4484189], [-1.4433794, 53.4476439], [-1.4430888, 53.4471669], [-1.4427318, 53.4466509], [-1.4419642, 53.4456675], [-1.4403442, 53.4438332], [-1.4385739, 53.4419925], [-1.4364495, 53.440163], [-1.4347221, 53.4389136]]}}, {"type": "Feature", "properties": {"osm_id": "3059977", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "A", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4348633, 53.4387777], [-1.4365393, 53.4399839], [-1.4378317, 53.4410339], [-1.4388643, 53.4419965], [-1.4405802, 53.4437754], [-1.4421788, 53.4455962], [-1.4429694, 53.4465648], [-1.4433053, 53.4470847], [-1.4436425, 53.447628], [-1.4440729, 53.4484183], [-1.44427, 53.4487488], [-1.4445168, 53.4493891], [-1.4447919, 53.450468], [-1.444903, 53.4510278], [-1.4450902, 53.4534182], [-1.4451551, 53.4545789], [-1.4453009, 53.4553906], [-1.4457837, 53.4570586], [-1.4461961, 53.4580267], [-1.4468181, 53.4593092]]}}, {"type": "Feature", "properties": {"osm_id": "3059978", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "12", "carriageway_ref": "B", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4591402, 53.4756955], [-1.4582068, 53.474714], [-1.4573668, 53.4738711], [-1.4563078, 53.4725781], [-1.4552349, 53.4711948], [-1.4542049, 53.4697877], [-1.4534324, 53.468764], [-1.4523998, 53.4674444], [-1.4511481, 53.4657389], [-1.4500386, 53.4643135], [-1.4485937, 53.4624004], [-1.4479232, 53.4614624], [-1.4476389, 53.4610432]]}}, {"type": "Feature", "properties": {"osm_id": "3061943", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7177341, 52.6761841], [-0.7177479, 52.6762351], [-0.7177236, 52.6762947], [-0.7176241, 52.6763661], [-0.7174974, 52.6763984], [-0.7173962, 52.6763838], [-0.717258, 52.6763281], [-0.7172081, 52.6762614], [-0.7172162, 52.6762129], [-0.7172245, 52.6761635], [-0.7173157, 52.6760945], [-0.7174373, 52.676065], [-0.7175877, 52.6760675], [-0.7176878, 52.6761182], [-0.7177341, 52.6761841]]}}, {"type": "Feature", "properties": {"osm_id": "3062186", "highway": "trunk", "ref": "A606", "maxspeed": "40 mph", "lanes": "2", "lit": "yes", "maxspeed_type": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7129696, 52.667472], [-0.71288, 52.6674757]]}}, {"type": "Feature", "properties": {"osm_id": "3066522", "highway": "trunk", "ref": "A272", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Batts Bridge Road", "source_maxspeed": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[0.0776037, 50.9952028], [0.0778605, 50.9953086], [0.0780308, 50.9953914], [0.0780952, 50.9954294], [0.0781763, 50.9954832]]}}, {"type": "Feature", "properties": {"osm_id": "3072024", "highway": "trunk", "ref": "A5016", "maxspeed": "60 mph", "bicycle": "yes", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6655562, 53.0880831], [-2.6658358, 53.0880074], [-2.6660684, 53.0879476], [-2.6662382, 53.0879085], [-2.6664495, 53.0878766], [-2.6669653, 53.0877867], [-2.6672909, 53.0876851], [-2.6674764, 53.0876121], [-2.668007, 53.0873956]]}}, {"type": "Feature", "properties": {"osm_id": "3072025", "highway": "trunk", "ref": "A41", "maxspeed": "60 mph", "name": "Broxton Roundabout", "bicycle": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7776329, 53.0842535], [-2.7777257, 53.084282], [-2.7777642, 53.0843206], [-2.777764, 53.0843799], [-2.7777503, 53.0844229], [-2.7777042, 53.0844617], [-2.7776229, 53.0844827], [-2.7775492, 53.0844695], [-2.7774882, 53.0844373], [-2.7774562, 53.0843981], [-2.7774674, 53.0843376], [-2.7775085, 53.084289], [-2.7775664, 53.0842652], [-2.7776329, 53.0842535]]}}, {"type": "Feature", "properties": {"osm_id": "3072026", "highway": "trunk", "ref": "A534", "maxspeed": "50 mph", "name": "Wrexham Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.7259859, 53.0796109], [-2.7263515, 53.0795412]]}}, {"type": "Feature", "properties": {"osm_id": "3073855", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "name": "The Rushes", "sidewalk": "left", "turn_lanes": "left|through", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.211393, 52.774466], [-1.2112078, 52.7743542]]}}, {"type": "Feature", "properties": {"osm_id": "3073856", "highway": "trunk", "ref": "A6", "maxspeed": "30 mph", "lanes": "2", "name": "Derby Road", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2125946, 52.7753105], [-1.2128104, 52.7754247], [-1.2130344, 52.7755099], [-1.2135025, 52.7756689], [-1.2141169, 52.7758925], [-1.2146978, 52.7761748], [-1.2148492, 52.776249], [-1.2150766, 52.7763724], [-1.2153321, 52.776476], [-1.2156711, 52.7765624], [-1.2159605, 52.7766362], [-1.2160171, 52.7766514], [-1.2161423, 52.7766854], [-1.2164018, 52.7767748]]}}, {"type": "Feature", "properties": {"osm_id": "3076565", "highway": "trunk", "oneway": "yes", "name": "Red Hill Circle", "surface": "asphalt", "layer": "0", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.1294888, 52.6650294], [-1.1292637, 52.6651012], [-1.1290036, 52.6651381], [-1.1288056, 52.6651417], [-1.1284953, 52.6651329], [-1.1281959, 52.6650903], [-1.1280082, 52.6650564], [-1.1277379, 52.6649641], [-1.1275796, 52.6648765], [-1.1274704, 52.6647545], [-1.1274162, 52.6646486], [-1.1273838, 52.6645167], [-1.1273725, 52.6643553], [-1.127497, 52.6641764], [-1.1276163, 52.6640763], [-1.127766, 52.6639805], [-1.1279816, 52.6638995], [-1.1282603, 52.6638562]]}}, {"type": "Feature", "properties": {"osm_id": "3081635", "highway": "trunk", "ref": "A350", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "Holes Bay North Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.9947677, 50.7363043], [-1.9947451, 50.7363092], [-1.994722, 50.7363131], [-1.9946986, 50.7363161], [-1.9946526, 50.7363189], [-1.9946302, 50.736319], [-1.9946079, 50.7363181], [-1.9945857, 50.7363164], [-1.9945637, 50.7363138], [-1.994542, 50.7363103], [-1.9945207, 50.736306], [-1.9944999, 50.7363009], [-1.9944795, 50.7362949], [-1.9944599, 50.7362882], [-1.9944359, 50.7362786], [-1.9944133, 50.7362678], [-1.994392, 50.7362559], [-1.9943724, 50.736243], [-1.9943543, 50.7362291], [-1.9943381, 50.7362144], [-1.9943238, 50.7361989], [-1.9943114, 50.7361828], [-1.9943011, 50.736166], [-1.9942929, 50.7361489], [-1.9942868, 50.7361313], [-1.994283, 50.7361135], [-1.9942814, 50.7360956], [-1.994282, 50.7360777], [-1.9942849, 50.7360598], [-1.99429, 50.7360421], [-1.9942973, 50.7360248], [-1.9943067, 50.7360078], [-1.9943182, 50.7359914], [-1.9943359, 50.7359713], [-1.9943566, 50.7359525], [-1.9943803, 50.735935], [-1.9944066, 50.7359192], [-1.9944354, 50.7359051], [-1.9944662, 50.735893], [-1.9944988, 50.7358829], [-1.9945329, 50.7358749], [-1.994568, 50.7358691], [-1.9946039, 50.7358656], [-1.9946402, 50.7358644], [-1.9946765, 50.7358656], [-1.9947124, 50.735869], [-1.9947401, 50.7358733], [-1.9947672, 50.735879], [-1.9947887, 50.7358847], [-1.9948097, 50.7358912], [-1.9948299, 50.7358986], [-1.9948493, 50.7359068], [-1.9948678, 50.7359157], [-1.9948854, 50.7359254], [-1.994902, 50.7359359], [-1.9949174, 50.7359469], [-1.9949317, 50.7359586], [-1.9949447, 50.7359709], [-1.9949565, 50.7359836], [-1.9949669, 50.7359968], [-1.9949759, 50.7360104], [-1.9949836, 50.7360244], [-1.9949898, 50.7360386], [-1.9949945, 50.7360531], [-1.9949977, 50.7360677], [-1.9949994, 50.7360824], [-1.9949996, 50.7360972], [-1.9949983, 50.736112], [-1.9949955, 50.7361266], [-1.9949911, 50.7361411], [-1.9949853, 50.7361554], [-1.9949781, 50.7361695], [-1.9949694, 50.7361832], [-1.9949593, 50.7361965], [-1.9949479, 50.7362094], [-1.9949349, 50.736222], [-1.9949205, 50.7362341], [-1.994905, 50.7362456], [-1.9948882, 50.7362564], [-1.9948704, 50.7362664], [-1.9948515, 50.7362757], [-1.9948318, 50.7362842], [-1.9948111, 50.7362918], [-1.9947898, 50.7362985], [-1.9947677, 50.7363043]]}}, {"type": "Feature", "properties": {"osm_id": "3081636", "highway": "trunk", "ref": "A350", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Holes Bay Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.9908783, 50.7322596], [-1.9909279, 50.7321161], [-1.9908188, 50.7315585], [-1.9907716, 50.7312654], [-1.9907617, 50.7310429], [-1.9907586, 50.7308683], [-1.9907785, 50.7306632], [-1.9908521, 50.7303121], [-1.9910805, 50.7295912]]}}, {"type": "Feature", "properties": {"osm_id": "3082109", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3877135, 53.2050532], [-2.3877154, 53.2049714], [-2.3876961, 53.2043975], [-2.3875607, 53.2019509], [-2.3874922, 53.2012562], [-2.3874306, 53.200855], [-2.3873507, 53.2003977], [-2.3872415, 53.1999184], [-2.3869484, 53.1989928], [-2.3866179, 53.1981224], [-2.3864717, 53.1978382], [-2.3862292, 53.1973339], [-2.3857934, 53.1966049], [-2.3855488, 53.1961836], [-2.3852712, 53.1957747], [-2.3850311, 53.195458], [-2.3845242, 53.1948112], [-2.3838909, 53.1940951], [-2.3833823, 53.1935727], [-2.3827131, 53.1929597], [-2.3818605, 53.1922209], [-2.3812596, 53.1917657], [-2.3790661, 53.1901508], [-2.3767665, 53.1884849], [-2.3752123, 53.1872878], [-2.3747214, 53.1869105], [-2.3734742, 53.1859211], [-2.3722054, 53.1848724], [-2.3704587, 53.1833537], [-2.3691285, 53.1821799], [-2.3661203, 53.1792983], [-2.363469, 53.1764446], [-2.3613023, 53.1739132], [-2.3605232, 53.1729449], [-2.3590544, 53.1709984], [-2.3579719, 53.1694775], [-2.3569236, 53.1679278], [-2.3560104, 53.1664963], [-2.3548139, 53.1646082], [-2.3536299, 53.1627456], [-2.3520772, 53.16031], [-2.3506757, 53.1580816], [-2.3501366, 53.1573042], [-2.3495503, 53.1565431], [-2.348655, 53.1554508], [-2.3482146, 53.15496], [-2.347098, 53.1538224], [-2.3462866, 53.1530658], [-2.3441666, 53.1510817], [-2.3429611, 53.1500385], [-2.3417176, 53.1487493], [-2.3407048, 53.1476409], [-2.3398579, 53.1464418], [-2.3393309, 53.1456894], [-2.3387547, 53.1448094], [-2.3383224, 53.1440785], [-2.3377553, 53.1430364], [-2.3374573, 53.1423274], [-2.3371342, 53.1415715], [-2.3369065, 53.1409283], [-2.3366996, 53.1403142], [-2.3364646, 53.1393491], [-2.3362496, 53.1384892], [-2.3361806, 53.1380504], [-2.3360937, 53.1375977], [-2.3359837, 53.1365526], [-2.3358038, 53.1337523], [-2.3357536, 53.132688], [-2.3355884, 53.1300067], [-2.3354441, 53.1277917], [-2.3353271, 53.1261149], [-2.3351901, 53.1237053], [-2.3351466, 53.1229179], [-2.3351386, 53.1223998]]}}, {"type": "Feature", "properties": {"osm_id": "3082790", "highway": "trunk", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "name": "Woodsbridge Roundabout", "operator": "Highways England", "highways_england_area": "3", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8368519, 50.8295626], [-1.8367941, 50.8295352], [-1.83675, 50.829499], [-1.8367227, 50.8294567], [-1.8367143, 50.8294108], [-1.8367258, 50.8293653], [-1.8367563, 50.8293233], [-1.8368035, 50.8292881]]}}, {"type": "Feature", "properties": {"osm_id": "3083039", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8379974, 50.8288234], [-1.8386156, 50.828526], [-1.8392593, 50.828227], [-1.8396855, 50.8280237], [-1.8401669, 50.8277868], [-1.8422082, 50.8267823], [-1.8435084, 50.8261564], [-1.8442359, 50.8258062], [-1.8451508, 50.8253658], [-1.8456867, 50.8251079], [-1.8458827, 50.8250135], [-1.8460169, 50.8249466], [-1.8474447, 50.8242345], [-1.8491692, 50.8233744], [-1.8506255, 50.8226036], [-1.8513958, 50.8221959], [-1.8518847, 50.8219371], [-1.8532008, 50.8213213], [-1.8538515, 50.8209771], [-1.8539813, 50.8207742]]}}, {"type": "Feature", "properties": {"osm_id": "3083040", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8542469, 50.8209556], [-1.8540763, 50.8210069], [-1.8539007, 50.8210771], [-1.8533894, 50.8213752], [-1.8528358, 50.8216684], [-1.8519811, 50.8221243], [-1.8493664, 50.8235112], [-1.845999, 50.8251497], [-1.8444044, 50.8259179], [-1.8442047, 50.8260133], [-1.8436212, 50.8262787], [-1.8422198, 50.8269155], [-1.840676, 50.8276804], [-1.8404024, 50.8278193], [-1.839697, 50.8281813], [-1.8393429, 50.8283564], [-1.8388846, 50.828584], [-1.8386807, 50.8286852], [-1.8382833, 50.8288786], [-1.838201, 50.8289187], [-1.837251, 50.8294026]]}}, {"type": "Feature", "properties": {"osm_id": "3083042", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "name": "Azalea Roundabout", "operator": "Highways England", "highways_england_area": "3", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8646104, 50.816565], [-1.8646926, 50.816535], [-1.8647948, 50.816525], [-1.8649054, 50.8165429], [-1.8649893, 50.8165843], [-1.8650399, 50.8166404], [-1.8650541, 50.8166868], [-1.8650436, 50.8167576], [-1.8650136, 50.8167857], [-1.8649519, 50.8168293], [-1.8648746, 50.8168563], [-1.8647788, 50.8168661], [-1.8646767, 50.816852], [-1.8645902, 50.8168141], [-1.864543, 50.8167721], [-1.8645148, 50.8167069], [-1.8645207, 50.8166585], [-1.8645554, 50.8166049], [-1.8646104, 50.816565]]}}, {"type": "Feature", "properties": {"osm_id": "3083043", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8542125, 50.8206281], [-1.8550831, 50.8201296], [-1.8568753, 50.8191767], [-1.8585741, 50.8183557], [-1.8596878, 50.8178574], [-1.8601852, 50.8176897], [-1.8607849, 50.8175171], [-1.8610481, 50.8174413], [-1.8623688, 50.8171456], [-1.8643001, 50.8167253], [-1.8645207, 50.8166585]]}}, {"type": "Feature", "properties": {"osm_id": "3083044", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8646767, 50.816852], [-1.864552, 50.8168474], [-1.8643987, 50.8168465], [-1.8642109, 50.8168769], [-1.8624133, 50.8172771], [-1.8612359, 50.8175436], [-1.8605617, 50.8177234], [-1.8600119, 50.8179118], [-1.8594833, 50.8181342], [-1.8587817, 50.8184697], [-1.8583177, 50.8186943], [-1.8577164, 50.8189853], [-1.8571676, 50.819254], [-1.8553219, 50.820228], [-1.8547476, 50.8205274], [-1.854618, 50.820618], [-1.8545263, 50.8207172], [-1.8544968, 50.820816]]}}, {"type": "Feature", "properties": {"osm_id": "3083045", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8649893, 50.8165843], [-1.8655065, 50.8164362], [-1.866284, 50.8162132], [-1.8673533, 50.8157754], [-1.8680494, 50.8153736], [-1.8689166, 50.8148751]]}}, {"type": "Feature", "properties": {"osm_id": "3083046", "highway": "trunk", "ref": "A31", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8715442, 50.813455], [-1.8713724, 50.8135354], [-1.8710955, 50.8137116], [-1.8706699, 50.8139794], [-1.8699932, 50.8144053], [-1.8693831, 50.8147828], [-1.8690602, 50.8149805]]}}, {"type": "Feature", "properties": {"osm_id": "3083047", "highway": "trunk", "maxspeed": "50 mph", "oneway": "yes", "name": "Palmersford Roundabout", "operator": "Highways England", "highways_england_area": "3", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8721381, 50.812847], [-1.872167, 50.8128328], [-1.8721977, 50.8128204], [-1.8722301, 50.8128098], [-1.8722639, 50.812801], [-1.8722988, 50.8127942], [-1.8723345, 50.8127893], [-1.8723707, 50.8127865], [-1.8724072, 50.8127858], [-1.8724437, 50.8127871], [-1.8724798, 50.8127904], [-1.8725153, 50.8127958], [-1.8725499, 50.8128032], [-1.8725834, 50.8128124], [-1.8726153, 50.8128236], [-1.8726456, 50.8128364], [-1.872674, 50.812851], [-1.8727002, 50.8128671], [-1.872724, 50.8128846], [-1.8727509, 50.812909], [-1.8727732, 50.8129352], [-1.8727906, 50.8129629], [-1.8728028, 50.8129916], [-1.8728097, 50.8130211], [-1.8728109, 50.8130554], [-1.872805, 50.8130896], [-1.8727919, 50.8131229], [-1.8727719, 50.8131548], [-1.8727454, 50.8131848], [-1.8727129, 50.8132123], [-1.8726749, 50.8132369], [-1.872632, 50.813258], [-1.8725851, 50.8132753], [-1.872535, 50.8132886]]}}, {"type": "Feature", "properties": {"osm_id": "3083048", "highway": "trunk", "ref": "A347", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "old_ref": "A31", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8774693, 50.8103528], [-1.8771938, 50.8103603], [-1.8769443, 50.8104082], [-1.8766054, 50.810538], [-1.8760577, 50.8107246], [-1.8759417, 50.8107641], [-1.8753593, 50.8110539], [-1.8737584, 50.8118504], [-1.8736231, 50.8119294], [-1.873406, 50.8120562], [-1.8733354, 50.8120974], [-1.8730911, 50.8122784], [-1.8729874, 50.8123552], [-1.8728002, 50.8124981], [-1.8727412, 50.8125726], [-1.8727144, 50.8126235], [-1.8727023, 50.8126726], [-1.8726996, 50.812715], [-1.8727077, 50.8127582], [-1.8727157, 50.8128107]]}}, {"type": "Feature", "properties": {"osm_id": "3083049", "highway": "trunk", "ref": "A347", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "name": "Ringwood Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8721381, 50.812847], [-1.8723877, 50.8125898]]}}, {"type": "Feature", "properties": {"osm_id": "3083050", "highway": "trunk", "ref": "A347", "maxspeed": "40 mph", "oneway": "yes", "name": "Tricketts Cross", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8778072, 50.8103817], [-1.877765, 50.8103871], [-1.8777312, 50.8103895], [-1.8776972, 50.8103904], [-1.8776632, 50.8103897], [-1.8776294, 50.8103874], [-1.8775959, 50.8103835], [-1.877563, 50.8103781], [-1.8775308, 50.8103711], [-1.8774996, 50.8103627], [-1.8774693, 50.8103528], [-1.877434, 50.8103388], [-1.8774008, 50.8103228], [-1.87737, 50.8103049], [-1.8773419, 50.8102854], [-1.8773167, 50.8102643], [-1.8772947, 50.8102419], [-1.877276, 50.8102183], [-1.8772607, 50.8101938], [-1.8772491, 50.8101684], [-1.8772411, 50.8101425], [-1.8772369, 50.8101163], [-1.8772365, 50.810089], [-1.8772402, 50.8100618], [-1.8772479, 50.8100349], [-1.8772596, 50.8100087], [-1.8772751, 50.8099832], [-1.8772943, 50.8099588], [-1.8773171, 50.8099356], [-1.8773432, 50.8099138], [-1.8773725, 50.8098938], [-1.8774046, 50.8098755], [-1.8774393, 50.8098592], [-1.8774762, 50.8098451], [-1.8775151, 50.8098332], [-1.8775556, 50.8098237], [-1.8775973, 50.8098166], [-1.8776286, 50.809813], [-1.8776602, 50.8098107], [-1.877692, 50.8098099], [-1.8777238, 50.8098104], [-1.8777555, 50.8098123], [-1.8777869, 50.8098157], [-1.8778178, 50.8098203], [-1.8778482, 50.8098264], [-1.8778778, 50.8098337], [-1.8779066, 50.8098423], [-1.8779343, 50.8098522], [-1.8779609, 50.8098632], [-1.8779862, 50.8098754], [-1.8780102, 50.8098886], [-1.8780326, 50.8099029], [-1.8780458, 50.8099123], [-1.8780584, 50.8099221], [-1.8780702, 50.8099322], [-1.8780814, 50.8099426], [-1.8780918, 50.8099533], [-1.8781015, 50.8099643], [-1.8781104, 50.8099756], [-1.8781186, 50.809987], [-1.878126, 50.8099987], [-1.8781325, 50.8100106], [-1.8781382, 50.8100227], [-1.8781431, 50.8100348], [-1.8781472, 50.8100472], [-1.8781504, 50.8100596], [-1.8781527, 50.8100721], [-1.8781542, 50.8100846], [-1.8781549, 50.8100972], [-1.8781546, 50.8101098], [-1.8781536, 50.8101223], [-1.8781516, 50.8101349], [-1.8781488, 50.8101473], [-1.8781451, 50.8101597], [-1.8781406, 50.8101719], [-1.8781209, 50.8102097], [-1.8781028, 50.8102344], [-1.8780811, 50.8102579], [-1.8780652, 50.810272], [-1.878056, 50.8102801], [-1.8780278, 50.8103006], [-1.8779966, 50.8103194], [-1.8779627, 50.8103362], [-1.8779266, 50.810351], [-1.8778884, 50.8103636], [-1.8778484, 50.8103739], [-1.8778072, 50.8103817]]}}, {"type": "Feature", "properties": {"osm_id": "3084030", "highway": "trunk", "ref": "A518", "maxspeed": "30 mph", "oneway": "yes", "name": "Weston Bank", "source_name": "local knowledge", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0835862, 52.8115512], [-2.083745, 52.8114578], [-2.0839443, 52.811327]]}}, {"type": "Feature", "properties": {"osm_id": "3084529", "highway": "trunk", "ref": "A166", "sidewalk": "none", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8223751, 53.9987344], [-0.8221494, 53.9987629]]}}, {"type": "Feature", "properties": {"osm_id": "3084733", "highway": "trunk", "ref": "A166", "name": "Garrowby Hill", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.8019438, 53.9995514], [-0.8017778, 53.9994851], [-0.8015668, 53.9994159], [-0.8013104, 53.9993631], [-0.801063, 53.9993256], [-0.8006661, 53.9992988], [-0.7994181, 53.9992586], [-0.7975986, 53.9992268], [-0.7954888, 53.9992172], [-0.7948296, 53.9992199], [-0.794438, 53.9992325], [-0.79416, 53.9992488], [-0.7938827, 53.9992877], [-0.7936172, 53.9993413], [-0.7932589, 53.9994438], [-0.7922042, 53.9998507], [-0.7913896, 54.0001398], [-0.7910825, 54.0002447], [-0.7908304, 54.0003078], [-0.7905677, 54.0003409], [-0.7903261, 54.0003582], [-0.7900472, 54.0003619], [-0.788582, 54.00029], [-0.7869342, 54.0002657], [-0.7866381, 54.0002479], [-0.7862331, 54.0002163], [-0.7856537, 54.0001406], [-0.7851575, 54.0000981], [-0.7847235, 54.0000715], [-0.7844471, 54.00007], [-0.7840454, 54.0000939], [-0.783347, 54.000158], [-0.7830064, 54.0001722], [-0.7825582, 54.0001719], [-0.7819791, 54.0001548], [-0.7815879, 54.0001301], [-0.7810698, 54.0000807], [-0.7805168, 54.0000182], [-0.7784883, 53.9997728], [-0.7779129, 53.9997213], [-0.777492, 53.9996879], [-0.7771833, 53.9996834], [-0.7768588, 53.9996961], [-0.7765208, 53.9997229], [-0.7761226, 53.9997732], [-0.7756491, 53.9998506], [-0.7741557, 54.0001372], [-0.773683, 54.00021], [-0.7733378, 54.0002417], [-0.7728703, 54.0002762], [-0.7723178, 54.0002936], [-0.7719314, 54.0002915], [-0.7705706, 54.0002563], [-0.7697268, 54.0002463], [-0.7692822, 54.0002505], [-0.7686646, 54.0002762], [-0.7680541, 54.0003115], [-0.7673308, 54.0003614], [-0.7671852, 54.0003714], [-0.7664625, 54.0004213], [-0.7656905, 54.000488], [-0.763642, 54.0006813], [-0.7625143, 54.000776], [-0.7614347, 54.0008569], [-0.7602101, 54.0009682], [-0.7596685, 54.0010298], [-0.758955, 54.001126], [-0.758103, 54.0012524], [-0.7562433, 54.0015564], [-0.7560694, 54.0015862], [-0.7554896, 54.0016604], [-0.7548625, 54.0017241], [-0.7543389, 54.0017582], [-0.7527681, 54.0018194], [-0.7523114, 54.0018296], [-0.7511529, 54.0018762], [-0.7504072, 54.0019062]]}}, {"type": "Feature", "properties": {"osm_id": "3086267", "highway": "trunk", "ref": "A338", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.786761, 50.9237977], [-1.7869694, 50.9232798]]}}, {"type": "Feature", "properties": {"osm_id": "3086268", "highway": "trunk", "ref": "A338", "maxspeed": "40 mph", "lanes": "2", "name": "Salisbury Road", "sidewalk": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7875444, 50.8869755], [-1.7878286, 50.8864175], [-1.7881, 50.8858407], [-1.7884022, 50.885282], [-1.7885613, 50.8849117], [-1.7886788, 50.8845287], [-1.7888233, 50.8842824], [-1.7890428, 50.8840713], [-1.7897034, 50.8835679], [-1.790742, 50.8827911]]}}, {"type": "Feature", "properties": {"osm_id": "3087238", "highway": "trunk", "ref": "A456", "lanes": "2", "oneway": "yes", "name": "Manor Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0164812, 52.4488009], [-2.016612, 52.4489458], [-2.0167911, 52.4490708], [-2.0169659, 52.4491279], [-2.0171776, 52.449153], [-2.0173564, 52.449154], [-2.0175272, 52.4491138], [-2.0183739, 52.4488677], [-2.019214, 52.4486169], [-2.0201782, 52.4483587], [-2.020849, 52.4481861], [-2.021622, 52.4480194], [-2.0225116, 52.4478634], [-2.0231043, 52.4477755], [-2.023869, 52.447683], [-2.0250052, 52.4475594], [-2.0260585, 52.4474511], [-2.0269947, 52.4473527], [-2.0275114, 52.447295], [-2.0277127, 52.4472725], [-2.0281033, 52.4472289], [-2.0312247, 52.4469096], [-2.0323613, 52.4467895], [-2.0328386, 52.446745]]}}, {"type": "Feature", "properties": {"osm_id": "3087254", "highway": "trunk", "ref": "A456", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "Manor Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0444623, 52.4444886], [-2.0441523, 52.4444943], [-2.0439644, 52.4445061], [-2.0438375, 52.4445246], [-2.0435226, 52.4445931], [-2.0432652, 52.444659], [-2.0430996, 52.4447031], [-2.0427889, 52.444803], [-2.0424279, 52.4449532], [-2.0421882, 52.4450636], [-2.0414728, 52.4454014], [-2.0409777, 52.4456006], [-2.0406924, 52.4457065], [-2.0403781, 52.4458034], [-2.0397928, 52.4459416], [-2.0389851, 52.4460698], [-2.0375775, 52.4462706]]}}, {"type": "Feature", "properties": {"osm_id": "3091744", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6628514, 52.4713206], [-1.6623399, 52.4712334], [-1.6612101, 52.471046], [-1.66008, 52.4709046], [-1.6588342, 52.4707666], [-1.6575797, 52.4706713], [-1.6566863, 52.4705973]]}}, {"type": "Feature", "properties": {"osm_id": "3091764", "highway": "trunk", "maxspeed": "60 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "maxspeed_type": "gb:national", "source_maxspeed": "Stata19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4923797, 52.4631326], [-1.4923058, 52.4630402], [-1.4922038, 52.4628974], [-1.4921283, 52.4627095], [-1.4921124, 52.4625974], [-1.4921197, 52.4624869], [-1.4921536, 52.4623647], [-1.4922561, 52.4621968], [-1.4924055, 52.4620687], [-1.4925853, 52.4619518], [-1.4927836, 52.4618393], [-1.4928081, 52.4618288], [-1.4930555, 52.4617584], [-1.4932501, 52.461714], [-1.4934896, 52.4616931], [-1.4938319, 52.4616918], [-1.4939365, 52.4616961], [-1.4939907, 52.4617009], [-1.4942175, 52.4617491], [-1.4944183, 52.4618049], [-1.4946715, 52.4619023], [-1.4949549, 52.4620831], [-1.4951235, 52.4622656], [-1.495272, 52.462549]]}}, {"type": "Feature", "properties": {"osm_id": "3091981", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.6203678, 52.4677669], [-1.6180427, 52.4676651], [-1.6165423, 52.4676025], [-1.6150652, 52.4675546], [-1.6134228, 52.4674907], [-1.6118458, 52.4674484], [-1.6099757, 52.4674241], [-1.6081057, 52.4674082], [-1.6044136, 52.467428], [-1.6029986, 52.4674398]]}}, {"type": "Feature", "properties": {"osm_id": "3092021", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4119752, 52.4373709], [-1.4107203, 52.4373873], [-1.4100825, 52.4373923], [-1.4080973, 52.4374036], [-1.4061924, 52.4373768], [-1.4044057, 52.4373464], [-1.4025762, 52.437304], [-1.4006493, 52.4372369], [-1.3987135, 52.43716], [-1.3969487, 52.4370695]]}}, {"type": "Feature", "properties": {"osm_id": "3092022", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4676405, 52.451245], [-1.4518217, 52.4445219], [-1.4491048, 52.4433198], [-1.446881, 52.4423822], [-1.4447127, 52.4415825], [-1.4424645, 52.4408198], [-1.4418117, 52.4406175]]}}, {"type": "Feature", "properties": {"osm_id": "3092050", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "7", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2109437, 52.4059946], [-1.222845, 52.4065191], [-1.2280635, 52.4067376], [-1.2327005, 52.4069764], [-1.2367512, 52.407206], [-1.2370346, 52.4072259], [-1.2372873, 52.4072434], [-1.2375877, 52.4072666]]}}, {"type": "Feature", "properties": {"osm_id": "3092051", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4119128, 52.437223], [-1.4125449, 52.4372077], [-1.414069, 52.4371821], [-1.4158815, 52.4371253], [-1.4168867, 52.4370981], [-1.4176626, 52.4370879], [-1.4195211, 52.4370846], [-1.4217676, 52.4371402], [-1.4225667, 52.4371718], [-1.4235571, 52.4372251], [-1.4252047, 52.4373328], [-1.4260499, 52.4374134], [-1.4266849, 52.437468], [-1.4293127, 52.4377714], [-1.4314909, 52.4380657], [-1.4339183, 52.4384881], [-1.4358939, 52.4388979], [-1.4377697, 52.4393163], [-1.4397412, 52.4397994]]}}, {"type": "Feature", "properties": {"osm_id": "3092054", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4849992, 52.4591196], [-1.4872362, 52.4602369], [-1.4882539, 52.4607166], [-1.4902733, 52.4615886], [-1.4919906, 52.4622541]]}}, {"type": "Feature", "properties": {"osm_id": "3092055", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.4972853, 52.4639961], [-1.4987338, 52.464413], [-1.5002836, 52.464824], [-1.5014874, 52.4651214], [-1.5060711, 52.4661274], [-1.5075824, 52.4664019], [-1.508621, 52.4665812], [-1.5099197, 52.4667802], [-1.5225624, 52.4684485], [-1.5322809, 52.4697748], [-1.5375991, 52.4704705], [-1.5401031, 52.470798], [-1.5414995, 52.4709755], [-1.5430397, 52.4711393], [-1.5446373, 52.4712739], [-1.5454355, 52.4713336], [-1.5468029, 52.4714101], [-1.5489929, 52.4714943], [-1.5511409, 52.4715157], [-1.5528698, 52.4715011], [-1.5543253, 52.4714574], [-1.555447, 52.471406], [-1.5574683, 52.4712771], [-1.5581253, 52.4712204], [-1.5597309, 52.4710619], [-1.5615556, 52.470868], [-1.5637327, 52.4705708], [-1.5679683, 52.4699295]]}}, {"type": "Feature", "properties": {"osm_id": "3092141", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "surface": "paved", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0148825, 52.5915477], [-2.0149184, 52.5918635], [-2.0149746, 52.5927482], [-2.0150727, 52.5936389], [-2.0153332, 52.5951181], [-2.0155436, 52.5960752], [-2.0158127, 52.5970598], [-2.0160664, 52.5979939], [-2.0164611, 52.5990808], [-2.0169724, 52.6003244], [-2.0174359, 52.6014084], [-2.0181494, 52.602814], [-2.0185306, 52.6034833], [-2.0189512, 52.6041562], [-2.0196415, 52.6051497], [-2.0204053, 52.6062561], [-2.0207626, 52.606723]]}}, {"type": "Feature", "properties": {"osm_id": "3092163", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "surface": "paved", "source_maxspeed": "gb:national", "carriageway_ref": "B", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0461419, 52.6278664], [-2.0455052, 52.6273942], [-2.0446453, 52.6268094], [-2.0435053, 52.6261136], [-2.0414971, 52.6249594], [-2.038359, 52.6231606], [-2.0364295, 52.6219763], [-2.0345264, 52.6206946], [-2.0335731, 52.6199809], [-2.0328701, 52.6194363], [-2.0321601, 52.6188643]]}}, {"type": "Feature", "properties": {"osm_id": "3092179", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "gb:national", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0474631, 52.6287146], [-2.048105, 52.6292803], [-2.0486214, 52.6297993], [-2.049395, 52.6305658], [-2.0499672, 52.631341], [-2.0504981, 52.6320817], [-2.0508644, 52.6326778], [-2.0514717, 52.6337853]]}}, {"type": "Feature", "properties": {"osm_id": "3092220", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "9", "bicycle": "no", "source_maxspeed": "Stats19", "carriageway_ref": "B", "int_ref": "E 05", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0822549, 52.6741561], [-2.0804705, 52.6732826], [-2.0788122, 52.6724427], [-2.0764713, 52.6712965], [-2.0749495, 52.6705275], [-2.0734606, 52.6699113], [-2.0726717, 52.6695844], [-2.0722325, 52.6694094], [-2.0718322, 52.6692314], [-2.0715237, 52.6690879], [-2.07121, 52.6689244], [-2.0708776, 52.6687475], [-2.0705722, 52.6685613], [-2.0703191, 52.6684047], [-2.0700589, 52.6682244], [-2.0696214, 52.6679062], [-2.0692214, 52.6675777], [-2.0688007, 52.6671988], [-2.0685094, 52.666891], [-2.0682343, 52.66658], [-2.067844, 52.6660994], [-2.0676951, 52.6658879], [-2.0671615, 52.6651175], [-2.0666929, 52.66436], [-2.0664517, 52.6639228], [-2.0663436, 52.6637497], [-2.0661764, 52.6633767], [-2.0658409, 52.6625656], [-2.065669, 52.6621276], [-2.0654095, 52.6612626], [-2.0651288, 52.6604627], [-2.0649157, 52.6597983], [-2.0646419, 52.6592198], [-2.0645048, 52.6589435], [-2.0643314, 52.6586095], [-2.0638466, 52.6576868], [-2.0635342, 52.6570914], [-2.0632321, 52.6565203], [-2.0617761, 52.6537609], [-2.0611093, 52.6524955], [-2.0607732, 52.6518506], [-2.0604314, 52.6512037], [-2.0585532, 52.6477095], [-2.0576637, 52.6460091], [-2.0572938, 52.6452949], [-2.0569334, 52.6445544], [-2.0562882, 52.643331], [-2.0554404, 52.6417232], [-2.0543624, 52.6396276], [-2.0537929, 52.6385574], [-2.052863, 52.636819], [-2.0519474, 52.6350612], [-2.0512384, 52.6338016], [-2.0507752, 52.6329271]]}}, {"type": "Feature", "properties": {"osm_id": "3092221", "highway": "motorway", "ref": "M6", "maxspeed": "signals", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0795158, 52.6725367], [-2.0823544, 52.6740237], [-2.0846929, 52.6752037]]}}, {"type": "Feature", "properties": {"osm_id": "3092231", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "layer": "1", "bridge": "yes", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 29}, "geometry": {"type": "LineString", "coordinates": [[-2.1076238, 52.7636128], [-2.1070742, 52.7632032]]}}, {"type": "Feature", "properties": {"osm_id": "3092273", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9642103, 52.6629306], [-1.964855, 52.6629001], [-1.9655272, 52.6628612], [-1.9661507, 52.6628169], [-1.9667764, 52.66277], [-1.9674039, 52.6627195], [-1.9696657, 52.6625412]]}}, {"type": "Feature", "properties": {"osm_id": "3092274", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9721573, 52.6626076], [-1.9698357, 52.6626821], [-1.9677249, 52.6628317], [-1.9656099, 52.6630038]]}}, {"type": "Feature", "properties": {"osm_id": "3092290", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.9696657, 52.6625412], [-1.9717434, 52.6624456], [-1.9722509, 52.6624227], [-1.9737617, 52.6624241]]}}, {"type": "Feature", "properties": {"osm_id": "3092291", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0086967, 52.6713157], [-2.0082529, 52.6711694], [-2.0077855, 52.6709982], [-2.0071893, 52.6707798], [-2.0064431, 52.6704885], [-2.0056641, 52.6701812], [-2.0034916, 52.6693423], [-2.0016504, 52.6686837], [-2.0002304, 52.6681918], [-1.999436, 52.6679175], [-1.9980903, 52.6674752], [-1.9974414, 52.6672651], [-1.9966452, 52.6670202], [-1.9956593, 52.6667131], [-1.9923864, 52.6657454], [-1.9890655, 52.6648659], [-1.9866897, 52.6642799], [-1.9854768, 52.663997], [-1.9842426, 52.6637327], [-1.983016, 52.6634887], [-1.9817911, 52.6632712], [-1.9812184, 52.6631763], [-1.9806281, 52.6630891], [-1.979506, 52.6629426], [-1.9786979, 52.6628545], [-1.9778392, 52.6627749], [-1.9769866, 52.6627056], [-1.9761742, 52.662658], [-1.9752628, 52.6626147], [-1.9749881, 52.6626107], [-1.9748074, 52.6626096]]}}, {"type": "Feature", "properties": {"osm_id": "3092306", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "foot": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0088367, 52.6711783], [-2.009346, 52.6713349], [-2.0098715, 52.6714827], [-2.0104594, 52.6716335], [-2.0110348, 52.6717713], [-2.0114396, 52.6718598], [-2.0119997, 52.6719711], [-2.0125069, 52.6720624], [-2.0130636, 52.6721566], [-2.0135537, 52.6722155], [-2.0140932, 52.6722773], [-2.0146176, 52.67233], [-2.0154636, 52.6723987], [-2.0162447, 52.6724368], [-2.0169562, 52.6724579], [-2.0176357, 52.6724592], [-2.0182382, 52.6724498], [-2.018852, 52.6724226], [-2.0195112, 52.6723866], [-2.0202661, 52.6723167], [-2.0208442, 52.6722589], [-2.0214356, 52.6721744], [-2.0220668, 52.6720813], [-2.0229068, 52.671959], [-2.0238095, 52.671812], [-2.0256869, 52.6715224], [-2.0269811, 52.6713564], [-2.0282156, 52.6712167], [-2.0295073, 52.6711009], [-2.0301859, 52.6710444], [-2.0308218, 52.6709984], [-2.0320068, 52.6709355], [-2.0333762, 52.6708881], [-2.0340783, 52.6708696], [-2.0347526, 52.6708602], [-2.0361067, 52.670824], [-2.0375161, 52.6707741], [-2.038228, 52.6707243], [-2.0388826, 52.6706732], [-2.039388, 52.6706248], [-2.0401975, 52.6705226], [-2.0408362, 52.670419], [-2.0414503, 52.6703049], [-2.0420117, 52.670185], [-2.0426105, 52.6700451], [-2.0431561, 52.6699012], [-2.0436855, 52.6697365]]}}, {"type": "Feature", "properties": {"osm_id": "3092307", "highway": "motorway", "ref": "M6 Toll", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Midland Expressway Ltd", "maxspeed_type": "UK:motorway", "bicycle": "no", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.0822549, 52.6741561], [-2.080451, 52.673188], [-2.0756174, 52.6706521], [-2.0739764, 52.669743], [-2.0723826, 52.6688351], [-2.0712186, 52.6681274], [-2.0702836, 52.6675493], [-2.0698046, 52.6672628], [-2.0693527, 52.6670091], [-2.0689729, 52.6667975], [-2.0685515, 52.6665837]]}}, {"type": "Feature", "properties": {"osm_id": "3092595", "highway": "motorway", "ref": "M23", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "4", "bicycle": "no", "surface": "asphalt", "carriageway_ref": "B", "foot": "no", "horse": "no", "source_ref": "local knowledge", "motor_vehicle": "designated", "maxspeed_variable": "yes", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-0.1359464, 51.1546522], [-0.135569, 51.1563309], [-0.1352344, 51.1575862], [-0.1349537, 51.1584183], [-0.1347488, 51.158926], [-0.1342556, 51.1599069], [-0.1336187, 51.1609553], [-0.1330114, 51.1617952], [-0.1319655, 51.1630384]]}}, {"type": "Feature", "properties": {"osm_id": "3098440", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.348949, 51.7032185], [-1.3478291, 51.7036474], [-1.3465053, 51.7040886]]}}, {"type": "Feature", "properties": {"osm_id": "3098441", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3411295, 51.7058328], [-1.3412851, 51.7057245], [-1.3416807, 51.7055483], [-1.3419968, 51.7054156], [-1.342295, 51.7053057]]}}, {"type": "Feature", "properties": {"osm_id": "3098460", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3589325, 51.6969759], [-1.3586357, 51.6971076], [-1.3580455, 51.6973138], [-1.3576029, 51.6975036]]}}, {"type": "Feature", "properties": {"osm_id": "3098680", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4126238, 51.6849475], [-1.4126819, 51.6850023], [-1.4127199, 51.685076], [-1.4127103, 51.6851882], [-1.4126366, 51.6852797], [-1.4125062, 51.685349], [-1.4123737, 51.685378], [-1.4122318, 51.6853785], [-1.4121176, 51.6853543], [-1.4120672, 51.6853293], [-1.4119345, 51.6852525], [-1.411889, 51.6851846], [-1.4118814, 51.6850742], [-1.4119233, 51.6849968], [-1.4119887, 51.6849393], [-1.4120971, 51.684887], [-1.4122119, 51.6848607], [-1.412451, 51.684872], [-1.4125538, 51.6849069], [-1.4126238, 51.6849475]]}}, {"type": "Feature", "properties": {"osm_id": "3098681", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4126238, 51.6849475], [-1.4127869, 51.684964], [-1.4130084, 51.6849708], [-1.413371, 51.6849575], [-1.4149686, 51.6848024], [-1.4159449, 51.6846995], [-1.4196171, 51.68428], [-1.421424, 51.6840642], [-1.4232552, 51.6838372], [-1.4264765, 51.6834045], [-1.4282946, 51.6831314], [-1.4301508, 51.6827595], [-1.4310306, 51.6825532], [-1.4319426, 51.6823305], [-1.4334659, 51.6818948], [-1.4349608, 51.681417], [-1.4360458, 51.6809914], [-1.4371464, 51.6805493], [-1.4383498, 51.6799928], [-1.4392829, 51.6795494], [-1.4405283, 51.6789607], [-1.4418351, 51.6783779], [-1.4422289, 51.6782176], [-1.4425865, 51.678072]]}}, {"type": "Feature", "properties": {"osm_id": "3098682", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4546063, 51.6747667], [-1.4543615, 51.6748378], [-1.453271, 51.6750507], [-1.4521761, 51.6752838]]}}, {"type": "Feature", "properties": {"osm_id": "3098684", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.4120672, 51.6853293], [-1.4114397, 51.6851839], [-1.4110586, 51.6851374], [-1.4107539, 51.6851173], [-1.407474, 51.6850029], [-1.4024586, 51.6848178]]}}, {"type": "Feature", "properties": {"osm_id": "3098685", "highway": "trunk", "ref": "A420", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.393769, 51.6845013], [-1.3939444, 51.68447], [-1.394866, 51.6844778], [-1.3961232, 51.6845034], [-1.3966832, 51.6845142], [-1.3972466, 51.6845337]]}}, {"type": "Feature", "properties": {"osm_id": "3098686", "highway": "trunk", "ref": "A420", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3589325, 51.6969759], [-1.3601905, 51.6966721], [-1.3613317, 51.6963904], [-1.3618494, 51.6962188], [-1.3623333, 51.696041], [-1.362712, 51.69587], [-1.3630892, 51.695678], [-1.3632776, 51.6955652], [-1.3635825, 51.6953827], [-1.3640419, 51.6950818], [-1.3643767, 51.6948113], [-1.3649205, 51.6943206], [-1.3655785, 51.6937027]]}}, {"type": "Feature", "properties": {"osm_id": "3098689", "highway": "trunk", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "name": "Stanford Road Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5677601, 51.6549741], [-1.5677952, 51.6549477], [-1.5678194, 51.6549354], [-1.5678504, 51.654924], [-1.5678802, 51.6549166], [-1.5679217, 51.654911], [-1.5679601, 51.6549103], [-1.5680066, 51.654915], [-1.5680385, 51.6549221], [-1.5680833, 51.6549388], [-1.5681106, 51.6549543], [-1.5681338, 51.6549728], [-1.5681496, 51.6549905], [-1.5681619, 51.6550115], [-1.5681677, 51.6550295], [-1.5681689, 51.6550596], [-1.5681648, 51.6550766], [-1.5681527, 51.6551007], [-1.5681361, 51.6551207], [-1.5681098, 51.6551419], [-1.5680876, 51.6551548], [-1.5680564, 51.655168], [-1.5680165, 51.6551788], [-1.567995, 51.6551824], [-1.5679549, 51.6551855], [-1.5679135, 51.655184], [-1.5678582, 51.6551739], [-1.5678333, 51.6551659], [-1.5678, 51.6551508], [-1.5677814, 51.6551392], [-1.5677583, 51.6551198], [-1.5677398, 51.6550963], [-1.5677308, 51.6550774], [-1.5677259, 51.6550547], [-1.5677284, 51.6550262], [-1.5677368, 51.6550047], [-1.5677601, 51.6549741]]}}, {"type": "Feature", "properties": {"osm_id": "3098690", "highway": "trunk", "ref": "A420", "lanes": "1", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5748027, 51.6496014], [-1.574522, 51.6497006], [-1.5742744, 51.6497963]]}}, {"type": "Feature", "properties": {"osm_id": "3098694", "highway": "trunk", "ref": "A420", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5680564, 51.655168], [-1.5679095, 51.6552311], [-1.567809, 51.6552867], [-1.5676278, 51.6553823], [-1.5676788, 51.6552727], [-1.5677157, 51.6551995], [-1.5677217, 51.6551612], [-1.5677308, 51.6550774]]}}, {"type": "Feature", "properties": {"osm_id": "3098835", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.5121151, 51.9423292], [-1.5119974, 51.9422443], [-1.5117593, 51.9420739], [-1.5112494, 51.9417089], [-1.5110003, 51.941537], [-1.5104316, 51.9412042], [-1.5101451, 51.9410573], [-1.5086675, 51.9402995], [-1.506492, 51.9392756], [-1.5053201, 51.9386592], [-1.5047111, 51.9382943], [-1.5044455, 51.9381225], [-1.503957, 51.9377863], [-1.5025523, 51.9368798], [-1.4996641, 51.9351792], [-1.4988244, 51.9346807], [-1.4971107, 51.9336731], [-1.4964403, 51.9332905], [-1.49631, 51.9332162], [-1.4948689, 51.9323939], [-1.4942138, 51.932053], [-1.4938048, 51.931841], [-1.4911669, 51.9304734], [-1.489141, 51.9294509], [-1.4875954, 51.928698], [-1.4872282, 51.9285191]]}}, {"type": "Feature", "properties": {"osm_id": "3098843", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6179343, 51.9614924], [-1.6174919, 51.9611155], [-1.6169355, 51.960718], [-1.616569, 51.9604939], [-1.6163898, 51.9603872], [-1.6157405, 51.96005], [-1.6134617, 51.9591281], [-1.6133744, 51.9590934], [-1.6123431, 51.9586832], [-1.611727, 51.9584736], [-1.6104904, 51.9581439], [-1.6103594, 51.958109], [-1.6087586, 51.9577322], [-1.6083717, 51.9576631], [-1.6078054, 51.9575944], [-1.6072283, 51.9575501], [-1.6069125, 51.9575409], [-1.6065177, 51.9575343], [-1.6062578, 51.9575269], [-1.6058581, 51.9575025], [-1.60547, 51.9574603], [-1.6050802, 51.9574081], [-1.6046877, 51.9573387], [-1.6043797, 51.9572576], [-1.6040519, 51.9571537], [-1.6030402, 51.9568333], [-1.6020371, 51.9565103], [-1.6010499, 51.956177], [-1.6005907, 51.9560062], [-1.6001585, 51.9558223], [-1.5997121, 51.9555859], [-1.5992716, 51.955305], [-1.5990082, 51.9551271], [-1.5987743, 51.9549691], [-1.5984863, 51.9547939], [-1.5982122, 51.954648]]}}, {"type": "Feature", "properties": {"osm_id": "3108526", "highway": "trunk", "ref": "A50", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:nsl_dual", "highways_england_area": "DBFO28", "source_maxspeed": "survey", "description": "Uttoxeter to Blythe Bridge Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0552581, 52.9621217], [-2.05515, 52.9620316], [-2.0550379, 52.9618398], [-2.0545161, 52.9613421], [-2.0540724, 52.9609921]]}}, {"type": "Feature", "properties": {"osm_id": "3108528", "highway": "trunk", "ref": "A50", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "DBFO28", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8720452, 52.9100706], [-1.8719217, 52.9100513], [-1.8718203, 52.9100362], [-1.8716878, 52.9100233], [-1.871555, 52.9100187], [-1.8713708, 52.9100152], [-1.8710735, 52.9100126], [-1.8707672, 52.9100081], [-1.8705089, 52.9100043], [-1.8697686, 52.9099935]]}}, {"type": "Feature", "properties": {"osm_id": "3108547", "highway": "trunk", "ref": "A50", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "DBFO28", "description": "Doveridge Bypass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8245122, 52.9099189], [-1.8243024, 52.9098887], [-1.8240872, 52.9098534], [-1.8236613, 52.909776], [-1.8232592, 52.9096981], [-1.8228413, 52.9096099], [-1.8223561, 52.9095006]]}}, {"type": "Feature", "properties": {"osm_id": "3108555", "highway": "trunk", "ref": "A50", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "DBFO28", "description": "Uttoxeter Road", "old_ref": "A564", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7533126, 52.8840087], [-1.7531461, 52.8839629], [-1.7530183, 52.8839247], [-1.7528725, 52.8838968], [-1.7527824, 52.8838902], [-1.7526458, 52.8838839], [-1.7522867, 52.8838844], [-1.7518256, 52.8838961], [-1.7509344, 52.8839314], [-1.7505742, 52.8839487], [-1.7501917, 52.883969], [-1.7498244, 52.8839926], [-1.7494515, 52.884019], [-1.7483858, 52.8840975], [-1.7472953, 52.8841827], [-1.7466574, 52.8842449]]}}, {"type": "Feature", "properties": {"osm_id": "3109757", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "7", "carriageway_ref": "B", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3002225, 52.9063659], [-1.3001373, 52.9058932], [-1.2999776, 52.9052729], [-1.2998612, 52.9049063], [-1.2997338, 52.9045391], [-1.2995472, 52.904047], [-1.2993314, 52.903547], [-1.2991836, 52.9032162], [-1.2990503, 52.9029006], [-1.2988874, 52.9024705], [-1.2988059, 52.9022388], [-1.2987285, 52.9020053], [-1.2985815, 52.9014328], [-1.2985087, 52.901129], [-1.2984441, 52.9008242], [-1.2983663, 52.9002363], [-1.2983157, 52.8996647], [-1.2983093, 52.899072], [-1.2983334, 52.8984776], [-1.2983735, 52.8980556], [-1.2984356, 52.8976263], [-1.2985161, 52.8972063], [-1.2986112, 52.8968108], [-1.2987089, 52.8964249], [-1.2988333, 52.8960366], [-1.2989579, 52.8956895], [-1.2990966, 52.8953285], [-1.2992371, 52.8950098], [-1.2993855, 52.8946903], [-1.2995413, 52.8944024], [-1.2996965, 52.89411], [-1.2999059, 52.8937498], [-1.3001177, 52.893406], [-1.3003488, 52.8930615], [-1.3005855, 52.8927309], [-1.3007996, 52.8924461], [-1.3010346, 52.8921513], [-1.3012715, 52.8918742], [-1.3015149, 52.8915979], [-1.3018901, 52.8911981], [-1.3022768, 52.8908126], [-1.3025046, 52.8906092], [-1.3027221, 52.8904017], [-1.303087, 52.8900627], [-1.3034715, 52.8897088], [-1.3038662, 52.8893587], [-1.3042363, 52.8890151], [-1.305013, 52.8883193]]}}, {"type": "Feature", "properties": {"osm_id": "3109799", "highway": "motorway", "ref": "M1", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "7", "carriageway_ref": "A", "int_ref": "E 13", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.3051956, 52.8883992], [-1.3051228, 52.8884616], [-1.3044317, 52.8890921], [-1.304053, 52.8894493], [-1.3036587, 52.8898], [-1.3030102, 52.8903924], [-1.3025929, 52.8907849], [-1.3022134, 52.8911508], [-1.3020286, 52.8913374], [-1.3018606, 52.8915196], [-1.3015968, 52.8918099], [-1.3013367, 52.8921083], [-1.3010305, 52.8924878], [-1.3008277, 52.8927526], [-1.3006471, 52.8930096], [-1.3003381, 52.8934525], [-1.3001248, 52.8938043], [-1.2999187, 52.8941476], [-1.2998365, 52.8942934], [-1.2996023, 52.8947488], [-1.299454, 52.8950595], [-1.2993231, 52.8953675], [-1.2991829, 52.8957222], [-1.2990627, 52.8960732], [-1.2989419, 52.8964443], [-1.2988438, 52.8968035], [-1.2987471, 52.897216], [-1.2986731, 52.8976375], [-1.2986045, 52.8980665], [-1.2985705, 52.8984798], [-1.2985382, 52.8987837], [-1.298542, 52.8990658], [-1.2985422, 52.899364], [-1.2985554, 52.8996586], [-1.2985723, 52.8999527], [-1.2986026, 52.9002232], [-1.2986869, 52.9008122], [-1.2987527, 52.9011539], [-1.2988336, 52.9014956], [-1.2989408, 52.9019022], [-1.2990583, 52.9022737], [-1.2991737, 52.9025917], [-1.2992904, 52.9029076], [-1.2994265, 52.9032273], [-1.2995784, 52.9035432], [-1.2997943, 52.904059], [-1.2999849, 52.9045664], [-1.3000983, 52.9048883], [-1.3001994, 52.9052212], [-1.3003042, 52.9056172], [-1.3003831, 52.9059757], [-1.3004374, 52.906298]]}}, {"type": "Feature", "properties": {"osm_id": "3113049", "highway": "trunk", "ref": "A24", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Ewell By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2481395, 51.3451327], [-0.2479539, 51.3451588], [-0.2477456, 51.3452047], [-0.2473997, 51.3452988], [-0.2469891, 51.3454691], [-0.2464483, 51.3457393], [-0.2460675, 51.3460005], [-0.2457558, 51.3463245], [-0.245461, 51.3468582]]}}, {"type": "Feature", "properties": {"osm_id": "3113050", "highway": "trunk", "ref": "A24", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Ewell By-Pass", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2458548, 51.3542314], [-0.2457046, 51.3541233], [-0.2455491, 51.3540008], [-0.2453098, 51.3537524], [-0.245196, 51.3535585], [-0.2446096, 51.3518038], [-0.2443415, 51.351025], [-0.2442719, 51.3507689], [-0.2442176, 51.3505007], [-0.2441787, 51.3502778], [-0.2441512, 51.3497022], [-0.2441968, 51.3492571], [-0.2442823, 51.3488641], [-0.2445001, 51.3482759], [-0.2447368, 51.3478307], [-0.2449839, 51.3473277], [-0.2452012, 51.346834]]}}, {"type": "Feature", "properties": {"osm_id": "3113051", "highway": "trunk", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.249935, 51.3582061], [-0.2499299, 51.3582385]]}}, {"type": "Feature", "properties": {"osm_id": "3113052", "highway": "trunk", "ref": "A240", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Kingston Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2499299, 51.3582385], [-0.2501189, 51.3584715], [-0.2503076, 51.3587053], [-0.2506736, 51.3590521], [-0.2511148, 51.359387], [-0.2532054, 51.3607075]]}}, {"type": "Feature", "properties": {"osm_id": "3113348", "highway": "trunk", "ref": "A217", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2129415, 51.3587595], [-0.2126683, 51.3583636], [-0.2124885, 51.358064], [-0.212365, 51.357819], [-0.2122664, 51.3575959], [-0.2121325, 51.3572795], [-0.2120954, 51.3571918], [-0.2117996, 51.3564588], [-0.2117107, 51.3562375]]}}, {"type": "Feature", "properties": {"osm_id": "3113349", "highway": "trunk", "ref": "A217", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Transport for London", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2118064, 51.3562212], [-0.2118196, 51.3562616], [-0.2119136, 51.3564886], [-0.2120523, 51.3568263], [-0.2122125, 51.3571918], [-0.212405, 51.3575997], [-0.2125252, 51.3578383], [-0.2126377, 51.358072], [-0.2129718, 51.358567], [-0.2130944, 51.3587223]]}}, {"type": "Feature", "properties": {"osm_id": "3114882", "highway": "trunk", "ref": "A217", "maxspeed": "40 mph", "lit": "yes", "name": "Banstead Downs", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2016918, 51.3397275], [-0.2016708, 51.3397307], [-0.2016548, 51.3397319], [-0.2016422, 51.3397313], [-0.2015904, 51.3397257], [-0.201548, 51.339716], [-0.2015148, 51.3397034], [-0.2014711, 51.3396792], [-0.2014399, 51.3396491], [-0.2014201, 51.3396118], [-0.2014091, 51.3395712]]}}, {"type": "Feature", "properties": {"osm_id": "3115316", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Grove Road", "operator": "Transport for London", "source_name": "OS_OpenData_StreetView", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1916077, 51.3604617], [-0.1917991, 51.3604125], [-0.1919294, 51.3603821]]}}, {"type": "Feature", "properties": {"osm_id": "3115317", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Sutton Park Road", "operator": "Transport for London", "source_name": "OS_OpenData_StreetView", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1945247, 51.3599005], [-0.1946139, 51.3599206], [-0.1946698, 51.3599401], [-0.1947512, 51.3599809], [-0.194818, 51.3600448], [-0.1948644, 51.3601439], [-0.1950886, 51.3605237], [-0.1951126, 51.3605644], [-0.1951493, 51.3606266]]}}, {"type": "Feature", "properties": {"osm_id": "3115320", "highway": "trunk", "ref": "A232", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "High Street", "operator": "Transport for London", "source_name": "OS_OpenData_StreetView", "source_ref": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2163345, 51.3576644], [-0.2157009, 51.3577975], [-0.2152725, 51.3579248], [-0.2150151, 51.3580614], [-0.2146988, 51.3582524], [-0.2146018, 51.3582996], [-0.2143661, 51.3583881], [-0.2141165, 51.3584737], [-0.2130944, 51.3587223], [-0.2129415, 51.3587595]]}}, {"type": "Feature", "properties": {"osm_id": "3115588", "highway": "trunk", "ref": "A37", "maxspeed": "60 mph", "oneway": "yes", "lit": "yes", "maxspeed_type": "GB:nsl_single", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.54021, 51.3544856], [-2.5402306, 51.3543441], [-2.5402399, 51.3540884]]}}, {"type": "Feature", "properties": {"osm_id": "3119879", "highway": "trunk", "ref": "A53", "maxspeed": "30 mph", "lit": "yes", "name": "Basford Roundabout", "junction": "roundabout", "alt_name": "Etruria Junction", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2045037, 53.0199894], [-2.2043983, 53.0199957], [-2.204294, 53.0199914], [-2.204156, 53.0199711], [-2.2040319, 53.019941]]}}, {"type": "Feature", "properties": {"osm_id": "3128526", "highway": "trunk", "ref": "A534", "maxspeed": "60 mph", "name": "Congleton Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3463025, 53.1534544], [-2.3460597, 53.1535811], [-2.3455449, 53.1538458], [-2.3452985, 53.1539783], [-2.3450732, 53.1541007], [-2.3448661, 53.1541677], [-2.3447567, 53.1541925], [-2.3445298, 53.1542184], [-2.3439274, 53.1542853], [-2.3437142, 53.1543071], [-2.3434687, 53.1543168], [-2.3432622, 53.1543067], [-2.3430291, 53.1542842], [-2.3427279, 53.1542413], [-2.3425283, 53.1541899], [-2.3423236, 53.1541265], [-2.3419967, 53.1539946], [-2.3411738, 53.1536615], [-2.34088, 53.1535832], [-2.3404804, 53.1535236], [-2.3400232, 53.1535083], [-2.3386555, 53.1536509], [-2.3372216, 53.15379], [-2.3352528, 53.1540138], [-2.334554, 53.1541108], [-2.3343653, 53.154123]]}}, {"type": "Feature", "properties": {"osm_id": "3128545", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3353475, 53.1223977], [-2.3354226, 53.1236076], [-2.3354899, 53.1247842], [-2.3355734, 53.1261093], [-2.3356806, 53.1277893], [-2.3358263, 53.1299874], [-2.3360613, 53.1337292], [-2.336188, 53.1359001], [-2.3363238, 53.1374802], [-2.336402, 53.1380425], [-2.3364783, 53.1384821], [-2.3366895, 53.1393277], [-2.3369284, 53.1402732], [-2.3371232, 53.1408842], [-2.33762, 53.142158], [-2.3378807, 53.1427258], [-2.3381643, 53.1433067], [-2.3385375, 53.1440464], [-2.3389757, 53.144765], [-2.3395381, 53.1456518], [-2.3400712, 53.1463774], [-2.3409645, 53.1475981], [-2.3419641, 53.1486994], [-2.3432367, 53.1499559], [-2.3443552, 53.1510098], [-2.3464856, 53.1529862], [-2.3472512, 53.1536964], [-2.3484198, 53.1548827], [-2.3488771, 53.1554049], [-2.349954, 53.1567138], [-2.3508992, 53.1580294], [-2.3522436, 53.1601748], [-2.3538895, 53.1627537], [-2.3550387, 53.1645505], [-2.3562301, 53.1664705], [-2.3571396, 53.1678743], [-2.3581776, 53.169401], [-2.3592505, 53.1709204], [-2.3607434, 53.1728785], [-2.3614646, 53.1737828], [-2.3636817, 53.1763849], [-2.3663349, 53.1791913], [-2.3693426, 53.1821064], [-2.3706593, 53.1832923], [-2.3723724, 53.1847934], [-2.3736875, 53.185847], [-2.3750338, 53.1869255], [-2.3754757, 53.187269], [-2.3792723, 53.1900862], [-2.3815127, 53.1917201], [-2.3820992, 53.1921835], [-2.3829349, 53.1928968], [-2.383573, 53.1935121], [-2.3840915, 53.1940331], [-2.3847044, 53.194739], [-2.3852467, 53.1954019], [-2.3855826, 53.1958719], [-2.385802, 53.1961878], [-2.3864602, 53.1973001], [-2.3867197, 53.1978114], [-2.3868389, 53.198085], [-2.3871954, 53.1989865], [-2.387466, 53.199876], [-2.3875846, 53.2003699], [-2.3876672, 53.2007918], [-2.3877337, 53.2012843], [-2.3877943, 53.2019443], [-2.3878389, 53.20285], [-2.3878976, 53.2039148], [-2.3879202, 53.2044097], [-2.3879807, 53.2049724], [-2.3879826, 53.2050356]]}}, {"type": "Feature", "properties": {"osm_id": "3128551", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.3426233, 53.0861393], [-2.342826, 53.0867786], [-2.3431552, 53.0880984], [-2.3433048, 53.0889009], [-2.3434371, 53.0898861], [-2.3434947, 53.0905884], [-2.3435368, 53.0913228], [-2.3435285, 53.0922622], [-2.343443, 53.0937974], [-2.3433405, 53.0946755], [-2.3431029, 53.0959337], [-2.3428821, 53.0968205], [-2.3425889, 53.0978154], [-2.3419703, 53.0995582], [-2.3412865, 53.1014766], [-2.3407881, 53.1028309], [-2.3403992, 53.1039805], [-2.3396326, 53.1060467], [-2.3384991, 53.1091994], [-2.338041, 53.1104614], [-2.3376408, 53.1115749], [-2.3366366, 53.1143638], [-2.3362152, 53.1155835], [-2.3359352, 53.1164978], [-2.3357021, 53.1175046], [-2.3355245, 53.1185236], [-2.3354288, 53.1193127], [-2.3353911, 53.1199113]]}}, {"type": "Feature", "properties": {"osm_id": "3128561", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.334088, 53.0693695], [-2.3347944, 53.0705484], [-2.335701, 53.0720486], [-2.3364478, 53.0732111]]}}, {"type": "Feature", "properties": {"osm_id": "3128685", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 05", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5083235, 53.3591322], [-2.5079442, 53.3584474], [-2.5076234, 53.3579422], [-2.5072292, 53.357359], [-2.5069283, 53.3569574], [-2.5065163, 53.3564362], [-2.5061418, 53.3559798], [-2.5054595, 53.3552509], [-2.5051219, 53.3549046], [-2.5046559, 53.3544094], [-2.5040398, 53.3537754], [-2.5037089, 53.353442], [-2.5022776, 53.3520019], [-2.5006107, 53.3503862], [-2.4982974, 53.3482258], [-2.4966543, 53.3467623], [-2.4948487, 53.3451467], [-2.4938408, 53.3442742]]}}, {"type": "Feature", "properties": {"osm_id": "3128686", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "active traffic management", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "foot": "no", "int_ref": "E 05", "horse": "no", "motor_vehicle": "designated", "maxspeed_variable": "peak_traffic", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.4017254, 53.3008612], [-2.4028568, 53.3023937], [-2.403409, 53.303104], [-2.4051365, 53.3052662], [-2.4062669, 53.3064682], [-2.4069587, 53.3072802], [-2.407704, 53.3079763], [-2.4091231, 53.3088958]]}}, {"type": "Feature", "properties": {"osm_id": "3128695", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.5566269, 53.4262135], [-2.5600104, 53.4281976], [-2.562654, 53.4296602], [-2.5637526, 53.4302381], [-2.5663705, 53.4316137], [-2.5717349, 53.4342318], [-2.5780606, 53.4370082], [-2.580683, 53.4381734], [-2.5822928, 53.4389028], [-2.5846652, 53.4403575], [-2.5859355, 53.4413289], [-2.587386, 53.4426325], [-2.5887078, 53.4442736], [-2.5897206, 53.4453624], [-2.590948, 53.4464155], [-2.5928667, 53.4476193], [-2.594819, 53.4484959], [-2.5967295, 53.4494086], [-2.5980367, 53.4501853], [-2.5989732, 53.4508127], [-2.5998316, 53.4514749], [-2.6005339, 53.4521487], [-2.6017558, 53.4537843]]}}, {"type": "Feature", "properties": {"osm_id": "3128696", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6153901, 53.4618088], [-2.6115567, 53.4606723], [-2.6092741, 53.4597779], [-2.6076939, 53.4590229], [-2.6063427, 53.4581353], [-2.6056796, 53.4577037], [-2.6050672, 53.4572773], [-2.6046939, 53.4570058], [-2.6043416, 53.4567258]]}}, {"type": "Feature", "properties": {"osm_id": "3128705", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6045309, 53.4566418], [-2.604883, 53.45693], [-2.6052739, 53.4572211], [-2.6058499, 53.4576127], [-2.6064673, 53.4580186], [-2.6078499, 53.4588863], [-2.6094887, 53.4596501], [-2.6116542, 53.4605329], [-2.6155041, 53.4616887]]}}, {"type": "Feature", "properties": {"osm_id": "3128706", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6638309, 53.5056726], [-2.662997, 53.505072], [-2.6618782, 53.5043148], [-2.6605436, 53.5029617], [-2.6596005, 53.5019209], [-2.6590887, 53.5013539], [-2.6584664, 53.5005115], [-2.6579085, 53.499567], [-2.6574257, 53.4985459], [-2.6568764, 53.4970859], [-2.6566814, 53.4958426], [-2.6565058, 53.4944035], [-2.6562131, 53.4929088], [-2.655862, 53.4918294], [-2.6549645, 53.490006], [-2.6548614, 53.4898401], [-2.6541061, 53.4886248], [-2.6530723, 53.4872193], [-2.6517457, 53.4857799], [-2.6499508, 53.4842237], [-2.6478633, 53.4827145], [-2.6455258, 53.4811892], [-2.6426276, 53.4795607]]}}, {"type": "Feature", "properties": {"osm_id": "3128714", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6374228, 53.4753815], [-2.6388304, 53.4766533], [-2.6405862, 53.4779885], [-2.6425177, 53.4792311]]}}, {"type": "Feature", "properties": {"osm_id": "3128715", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6994563, 53.5486736], [-2.6990652, 53.5479557], [-2.6987587, 53.5473495], [-2.6984722, 53.5467371], [-2.6982133, 53.5461176], [-2.6979792, 53.5455007], [-2.6977604, 53.5448599], [-2.6976053, 53.5443527], [-2.6974253, 53.5436732], [-2.6972464, 53.5428575], [-2.6971482, 53.5422026], [-2.6970594, 53.5414481], [-2.6969894, 53.5403614], [-2.6969924, 53.5389335], [-2.6971033, 53.5378232], [-2.6972576, 53.5369166], [-2.6974558, 53.5360112], [-2.6976984, 53.5350898]]}}, {"type": "Feature", "properties": {"osm_id": "3128721", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6979362, 53.5351259], [-2.6976861, 53.5360286], [-2.6975831, 53.5364862], [-2.6974973, 53.5369331], [-2.6973489, 53.5378383], [-2.6972311, 53.538937], [-2.6972099, 53.5403599], [-2.697288, 53.5414513], [-2.6973848, 53.5422192], [-2.697487, 53.5428384], [-2.6976637, 53.543661], [-2.6978317, 53.5443402], [-2.6979977, 53.5448343], [-2.6982133, 53.5454732], [-2.6984444, 53.5460828], [-2.6987022, 53.5466993], [-2.6989815, 53.5473117], [-2.6992917, 53.5479157], [-2.6996676, 53.5486004]]}}, {"type": "Feature", "properties": {"osm_id": "3128722", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6906803, 53.6317063], [-2.6901333, 53.6302172], [-2.6898739, 53.6296544], [-2.689769, 53.6293688], [-2.6891862, 53.6280836], [-2.6881227, 53.6261513], [-2.6875713, 53.6250736], [-2.6871779, 53.6243703], [-2.6867789, 53.6234162], [-2.6865413, 53.6227969], [-2.6863857, 53.6222181], [-2.6860688, 53.6211336], [-2.6858125, 53.6198262], [-2.6856672, 53.6187353], [-2.6856178, 53.6180698], [-2.6855969, 53.6174784], [-2.6856082, 53.6169792]]}}, {"type": "Feature", "properties": {"osm_id": "3128726", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7011252, 53.5622365], [-2.700563, 53.5639019], [-2.7001854, 53.5649418], [-2.6999107, 53.5658084], [-2.699679, 53.5667973], [-2.6992069, 53.5692541], [-2.6987348, 53.5710177], [-2.6985374, 53.5715987], [-2.6982971, 53.572246], [-2.697722, 53.5734845], [-2.697353, 53.5741114], [-2.6957479, 53.5769296], [-2.6951901, 53.5780286], [-2.6947969, 53.5789917], [-2.6945011, 53.5798434], [-2.6942739, 53.58068], [-2.6939111, 53.5825299], [-2.6938081, 53.5838496], [-2.6938167, 53.5844661], [-2.6938511, 53.5850164], [-2.6938596, 53.585424], [-2.6938854, 53.5864787], [-2.693983, 53.5873518], [-2.694306, 53.5884351], [-2.6944901, 53.5897707], [-2.6945277, 53.5904294], [-2.6945302, 53.5906391], [-2.694464, 53.5912725], [-2.6943649, 53.5918095], [-2.6941941, 53.5926981], [-2.6941086, 53.5931832], [-2.6938081, 53.5943141], [-2.6929584, 53.5972074], [-2.6919542, 53.6001616], [-2.6908212, 53.6031564], [-2.6896454, 53.6059065], [-2.688993, 53.6072509], [-2.688212, 53.6088194], [-2.6872936, 53.6107799], [-2.6869417, 53.6116659], [-2.6864439, 53.6132342], [-2.6862722, 53.6138961], [-2.6860491, 53.6151436], [-2.6859461, 53.6162026], [-2.6859382, 53.6166077]]}}, {"type": "Feature", "properties": {"osm_id": "3131606", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6913014, 53.6553661], [-2.6913706, 53.6561817], [-2.6914306, 53.6577076], [-2.6914306, 53.658613], [-2.6914012, 53.659049], [-2.691362, 53.6596302], [-2.6912418, 53.6606831], [-2.6909757, 53.6619444], [-2.6907526, 53.6628141], [-2.6904779, 53.6637651], [-2.6902118, 53.6644974], [-2.6896282, 53.6657586], [-2.689139, 53.6667808], [-2.6888471, 53.6674012], [-2.6884866, 53.6680114], [-2.6882764, 53.6683346], [-2.6880886, 53.6686233], [-2.6872164, 53.6699641], [-2.6867786, 53.6707878], [-2.6863323, 53.6717031], [-2.6855856, 53.6734827], [-2.6851049, 53.6749368], [-2.6847788, 53.6761926], [-2.6843925, 53.6781754], [-2.684301, 53.6784989]]}}, {"type": "Feature", "properties": {"osm_id": "3131607", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "10", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6774198, 53.6957777], [-2.677419, 53.6956734], [-2.6774658, 53.6930826], [-2.6774588, 53.6915108], [-2.6775759, 53.6905218], [-2.6781319, 53.688373], [-2.6783837, 53.6877838], [-2.6785337, 53.6874657], [-2.6786415, 53.6872925], [-2.6791048, 53.6863863], [-2.6796414, 53.685544], [-2.6801373, 53.6848088]]}}, {"type": "Feature", "properties": {"osm_id": "3135246", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "13", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6494533, 53.7455262], [-2.6490084, 53.7460356], [-2.6476942, 53.7472931], [-2.6431175, 53.7515432], [-2.6407337, 53.7536894], [-2.6398877, 53.7544504], [-2.6384071, 53.7561136], [-2.6376268, 53.7571893], [-2.6369909, 53.7583138], [-2.6365319, 53.7593042], [-2.636303, 53.7599397], [-2.6360253, 53.761127], [-2.6358882, 53.7623627], [-2.6359563, 53.7639068], [-2.6361191, 53.7647608]]}}, {"type": "Feature", "properties": {"osm_id": "3135247", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "13", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6580881, 53.7889114], [-2.656106, 53.787863], [-2.653381, 53.786222], [-2.6530951, 53.786037], [-2.6524801, 53.785595], [-2.651548, 53.784774], [-2.651144, 53.784383], [-2.6507025, 53.7839384], [-2.650418, 53.783671], [-2.649945, 53.783067], [-2.649473, 53.782405], [-2.64862, 53.781068], [-2.647993, 53.780162], [-2.646944, 53.778896], [-2.646103, 53.77797], [-2.644812, 53.77673], [-2.644053, 53.776079], [-2.64063, 53.773431], [-2.64026, 53.773112], [-2.639179, 53.772103], [-2.639022, 53.771938], [-2.6378478, 53.770507], [-2.637742, 53.770378], [-2.637146, 53.769359], [-2.637052, 53.76917], [-2.636446, 53.767657], [-2.63609, 53.766244]]}}, {"type": "Feature", "properties": {"osm_id": "3135363", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "13", "bicycle": "no", "surface": "asphalt", "source_maxspeed": "GB:motorway", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6364186, 53.7662147], [-2.636499, 53.766469], [-2.636574, 53.766998], [-2.636719, 53.767566], [-2.637447, 53.769376], [-2.638267, 53.770681], [-2.6386373, 53.7711319], [-2.639342, 53.77199], [-2.640888, 53.7734], [-2.642005, 53.774275], [-2.643833, 53.775643], [-2.64494, 53.776566], [-2.646316, 53.777838], [-2.647169, 53.77876], [-2.647942, 53.779677], [-2.649769, 53.782107], [-2.650792, 53.783567], [-2.6509834, 53.7837777], [-2.651452, 53.78428], [-2.652159, 53.784982], [-2.652848, 53.785541], [-2.653397, 53.785948], [-2.6536617, 53.7861313], [-2.656472, 53.787854], [-2.656599, 53.7879205], [-2.657632, 53.788461], [-2.658289, 53.788767]]}}, {"type": "Feature", "properties": {"osm_id": "3135364", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "13", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6909509, 53.8011277], [-2.690642, 53.8009447], [-2.6899004, 53.8005322], [-2.6893463, 53.8002509], [-2.6890357, 53.8001029], [-2.6881012, 53.7997054], [-2.6876532, 53.7995191]]}}, {"type": "Feature", "properties": {"osm_id": "3135437", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.6979064, 53.806947], [-2.6987069, 53.8077154], [-2.6996582, 53.808618], [-2.7006968, 53.8095359], [-2.7016423, 53.8102687], [-2.703201, 53.8112104], [-2.7047202, 53.8120568], [-2.7071913, 53.8133123], [-2.7090586, 53.814455]]}}, {"type": "Feature", "properties": {"osm_id": "3135438", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7389882, 53.8596701], [-2.7350208, 53.8550027], [-2.731714, 53.8512238], [-2.7299874, 53.849135], [-2.7280267, 53.846647], [-2.7267968, 53.8450103], [-2.7259197, 53.8437638], [-2.7248662, 53.8421258], [-2.7235201, 53.8398812], [-2.7225539, 53.8381794], [-2.7209737, 53.8349156], [-2.7204762, 53.8338097], [-2.7188958, 53.8296819], [-2.7172863, 53.8250705], [-2.716584, 53.8231531], [-2.7157061, 53.821443], [-2.7147403, 53.8199407], [-2.7129845, 53.8178676], [-2.7114941, 53.8164568], [-2.7110562, 53.8161045], [-2.7091793, 53.8147314]]}}, {"type": "Feature", "properties": {"osm_id": "3135538", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7094154, 53.8146772], [-2.7115224, 53.8162322], [-2.7132488, 53.8177897], [-2.7150046, 53.8198455], [-2.7160289, 53.8213824], [-2.7168483, 53.8230752], [-2.7175799, 53.8250617], [-2.7191894, 53.8296559], [-2.7206527, 53.8336801], [-2.7211794, 53.8348033], [-2.7226426, 53.8379288], [-2.7237542, 53.8398466], [-2.7250663, 53.8420561], [-2.7261494, 53.8437285], [-2.7282608, 53.8466816], [-2.730147, 53.8490703], [-2.7319269, 53.8511563], [-2.7351378, 53.8547783], [-2.7392251, 53.8596337]]}}, {"type": "Feature", "properties": {"osm_id": "3135539", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7560922, 53.9177218], [-2.7554423, 53.9157681], [-2.7538959, 53.9111869], [-2.752462, 53.9067905], [-2.7512037, 53.9028251], [-2.74936, 53.8973251], [-2.748687, 53.8953421], [-2.748131, 53.8942902], [-2.7472238, 53.8929631], [-2.7449705, 53.8900486], [-2.744473, 53.8891318], [-2.7443495, 53.8888301], [-2.7442275, 53.8883663], [-2.7440633, 53.8877348], [-2.7439617, 53.8872578], [-2.7438882, 53.8866726], [-2.7438877, 53.8857012], [-2.7439038, 53.8853005]]}}, {"type": "Feature", "properties": {"osm_id": "3135582", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "carriageway_ref": "A", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7441605, 53.8854017], [-2.7441049, 53.8863186], [-2.7441709, 53.8870841], [-2.7442681, 53.8876659], [-2.744537, 53.8885689], [-2.7447656, 53.8890974], [-2.7450627, 53.8897245], [-2.7453414, 53.8901547], [-2.7474872, 53.8928941], [-2.7483651, 53.8942212], [-2.7489211, 53.8953421], [-2.7496234, 53.8973424], [-2.7514378, 53.9028251], [-2.7527839, 53.9068077], [-2.7542178, 53.9111524], [-2.7557394, 53.9157729], [-2.7563834, 53.9176915]]}}, {"type": "Feature", "properties": {"osm_id": "3135583", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "13", "bicycle": "no", "source_maxspeed": "GB:motorway", "carriageway_ref": "B", "int_ref": "E 05", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.7511635, 53.9536821], [-2.7509883, 53.9527524], [-2.7509538, 53.9520334], [-2.7509802, 53.9511914], [-2.7511095, 53.9504424], [-2.7513241, 53.9496882], [-2.751584, 53.9490933], [-2.7518182, 53.9486629], [-2.7538429, 53.945524], [-2.7549013, 53.9435152], [-2.7556517, 53.9415843], [-2.7559426, 53.9404498], [-2.7561199, 53.9397585], [-2.7565296, 53.9374847], [-2.7570271, 53.933075], [-2.7573197, 53.931645], [-2.7577368, 53.9302295]]}}, {"type": "Feature", "properties": {"osm_id": "3139676", "highway": "trunk", "ref": "A534", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "Old Mill Road", "bicycle": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.3583463, 53.1425293], [-2.358138, 53.1428595], [-2.357907, 53.1432257], [-2.3574375, 53.1436937]]}}, {"type": "Feature", "properties": {"osm_id": "3149880", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "name": "Waterloo Roundabout", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1800446, 53.0299642], [-2.179997, 53.0299689], [-2.1799083, 53.0299588], [-2.179844, 53.0299375], [-2.1797824, 53.0298978], [-2.1797581, 53.0298702], [-2.1797365, 53.0297934], [-2.1797648, 53.0297439], [-2.1798457, 53.0296851], [-2.1799143, 53.0296646], [-2.1800228, 53.0296569]]}}, {"type": "Feature", "properties": {"osm_id": "3156971", "highway": "trunk", "ref": "A50", "maxspeed": "30 mph", "oneway": "yes", "name": "Potteries Way", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.173598, 53.0223884], [-2.1734143, 53.0224036], [-2.1733235, 53.0224205], [-2.1729354, 53.0225672], [-2.1719029, 53.0229622], [-2.1717015, 53.0230523], [-2.1716077, 53.0231084]]}}, {"type": "Feature", "properties": {"osm_id": "3156973", "highway": "trunk", "ref": "A50", "maxspeed": "30 mph", "oneway": "yes", "name": "Potteries Way", "maxspeed_type": "sign", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1715607, 53.023145], [-2.171471, 53.0232577], [-2.1714217, 53.0233841], [-2.1714128, 53.0238457], [-2.1714103, 53.0240772], [-2.1714573, 53.0246358], [-2.1714969, 53.0248373], [-2.171568, 53.0251264], [-2.1716528, 53.0254016], [-2.1716594, 53.0254291], [-2.1717166, 53.0255441]]}}, {"type": "Feature", "properties": {"osm_id": "3157048", "highway": "trunk", "ref": "A500", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "A", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1977315, 53.0122899], [-2.1981569, 53.0126011], [-2.1985096, 53.0128837], [-2.1995748, 53.0137726], [-2.2008899, 53.014866], [-2.2012155, 53.0151525], [-2.2015499, 53.0155008], [-2.2017264, 53.0157157], [-2.2018796, 53.0159249], [-2.2019806, 53.0160787], [-2.2020932, 53.0162713], [-2.2023067, 53.0167103], [-2.2024886, 53.0171576], [-2.2027267, 53.0176969], [-2.2029753, 53.0181115], [-2.2033763, 53.0186147], [-2.2036109, 53.0188523]]}}, {"type": "Feature", "properties": {"osm_id": "3157600", "highway": "trunk", "ref": "A500", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Queensway", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "B", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2062894, 53.0229459], [-2.2059549, 53.0220651], [-2.2056705, 53.0214528], [-2.2055144, 53.0211679], [-2.2052374, 53.0207451], [-2.2048234, 53.0202099], [-2.2045163, 53.0198697], [-2.2042655, 53.0196192], [-2.2034994, 53.0189197]]}}, {"type": "Feature", "properties": {"osm_id": "3161848", "highway": "trunk", "maxspeed": "70 mph", "lanes": "2", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.354085, 51.7261598], [-0.3540131, 51.7262016], [-0.353944, 51.7262219], [-0.3538914, 51.7262289], [-0.3538207, 51.7262285], [-0.3537392, 51.7262138], [-0.3536505, 51.7261739], [-0.3535992, 51.7261256], [-0.3535756, 51.726066], [-0.3535752, 51.7260481], [-0.3535988, 51.7259842], [-0.3536532, 51.7259336], [-0.3537153, 51.7259031], [-0.3537892, 51.7258844], [-0.3538949, 51.7258806], [-0.3540005, 51.7259029], [-0.3540757, 51.7259422], [-0.3541208, 51.7259886], [-0.354137, 51.7260231], [-0.3541416, 51.7260549], [-0.3541189, 51.7261234], [-0.354085, 51.7261598]]}}, {"type": "Feature", "properties": {"osm_id": "3164458", "highway": "trunk", "maxspeed": "30 mph", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.0138225, 52.5859104], [-2.0137036, 52.5858923], [-2.0135164, 52.5858366], [-2.0134688, 52.5858248]]}}, {"type": "Feature", "properties": {"osm_id": "3164858", "highway": "trunk", "ref": "A34", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "name": "London Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2243274, 53.008837], [-2.2239829, 53.0085869], [-2.223786, 53.0084472], [-2.2233588, 53.0080662], [-2.2229906, 53.0077081], [-2.2226732, 53.0074051], [-2.2220391, 53.0068876], [-2.2219936, 53.0068505], [-2.2218104, 53.006701], [-2.2215152, 53.0063516], [-2.2210325, 53.0059302], [-2.2201594, 53.0053356], [-2.2195253, 53.0049126], [-2.2185004, 53.0042916], [-2.2183003, 53.0041552], [-2.2179845, 53.0039151], [-2.2173973, 53.0034688], [-2.2170028, 53.0032027], [-2.2168015, 53.0030732]]}}, {"type": "Feature", "properties": {"osm_id": "3171710", "highway": "trunk", "ref": "A500", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "9", "carriageway_ref": "A", "old_ref": "A5006", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.2071261, 52.9806254], [-2.2064702, 52.9807485]]}}, {"type": "Feature", "properties": {"osm_id": "3171711", "highway": "trunk", "maxspeed": "30 mph", "oneway": "yes", "lit": "yes", "name": "Hanford Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.1999277, 52.982422], [-2.1998356, 52.9824387], [-2.1996168, 52.9824315], [-2.1994689, 52.9824027], [-2.1993159, 52.982358], [-2.1992083, 52.9822589], [-2.1991515, 52.9821583], [-2.199145, 52.9821302], [-2.199174, 52.9820126], [-2.1992199, 52.9819178], [-2.199273, 52.9818443]]}}, {"type": "Feature", "properties": {"osm_id": "3172835", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.784695, 50.8277241], [-0.7849091, 50.8278726], [-0.7851351, 50.8279759], [-0.7857552, 50.8281997], [-0.7861488, 50.82834], [-0.7865948, 50.8284989], [-0.7879957, 50.829002], [-0.7894715, 50.8295282], [-0.7915453, 50.8302758], [-0.7925164, 50.8306249], [-0.793259, 50.8308903], [-0.7934405, 50.8309551], [-0.7958621, 50.8318258], [-0.797686, 50.832469], [-0.7979639, 50.8325651], [-0.7981703, 50.8326201], [-0.7983226, 50.8326444], [-0.798536, 50.8326493]]}}, {"type": "Feature", "properties": {"osm_id": "3172836", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7979295, 50.8326929], [-0.7976088, 50.8325646], [-0.7957629, 50.831912], [-0.7933501, 50.8310457], [-0.7924363, 50.8307193], [-0.7894081, 50.8296337], [-0.7864446, 50.8285719], [-0.7855318, 50.8282386], [-0.7850709, 50.8280604], [-0.7849, 50.8280037], [-0.7847255, 50.8279771], [-0.7845359, 50.8279829]]}}, {"type": "Feature", "properties": {"osm_id": "3172837", "highway": "trunk", "maxspeed": "30 mph", "name": "Stockbridge Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7846016, 50.8275568], [-0.7846665, 50.8276364], [-0.784695, 50.8277241], [-0.784683, 50.827819], [-0.7846285, 50.8279077], [-0.7845359, 50.8279829], [-0.7844332, 50.8280313], [-0.7843148, 50.8280623], [-0.7841881, 50.8280741], [-0.7840265, 50.8280603], [-0.7838796, 50.8280156], [-0.7837619, 50.8279444], [-0.7836844, 50.8278528], [-0.783656, 50.8277505], [-0.783676, 50.8276554], [-0.7837387, 50.8275679], [-0.783816, 50.827509], [-0.7839217, 50.8274591], [-0.7840144, 50.8274334], [-0.7841853, 50.8274172], [-0.7843551, 50.8274373], [-0.7845051, 50.8274913], [-0.7846016, 50.8275568]]}}, {"type": "Feature", "properties": {"osm_id": "3172926", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7680267, 50.8259646], [-0.7682441, 50.8260325], [-0.7683813, 50.8260687], [-0.7687714, 50.826107], [-0.7694008, 50.826137], [-0.7699349, 50.8261497], [-0.7706571, 50.8261574], [-0.7711794, 50.826154], [-0.7718039, 50.8261403], [-0.7733885, 50.8260817], [-0.7746295, 50.826035], [-0.7757224, 50.8259897], [-0.7762275, 50.8259814], [-0.7769887, 50.825987], [-0.7773933, 50.8260043], [-0.7779997, 50.8260483], [-0.7783692, 50.8260828], [-0.7788565, 50.8261368], [-0.7793295, 50.8262098], [-0.7802117, 50.8263704], [-0.7807871, 50.8265043], [-0.7811496, 50.8265994]]}}, {"type": "Feature", "properties": {"osm_id": "3172927", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.783656, 50.8277505], [-0.7835984, 50.8276655], [-0.7835127, 50.8275962], [-0.7833973, 50.8275037], [-0.7832318, 50.827424], [-0.7830337, 50.8273485], [-0.7827685, 50.8272539], [-0.782157, 50.8270368], [-0.781482, 50.8268086]]}}, {"type": "Feature", "properties": {"osm_id": "3173767", "highway": "trunk", "maxspeed": "70 mph", "name": "Bognor Road Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7544686, 50.8301158], [-0.7544965, 50.8300646], [-0.7545386, 50.8300205], [-0.754594, 50.8299827], [-0.7546765, 50.8299473], [-0.7547703, 50.829926], [-0.7548792, 50.8299203], [-0.7549864, 50.8299335], [-0.755084, 50.8299645], [-0.7551645, 50.8300112], [-0.7552104, 50.8300547], [-0.7552411, 50.8301033], [-0.7552552, 50.8301549], [-0.7552521, 50.8302072], [-0.755224, 50.8302707], [-0.7551708, 50.8303275], [-0.755096, 50.8303735], [-0.7550219, 50.8304012], [-0.7549402, 50.8304181], [-0.7548436, 50.8304235], [-0.7547478, 50.8304139], [-0.7546585, 50.8303901], [-0.7545809, 50.8303533], [-0.7545313, 50.8303168], [-0.7544937, 50.830275], [-0.7544671, 50.8302235], [-0.7544586, 50.8301696], [-0.7544686, 50.8301158]]}}, {"type": "Feature", "properties": {"osm_id": "3173768", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7547703, 50.829926], [-0.75491, 50.8297783], [-0.7550109, 50.8296153], [-0.75512, 50.8294067], [-0.7553343, 50.8290721], [-0.7556196, 50.8287099], [-0.755773, 50.8285377], [-0.7559465, 50.8283612], [-0.7562106, 50.8281135], [-0.7565493, 50.8278299], [-0.7569463, 50.8275537], [-0.7572456, 50.8273575], [-0.7575894, 50.8271597], [-0.7580712, 50.8269145], [-0.7584491, 50.8267423], [-0.7587992, 50.8266049], [-0.7591472, 50.8264824], [-0.7595839, 50.826342], [-0.759987, 50.8262288], [-0.7603826, 50.8261323], [-0.760692, 50.8260692], [-0.761115, 50.8259914], [-0.7614801, 50.8259373], [-0.761976, 50.8258837], [-0.7624782, 50.8258442], [-0.7629853, 50.8258256], [-0.7634939, 50.825828], [-0.7639911, 50.8258455], [-0.7651189, 50.8259099], [-0.766267, 50.8259799], [-0.7668584, 50.8260068], [-0.7670091, 50.8260103], [-0.7671742, 50.8259992], [-0.7673847, 50.8259665]]}}, {"type": "Feature", "properties": {"osm_id": "3173769", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.767392, 50.8262654], [-0.7671714, 50.8261986], [-0.767032, 50.8261599], [-0.7668401, 50.8261291], [-0.7665041, 50.8261078], [-0.7654295, 50.8260421], [-0.764003, 50.8259504], [-0.7635175, 50.8259361], [-0.7630777, 50.8259296], [-0.7625184, 50.8259482], [-0.7620192, 50.8259856], [-0.7615212, 50.8260394], [-0.7611449, 50.8260943], [-0.7607368, 50.8261677], [-0.7603986, 50.8262368], [-0.759962, 50.8263467], [-0.7596143, 50.8264476], [-0.7591689, 50.8265914], [-0.7588291, 50.8267128], [-0.758516, 50.8268415], [-0.7581975, 50.8269827], [-0.7579579, 50.8270989], [-0.7576092, 50.8272879], [-0.757418, 50.8273978], [-0.7572401, 50.8275094], [-0.7569266, 50.8277229], [-0.7566873, 50.8278939], [-0.756336, 50.8281838], [-0.7561175, 50.8283825], [-0.7559293, 50.8285743], [-0.7557672, 50.8287574], [-0.7555685, 50.8289952], [-0.7554038, 50.8292186], [-0.7552329, 50.8294897], [-0.7551486, 50.8296463], [-0.7551212, 50.8297643], [-0.7551194, 50.8298752], [-0.7551645, 50.8300112]]}}, {"type": "Feature", "properties": {"osm_id": "3173770", "highway": "trunk", "maxspeed": "70 mph", "name": "Portfield Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.755381, 50.8421435], [-0.7552473, 50.8422227], [-0.755074, 50.842276], [-0.7549932, 50.8422882], [-0.754891, 50.8422937], [-0.7547887, 50.8422887], [-0.7546192, 50.8422555], [-0.7544855, 50.8422014], [-0.7543473, 50.8420988], [-0.7542992, 50.8420351], [-0.7542598, 50.8419002], [-0.7542798, 50.8417974], [-0.7543237, 50.8417224], [-0.7543911, 50.8416539], [-0.7545392, 50.8415666], [-0.7546441, 50.8415309], [-0.7547578, 50.8415084], [-0.7549647, 50.8415026], [-0.7551573, 50.8415378], [-0.7552804, 50.8415863], [-0.7554081, 50.8416732], [-0.7554638, 50.8417366], [-0.7555003, 50.8418054], [-0.7555169, 50.841884], [-0.7555083, 50.8419631], [-0.7554774, 50.8420357], [-0.755381, 50.8421435]]}}, {"type": "Feature", "properties": {"osm_id": "3173771", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "cycleway": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7543911, 50.8416539], [-0.7545227, 50.8414756], [-0.7546378, 50.8412399], [-0.7547413, 50.8409292], [-0.7548108, 50.8405593], [-0.7549106, 50.8392106], [-0.7549095, 50.8389894], [-0.754907, 50.8384808], [-0.7548065, 50.8378809], [-0.7547636, 50.8377291]]}}, {"type": "Feature", "properties": {"osm_id": "3173772", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Chichester Bypass", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7549402, 50.8304181], [-0.7547707, 50.830536], [-0.7547011, 50.8306168], [-0.7546685, 50.8306693], [-0.7545652, 50.8309135], [-0.7544396, 50.8312841], [-0.7543451, 50.8316197]]}}, {"type": "Feature", "properties": {"osm_id": "3173935", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7123531, 50.8551417], [-0.7127902, 50.8551904], [-0.7131851, 50.8551826], [-0.7149682, 50.8551111], [-0.7163244, 50.8550215], [-0.7174819, 50.8549388], [-0.7180646, 50.8548889], [-0.7190338, 50.8548046], [-0.7208895, 50.8546195], [-0.7222334, 50.8544602], [-0.7235628, 50.8542787], [-0.7242357, 50.8541768], [-0.7251026, 50.854039], [-0.7258202, 50.8539002], [-0.7266104, 50.8537257], [-0.7272405, 50.8535597], [-0.7278924, 50.8533738], [-0.7285376, 50.8531644], [-0.7291988, 50.8529318], [-0.7296926, 50.8527391], [-0.730546, 50.8523691], [-0.7313267, 50.8519841], [-0.7319475, 50.8516474], [-0.7325057, 50.8513097], [-0.73301, 50.8509769], [-0.7335549, 50.8505776], [-0.7337424, 50.8504328], [-0.7340388, 50.850199], [-0.7352644, 50.8491], [-0.7358423, 50.8486147], [-0.7363187, 50.8482752], [-0.7368732, 50.8478851], [-0.7373586, 50.8475827], [-0.7379224, 50.8472485], [-0.7384535, 50.8469719], [-0.7392595, 50.846583], [-0.7401477, 50.8462115], [-0.7406756, 50.8460123], [-0.7413451, 50.8457799], [-0.7420217, 50.8455684], [-0.7427282, 50.8453791], [-0.744076, 50.8450659], [-0.7452179, 50.8448052], [-0.7465825, 50.8444668], [-0.7473697, 50.8442573], [-0.7482898, 50.8439996], [-0.7497985, 50.8435283], [-0.7507468, 50.8432066], [-0.7519233, 50.8427843], [-0.752653, 50.8424864], [-0.7530339, 50.8423324], [-0.753448, 50.8421844], [-0.7537964, 50.842075], [-0.7539686, 50.8420113], [-0.7541068, 50.8419325], [-0.7542798, 50.8417974]]}}, {"type": "Feature", "properties": {"osm_id": "3173936", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7544855, 50.8422014], [-0.7542651, 50.8421642], [-0.7540839, 50.8421733], [-0.7539214, 50.8421972], [-0.7536075, 50.842282], [-0.752842, 50.8425366], [-0.751943, 50.8428998], [-0.7509237, 50.8432641], [-0.7498696, 50.8436241], [-0.7489522, 50.8439135], [-0.7482806, 50.8441132], [-0.7474813, 50.844341], [-0.7466143, 50.8445735], [-0.7453814, 50.8448812], [-0.7437936, 50.845241], [-0.7428038, 50.8454762], [-0.742146, 50.8456491], [-0.7414703, 50.8458548], [-0.7407894, 50.8460878], [-0.7402218, 50.8463075], [-0.7392711, 50.8467075], [-0.7385699, 50.8470465], [-0.7380235, 50.8473373], [-0.737514, 50.8476338], [-0.7369966, 50.847954], [-0.7364426, 50.8483345], [-0.7359706, 50.8486885], [-0.7353557, 50.8492054], [-0.7341012, 50.8503349], [-0.733241, 50.8509919], [-0.7325647, 50.8514365], [-0.7305751, 50.8524974], [-0.7297951, 50.8528296], [-0.7291963, 50.8530594], [-0.7286551, 50.8532521], [-0.728027, 50.8534529], [-0.7274309, 50.8536256], [-0.7266769, 50.8538255], [-0.725865, 50.8540044], [-0.7251573, 50.8541446], [-0.7243801, 50.8542745], [-0.7235112, 50.8544051], [-0.7222666, 50.8545773], [-0.7208983, 50.8547369], [-0.7188612, 50.8549479], [-0.7175094, 50.8550614], [-0.7161754, 50.8551528], [-0.714974, 50.8552273], [-0.7131281, 50.8553007], [-0.7127826, 50.8553133], [-0.7126, 50.855339], [-0.7124467, 50.8553999]]}}, {"type": "Feature", "properties": {"osm_id": "3173937", "highway": "trunk", "maxspeed": "70 mph", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7118175, 50.855466], [-0.7117539, 50.8553972], [-0.7117378, 50.8553183], [-0.7117583, 50.8552486], [-0.711823, 50.8551714], [-0.7119232, 50.8551057], [-0.7120525, 50.8550866], [-0.7121536, 50.8550869], [-0.7122535, 50.8551018], [-0.7123531, 50.8551417], [-0.7124173, 50.8552038], [-0.7124584, 50.8552815], [-0.7124467, 50.8553999], [-0.7123718, 50.8554737], [-0.7122632, 50.8555174], [-0.7121456, 50.8555401], [-0.7120068, 50.8555304], [-0.7118967, 50.8555068], [-0.7118175, 50.855466]]}}, {"type": "Feature", "properties": {"osm_id": "3174396", "highway": "trunk", "maxspeed": "70 mph", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6511238, 50.8555597], [-0.6511517, 50.8556156], [-0.6511538, 50.8556643], [-0.6511322, 50.855719], [-0.6510391, 50.8557971], [-0.6509538, 50.8558273], [-0.6508718, 50.8558386], [-0.6507562, 50.8558303], [-0.6506644, 50.8558007], [-0.6505717, 50.8557299], [-0.6505484, 50.8556879], [-0.6505416, 50.855632], [-0.6505693, 50.8555638], [-0.6506429, 50.8555008], [-0.6507192, 50.8554692], [-0.6507498, 50.8554641], [-0.6508213, 50.855452], [-0.6509583, 50.8554642], [-0.6510599, 50.8555048], [-0.6511238, 50.8555597]]}}, {"type": "Feature", "properties": {"osm_id": "3174397", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6511238, 50.8555597], [-0.6513012, 50.8556081], [-0.6515124, 50.8556459], [-0.652017, 50.855696], [-0.6527298, 50.8557901], [-0.6532717, 50.8558791], [-0.6536749, 50.8559589], [-0.6539899, 50.8560213], [-0.6550181, 50.8562468], [-0.6554296, 50.856337], [-0.6559218, 50.8564355], [-0.6564843, 50.8565353], [-0.6571406, 50.8566285], [-0.6579423, 50.8567254], [-0.6591124, 50.8568326], [-0.65931, 50.8568511], [-0.6596333, 50.8568797], [-0.6600545, 50.8569124], [-0.6609193, 50.8569676], [-0.6615733, 50.8569947], [-0.6619732, 50.8570065], [-0.6628262, 50.8570062], [-0.6636087, 50.8569902], [-0.6642341, 50.856963], [-0.6648387, 50.8569192], [-0.665384, 50.8568658], [-0.6658712, 50.8568031], [-0.666364, 50.8567294], [-0.6668465, 50.8566449], [-0.6671879, 50.8565842], [-0.6677099, 50.8564772], [-0.6683162, 50.8563328], [-0.6707042, 50.8556537], [-0.6720333, 50.8552743], [-0.6740626, 50.8547037], [-0.6751882, 50.8544233], [-0.6757811, 50.8543063], [-0.6762971, 50.854235], [-0.6764173, 50.8542189], [-0.6767896, 50.8541823], [-0.6773119, 50.8541517], [-0.6778247, 50.85414], [-0.6783278, 50.8541521], [-0.679003, 50.8542023], [-0.6809566, 50.8543409], [-0.6812255, 50.8543548], [-0.6833464, 50.8544966], [-0.6846796, 50.8545758], [-0.6858626, 50.8546416], [-0.6866296, 50.8546827], [-0.689554, 50.854841], [-0.6908894, 50.8549081], [-0.6921856, 50.8549784], [-0.694194, 50.8550945], [-0.6961824, 50.8552182], [-0.6992287, 50.8553799], [-0.7004132, 50.8554272], [-0.7011357, 50.8554495], [-0.7023133, 50.8554637], [-0.7041507, 50.8554527], [-0.7054427, 50.8554286], [-0.7074912, 50.855389], [-0.7076284, 50.8553853], [-0.7090809, 50.855346], [-0.7092212, 50.8553407], [-0.7094273, 50.855333], [-0.7096218, 50.8553257], [-0.7102178, 50.8553034], [-0.7113049, 50.8552475], [-0.7115764, 50.8552236], [-0.711823, 50.8551714]]}}, {"type": "Feature", "properties": {"osm_id": "3174398", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7118175, 50.855466], [-0.711478, 50.8554284], [-0.711272, 50.8554023], [-0.7110006, 50.8553851], [-0.7102595, 50.8554104], [-0.70748, 50.8555068], [-0.7054068, 50.8555531], [-0.7041364, 50.8555837], [-0.7022789, 50.8555942], [-0.7012829, 50.8555786], [-0.7004126, 50.8555541], [-0.6985586, 50.855482], [-0.6961412, 50.8553441], [-0.6940092, 50.8552266], [-0.6921498, 50.8551283], [-0.6906111, 50.8550413], [-0.6894914, 50.8549769], [-0.6866318, 50.85481], [-0.6855908, 50.8547566], [-0.6846064, 50.8546998], [-0.682498, 50.8545804], [-0.6809269, 50.8544991], [-0.6790425, 50.8544017], [-0.6782657, 50.8543854], [-0.6777191, 50.8543999], [-0.6770126, 50.8544322], [-0.6764788, 50.8544844], [-0.6760579, 50.8545221], [-0.6753718, 50.8546165], [-0.6746794, 50.8547373], [-0.6741339, 50.854852], [-0.6734531, 50.8550153], [-0.6728694, 50.8551752], [-0.6720835, 50.8554135], [-0.6710819, 50.8557201], [-0.6701802, 50.8559831], [-0.6683906, 50.8564697], [-0.6678062, 50.8566172], [-0.6671103, 50.8567678], [-0.6663985, 50.8568934], [-0.665914, 50.8569633], [-0.665375, 50.8570305], [-0.6648277, 50.8570857], [-0.6642283, 50.8571235], [-0.6636289, 50.8571512], [-0.6629308, 50.8571597], [-0.6621956, 50.8571483], [-0.6614687, 50.8571121], [-0.6608484, 50.8570753], [-0.6598507, 50.857001], [-0.6590887, 50.8569384], [-0.6578091, 50.8568177], [-0.6570499, 50.8567245], [-0.6563876, 50.8566272], [-0.6557789, 50.8565196], [-0.6553688, 50.8564387], [-0.6549266, 50.8563404], [-0.6540564, 50.8561454], [-0.6532615, 50.8559858], [-0.6531187, 50.8559609], [-0.6525959, 50.8558776], [-0.6521828, 50.8558247], [-0.6516449, 50.8557777], [-0.6512399, 50.8557715], [-0.6510391, 50.8557971]]}}, {"type": "Feature", "properties": {"osm_id": "3174399", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6420314, 50.8566107], [-0.6423188, 50.856726], [-0.6425051, 50.8567809], [-0.6427563, 50.8568165], [-0.6430531, 50.8568183], [-0.6441187, 50.8567426], [-0.6457427, 50.8566238], [-0.6474076, 50.8565038], [-0.6480232, 50.8564575], [-0.6485229, 50.8564067], [-0.6488494, 50.8563614], [-0.6493729, 50.8562752], [-0.649793, 50.8561818], [-0.650228, 50.8560662], [-0.650356, 50.856012], [-0.6504672, 50.8559178], [-0.6505403, 50.8558172], [-0.6505717, 50.8557299]]}}, {"type": "Feature", "properties": {"osm_id": "3174400", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6509538, 50.8558273], [-0.6508371, 50.855922], [-0.6507599, 50.8559683], [-0.650662, 50.8560192], [-0.650397, 50.8561187], [-0.6501059, 50.8562014], [-0.6497292, 50.8562969], [-0.6493207, 50.8563807], [-0.6488557, 50.8564548], [-0.648501, 50.8565005], [-0.6480202, 50.8565504], [-0.6474214, 50.8565941], [-0.6468398, 50.85664], [-0.6457424, 50.8567182], [-0.6441164, 50.856836], [-0.6431527, 50.8569052], [-0.6426481, 50.8569362], [-0.6424164, 50.856929], [-0.6421252, 50.8568886], [-0.6418954, 50.8568174]]}}, {"type": "Feature", "properties": {"osm_id": "3174401", "highway": "trunk", "maxspeed": "70 mph", "lit": "yes", "operator": "Highways England", "maxspeed_type": "UK:nsl_dual", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.6416022, 50.8565735], [-0.641667, 50.8565368], [-0.6417478, 50.8565163], [-0.6417916, 50.8565129], [-0.6419156, 50.8565308], [-0.6419846, 50.8565643], [-0.6420314, 50.8566107], [-0.6420493, 50.8566568], [-0.642042, 50.8567116], [-0.6419858, 50.8567771], [-0.6418954, 50.8568174], [-0.6418104, 50.8568292], [-0.6417611, 50.8568275], [-0.6416787, 50.8568097], [-0.6416266, 50.8567856], [-0.641575, 50.8567413], [-0.6415372, 50.8566707], [-0.6415561, 50.8566222], [-0.6416022, 50.8565735]]}}, {"type": "Feature", "properties": {"osm_id": "3174635", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Chichester Road", "operator": "Highways England", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5846072, 50.8573464], [-0.5847467, 50.8573131], [-0.5855397, 50.8573795], [-0.5864816, 50.8574418], [-0.5869048, 50.8574698], [-0.5872631, 50.8574861], [-0.5885596, 50.8575449], [-0.588947, 50.8575625], [-0.5901056, 50.8576009]]}}, {"type": "Feature", "properties": {"osm_id": "3174636", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "name": "Arundel Road", "operator": "Highways England", "highways_england_area": "4", "surface": "asphalt", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.630664, 50.8535979], [-0.6299154, 50.8535113], [-0.6291405, 50.8534066], [-0.6282234, 50.8532727], [-0.6275697, 50.8531972], [-0.6271127, 50.8531513], [-0.6265576, 50.8531085], [-0.6258319, 50.8530545], [-0.6245057, 50.8529646], [-0.6233992, 50.8528945], [-0.6220979, 50.852827], [-0.6215003, 50.8528085], [-0.6213039, 50.8528024], [-0.620796, 50.8527987], [-0.6206375, 50.8527975], [-0.6198073, 50.8528052], [-0.6191728, 50.85283]]}}, {"type": "Feature", "properties": {"osm_id": "3174637", "highway": "trunk", "maxspeed": "40 mph", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5610775, 50.8523412], [-0.5612323, 50.8523048], [-0.5614109, 50.8523121], [-0.5615343, 50.8523448], [-0.5616867, 50.8524145], [-0.5617356, 50.8524525], [-0.5617806, 50.8525517], [-0.5618007, 50.8526594], [-0.5617631, 50.8527481], [-0.5616675, 50.8528384], [-0.5615693, 50.8528919], [-0.5614328, 50.8529255], [-0.5612663, 50.852931], [-0.5611356, 50.8529084], [-0.5610209, 50.8528736], [-0.5608964, 50.8528036], [-0.5608347, 50.8527131], [-0.5608207, 50.8526369], [-0.5608326, 50.8525294], [-0.5609425, 50.8524125], [-0.5610775, 50.8523412]]}}, {"type": "Feature", "properties": {"osm_id": "3174638", "highway": "trunk", "ref": "A27", "maxspeed": "60 mph", "lanes": "2", "name": "Chichester Road", "operator": "Highways England", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5846072, 50.8573464], [-0.5838619, 50.8572851], [-0.5829895, 50.8571795], [-0.5825215, 50.8571229], [-0.581409, 50.857009], [-0.5808552, 50.8569595], [-0.5802468, 50.8568674], [-0.580106, 50.8568365], [-0.579899, 50.8567911], [-0.579661, 50.8567218], [-0.5793748, 50.8566106], [-0.5790066, 50.8564181], [-0.5784969, 50.8561293], [-0.5782454, 50.8559716], [-0.577992, 50.8558202], [-0.5775895, 50.8556104], [-0.5766538, 50.8552395], [-0.5766365, 50.8552327], [-0.5756126, 50.8548319], [-0.5753194, 50.8547196], [-0.5750086, 50.8546209], [-0.5747289, 50.8545637], [-0.5744645, 50.8545303], [-0.5742125, 50.8545209]]}}, {"type": "Feature", "properties": {"osm_id": "3174834", "highway": "trunk", "maxspeed": "40 mph", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.548963, 50.8501362], [-0.549033, 50.8500419], [-0.5491094, 50.8499957], [-0.5492299, 50.84996], [-0.5493656, 50.8499539], [-0.5494883, 50.8499769], [-0.5495842, 50.8500207], [-0.5496375, 50.8500633], [-0.549686, 50.8501433], [-0.5496837, 50.8502344], [-0.5496443, 50.8502997], [-0.5495653, 50.8503607], [-0.5494761, 50.8503969], [-0.5492934, 50.850417], [-0.5491481, 50.8503898], [-0.5490439, 50.8503368], [-0.5489682, 50.8502475], [-0.548963, 50.8501362]]}}, {"type": "Feature", "properties": {"osm_id": "3174835", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "name": "Arundel Bypass", "operator": "Highways England", "highways_england_area": "4", "source_name": "OS_OpenData_StreetView", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5593958, 50.8513753], [-0.5589315, 50.8510979], [-0.5586767, 50.8509619], [-0.5583279, 50.8507903], [-0.5580212, 50.8506673], [-0.5577842, 50.8505801], [-0.5574221, 50.8504629], [-0.5568673, 50.850317], [-0.5558826, 50.8500901], [-0.5549138, 50.8499119], [-0.5536324, 50.8497839], [-0.5526528, 50.8497438], [-0.5519573, 50.849752], [-0.5513186, 50.8497792], [-0.5502725, 50.8498604]]}}, {"type": "Feature", "properties": {"osm_id": "3174837", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "name": "Station Road", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5448674, 50.8475107], [-0.5446726, 50.8474019], [-0.5446292, 50.8473791], [-0.5444395, 50.8472795], [-0.5442606, 50.8471889], [-0.5440694, 50.8471056], [-0.5438441, 50.8470462], [-0.5434777, 50.8470126], [-0.5422167, 50.8469535], [-0.5418389, 50.8469276], [-0.5415994, 50.8468821], [-0.5414633, 50.8468119], [-0.5409435, 50.8464191], [-0.5408188, 50.846314], [-0.5407114, 50.8461754], [-0.5406969, 50.8461399], [-0.540641, 50.8460036]]}}, {"type": "Feature", "properties": {"osm_id": "3175115", "highway": "trunk", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Offington Corner Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.392521, 50.8386411], [-0.3925988, 50.8385843], [-0.3926996, 50.8385443], [-0.3928143, 50.8385248], [-0.3929331, 50.8385274], [-0.3930455, 50.8385519], [-0.3931431, 50.8385971], [-0.3932149, 50.8386587], [-0.3932555, 50.8387351], [-0.3932559, 50.8388158], [-0.3932161, 50.8388924], [-0.393185, 50.8389245], [-0.3931466, 50.8389533]]}}, {"type": "Feature", "properties": {"osm_id": "3175116", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "name": "Arundel Road", "operator": "Highways England", "highways_england_area": "4", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4162977, 50.8411132], [-0.4162492, 50.8411102], [-0.4159171, 50.8410874], [-0.4147654, 50.8410161], [-0.4141625, 50.8409769], [-0.4134517, 50.840936], [-0.4128192, 50.8408923], [-0.4124434, 50.8408655], [-0.4116906, 50.8407934], [-0.4112863, 50.8407513], [-0.4108386, 50.8407145], [-0.410233, 50.8407016], [-0.4096638, 50.8407023], [-0.4093529, 50.8406983], [-0.408874, 50.8406918], [-0.4086442, 50.8406831], [-0.4082639, 50.8406643], [-0.4076171, 50.8406247], [-0.4070375, 50.8405892], [-0.4067062, 50.8405684], [-0.4065126, 50.8405563], [-0.4060024, 50.8405419], [-0.4059008, 50.8405404], [-0.4057993, 50.8405389], [-0.4055186, 50.8405346], [-0.4052077, 50.8405365], [-0.4049119, 50.8405445], [-0.4044931, 50.8405695], [-0.4040218, 50.8406085], [-0.4036329, 50.8406406], [-0.403307, 50.840662], [-0.4031265, 50.8406756], [-0.402924, 50.8406846], [-0.4027549, 50.8406916], [-0.4025858, 50.8406954], [-0.4023783, 50.8406951], [-0.4022, 50.8406927], [-0.4020648, 50.8406863], [-0.4019114, 50.8406752], [-0.4017648, 50.8406594], [-0.4015838, 50.840643], [-0.4014238, 50.8406258], [-0.4012686, 50.8406102], [-0.4010587, 50.8405867], [-0.4008249, 50.8405579], [-0.4006379, 50.8405391], [-0.4003669, 50.8405056], [-0.4001417, 50.8404781], [-0.3999397, 50.8404492], [-0.3998054, 50.8404178], [-0.399699, 50.8403782], [-0.3995728, 50.8403047]]}}, {"type": "Feature", "properties": {"osm_id": "3175117", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "1", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4162977, 50.8411132], [-0.4164959, 50.8411037], [-0.4175472, 50.8411422], [-0.417976, 50.8411463], [-0.4184133, 50.8411424], [-0.4189749, 50.8411288], [-0.4197541, 50.8410735], [-0.420438, 50.8410022]]}}, {"type": "Feature", "properties": {"osm_id": "3175118", "highway": "trunk", "ref": "A27", "maxspeed": "70 mph", "lanes": "1", "oneway": "yes", "name": "Arundel Road", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.5397185, 50.8437528], [-0.5389275, 50.8435167], [-0.5381395, 50.8432973]]}}, {"type": "Feature", "properties": {"osm_id": "3175316", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "lit": "yes", "name": "Warren Road", "operator": "Highways England", "highways_england_area": "4", "foot": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3918219, 50.838646], [-0.3916431, 50.8386253], [-0.390258, 50.8384083], [-0.3896307, 50.8382916], [-0.3891907, 50.8381832], [-0.3889246, 50.8380979], [-0.3887288, 50.8380245], [-0.3881292, 50.8377589], [-0.3871561, 50.837148], [-0.3867735, 50.8368936], [-0.3863709, 50.8366468], [-0.3858478, 50.8363996], [-0.3856126, 50.8362977], [-0.3853207, 50.8361608], [-0.3850236, 50.8359903], [-0.3848868, 50.8358901], [-0.3848112, 50.8358347], [-0.3845498, 50.8354667], [-0.3843712, 50.8351424], [-0.3841975, 50.8348195], [-0.3841663, 50.8347615], [-0.3839316, 50.8344816], [-0.383733, 50.834292], [-0.3832788, 50.8338804], [-0.3830172, 50.8336851], [-0.382488, 50.8333458], [-0.3823155, 50.8332626]]}}, {"type": "Feature", "properties": {"osm_id": "3175700", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Upper Brighton Road", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3176102, 50.8366113], [-0.3178529, 50.8365687], [-0.3182506, 50.8365119], [-0.3185247, 50.8364753], [-0.3187483, 50.8364483], [-0.3189721, 50.8364319], [-0.3193499, 50.8364162], [-0.319767, 50.8364156], [-0.3202116, 50.8364198], [-0.3203212, 50.8364219], [-0.3204688, 50.8364246], [-0.3206988, 50.8364263], [-0.3209892, 50.8364275], [-0.3211261, 50.8364253], [-0.3214118, 50.8364203], [-0.3216354, 50.8364118], [-0.3218153, 50.8364038], [-0.3221591, 50.8363864], [-0.3225493, 50.8363793], [-0.3228748, 50.836379], [-0.3230937, 50.8363826], [-0.3235689, 50.8364014], [-0.3238383, 50.8364193], [-0.3245029, 50.8364699], [-0.324835, 50.8364985], [-0.3251705, 50.8365328], [-0.3255179, 50.8365693], [-0.3260314, 50.8366299], [-0.3264279, 50.836684], [-0.3268304, 50.836746], [-0.3272366, 50.8368269], [-0.3277006, 50.836925], [-0.328132, 50.8370012], [-0.3283845, 50.8370411], [-0.3287394, 50.8370921], [-0.3291066, 50.8371323], [-0.3292683, 50.8371446], [-0.3297764, 50.8371761], [-0.3305154, 50.8371953], [-0.3317752, 50.837221], [-0.3322807, 50.8372377], [-0.3328579, 50.8372611], [-0.3336586, 50.8373022], [-0.3343718, 50.837343], [-0.3349461, 50.8373759], [-0.3353478, 50.8374005]]}}, {"type": "Feature", "properties": {"osm_id": "3175701", "highway": "trunk", "maxspeed": "40 mph", "lit": "yes", "name": "Lancing Manor Roundabout", "operator": "Highways England", "highways_england_area": "4", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3172097, 50.8368014], [-0.3172142, 50.8367446], [-0.3172459, 50.8366914], [-0.3173017, 50.8366468], [-0.3173693, 50.8366172], [-0.3174473, 50.8366007], [-0.31753, 50.8365986], [-0.3176102, 50.8366113], [-0.3176817, 50.8366376], [-0.3177397, 50.8366766], [-0.3177776, 50.8367245], [-0.3177921, 50.8367773], [-0.3177809, 50.8368327], [-0.317744, 50.8368835], [-0.3176955, 50.8369192], [-0.3176343, 50.8369459], [-0.3175485, 50.836964], [-0.3174581, 50.8369646], [-0.3173717, 50.8369477], [-0.3172922, 50.8369116], [-0.3172361, 50.8368609], [-0.3172097, 50.8368014]]}}, {"type": "Feature", "properties": {"osm_id": "3176149", "highway": "trunk", "ref": "A27", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "4", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3173717, 50.8369477], [-0.3171156, 50.8369913], [-0.3169484, 50.83702], [-0.3166834, 50.8370821], [-0.3163037, 50.837172], [-0.3149607, 50.8374848], [-0.313492, 50.8378338], [-0.3130277, 50.8379507], [-0.3125493, 50.838079], [-0.3120777, 50.8382143], [-0.3111566, 50.8384877], [-0.3099545, 50.8388039], [-0.3090348, 50.8390097]]}}, {"type": "Feature", "properties": {"osm_id": "3178739", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Sale Place", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1688291, 51.5173336], [-0.1688855, 51.5173734], [-0.1693019, 51.5176674], [-0.1693391, 51.5176949], [-0.1696188, 51.5178912], [-0.1700198, 51.5181744], [-0.1704173, 51.5184551]]}}, {"type": "Feature", "properties": {"osm_id": "3178750", "highway": "trunk", "ref": "A501", "maxspeed": "30 mph", "lanes": "4", "lit": "yes", "name": "Sussex Gardens", "surface": "asphalt", "sidewalk": "both", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1677294, 51.5179479], [-0.1677445, 51.517938], [-0.1677929, 51.5179117], [-0.1681097, 51.517729], [-0.1686752, 51.5174213]]}}, {"type": "Feature", "properties": {"osm_id": "3186573", "highway": "trunk", "maxspeed": "70 mph", "oneway": "yes", "lit": "yes", "source_maxspeed": "UK:nsl_dual", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3642044, 51.7208542], [-0.3641376, 51.720824], [-0.3640794, 51.7207842], [-0.3640433, 51.720717], [-0.3640287, 51.7206676], [-0.3640365, 51.7206209], [-0.3640716, 51.7205613], [-0.364121, 51.7205243], [-0.364195, 51.7204955], [-0.3643363, 51.7204671], [-0.3645953, 51.720439], [-0.3646787, 51.7204409]]}}, {"type": "Feature", "properties": {"osm_id": "3186575", "highway": "trunk", "ref": "A405", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3447805, 51.7322282], [-0.3449567, 51.7322129], [-0.3451144, 51.7321831], [-0.3452834, 51.7321114], [-0.3457065, 51.7318574], [-0.346212, 51.731525], [-0.3470909, 51.731014], [-0.3476648, 51.730722], [-0.3481123, 51.7305144], [-0.3486882, 51.7302505], [-0.3490571, 51.7300617], [-0.349434, 51.7298467], [-0.3499107, 51.7295456], [-0.3502373, 51.7293289], [-0.3506425, 51.7290475], [-0.3509671, 51.7288056], [-0.3514019, 51.7284739], [-0.3516806, 51.728248], [-0.3522345, 51.727767], [-0.3525308, 51.7274887], [-0.3529467, 51.7270297], [-0.3534992, 51.7263608], [-0.3535702, 51.726244], [-0.3535992, 51.7261256]]}}, {"type": "Feature", "properties": {"osm_id": "3186577", "highway": "trunk", "ref": "A405", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "source_maxspeed": "UK:nsl_dual", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3640794, 51.7207842], [-0.3638712, 51.7207189], [-0.3637587, 51.7207044], [-0.3636298, 51.7207058], [-0.3635591, 51.7207109], [-0.3626991, 51.7208376], [-0.3623392, 51.7208883], [-0.361851, 51.720956], [-0.3606494, 51.7211351], [-0.3599496, 51.7212634], [-0.3594193, 51.7213816], [-0.3589757, 51.7215105], [-0.3586672, 51.7216102], [-0.3582479, 51.7217808], [-0.3576745, 51.7220513], [-0.3570849, 51.7224461], [-0.356739, 51.7227367], [-0.3563582, 51.7231423], [-0.3554042, 51.7242806], [-0.3546854, 51.72514], [-0.3541975, 51.7257963], [-0.3541208, 51.7259886]]}}, {"type": "Feature", "properties": {"osm_id": "3186578", "highway": "trunk", "ref": "A405", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "operator": "Highways England", "highways_england_area": "DBFO5", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3822322, 51.705537], [-0.381318, 51.7068403], [-0.3811005, 51.7071607], [-0.3809061, 51.70741], [-0.3805616, 51.7077272], [-0.378947, 51.709155], [-0.377462, 51.7103866], [-0.3752647, 51.7123384], [-0.3750673, 51.7125139], [-0.374827, 51.7126469], [-0.3742176, 51.71295], [-0.3728633, 51.7136775], [-0.3723899, 51.7139467], [-0.3719772, 51.7141871], [-0.3718603, 51.7142813], [-0.3717891, 51.7143544], [-0.371725, 51.7144519], [-0.3716876, 51.7145233], [-0.3716874, 51.7146045]]}}, {"type": "Feature", "properties": {"osm_id": "3186582", "highway": "trunk", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Hunton Bridge Interchange", "maxspeed_type": "sign", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4296569, 51.6838378], [-0.4297212, 51.6837562]]}}, {"type": "Feature", "properties": {"osm_id": "3186583", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "Hempstead Road", "maxspeed_type": "sign", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4316343, 51.6849716], [-0.4315551, 51.6851043], [-0.431333, 51.6852853], [-0.4312689, 51.6853592], [-0.4312257, 51.6854287], [-0.4312008, 51.685501]]}}, {"type": "Feature", "properties": {"osm_id": "3186584", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watford Road", "maxspeed_type": "GB:national", "source_maxspeed": "Stats19", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4426887, 51.700118], [-0.4425188, 51.699934], [-0.4423642, 51.6998203], [-0.4417965, 51.6994692], [-0.4416, 51.6993147], [-0.4414648, 51.6992011], [-0.441267, 51.6989744], [-0.4411379, 51.6988025], [-0.4410308, 51.6986545], [-0.4409635, 51.6985339], [-0.440298, 51.6970739], [-0.4400804, 51.6966565], [-0.4397693, 51.6960949], [-0.4396708, 51.6959358], [-0.4394301, 51.695596], [-0.4391544, 51.6952915], [-0.4388904, 51.695015], [-0.4377832, 51.6940467], [-0.4375903, 51.693873]]}}, {"type": "Feature", "properties": {"osm_id": "3186585", "highway": "trunk", "ref": "A41", "lanes": "1", "oneway": "yes", "lit": "yes", "name": "North Western Avenue", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.4299227, 51.684854], [-0.42967, 51.684637], [-0.4295341, 51.6845471], [-0.4293869, 51.6844731], [-0.4291897, 51.6843996], [-0.4289454, 51.6843263], [-0.4284816, 51.684216]]}}, {"type": "Feature", "properties": {"osm_id": "3186586", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Western Avenue", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3937694, 51.6813584], [-0.3939181, 51.6814851], [-0.3940435, 51.6815404]]}}, {"type": "Feature", "properties": {"osm_id": "3186587", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Colne Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3702786, 51.6706342], [-0.3730274, 51.6723899]]}}, {"type": "Feature", "properties": {"osm_id": "3186736", "highway": "trunk", "ref": "A405", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "alt_name": "St Albans Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3949183, 51.6916282], [-0.3947528, 51.6916004], [-0.3933382, 51.6914951], [-0.3929059, 51.691473], [-0.3919713, 51.6914252], [-0.3918602, 51.6914279], [-0.3908119, 51.6914529], [-0.3902528, 51.6915133], [-0.389647, 51.6916221], [-0.3887944, 51.6918272], [-0.3883583, 51.6919797], [-0.3877557, 51.6922123], [-0.3871354, 51.692533], [-0.3868262, 51.6927261], [-0.3860886, 51.6932082], [-0.3857827, 51.6935485], [-0.3853849, 51.6939909]]}}, {"type": "Feature", "properties": {"osm_id": "3186737", "highway": "trunk", "ref": "A405", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3976803, 51.6917356], [-0.3975937, 51.6917747], [-0.3975147, 51.6917918], [-0.3972766, 51.6917331]]}}, {"type": "Feature", "properties": {"osm_id": "3186740", "highway": "trunk", "ref": "A405", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "North Orbital Road", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3974805, 51.6915844], [-0.3990606, 51.6916345], [-0.3998793, 51.6916204], [-0.4010686, 51.6915419]]}}, {"type": "Feature", "properties": {"osm_id": "3186822", "highway": "trunk", "ref": "A41", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Colne Way", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3923006, 51.6815496], [-0.3921684, 51.6814474], [-0.3920886, 51.6814157], [-0.3919116, 51.6813454], [-0.3917642, 51.6813126], [-0.3916373, 51.6812812], [-0.3911611, 51.6812027], [-0.3910787, 51.6811884], [-0.3909026, 51.6811578], [-0.3907679, 51.6811484], [-0.3904806, 51.6811048], [-0.3903127, 51.6810813], [-0.3900422, 51.6810501]]}}, {"type": "Feature", "properties": {"osm_id": "3186823", "highway": "trunk", "ref": "A41", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Otterspool Way", "layer": "-1", "z_order": -2}, "geometry": {"type": "LineString", "coordinates": [[-0.3701381, 51.6706646], [-0.3696884, 51.6703852], [-0.3694475, 51.6702314], [-0.3693112, 51.6701552], [-0.3681311, 51.6693816]]}}, {"type": "Feature", "properties": {"osm_id": "3186824", "highway": "trunk", "maxspeed": "50 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Berrygrove Interchange", "layer": "1", "junction": "roundabout", "z_order": 18}, "geometry": {"type": "LineString", "coordinates": [[-0.3712781, 51.6703435], [-0.371339, 51.6704558], [-0.3713712, 51.6705155], [-0.3713685, 51.6706471]]}}, {"type": "Feature", "properties": {"osm_id": "3187067", "highway": "trunk", "maxspeed": "30 mph", "lit": "yes", "surface": "asphalt", "junction": "roundabout", "source_ref": "https://www.whatdotheyknow.com/request/primary_route_status_of_roads_in", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1365782, 50.819534], [-0.1366282, 50.8195436], [-0.1366715, 50.8195621], [-0.1367044, 50.8195877], [-0.136724, 50.8196183], [-0.1367285, 50.8196508], [-0.136718, 50.8196827], [-0.1366933, 50.8197114], [-0.1366567, 50.8197342], [-0.1366113, 50.8197493], [-0.1365609, 50.8197556], [-0.1365098, 50.8197524], [-0.1364604, 50.8197393], [-0.1364194, 50.8197174], [-0.1363907, 50.8196888], [-0.136377, 50.819656], [-0.1363767, 50.8196348], [-0.1363827, 50.8196139], [-0.1363949, 50.8195942], [-0.1364269, 50.819566], [-0.1364712, 50.8195454], [-0.1365233, 50.8195344], [-0.1365782, 50.819534]]}}, {"type": "Feature", "properties": {"osm_id": "3188256", "highway": "trunk", "ref": "A5148", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "GB:national_dual", "highways_england_area": "9", "carriageway_ref": "B", "traffic_restriction": "no_stopping", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.8282841, 52.6509313], [-1.8273978, 52.6511164], [-1.8265824, 52.6513254], [-1.8259792, 52.6515207], [-1.8255129, 52.6516798], [-1.8247914, 52.6519748], [-1.8241616, 52.6522641], [-1.8237842, 52.6524526], [-1.8232884, 52.6527472], [-1.822806, 52.6530683], [-1.8222318, 52.653478], [-1.8217039, 52.6539207], [-1.821299, 52.6543276], [-1.8210385, 52.6546089], [-1.8206866, 52.6550736], [-1.8202467, 52.6556854], [-1.8196634, 52.6566119], [-1.8183066, 52.6587013], [-1.8173184, 52.6601879], [-1.8167445, 52.6610615], [-1.81573, 52.6626308], [-1.8140035, 52.6652016], [-1.8135239, 52.6658382], [-1.8129493, 52.6665162], [-1.8118102, 52.6676877]]}}, {"type": "Feature", "properties": {"osm_id": "3189215", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2702397, 51.188858], [-1.2697437, 51.1890626], [-1.2690432, 51.1893435], [-1.2684753, 51.1895587], [-1.2676374, 51.1898388], [-1.2669789, 51.1900351], [-1.2665822, 51.190154], [-1.2657173, 51.1903376], [-1.2647816, 51.1905066], [-1.2642086, 51.1905827], [-1.2634614, 51.1906718], [-1.262222, 51.1907471], [-1.2613275, 51.1907612], [-1.2605345, 51.1907496], [-1.2599523, 51.1907138], [-1.2594435, 51.1906698], [-1.2589387, 51.1906145], [-1.2579803, 51.1904945], [-1.2561683, 51.1902903]]}}, {"type": "Feature", "properties": {"osm_id": "3189216", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2555634, 51.1902322], [-1.2545235, 51.190158], [-1.2532539, 51.1901102], [-1.2524574, 51.1901262], [-1.2509721, 51.190188], [-1.2499978, 51.1902803], [-1.2491314, 51.190389], [-1.2481537, 51.1905502], [-1.2479164, 51.1905893], [-1.2458429, 51.1909586], [-1.2444205, 51.1912213], [-1.2417473, 51.1917209], [-1.2399186, 51.1920967], [-1.2373093, 51.1926182], [-1.2333176, 51.1933545], [-1.2317176, 51.1936167], [-1.2311724, 51.1936986], [-1.229827, 51.1939414], [-1.2289062, 51.1941511], [-1.2277451, 51.1944268], [-1.2271767, 51.1945677], [-1.2263771, 51.1948095], [-1.2257033, 51.1950432], [-1.224651, 51.1953945], [-1.2233178, 51.1957938], [-1.2216781, 51.1962404], [-1.2215618, 51.1962685], [-1.218391, 51.1970359], [-1.21725, 51.1973136], [-1.2147554, 51.1979069], [-1.2136638, 51.198175], [-1.2126715, 51.1984248]]}}, {"type": "Feature", "properties": {"osm_id": "3189224", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.301804, 51.1790216], [-1.2995836, 51.1791938], [-1.2978939, 51.1793667], [-1.2958441, 51.1796163], [-1.2934516, 51.1799456], [-1.2914882, 51.1802312], [-1.2896375, 51.1805448], [-1.288173, 51.1808428], [-1.2861184, 51.1812782], [-1.2846486, 51.1815891], [-1.2821096, 51.1820826], [-1.2812918, 51.1822591], [-1.2802951, 51.1825285], [-1.2788181, 51.1830224], [-1.2785801, 51.1831124], [-1.277932, 51.1833939], [-1.2768895, 51.1839449], [-1.27631, 51.184302]]}}, {"type": "Feature", "properties": {"osm_id": "3189225", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2700898, 51.1887429], [-1.2710087, 51.1882725], [-1.2712597, 51.1881257], [-1.2718707, 51.1877665], [-1.2723651, 51.187401], [-1.2729165, 51.1869597], [-1.2733867, 51.1865033], [-1.2752114, 51.1848722], [-1.2756403, 51.1845441]]}}, {"type": "Feature", "properties": {"osm_id": "3189227", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3364527, 51.1750413], [-1.3360376, 51.175058], [-1.3354075, 51.1751057], [-1.3349105, 51.1751668], [-1.333444, 51.1754038], [-1.3303411, 51.1759916], [-1.3283795, 51.1763462], [-1.326724, 51.1766401], [-1.3245624, 51.1769498], [-1.323016, 51.1771575], [-1.3216546, 51.1773343]]}}, {"type": "Feature", "properties": {"osm_id": "3189229", "highway": "trunk", "ref": "A303", "maxspeed": "70 mph", "lanes": "2", "oneway": "yes", "lit": "no", "operator": "Highways England", "highways_england_area": "3", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.3017611, 51.1788792], [-1.3022773, 51.1788353]]}}, {"type": "Feature", "properties": {"osm_id": "3212573", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1948257, 51.8906971], [-0.194919, 51.8906212], [-0.1950597, 51.8905731], [-0.1951844, 51.8905631], [-0.1953129, 51.89058], [-0.1953967, 51.8906088], [-0.1954878, 51.8906677], [-0.1955343, 51.8907274], [-0.1955519, 51.8908087], [-0.195532, 51.8908743], [-0.1954675, 51.8909467], [-0.1954141, 51.89098]]}}, {"type": "Feature", "properties": {"osm_id": "3212574", "highway": "trunk", "ref": "A602", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Broadhall Way", "sidewalk": "left", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1948692, 51.8909436], [-0.1945746, 51.8909347], [-0.1943654, 51.890948], [-0.1940274, 51.8909546], [-0.1936197, 51.8909248], [-0.1930357, 51.8908453], [-0.1926382, 51.8907912], [-0.1923793, 51.8907368], [-0.192081, 51.8906741], [-0.1915687, 51.8905447], [-0.1912782, 51.8905104], [-0.1912345, 51.8905053], [-0.1910414, 51.8904726], [-0.1908984, 51.8904254], [-0.190786, 51.8903607], [-0.1907162, 51.8903095], [-0.1906806, 51.8902834], [-0.1905546, 51.8901931], [-0.1902509, 51.8900359], [-0.1899527, 51.8898831], [-0.1890997, 51.8894583], [-0.1888562, 51.8893507], [-0.1883871, 51.8891966], [-0.1882099, 51.889159], [-0.1878006, 51.8890415], [-0.1872832, 51.8889046], [-0.1871719, 51.8888861], [-0.1870044, 51.8888824]]}}, {"type": "Feature", "properties": {"osm_id": "3212575", "highway": "trunk", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1870285, 51.8886496], [-0.1870573, 51.888726], [-0.1870581, 51.8887969], [-0.1870044, 51.8888824], [-0.1869218, 51.8889121], [-0.1868785, 51.8889213], [-0.1868054, 51.8889369], [-0.1866701, 51.8889302], [-0.1866172, 51.8889274], [-0.1865489, 51.8889006]]}}, {"type": "Feature", "properties": {"osm_id": "3217222", "highway": "trunk", "ref": "A37", "maxspeed": "30 mph", "lanes": "4", "lit": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5522452, 51.4007489], [-2.5517011, 51.3995312]]}}, {"type": "Feature", "properties": {"osm_id": "3217223", "highway": "trunk", "ref": "A37", "maxspeed": "30 mph", "lanes": "2", "lit": "yes", "name": "New Road", "surface": "paved", "source_name": "OS OpenData Locator", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.5476259, 51.368879], [-2.5477704, 51.3685285], [-2.5478714, 51.3682364], [-2.5479479, 51.3679579], [-2.5480029, 51.3676516], [-2.5480298, 51.3670924], [-2.5480988, 51.3664148]]}}, {"type": "Feature", "properties": {"osm_id": "3217648", "highway": "trunk", "maxspeed": "40 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "name": "Horse and Groom Roundabout", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7492644, 51.4085598], [-0.7493059, 51.4085918], [-0.7493429, 51.4086203], [-0.7493882, 51.408687], [-0.7493982, 51.4088143], [-0.7493814, 51.4089106], [-0.7493645, 51.4089692]]}}, {"type": "Feature", "properties": {"osm_id": "3218330", "highway": "trunk", "ref": "A322", "maxspeed": "50 mph", "lanes": "4", "oneway": "yes", "lit": "yes", "name": "Bagshot Road", "surface": "asphalt", "turn_lanes": "left;through|through|through|right", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.7324737, 51.3902387], [-0.7325408, 51.3902638], [-0.7344788, 51.3909289]]}}, {"type": "Feature", "properties": {"osm_id": "3218477", "highway": "trunk", "maxspeed": "60 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Watchfield Roundabout", "maxspeed_type": "GB:nsl_single", "surface": "asphalt", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6354345, 51.6153278], [-1.6354983, 51.6153535], [-1.6355425, 51.6153822], [-1.6355884, 51.6154339], [-1.6356039, 51.6154735], [-1.6356001, 51.6155365], [-1.6355759, 51.6155807], [-1.6355334, 51.615621], [-1.6354729, 51.6156547]]}}, {"type": "Feature", "properties": {"osm_id": "3218478", "highway": "trunk", "ref": "A420", "maxspeed": "60 mph", "lanes": "1", "oneway": "yes", "lit": "yes", "surface": "asphalt", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6354729, 51.6156547], [-1.6354113, 51.6157333], [-1.6353922, 51.6157672], [-1.6353098, 51.6158483], [-1.6351833, 51.6159148], [-1.6349504, 51.6160227]]}}, {"type": "Feature", "properties": {"osm_id": "3218481", "highway": "trunk", "ref": "A420", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6763258, 51.5892146], [-1.6751021, 51.5898356]]}}, {"type": "Feature", "properties": {"osm_id": "3218512", "highway": "trunk", "ref": "A420", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.705918, 51.5830954], [-1.7052695, 51.5832233], [-1.7048252, 51.5833295], [-1.7038703, 51.5835898], [-1.7032813, 51.58374], [-1.7026156, 51.5838835], [-1.7018614, 51.5840087], [-1.7010614, 51.5841163], [-1.6996331, 51.5842481], [-1.6985767, 51.5843192], [-1.6980966, 51.5843425], [-1.6975474, 51.5843657], [-1.6962939, 51.5844297], [-1.6928992, 51.5846464], [-1.6921764, 51.5846868], [-1.6914249, 51.5847061], [-1.6904581, 51.5847034]]}}, {"type": "Feature", "properties": {"osm_id": "3218513", "highway": "trunk", "ref": "A420", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7280661, 51.5786018], [-1.7279693, 51.5785869], [-1.7278625, 51.5785821], [-1.7277395, 51.578589]]}}, {"type": "Feature", "properties": {"osm_id": "3220169", "highway": "trunk", "ref": "A429", "maxspeed": "50 mph", "lanes": "3", "name": "Fosse Way", "lanes_forward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7567845, 51.8951938], [-1.7556805, 51.8958672]]}}, {"type": "Feature", "properties": {"osm_id": "3220170", "highway": "trunk", "ref": "A429", "maxspeed": "60 mph", "lanes": "3", "name": "Fosse Way", "lanes_forward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7251273, 51.9183908], [-1.7251089, 51.9184517], [-1.7251036, 51.9186745], [-1.7251058, 51.9188294], [-1.7251199, 51.9189598], [-1.7251852, 51.9192884], [-1.7252635, 51.9196923], [-1.7254224, 51.9203975]]}}, {"type": "Feature", "properties": {"osm_id": "3220176", "highway": "trunk", "ref": "A429", "maxspeed": "60 mph", "lanes": "2", "name": "Fosse Way", "source_maxspeed": "survey", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7138483, 51.9547234], [-1.7135213, 51.9557096], [-1.7134673, 51.955876], [-1.7133445, 51.9562543], [-1.7131615, 51.9568199], [-1.712764, 51.9577949], [-1.7125529, 51.9583297], [-1.7124323, 51.9587505], [-1.7123864, 51.9592187], [-1.7123472, 51.9596796], [-1.7122374, 51.9601627], [-1.7120941, 51.9605957], [-1.7118294, 51.961228], [-1.7116268, 51.9616675], [-1.711592, 51.9617844], [-1.7114908, 51.9621238], [-1.7111761, 51.9630273], [-1.710735, 51.9643125], [-1.7103316, 51.9656017], [-1.7102211, 51.9660633], [-1.7101106, 51.9665233], [-1.709944, 51.9672398], [-1.7097323, 51.9682591], [-1.7097022, 51.9683573], [-1.7096333, 51.9687466], [-1.7094805, 51.9691612], [-1.7092917, 51.9695394], [-1.7090724, 51.9698938], [-1.7088139, 51.9702978], [-1.708629, 51.9706015], [-1.7084874, 51.9709201], [-1.7082461, 51.9716446], [-1.7080437, 51.9724783], [-1.7079344, 51.9733104], [-1.7078523, 51.9742791], [-1.7077514, 51.974887], [-1.7076842, 51.9751032], [-1.7075526, 51.975527], [-1.7073415, 51.97614], [-1.7071426, 51.97687], [-1.7070072, 51.9773932], [-1.7068784, 51.9776941], [-1.7066279, 51.9781871], [-1.706516, 51.978441], [-1.7064436, 51.9786581], [-1.7063759, 51.9789325], [-1.7062314, 51.9795844]]}}, {"type": "Feature", "properties": {"osm_id": "3220177", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "lanes": "2", "lit": "no", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7265781, 51.9885976], [-1.72569, 51.9885827], [-1.7252949, 51.9885952], [-1.7248946, 51.9886223], [-1.7238994, 51.9887233], [-1.723627, 51.9887496], [-1.7232811, 51.988761], [-1.7225555, 51.9887592], [-1.7211488, 51.9887281], [-1.720452, 51.9886959], [-1.7198408, 51.9886677], [-1.7177993, 51.9886151], [-1.717298, 51.9885827], [-1.7162658, 51.9884507], [-1.7158687, 51.9884187], [-1.7152886, 51.9884251], [-1.7146562, 51.9884388], [-1.7131392, 51.9885397]]}}, {"type": "Feature", "properties": {"osm_id": "3220181", "highway": "trunk", "ref": "A44", "maxspeed": "30 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7526745, 51.9922363], [-1.7520933, 51.9922057], [-1.7514664, 51.9921287], [-1.7498051, 51.9919254], [-1.7494462, 51.9918601], [-1.7491689, 51.9918118], [-1.7491262, 51.9917962], [-1.748882, 51.9917074], [-1.7484124, 51.9915093], [-1.7482804, 51.9914458], [-1.7481267, 51.9913869], [-1.7478133, 51.991328], [-1.7477635, 51.9913186], [-1.7477034, 51.99131], [-1.7476726, 51.9913055], [-1.7473851, 51.9912642], [-1.7461333, 51.9909966], [-1.7455625, 51.9909101], [-1.7451843, 51.990878], [-1.7438235, 51.9907634], [-1.7436917, 51.9907433], [-1.743551, 51.9907218], [-1.7432733, 51.990676], [-1.7413313, 51.9902907], [-1.740015, 51.9900645], [-1.7392919, 51.9899478], [-1.7386002, 51.9898652]]}}, {"type": "Feature", "properties": {"osm_id": "3220190", "highway": "trunk", "ref": "A44", "maxspeed": "60 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7826425, 51.996938], [-1.7824904, 51.9968325], [-1.7820785, 51.9965965], [-1.7816467, 51.9963847], [-1.7811257, 51.9961652], [-1.7791788, 51.9954203], [-1.778109, 51.9950155], [-1.7772941, 51.9947429], [-1.7767966, 51.9946], [-1.776297, 51.9944881], [-1.7757275, 51.9943883], [-1.7755758, 51.9943617], [-1.7752332, 51.994305], [-1.7743504, 51.9942133], [-1.7713636, 51.9938834], [-1.7691925, 51.9936581], [-1.7682776, 51.9935767], [-1.7677378, 51.9935106], [-1.7671201, 51.9934186], [-1.7658718, 51.9931967], [-1.7644278, 51.992935], [-1.7638254, 51.9928542], [-1.7630851, 51.992778], [-1.7613318, 51.9926268], [-1.7587125, 51.9924072]]}}, {"type": "Feature", "properties": {"osm_id": "3220191", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6791511, 51.988847], [-1.6788054, 51.9887868], [-1.678434, 51.9887063], [-1.6776963, 51.9885376], [-1.6771619, 51.9884224], [-1.6767802, 51.9883638], [-1.6764343, 51.988318], [-1.6754048, 51.9882492], [-1.674448, 51.9882108], [-1.6719513, 51.9880055], [-1.6711256, 51.9879334], [-1.6692847, 51.987837], [-1.6682932, 51.9878075], [-1.6674578, 51.9877553], [-1.6669788, 51.9876845], [-1.6666793, 51.9876159], [-1.6663623, 51.9875166], [-1.6659708, 51.987367]]}}, {"type": "Feature", "properties": {"osm_id": "3220192", "highway": "trunk", "ref": "A44", "maxspeed": "50 mph", "lanes": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.6407934, 51.9770178], [-1.6403075, 51.9767473], [-1.6389241, 51.9760241], [-1.6378252, 51.9754453], [-1.6370327, 51.9750105], [-1.635885, 51.9742918], [-1.6349292, 51.9736909], [-1.63449, 51.9734004], [-1.634382, 51.9733199], [-1.6332116, 51.972447], [-1.6331134, 51.9723872], [-1.6326734, 51.972119], [-1.6323888, 51.9719837], [-1.6321236, 51.9718576], [-1.6309237, 51.9714169], [-1.6303611, 51.9711865], [-1.6299688, 51.9709822], [-1.6296828, 51.9707861], [-1.6295112, 51.9706375], [-1.629418, 51.9705568], [-1.6292229, 51.9703402], [-1.6289516, 51.9700044], [-1.6287013, 51.9696376], [-1.6286002, 51.9694953], [-1.6283946, 51.9692266], [-1.6281146, 51.9689622], [-1.6277102, 51.9686555], [-1.6270604, 51.968157], [-1.6266508, 51.9678585], [-1.6261374, 51.9676205], [-1.6260408, 51.967585], [-1.6253874, 51.9673451], [-1.6247892, 51.9670964], [-1.623728, 51.9666555], [-1.6232683, 51.9663728], [-1.6228128, 51.9661116], [-1.6223363, 51.965801], [-1.6215644, 51.9652617], [-1.6209884, 51.9648349], [-1.6206793, 51.9645612], [-1.6202464, 51.9640212], [-1.6202054, 51.9639414], [-1.620092, 51.9637209], [-1.6198699, 51.9633811], [-1.6195935, 51.9630308], [-1.6193593, 51.962789], [-1.6193046, 51.9627384], [-1.618794, 51.9622653], [-1.6179343, 51.9614924]]}}, {"type": "Feature", "properties": {"osm_id": "3220532", "highway": "trunk", "ref": "A556", "maxspeed": "50 mph", "lanes": "4", "bicycle": "yes", "surface": "asphalt", "lanes_forward": "2", "lanes_backward": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-2.6102662, 53.2286315], [-2.6107753, 53.2285281], [-2.6121926, 53.2282544]]}}, {"type": "Feature", "properties": {"osm_id": "3221074", "highway": "motorway", "ref": "M56", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "GB:motorway", "highways_england_area": "10", "bicycle": "no", "carriageway_ref": "A", "foot": "no", "int_ref": "E 22", "horse": "no", "motor_vehicle": "designated", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-2.506794, 53.3514935], [-2.5080677, 53.3511647], [-2.5088434, 53.3509592], [-2.5096224, 53.3507619], [-2.5106259, 53.3504993], [-2.5143406, 53.3495229]]}}, {"type": "Feature", "properties": {"osm_id": "3221374", "highway": "trunk", "ref": "A24", "maxspeed": "40 mph", "oneway": "yes", "lit": "yes", "name": "Denbies Roundabout", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.3247523, 51.2450796], [-0.3246743, 51.2450917], [-0.324594, 51.2450919], [-0.3245159, 51.2450802], [-0.3244443, 51.2450573]]}}, {"type": "Feature", "properties": {"osm_id": "3236383", "highway": "trunk", "ref": "A505", "maxspeed": "50 mph", "oneway": "yes", "lit": "yes", "name": "London Road", "bicycle": "yes", "surface": "paved", "junction": "roundabout", "old_ref": "A6141", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1929903, 51.9659258], [-0.1930705, 51.9658639], [-0.1931895, 51.9658072], [-0.1933793, 51.9658078], [-0.1934794, 51.9658182], [-0.1935816, 51.9658346], [-0.1936993, 51.9658704], [-0.1937561, 51.9659324], [-0.1937997, 51.9659937], [-0.1938189, 51.9661049], [-0.1937974, 51.9661825], [-0.193686, 51.966298], [-0.1935528, 51.9663381], [-0.1934398, 51.9663627], [-0.1932377, 51.9663715], [-0.1931643, 51.966353], [-0.193, 51.9663169], [-0.1929306, 51.9662123], [-0.1929033, 51.9660655], [-0.1929406, 51.9660014], [-0.1929903, 51.9659258]]}}, {"type": "Feature", "properties": {"osm_id": "3236385", "highway": "trunk", "ref": "A505", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "London Road", "bicycle": "yes", "surface": "paved", "old_ref": "A6141", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.1931895, 51.9658072], [-0.1938164, 51.9653706], [-0.1944723, 51.9648772], [-0.1948148, 51.9645959], [-0.1955683, 51.9639515], [-0.1959612, 51.9636171], [-0.1963692, 51.9633123], [-0.1967493, 51.9630865], [-0.1971096, 51.9628956], [-0.1973139, 51.9627985], [-0.1975312, 51.9627096], [-0.1977714, 51.9626289], [-0.1979853, 51.9625631], [-0.1983298, 51.962477], [-0.1986632, 51.9624242], [-0.1989924, 51.9623832], [-0.1992845, 51.9623623], [-0.1995973, 51.9623592], [-0.1998022, 51.962368], [-0.2000009, 51.9623687], [-0.2003534, 51.962408], [-0.200369, 51.9624103], [-0.2006928, 51.9624732]]}}, {"type": "Feature", "properties": {"osm_id": "3236386", "highway": "trunk", "ref": "A505", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "London Road", "bicycle": "yes", "surface": "paved", "old_ref": "A6141", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-0.2022511, 51.9635147], [-0.2021615, 51.9632825]]}}, {"type": "Feature", "properties": {"osm_id": "3239920", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "maxspeed_type": "gb:national", "highways_england_area": "7", "bicycle": "no", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1943139, 52.4054048], [-1.193078, 52.4053402]]}}, {"type": "Feature", "properties": {"osm_id": "3239957", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "no", "operator": "Highways England", "maxspeed_type": "UK:motorway", "highways_england_area": "9", "bicycle": "no", "carriageway_ref": "B", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.2604338, 52.4100775], [-1.259014, 52.4098558], [-1.2568238, 52.4095233], [-1.2552312, 52.4092959], [-1.2525095, 52.4089202], [-1.2501681, 52.4086327], [-1.2485255, 52.4084534], [-1.2462778, 52.408194], [-1.244642, 52.4080445], [-1.239263, 52.4075703]]}}, {"type": "Feature", "properties": {"osm_id": "3239960", "highway": "motorway", "ref": "M6", "maxspeed": "70 mph", "lanes": "3", "oneway": "yes", "lit": "yes", "operator": "Highways England", "highways_england_area": "7", "carriageway_ref": "A", "foot": "no", "int_ref": "E 24", "z_order": 9}, "geometry": {"type": "LineString", "coordinates": [[-1.1944636, 52.4052726], [-1.1949024, 52.4052929]]}}, {"type": "Feature", "properties": {"osm_id": "3239962", "highway": "trunk", "oneway": "yes", "lit": "no", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.2452081, 52.4072394], [-1.2453778, 52.4071985], [-1.2455177, 52.4071786], [-1.2456947, 52.4071835], [-1.2458302, 52.4072155], [-1.2459461, 52.4072633], [-1.2460682, 52.4073407], [-1.2462022, 52.4074379], [-1.2463092, 52.4075661], [-1.2463697, 52.4076917], [-1.2464011, 52.4077862]]}}, {"type": "Feature", "properties": {"osm_id": "3240332", "highway": "trunk", "ref": "A446", "maxspeed": "70 mph", "lanes": "2", "lit": "yes", "source_maxspeed": "survey", "junction": "roundabout", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7081536, 52.477235], [-1.7080893, 52.477365], [-1.7079627, 52.4775134], [-1.7078777, 52.4775802], [-1.7077706, 52.4776386], [-1.7076326, 52.4776942], [-1.7074332, 52.4777428], [-1.7072881, 52.4777633], [-1.7071612, 52.4777689], [-1.707011, 52.47776], [-1.7068925, 52.4777411], [-1.7066728, 52.477679], [-1.706517, 52.4775898], [-1.7063482, 52.4774509], [-1.7062233, 52.4773016], [-1.7062337, 52.4771109], [-1.7062645, 52.4769941]]}}, {"type": "Feature", "properties": {"osm_id": "3240629", "highway": "trunk", "ref": "A452", "maxspeed": "30 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "junction": "roundabout", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Solihull MBC", "gritting_route_ref": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7220815, 52.4751679], [-1.7219405, 52.4751495], [-1.7218125, 52.475109], [-1.7217067, 52.4750493], [-1.7216307, 52.4749746]]}}, {"type": "Feature", "properties": {"osm_id": "3240746", "highway": "trunk", "ref": "A452", "maxspeed": "50 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Collector Road", "maintenance": "gritting", "gritting": "priority_1", "gritting_operator": "Solihull MBC", "gritting_route_ref": "2", "z_order": 8}, "geometry": {"type": "LineString", "coordinates": [[-1.7357625, 52.4924174], [-1.7355785, 52.4926106], [-1.7354501, 52.4927804], [-1.7353916, 52.4929148], [-1.7353723, 52.4930924], [-1.7353878, 52.493219], [-1.7354364, 52.493356], [-1.7356196, 52.4937025], [-1.7362854, 52.4947807], [-1.7368201, 52.4956137], [-1.737357, 52.4964464], [-1.738443, 52.4981261], [-1.7388656, 52.4987367], [-1.7400912, 52.5005217], [-1.7405573, 52.5011876], [-1.741055, 52.5019242], [-1.7412661, 52.5022215], [-1.7413111, 52.5022863], [-1.7426119, 52.5041592], [-1.7439165, 52.5059746], [-1.7448063, 52.5070186], [-1.7453188, 52.5075428], [-1.7458278, 52.5080612], [-1.7468813, 52.508976], [-1.7473148, 52.509305], [-1.7477757, 52.5096396], [-1.7484427, 52.5100642], [-1.7491777, 52.5104857], [-1.7498955, 52.5108503], [-1.7506313, 52.5111938], [-1.751122, 52.5113959], [-1.7524007, 52.5118737], [-1.7527451, 52.5119953], [-1.7534792, 52.5122432], [-1.7545798, 52.5125994], [-1.7548258, 52.5126767], [-1.7556808, 52.5129343], [-1.756454, 52.5131542], [-1.757262, 52.5133534], [-1.7581694, 52.5135402], [-1.7590961, 52.5137067], [-1.760491, 52.5138988], [-1.7617418, 52.5140054], [-1.7629189, 52.5140711], [-1.7642588, 52.5140831], [-1.7653212, 52.5140579], [-1.7666711, 52.5139699], [-1.767867, 52.5138564], [-1.7690184, 52.513724], [-1.7710354, 52.5134192], [-1.772749, 52.5130445], [-1.7743206, 52.5126051], [-1.7781395, 52.5113163], [-1.7800188, 52.5106643], [-1.7807014, 52.5104483], [-1.7814099, 52.5102311], [-1.7838838, 52.5095107], [-1.7864987, 52.5088771], [-1.787972, 52.5085613], [-1.790947, 52.507942], [-1.7915905, 52.5078055], [-1.7922501, 52.5076626], [-1.7929226, 52.5075026], [-1.7935037, 52.5073421], [-1.7939324, 52.5071924], [-1.7945615, 52.5069787]]}}, {"type": "Feature", "properties": {"osm_id": "3240938", "highway": "trunk", "ref": "A38", "maxspeed": "40 mph", "lanes": "2", "oneway": "yes", "lit": "yes", "name": "Tyburn Road", "source_maxspeed": "survey", "maintenance": "gri
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment