Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active June 21, 2024 11:40
Show Gist options
  • Save anisotropi4/7ba18de4bfe15d9fea2bb5139dbc30e1 to your computer and use it in GitHub Desktop.
Save anisotropi4/7ba18de4bfe15d9fea2bb5139dbc30e1 to your computer and use it in GitHub Desktop.
OSM Rail Network in Great Britain
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/

OSM Rail Network in Great Britain

Using OSMnx (Python for Street Maps) to download Open Street Map (OSM) rail-data using the Overpass API

Creating the datafiles and associate GeoJSON format report

Once the dependencies are met run the script to gather the data:

$ ./prepublish

This will download and create ESRI Shape files in the shp directory for all Towns as well as all locations in Great Britian, as well as a Leaflet JavaScript visualisation using the Town data in a GeoJSON format.

Dependencies

These are environment and project dependencies.

python dependencies

For ease of use manage package python packages dependencies with a local virtual environment venv:

$ virtualenv venv
$ source venv/bin/activate
$ pip install osmnx

If missing install the python virtualenv package

$ sudo apt install virtualenv

Data and Map Tile License

Open Street Map data is licensed under the Open Data Commons Open Database License (ODbL)

Open Street Map tiles are licenced by CC BY-SA (c) OpenStreetMap contributors

{"type": "Polygon", "coordinates": [[[1.98396, 51.3377], [0.058076, 50.10375], [-1.246112, 49.89032], [-2.027284, 49.77612], [-2.0209, 49.76352], [-2.03199, 49.76171], [-1.808598, 49.10263], [-1.835368, 49.00443], [-3.940324, 49.15592], [-7.02478, 49.70097], [-5.441616, 52.78017], [-5.206178, 53.77268], [-5.488813, 54.8651], [-6.208707, 55.33747], [-6.604158, 55.43057], [-7.148041, 55.66455], [-14.86751, 57.46894], [-14.9907, 57.68017], [-12.08287, 58.53333], [-1.637515, 61.13564], [-0.2670263, 61.103], [0.1278458, 59.76591], [0.097816, 59.42198], [0.799897, 55.79959], [1.702395, 54.43427], [2.25, 52.58], [1.98396, 51.3377]]]}
<!DOCTYPE html>
<html>
<head>
<title>Fizzy Knitting: OSM locations of rail electrification in the UK</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);
//var voltages = ["25000", "1500", "750", "630", "600", "550"]
var voltages = ["660", "750", "1000", "1500", "3000", "6000", "11000", "15000", "20000", "25000", "50000"];
var colours = ["#4300BD","#5A00B2","#6F00A7","#86009C","#FFCC00","#FFAF00","#FF9400","#FF7D00","#FF6600","#FF4500","#F00000","#D00000"];
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",
"place": "Place",
"natural": "Natural",
"place": "Place",
"highway": "Road",
"ref": "CRS",
"admin_level": "admin",
"boundary": "boundary",
"voltage": "voltage",
"frequency": "frequency",
"electrified": "electrified"
}
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 colours = {
contact_line: {
550: '#e69c65',
600: '#bd5d16',
750: '#ffce36',
1500: '#ff893f',
25000: '#ff3818',
0: '#9ca3a9',
},
rail: {
550: '#b3e297',
630: '#7bc643',
750: '#09843b',
},
'4th_rail': {
630: '#0a3797',
750: '#11a7e0',
},
'contact_line;rail': {
'25000;750': '#fe85a8',
},
'contact_line;4th_rail': {
'25000;750': '#9d176s',
},
no: '#2c2e35',
fail: '#ff00ff',
}
var e = p.electrified;
var f = p.frequency;
var v = p.voltage;
var r = p.railway
if (v && Number(v) < 550) v = '550';
if (v && Number(v) > 25000) return colours['fail'];
if (e == 'yes') e = 'contact_line';
if (e == '3rd_rail') e = 'rail';
if (! e) e = 'no';
if (e in colours) return colours[e][v] || colours[e];
return colours['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.
#!/usr/bin/env python
import json
import osmnx as ox
from osmnx.utils import log
from osmnx.downloader import _osm_network_download
from functools import partial
from itertools import groupby
import argparse as args
from shapely.geometry import shape, Point, LineString
from shapely.ops import transform
import geopandas as gp
ox.config(use_cache=True, log_console=True)
try:
import pandas as pd
pd.set_option('display.max_columns', None)
except ImportError:
pass
PARSER = args.ArgumentParser(description='Download OSM rail data from OverpassAPI ')
PARSER.add_argument('--shpfiles', dest='shp', action='store_true',
default=False,
help='create ESRI ShapeFile data (default False)')
ARGS = PARSER.parse_args()
SHP = ARGS.shp
def _set_precision(precision=6):
def _precision(x, y, z=None):
return tuple([round(i, precision) for i in [x, y, z] if i])
return partial(transform, _precision)
def get_node(e):
node = {'geometry': Point(e['lon'], e['lat'])}
node['osmid'] = e['id']
if 'tags' in e:
for t in ox.settings.useful_tags_node:
if t in e['tags']:
node['tags'] = True
node[t] = e['tags'][t]
return node
def get_path(e):
path = {}
path['osmid'] = e['id']
# remove any consecutive duplicate elements in the list of nodes
g_list = groupby(e['nodes'])
path['nodes'] = [g[0] for g in g_list]
if 'tags' in e:
for t in ox.settings.useful_tags_path:
if t in e['tags']:
path[t] = e['tags'][t]
return path
def get_linestring(v):
return LineString([NODES[i]['geometry'] for i in v])
with open('great-britain.json', 'r') as fin:
POLYGON = shape(json.load(fin))
ox.settings.useful_tags_node = ['lon', 'timestamp', 'user', 'lat', 'ref', 'changeset', 'id', 'version', 'uid', 'ref:tiploc', 'name', 'electrified', 'frequency', 'voltage', 'railway']
ox.settings.useful_tags_path = ['bridge', 'tunnel', 'width', 'id', 'maxspeed', 'junction', 'name', 'version', 'uid', 'changeset', 'landuse', 'timestamp', 'user', 'ref', 'oneway', 'ref:tiploc', 'name', 'electrified', 'frequency', 'voltage', 'railway']
DATA = _osm_network_download(POLYGON, 'way["railway"]', '["railway"!~"highway|cycleway|footway|path|pedestrian|steps|corridor|elevator|escalator|proposed|construction|bridleway|abandoned|platform|raceway|service"]["railway"~"rail|subway|light_rail|tram|narrow_gauge"]')
log('Create node and path data')
NODES = {}
PATHS = {}
for osm_data in DATA:
for e in osm_data['elements']:
if e['type'] == 'node':
key = e['id']
NODES[key] = get_node(e)
if e['type'] == 'way': #osm calls network paths 'ways'
key = e['id']
PATHS[key] = get_path(e)
log('Create GeoPandas dataframe')
GF1 = gp.GeoDataFrame.from_dict(PATHS, orient='index')
GF1['geometry'] = GF1['nodes'].apply(get_linestring)
GF1 = GF1.drop('nodes', axis=1)
GF1.crs = 'EPSG:4326'
GF1['type'] = 'way'
IDX1 = GF1.within(POLYGON) | GF1.intersects(POLYGON)
GF1['location'] = 'GB'
GF1.loc[~IDX1, 'location'] = 'IE'
if SHP:
log('Output shapefiles')
GF2 = gp.GeoDataFrame.from_dict(data=NODES, orient='index')
GF2.crs = 'EPSG:4326'
GF2 = GF2.loc[GF2['tags'].dropna().index].drop(columns='tags', axis=1)
GF2['type'] = 'node'
IDX2 = GF2.within(POLYGON) | GF2.intersects(POLYGON)
GF2['location'] = 'GB'
GF2.loc[~IDX2, 'location'] = 'IE'
GF1.fillna('').to_file('shp/full_ways.shp', crs='epsg:4326')
GF2.fillna('').to_file('shp/full_nodes.shp', crs='epsg:4326')
log('Trim dataframe')
GF1 = GF1[IDX1].drop('location', axis=1)
log('Create GeoJSON')
OUTPUT = GF1.__geo_interface__
log('Clean up GeoJSON')
for i in OUTPUT['features']:
i['properties'] = {k: v for k, v in i['properties'].items()
if v is not None}
i.pop('bbox', None)
log('Write output file')
with open('output-all.json', 'w') as fout:
json.dump(OUTPUT, fout)
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"id": "170216648", "type": "Feature", "properties": {"osmid": 170216648, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.1074518, 49.2249866], [-2.1076033, 49.2249249], [-2.1076875, 49.2248677], [-2.1078856, 49.2246578], [-2.1079477, 49.2245137], [-2.1079382, 49.2244179], [-2.107889, 49.2243498], [-2.1078045, 49.2242881], [-2.1076709, 49.2242417], [-2.1074896, 49.2242302], [-2.1057624, 49.2244508], [-2.1056463, 49.224484], [-2.1055278, 49.2245632], [-2.1054785, 49.2246288], [-2.1054849, 49.2247269], [-2.1055148, 49.224826], [-2.1055738, 49.2249293], [-2.1056475, 49.224983], [-2.1057865, 49.2250445], [-2.1058906, 49.2250684], [-2.1060183, 49.225073], [-2.1073405, 49.225007], [-2.1074518, 49.2249866]]}}, {"id": "3032463", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 3032463, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.05603, 50.6393749], [-2.0559073, 50.6392441], [-2.0556147, 50.6389321], [-2.0553496, 50.6386461], [-2.0552991, 50.6385916], [-2.0549211, 50.6382824], [-2.0547886, 50.6381741], [-2.054375, 50.6378559], [-2.0535506, 50.6372854], [-2.0527045, 50.6367087], [-2.0524699, 50.6365521], [-2.0501227, 50.6349004], [-2.0497834, 50.63462], [-2.0493653, 50.6342428]]}}, {"id": "3839208", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 3839208, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9249007, 50.7249288], [-1.9244524, 50.7250737], [-1.9240121, 50.7252337], [-1.9235992, 50.725417], [-1.9222375, 50.7260775], [-1.9217614, 50.7262816], [-1.9212943, 50.7264705], [-1.9209733, 50.7266025], [-1.9205961, 50.726736], [-1.9201879, 50.7268536]]}}, {"id": "3839229", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 3839229, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.99493, 50.7298832], [-1.9936559, 50.7298066], [-1.9929525, 50.7297551], [-1.9923235, 50.7296928], [-1.9918559, 50.7296331], [-1.991421, 50.7295657], [-1.9909395, 50.7294778], [-1.9904623, 50.7293804], [-1.990004, 50.7292698], [-1.9895705, 50.7291497], [-1.9893715, 50.7290838]]}}, {"id": "3842150", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 3842150, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0130954, 50.7283996], [-2.0123132, 50.7285988], [-2.0115762, 50.7287607], [-2.0108104, 50.7289144], [-2.0100017, 50.7290647], [-2.0092556, 50.7291851], [-2.0085104, 50.7292955], [-2.0078109, 50.7293873], [-2.0071076, 50.7294662], [-2.0063027, 50.7295464], [-2.0055747, 50.7296104]]}}, {"id": "4608404", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 4608404, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.927514, 50.7243122], [-1.9271634, 50.7243639]]}}, {"id": "4734133", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 4734133, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0170807, 50.7268645], [-2.0165668, 50.7271221], [-2.0161084, 50.7273419], [-2.0154721, 50.7276091], [-2.0148391, 50.7278502], [-2.014274, 50.7280469]]}}, {"id": "10685268", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "name": "Hamworthy Goods line", "osmid": 10685268, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0177818, 50.72646], [-2.0180618, 50.7262364], [-2.0183059, 50.7259995], [-2.0184392, 50.7258511], [-2.0185704, 50.7256605], [-2.0187205, 50.7254814], [-2.0189538, 50.7252492], [-2.0191873, 50.725055], [-2.0194436, 50.724874], [-2.0196803, 50.7247367], [-2.0198856, 50.7246297], [-2.0201341, 50.7244628]]}}, {"id": "15089931", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 15089931, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8745639, 50.7321092], [-1.8741195, 50.7320133], [-1.8737301, 50.7319141]]}}, {"id": "21317809", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 21317809, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8611631, 50.7267693], [-1.8609133, 50.7267878], [-1.8604653, 50.726848], [-1.8599041, 50.7269305], [-1.8598048, 50.7269451], [-1.8588792, 50.7270885]]}}, {"id": "22878008", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 22878008, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8086007, 50.7354276], [-1.8083313, 50.7354881]]}}, {"id": "22878009", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 22878009, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8083313, 50.7354881], [-1.8078045, 50.7355952], [-1.8073696, 50.7356726], [-1.8067845, 50.7357623], [-1.8062458, 50.735832], [-1.8056631, 50.7358954], [-1.8049777, 50.7359473], [-1.8043816, 50.7359869], [-1.8000184, 50.7361683]]}}, {"id": "23054676", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 23054676, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8000184, 50.7361683], [-1.7997674, 50.7361783]]}}, {"id": "23054677", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 23054677, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7997674, 50.7361783], [-1.7940938, 50.7364648]]}}, {"id": "25302046", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 25302046, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0401621, 50.7202439], [-2.0340226, 50.7219217], [-2.0334642, 50.7220696], [-2.0328881, 50.7222076], [-2.0322443, 50.7223489], [-2.0316008, 50.7224739], [-2.0309977, 50.7225801], [-2.0303775, 50.7226809], [-2.0297182, 50.7227726], [-2.029031, 50.7228577], [-2.0282663, 50.72293], [-2.0277006, 50.7229761], [-2.0268927, 50.7230123]]}}, {"id": "29433321", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 29433321, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7940938, 50.7364648], [-1.7928049, 50.7365184]]}}, {"id": "29433322", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 29433322, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7928049, 50.7365184], [-1.7919568, 50.7365606], [-1.7913086, 50.7366009], [-1.7906924, 50.7366619], [-1.790044, 50.7367441], [-1.7895443, 50.7368277], [-1.7889758, 50.7369422], [-1.7883939, 50.7370743], [-1.7878033, 50.7372271], [-1.7871982, 50.7374057], [-1.7866804, 50.7375692], [-1.786189, 50.7377356], [-1.7856185, 50.7379623], [-1.7851393, 50.7381743], [-1.7847306, 50.7383709]]}}, {"id": "32482122", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 32482122, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9529767, 50.7212104], [-1.9517777, 50.7217383], [-1.9512904, 50.7219318], [-1.9508158, 50.7221079], [-1.9503764, 50.7222596], [-1.9498991, 50.7224139], [-1.9493764, 50.722566], [-1.9487567, 50.7227332], [-1.9479055, 50.7229373], [-1.9469191, 50.723171]]}}, {"id": "52468493", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "name": "Swanage Railway", "osmid": 52468493, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0576958, 50.641828], [-2.057405, 50.6414589]]}}, {"id": "52468494", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 52468494, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.057405, 50.6414589], [-2.0572402, 50.6412496], [-2.0570943, 50.6410506], [-2.0569425, 50.6408048], [-2.0567489, 50.6404777], [-2.0563599, 50.639854], [-2.0562229, 50.6396522], [-2.0560938, 50.639469]]}}, {"id": "52468505", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 52468505, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0560938, 50.639469], [-2.05603, 50.6393749]]}}, {"id": "62078225", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 62078225, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9021618, 50.7243496], [-1.9014372, 50.7241993], [-1.9006245, 50.7240043], [-1.8996583, 50.7237266]]}}, {"id": "62078226", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 62078226, "railway": "rail", "ref": "E21/18", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.90248, 50.7244116], [-1.9021618, 50.7243496]]}}, {"id": "62078227", "type": "Feature", "properties": {"electrified": "no", "osmid": 62078227, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8975211, 50.7232326], [-1.8963942, 50.7229733]]}}, {"id": "62078228", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 62078228, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8977202, 50.7232818], [-1.8975211, 50.7232326]]}}, {"id": "68874914", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 68874914, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160695, 50.7278051], [-1.9158723, 50.7278833]]}}, {"id": "68874915", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 68874915, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160591, 50.7272961], [-1.9159155, 50.7272927]]}}, {"id": "68874916", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "Bournemouth Traction Maintenance Depot", "osmid": 68874916, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9159155, 50.7272927], [-1.9154659, 50.7272669], [-1.9151633, 50.7272468], [-1.9147403, 50.7271955], [-1.9141153, 50.7271073], [-1.9133519, 50.7269982], [-1.9128458, 50.7269215], [-1.9124975, 50.7268433], [-1.912332, 50.7268003]]}}, {"id": "68874919", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 68874919, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9158723, 50.7278833], [-1.9154851, 50.72805], [-1.9150712, 50.7282581], [-1.9146715, 50.7284768], [-1.9142732, 50.7287211], [-1.913925, 50.7289587]]}}, {"id": "71561972", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 71561972, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9172474, 50.7274298], [-1.9170127, 50.7275068], [-1.9167526, 50.727599], [-1.9165529, 50.7276742]]}}, {"id": "99430551", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 99430551, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9991428, 50.6172804], [-1.9989827, 50.6172615]]}}, {"id": "99430557", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 99430557, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9989827, 50.6172615], [-1.9951526, 50.6169495], [-1.994562, 50.6168893], [-1.9939369, 50.6168054], [-1.9932264, 50.6167019], [-1.9926085, 50.6165821], [-1.9919256, 50.6164272], [-1.9912932, 50.6162747], [-1.9908954, 50.6161658], [-1.990667, 50.6161032], [-1.9899768, 50.615893], [-1.989395, 50.6156874]]}}, {"id": "106506086", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 106506086, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9849166, 50.7253989], [-1.9854663, 50.7262661]]}}, {"id": "108413452", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 108413452, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9646827, 50.6100046], [-1.9645483, 50.6099973], [-1.9640655, 50.6099879], [-1.9636952, 50.6099914], [-1.9635236, 50.6099953], [-1.9633209, 50.610002], [-1.9630383, 50.6100172], [-1.9626745, 50.6100369], [-1.962443, 50.6100499], [-1.962041, 50.6100675], [-1.9617912, 50.6100728], [-1.9601437, 50.6100132], [-1.9596892, 50.6099962]]}}, {"id": "108413453", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 108413453, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9647901, 50.61001], [-1.9646827, 50.6100046]]}}, {"id": "108413464", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 108413464, "railway": "rail", "tunnel": "covered", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9643975, 50.6100536], [-1.9641787, 50.6100765]]}}, {"id": "119963854", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 119963854, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8617886, 50.7267569], [-1.8614912, 50.7267558], [-1.8611631, 50.7267693]]}}, {"id": "126273979", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 126273979, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0493653, 50.6342428], [-2.0492528, 50.6341354]]}}, {"id": "126273980", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 126273980, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0492528, 50.6341354], [-2.0488585, 50.6336936], [-2.048537, 50.6332774], [-2.0481589, 50.6326803], [-2.0477608, 50.6318152], [-2.0472622, 50.6305945], [-2.0470999, 50.6302357], [-2.0469143, 50.6298757], [-2.0466506, 50.629406], [-2.046366, 50.6289524], [-2.0461032, 50.6285785], [-2.0458426, 50.6282185], [-2.045549, 50.6278523], [-2.0452796, 50.627543], [-2.0448845, 50.6271045], [-2.0418193, 50.6240678], [-2.0414352, 50.6237215], [-2.0409992, 50.6233774], [-2.0404563, 50.6229943], [-2.040169, 50.622816]]}}, {"id": "127771845", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 127771845, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0407373, 50.7201021], [-2.0401621, 50.7202439]]}}, {"id": "131354930", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 131354930, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9532138, 50.7211026], [-1.9529767, 50.7212104]]}}, {"id": "131354938", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 131354938, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9548648, 50.7203511], [-1.9532138, 50.7211026]]}}, {"id": "131354939", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 131354939, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9550057, 50.7202855], [-1.9548648, 50.7203511]]}}, {"id": "131354955", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 131354955, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9629893, 50.7167098], [-1.962481, 50.7168929], [-1.9620354, 50.7170777], [-1.9614867, 50.7173152], [-1.9550057, 50.7202855]]}}, {"id": "131354956", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 131354956, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9631576, 50.7166495], [-1.9629893, 50.7167098]]}}, {"id": "135714264", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 135714264, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.014274, 50.7280469], [-2.0141514, 50.7280878]]}}, {"id": "135714265", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 135714265, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8793641, 50.7326643], [-1.8762702, 50.7323763], [-1.8758184, 50.7323254], [-1.8754501, 50.7322772], [-1.8750346, 50.7322076], [-1.8745639, 50.7321092]]}}, {"id": "135714266", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 135714266, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8797909, 50.7327015], [-1.8793641, 50.7326643]]}}, {"id": "135714272", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 135714272, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0172883, 50.7267613], [-2.0170807, 50.7268645]]}}, {"id": "139071663", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 139071663, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0144744, 50.7278445], [-2.0150382, 50.7276407], [-2.0155401, 50.7274484], [-2.0163598, 50.7271164], [-2.0170506, 50.7268328]]}}, {"id": "139071664", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 139071664, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0144718, 50.727886], [-2.0150594, 50.7276771], [-2.0156997, 50.7274365], [-2.0163855, 50.7271425], [-2.0170506, 50.7268328]]}}, {"id": "146990338", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 146990338, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0576958, 50.641828], [-2.0581857, 50.6423711], [-2.058355, 50.642519], [-2.0589929, 50.6430627], [-2.0594706, 50.6433838], [-2.0600692, 50.6437269], [-2.0604153, 50.6439074], [-2.0606858, 50.6440438], [-2.0609352, 50.6441505], [-2.0618165, 50.6444971], [-2.0622715, 50.64469], [-2.0625379, 50.6448085], [-2.0625676, 50.6448236], [-2.0626806, 50.644881], [-2.0628278, 50.6449643], [-2.0631331, 50.6451474], [-2.0634647, 50.6453744], [-2.0636077, 50.6454725], [-2.0640207, 50.6457558], [-2.0640676, 50.6457905], [-2.0646057, 50.6461584], [-2.0653058, 50.6465991], [-2.0657944, 50.6469066], [-2.0661691, 50.647124], [-2.0665611, 50.6473288], [-2.0669681, 50.64754], [-2.06736, 50.6477303], [-2.0681995, 50.6481112], [-2.068726, 50.6483353], [-2.0692451, 50.6485348], [-2.0696872, 50.6486888], [-2.0704528, 50.6489208], [-2.0709615, 50.6490489], [-2.0714691, 50.6491649], [-2.072086, 50.6492755], [-2.0727887, 50.6493848], [-2.0735398, 50.6494709], [-2.0743391, 50.649527], [-2.0749782, 50.6495518], [-2.0755344, 50.6495432], [-2.076153, 50.6495084], [-2.0767881, 50.649487], [-2.0773189, 50.6494865], [-2.0779101, 50.6494964], [-2.0785589, 50.6495285], [-2.0792375, 50.6495873], [-2.0798684, 50.6496603], [-2.080141, 50.6497047], [-2.0804798, 50.6497599], [-2.081099, 50.6498784], [-2.081731, 50.6500369], [-2.082356, 50.6502119], [-2.0829989, 50.6504335], [-2.0835984, 50.6506598], [-2.0843235, 50.6509848], [-2.0855928, 50.651593], [-2.093278, 50.6552752], [-2.093751, 50.6554784]]}}, {"id": "147587645", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "15 mph", "osmid": 147587645, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.014822, 50.7147355], [-2.0147399, 50.7146985]]}}, {"id": "147587656", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 147587656, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0147399, 50.7146985], [-2.0144276, 50.7145675], [-2.0137572, 50.7142979], [-2.0131121, 50.7140855], [-2.0123927, 50.7138842], [-2.0070196, 50.7125441], [-2.0061315, 50.7123285], [-2.0056065, 50.7122073], [-2.0051672, 50.7121101], [-2.0048896, 50.7120509], [-2.0043531, 50.7119383], [-2.0035071, 50.7117696], [-2.0026716, 50.7116132], [-2.002064, 50.7115056], [-2.0015076, 50.7114109], [-2.000834, 50.7113109], [-1.9971813, 50.7107704]]}}, {"id": "148893080", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 148893080, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.913925, 50.7289587], [-1.9133393, 50.7293449], [-1.9127959, 50.7296962]]}}, {"id": "148893081", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 148893081, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9182167, 50.7272254], [-1.9178007, 50.7272791], [-1.9175287, 50.7272999], [-1.9172412, 50.7273131], [-1.9169036, 50.7273138], [-1.9160591, 50.7272961]]}}, {"id": "148893084", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 148893084, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9127959, 50.7296962], [-1.9123605, 50.729957], [-1.9119159, 50.730214], [-1.9115105, 50.730426], [-1.9111133, 50.7306216]]}}, {"id": "155526961", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 155526961, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0050316, 50.7296579], [-2.0037799, 50.7297754], [-2.0029944, 50.7298395], [-2.0022729, 50.7298947], [-2.0015391, 50.7299451], [-2.0008853, 50.7299817], [-2.0002785, 50.7300087], [-1.9996635, 50.7300304], [-1.9989476, 50.7300416], [-1.9982777, 50.7300417], [-1.9975819, 50.7300256], [-1.9968952, 50.7300026], [-1.9962194, 50.7299636], [-1.9954801, 50.7299164]]}}, {"id": "155526963", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 155526963, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0055747, 50.7296104], [-2.0050316, 50.7296579]]}}, {"id": "155526964", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 155526964, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9954801, 50.7299164], [-1.99493, 50.7298832]]}}, {"id": "171919205", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "name": "South Western Main Line", "osmid": 171919205, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8638194, 50.7272944], [-1.8637012, 50.7272516], [-1.8630412, 50.7270129], [-1.8627468, 50.7269089], [-1.8624938, 50.7268423], [-1.8621966, 50.7267884], [-1.8618741, 50.7267594]]}}, {"id": "184156595", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 184156595, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9271634, 50.7243639], [-1.9266488, 50.7244641], [-1.9260585, 50.7245991], [-1.9255324, 50.7247388], [-1.9251402, 50.7248558]]}}, {"id": "242958185", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958185, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7997537, 50.7361529], [-1.7999719, 50.7361427]]}}, {"id": "242958186", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958186, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7999719, 50.7361427], [-1.8043508, 50.7359585], [-1.8049643, 50.735923], [-1.805655, 50.7358653], [-1.8062384, 50.7358042], [-1.8067708, 50.7357346], [-1.8073542, 50.7356437], [-1.8077458, 50.7355784], [-1.8083225, 50.7354621]]}}, {"id": "242958187", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958187, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8083225, 50.7354621], [-1.8086024, 50.735396]]}}, {"id": "242958188", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 242958188, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7847423, 50.7383187], [-1.7850958, 50.7381505], [-1.7855429, 50.7379497], [-1.7861312, 50.7377139], [-1.7866227, 50.7375369], [-1.7871679, 50.7373608], [-1.7877633, 50.7371877], [-1.7883521, 50.73704]]}}, {"id": "242958189", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958189, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8086024, 50.735396], [-1.8092016, 50.735247], [-1.809677, 50.73512], [-1.8102094, 50.7349673], [-1.8108451, 50.734767], [-1.8114788, 50.7345449], [-1.8120695, 50.7343128], [-1.8157716, 50.7327596], [-1.8162511, 50.7325745], [-1.8168023, 50.732375], [-1.8173602, 50.732195], [-1.8179918, 50.73201], [-1.81848, 50.7318742]]}}, {"id": "242958190", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958190, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7928139, 50.7364874], [-1.7940934, 50.7364342]]}}, {"id": "242958191", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242958191, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7940934, 50.7364342], [-1.7997537, 50.7361529]]}}, {"id": "242959560", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242959560, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.81848, 50.7318742], [-1.8190298, 50.7317443], [-1.8196615, 50.7316153], [-1.8201966, 50.731516], [-1.8207786, 50.7314294], [-1.8213634, 50.7313504], [-1.8218281, 50.7313013], [-1.8223544, 50.7312571], [-1.8229425, 50.7312116], [-1.8235259, 50.7311793], [-1.8254826, 50.731135], [-1.8263416, 50.7311342], [-1.8277161, 50.731124], [-1.8285351, 50.7311145], [-1.8287064, 50.7311124], [-1.8294194, 50.7310881], [-1.8312882, 50.7310353], [-1.8348071, 50.7309772]]}}, {"id": "242961355", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242961355, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8348072, 50.7310331], [-1.8316785, 50.7310695], [-1.8306016, 50.7310988], [-1.8294066, 50.7311531], [-1.8285517, 50.7311955], [-1.827646, 50.7312213], [-1.8262081, 50.7312347], [-1.8250882, 50.7312223], [-1.8244157, 50.7312224], [-1.8235857, 50.7312384], [-1.8229633, 50.7312688], [-1.8223739, 50.7313034], [-1.8218388, 50.7313484], [-1.8213909, 50.7313979], [-1.8207709, 50.7314794], [-1.8202308, 50.7315573], [-1.8196836, 50.7316522], [-1.8190416, 50.7317791], [-1.8184833, 50.7319061]]}}, {"id": "242961356", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242961356, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8348071, 50.7309772], [-1.839119, 50.7309061]]}}, {"id": "242961357", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 242961357, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8184833, 50.7319061], [-1.8179992, 50.7320394], [-1.8174078, 50.7322102], [-1.8168164, 50.7324043], [-1.8162699, 50.7326029], [-1.8157994, 50.7327886], [-1.8128274, 50.734031]]}}, {"id": "242962198", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962198, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8665847, 50.728133], [-1.8669207, 50.7282672], [-1.8672117, 50.7284081], [-1.8675316, 50.7285758], [-1.867838, 50.7287562], [-1.8681813, 50.7289752], [-1.8691865, 50.7297158], [-1.8694617, 50.729922], [-1.8697947, 50.7301629]]}}, {"id": "242962199", "type": "Feature", "properties": {"electrified": "no", "osmid": 242962199, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8649506, 50.7277239], [-1.8651819, 50.7277701], [-1.8654193, 50.7278253], [-1.8656976, 50.7279217], [-1.8660597, 50.7280652], [-1.8662971, 50.7281441], [-1.8665955, 50.7282404], [-1.8668127, 50.7283168], [-1.8670213, 50.7284073], [-1.8673016, 50.728527], [-1.8674618, 50.7286058], [-1.8676912, 50.7287211]]}}, {"id": "242962201", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962201, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8686105, 50.729235], [-1.8682014, 50.7289438], [-1.8679681, 50.728791], [-1.8676543, 50.7285975], [-1.8673659, 50.7284421], [-1.8670682, 50.7282978], [-1.8666954, 50.728134], [-1.8664483, 50.7280297], [-1.8661382, 50.727903]]}}, {"id": "242962202", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 242962202, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8737301, 50.7319141], [-1.8731669, 50.7317515], [-1.8728443, 50.7316489], [-1.8724746, 50.7315107], [-1.8720334, 50.7313371], [-1.8715381, 50.7311257], [-1.8710391, 50.7308921]]}}, {"id": "242962203", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962203, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8607851, 50.7267659], [-1.8605618, 50.7268046], [-1.8603976, 50.7268376], [-1.8601226, 50.7268913], [-1.8599041, 50.7269305]]}}, {"id": "242962204", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "South Western Main Line", "osmid": 242962204, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8588627, 50.7270582], [-1.8590632, 50.727032], [-1.8593072, 50.7270057], [-1.8595352, 50.7269802], [-1.8598048, 50.7269451]]}}, {"id": "242962205", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 242962205, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8611855, 50.7267158], [-1.8614751, 50.7267022], [-1.8617869, 50.726695]]}}, {"id": "242962206", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962206, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8659645, 50.7278893], [-1.8662285, 50.7279683], [-1.8664624, 50.7280473], [-1.8666954, 50.728134]]}}, {"id": "242962207", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962207, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.867264, 50.7284832], [-1.8665847, 50.728133]]}}, {"id": "242962208", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242962208, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8700832, 50.730372], [-1.8711002, 50.7308533]]}}, {"id": "242962209", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "25 mph", "name": "South Western Main Line", "osmid": 242962209, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8657224, 50.7277143], [-1.8661789, 50.7278804], [-1.8665666, 50.7280335], [-1.866922, 50.7281798], [-1.8673177, 50.7283657], [-1.8676717, 50.7285567], [-1.8679936, 50.728752], [-1.8682725, 50.728937], [-1.8685407, 50.7291153], [-1.8688143, 50.7293547], [-1.8691657, 50.7296416], [-1.8694222, 50.7298446], [-1.8696936, 50.7300428], [-1.8699733, 50.7302366], [-1.8702807, 50.7304164], [-1.8705085, 50.7305382], [-1.8711002, 50.7308533]]}}, {"id": "243038480", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243038480, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8737505, 50.7318645], [-1.8741339, 50.7319675], [-1.8745838, 50.7320634]]}}, {"id": "243038488", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243038488, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8745838, 50.7320634], [-1.8750445, 50.7321635], [-1.8754535, 50.7322348], [-1.8758451, 50.7322917], [-1.876279, 50.7323432], [-1.8793736, 50.7326368]]}}, {"id": "243041397", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 243041397, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9111547, 50.7306501], [-1.9107462, 50.7308388]]}}, {"id": "243041398", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243041398, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9107462, 50.7308388], [-1.9101604, 50.7310747], [-1.9097281, 50.7312325], [-1.9092011, 50.7313944], [-1.9085224, 50.7315779], [-1.9078718, 50.7317344], [-1.9073568, 50.731832], [-1.9068955, 50.7319085], [-1.9063912, 50.7319761], [-1.9059621, 50.7320201], [-1.9054739, 50.7320601], [-1.9046392, 50.7321062]]}}, {"id": "243041405", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243041405, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9046392, 50.7321062], [-1.9038945, 50.7321455]]}}, {"id": "243041408", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 243041408, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9107059, 50.7308148], [-1.9111133, 50.7306216]]}}, {"id": "243041409", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243041409, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8797939, 50.7326715], [-1.8840611, 50.7329768], [-1.8848326, 50.7330106], [-1.8859701, 50.7330193], [-1.887142, 50.7329931], [-1.8878811, 50.7329623], [-1.8888626, 50.7329104], [-1.9039074, 50.7321126]]}}, {"id": "243041410", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243041410, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8793736, 50.7326368], [-1.8797939, 50.7326715]]}}, {"id": "243041411", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243041411, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9046022, 50.7320758], [-1.9056724, 50.732008], [-1.9060291, 50.7319757], [-1.9064502, 50.7319365], [-1.906874, 50.7318744], [-1.9073407, 50.7317995], [-1.9078605, 50.7317007], [-1.9084998, 50.7315489], [-1.9091725, 50.7313689], [-1.909705, 50.7312019], [-1.9101261, 50.7310533], [-1.9107059, 50.7308148]]}}, {"id": "243044578", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 243044578, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160749, 50.7278385], [-1.9158858, 50.727914]]}}, {"id": "243044579", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044579, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9127007, 50.7269315], [-1.9125612, 50.726917], [-1.9123309, 50.7269001], [-1.9120763, 50.7268869], [-1.9117163, 50.7268771], [-1.9113882, 50.7268543], [-1.9082967, 50.7265348], [-1.9079593, 50.7264969], [-1.9076129, 50.7264455], [-1.9072317, 50.7263678], [-1.9063991, 50.7261771], [-1.9061201, 50.7261122], [-1.905872, 50.7260335], [-1.9056511, 50.7259448], [-1.9051591, 50.7257381], [-1.9047868, 50.7255542], [-1.904442, 50.7253559], [-1.9040859, 50.7251652], [-1.9038721, 50.7250467], [-1.9033051, 50.7247055], [-1.9031179, 50.7246167], [-1.902915, 50.7245385], [-1.9026163, 50.7244457], [-1.90248, 50.7244116]]}}, {"id": "243044581", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044581, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9120763, 50.7268869], [-1.9118746, 50.7268741], [-1.9084295, 50.7265182], [-1.9081533, 50.7264867], [-1.9078767, 50.7264459], [-1.907634, 50.7263958], [-1.9062988, 50.7260867], [-1.9060386, 50.726021], [-1.9058201, 50.7259412], [-1.9053618, 50.7257556], [-1.9050525, 50.7256268], [-1.9047397, 50.7254967], [-1.9046223, 50.7254472], [-1.904442, 50.7253559]]}}, {"id": "243044582", "type": "Feature", "properties": {"electrified": "no", "osmid": 243044582, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9157821, 50.7273169], [-1.9155876, 50.727314], [-1.9153968, 50.7273216], [-1.9152169, 50.7273216], [-1.9150569, 50.7273079], [-1.9147314, 50.7272661], [-1.9128455, 50.7269947], [-1.9125817, 50.7269616], [-1.9123869, 50.7269454], [-1.9119671, 50.7269202], [-1.9117335, 50.7268904], [-1.9113882, 50.7268543]]}}, {"id": "243044583", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 243044583, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9801985, 50.7169848], [-1.9811436, 50.717289]]}}, {"id": "243044584", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 243044584, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9158858, 50.727914], [-1.9155156, 50.7280761], [-1.915108, 50.7282706], [-1.9147074, 50.7284888], [-1.9143207, 50.7287362], [-1.9139611, 50.728977]]}}, {"id": "243044585", "type": "Feature", "properties": {"electrified": "no", "osmid": 243044585, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9119671, 50.7269202], [-1.9124278, 50.7269702], [-1.9129881, 50.7270389], [-1.9145808, 50.727279], [-1.9149876, 50.7273326], [-1.9152112, 50.7273529], [-1.9153963, 50.7273622]]}}, {"id": "243044586", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243044586, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9139611, 50.728977], [-1.9133773, 50.7293675], [-1.9128338, 50.7297157]]}}, {"id": "243044588", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044588, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160618, 50.727327], [-1.9165211, 50.7273409], [-1.9169005, 50.7273462], [-1.917268, 50.7273483], [-1.9175631, 50.7273377], [-1.9179208, 50.7273119], [-1.918152, 50.7272811]]}}, {"id": "243044589", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243044589, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9128338, 50.7297157], [-1.9123883, 50.729982], [-1.9119554, 50.7302342], [-1.9115538, 50.7304457], [-1.9111547, 50.7306501]]}}, {"id": "243044590", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044590, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9134469, 50.727044], [-1.9137054, 50.7270672], [-1.9138975, 50.7270844], [-1.9141153, 50.7271073]]}}, {"id": "243044591", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044591, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9127007, 50.7269315], [-1.9123788, 50.7268856], [-1.9119143, 50.7268145], [-1.911577, 50.726777], [-1.9084085, 50.7264478], [-1.908152, 50.7264214], [-1.9079267, 50.7263874], [-1.9076638, 50.726331], [-1.9059207, 50.7259215], [-1.9056833, 50.7258636], [-1.9053618, 50.7257556]]}}, {"id": "243044592", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044592, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9165211, 50.7273409], [-1.9162985, 50.7273274], [-1.9160677, 50.7273078]]}}, {"id": "243044593", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044593, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9124975, 50.7268433], [-1.9129981, 50.7269633], [-1.9133136, 50.7270246]]}}, {"id": "243044594", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044594, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9178007, 50.7272791], [-1.9175361, 50.7273135], [-1.9173026, 50.727331], [-1.9169005, 50.7273462]]}}, {"id": "243044595", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044595, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.915921, 50.7273222], [-1.9157821, 50.7273169], [-1.9155564, 50.7273034], [-1.915234, 50.7272812], [-1.9148909, 50.727246], [-1.9134469, 50.727044], [-1.9133136, 50.7270246], [-1.9127007, 50.7269315]]}}, {"id": "243044596", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 243044596, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160677, 50.7273078], [-1.9159155, 50.7272927]]}}, {"id": "243044597", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 243044597, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9160618, 50.727327], [-1.915921, 50.7273222]]}}, {"id": "243044598", "type": "Feature", "properties": {"electrified": "no", "osmid": 243044598, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9165211, 50.7273409], [-1.9168688, 50.7273622], [-1.9171759, 50.7273826]]}}, {"id": "243044599", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044599, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9119143, 50.7268145], [-1.9118155, 50.7267982], [-1.9116147, 50.7267601], [-1.9114185, 50.7267294], [-1.9112052, 50.7267036], [-1.9106554, 50.7266469], [-1.9101318, 50.7265911], [-1.9083107, 50.7264062], [-1.9080122, 50.7263695], [-1.907748, 50.7263177], [-1.905974, 50.7259066], [-1.9057184, 50.7258399], [-1.9054017, 50.7257422], [-1.9052924, 50.7257031], [-1.9050525, 50.7256268]]}}, {"id": "243044600", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243044600, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9123788, 50.7268856], [-1.912139, 50.7268569], [-1.911979, 50.7268435], [-1.9117821, 50.7268286], [-1.9084085, 50.7264835], [-1.9081449, 50.726457], [-1.9079156, 50.7264213], [-1.9076611, 50.7263689], [-1.9063359, 50.7260609], [-1.9061143, 50.7260054], [-1.905952, 50.725953], [-1.9058051, 50.7259022], [-1.9056833, 50.7258636]]}}, {"id": "243045377", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243045377, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.912332, 50.7268003], [-1.9122294, 50.7267767], [-1.9119595, 50.7267025], [-1.9116723, 50.7266259], [-1.9055521, 50.7251769], [-1.9053967, 50.7251403], [-1.9050602, 50.7250426]]}}, {"id": "243045379", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243045379, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.912332, 50.7268003], [-1.9120888, 50.7267347], [-1.9118714, 50.7266565], [-1.9116844, 50.7265836], [-1.9115199, 50.7265172], [-1.9112624, 50.726447], [-1.9058754, 50.7251701], [-1.9056357, 50.7251215], [-1.9053786, 50.7250825], [-1.9051087, 50.7250324]]}}, {"id": "243045380", "type": "Feature", "properties": {"electrified": "no", "osmid": 243045380, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9175001, 50.7272683], [-1.9172791, 50.7272882], [-1.9171529, 50.7273007], [-1.9169036, 50.7273138]]}}, {"id": "243046009", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243046009, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9109644, 50.7265751], [-1.9105996, 50.7264898], [-1.9101222, 50.7263803], [-1.9091566, 50.726164]]}}, {"id": "243046010", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243046010, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9106554, 50.7266469], [-1.9103691, 50.7266042], [-1.9094311, 50.726424], [-1.909062, 50.7263555], [-1.9085233, 50.7262626], [-1.9082804, 50.7262068], [-1.9048862, 50.7254126], [-1.9047157, 50.7253633], [-1.904566, 50.7253227], [-1.9044015, 50.7252618], [-1.9041255, 50.7251587]]}}, {"id": "243046011", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243046011, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9115759, 50.7266688], [-1.9112787, 50.7266075], [-1.9110013, 50.7265436], [-1.910267, 50.7263715], [-1.9095199, 50.7261752], [-1.9058874, 50.7253203], [-1.905639, 50.7252467], [-1.9053964, 50.7251611], [-1.9050602, 50.7250426], [-1.9045429, 50.7248973], [-1.9035978, 50.7246523], [-1.9025038, 50.7243693]]}}, {"id": "243046012", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243046012, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9101318, 50.7265911], [-1.9098823, 50.7265544], [-1.9097157, 50.726523], [-1.9093669, 50.7264552], [-1.9091313, 50.7264229], [-1.9086568, 50.7263696], [-1.9083595, 50.7263396], [-1.908066, 50.7263061], [-1.9078246, 50.7262658], [-1.9054776, 50.7257217], [-1.9052523, 50.7256631], [-1.9050079, 50.7255917], [-1.9047397, 50.7254967]]}}, {"id": "243046013", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243046013, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9097157, 50.726523], [-1.9094566, 50.7264866], [-1.9086876, 50.7264055], [-1.9081822, 50.7263523], [-1.9079064, 50.7263106], [-1.9076268, 50.726252], [-1.9060123, 50.7258739], [-1.9057538, 50.7258244], [-1.9054017, 50.7257422]]}}, {"id": "243047945", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047945, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9088829, 50.7263599], [-1.9085514, 50.7263254], [-1.9083355, 50.726293], [-1.9050031, 50.7255182], [-1.9048587, 50.7254783], [-1.9047165, 50.7254293], [-1.9045791, 50.7253789], [-1.9043652, 50.7252845]]}}, {"id": "243047946", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047946, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9094311, 50.726424], [-1.9092186, 50.7263956], [-1.9090743, 50.7263807], [-1.9088829, 50.7263599], [-1.9085986, 50.726315], [-1.908299, 50.7262509], [-1.9050214, 50.725485], [-1.9048232, 50.7254323], [-1.9046389, 50.7253764], [-1.9043652, 50.7252845], [-1.9040859, 50.7251652]]}}, {"id": "243047947", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047947, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9106211, 50.7265257], [-1.9103364, 50.7264633], [-1.9093122, 50.726243]]}}, {"id": "243047948", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047948, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9122294, 50.7267767], [-1.911871, 50.7267073], [-1.9115759, 50.7266688], [-1.9109644, 50.7265751], [-1.9106211, 50.7265257], [-1.9100337, 50.7264459], [-1.9096425, 50.7263732], [-1.9091067, 50.7262576], [-1.9076093, 50.7259253], [-1.9045646, 50.725052], [-1.9041677, 50.7249282], [-1.9038563, 50.7248231], [-1.9036375, 50.7247399], [-1.90339, 50.7246484], [-1.9032427, 50.7246059], [-1.9029834, 50.7245368], [-1.9026163, 50.7244457]]}}, {"id": "243047949", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047949, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9101222, 50.7263803], [-1.9095199, 50.7261752]]}}, {"id": "243047950", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047950, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.909062, 50.7263555], [-1.9087104, 50.7262744], [-1.908456, 50.7262057], [-1.9046276, 50.7253026], [-1.9043741, 50.7252338], [-1.9041255, 50.7251587], [-1.9040313, 50.7251197], [-1.9038721, 50.7250467]]}}, {"id": "243047951", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243047951, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9045429, 50.7248973], [-1.9051087, 50.7250324], [-1.9076345, 50.7256259]]}}, {"id": "243048616", "type": "Feature", "properties": {"electrified": "no", "osmid": 243048616, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8996583, 50.7237266], [-1.8977202, 50.7232818]]}}, {"id": "243048618", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "Bournemouth Traction Maintenance Depot", "osmid": 243048618, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9029834, 50.7245368], [-1.9035978, 50.7246523]]}}, {"id": "243048621", "type": "Feature", "properties": {"electrified": "no", "osmid": 243048621, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9005959, 50.7239224], [-1.8992619, 50.723604]]}}, {"id": "243048622", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243048622, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9005959, 50.7239224], [-1.8996583, 50.7237266]]}}, {"id": "243048623", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 243048623, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.902224, 50.7243251], [-1.9005959, 50.7239224]]}}, {"id": "243048624", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 243048624, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9025038, 50.7243693], [-1.902224, 50.7243251]]}}, {"id": "243138501", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243138501, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9249075, 50.7249609], [-1.9244715, 50.7251032], [-1.9240426, 50.7252638], [-1.923639, 50.7254458], [-1.9223079, 50.7260874], [-1.9220042, 50.726222], [-1.9216781, 50.72636], [-1.9213576, 50.7264992], [-1.921033, 50.7266283], [-1.9205757, 50.726779], [-1.9202095, 50.7268843]]}}, {"id": "243138503", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243138503, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.92722, 50.7243889], [-1.9266588, 50.7244936], [-1.926093, 50.7246226], [-1.9255642, 50.7247607], [-1.9251407, 50.7248884]]}}, {"id": "243138504", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243138504, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9251402, 50.7248558], [-1.9249007, 50.7249288]]}}, {"id": "243138505", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243138505, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9275721, 50.7243357], [-1.92722, 50.7243889]]}}, {"id": "243138506", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 243138506, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9251407, 50.7248884], [-1.9249075, 50.7249609]]}}, {"id": "243193838", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193838, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9531582, 50.7211701], [-1.9529262, 50.7212751]]}}, {"id": "243193839", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193839, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9529262, 50.7212751], [-1.9518144, 50.7217659], [-1.9513204, 50.7219602], [-1.9508497, 50.7221376], [-1.950387, 50.7222939], [-1.9499194, 50.7224443], [-1.9493383, 50.7226139], [-1.9487719, 50.7227637], [-1.9469456, 50.7231926]]}}, {"id": "243193841", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193841, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9550417, 50.7203072], [-1.9548867, 50.7203782]]}}, {"id": "243193843", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193843, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9632107, 50.7166721], [-1.9630448, 50.7167325]]}}, {"id": "243193844", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193844, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9630448, 50.7167325], [-1.9625589, 50.7169073], [-1.9621051, 50.7170895], [-1.9615275, 50.7173359], [-1.9550417, 50.7203072]]}}, {"id": "243193845", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243193845, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9548867, 50.7203782], [-1.9531582, 50.7211701]]}}, {"id": "243278067", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "name": "South Western Main Line", "osmid": 243278067, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9833428, 50.7207809], [-1.9831806, 50.7212628]]}}, {"id": "243278305", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 243278305, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.98303, 50.7218681], [-1.9830376, 50.7220356], [-1.9830566, 50.7221903], [-1.9831062, 50.7223907], [-1.9831734, 50.7225926], [-1.9832289, 50.722745], [-1.9833425, 50.7229722], [-1.9834822, 50.7232215], [-1.9841273, 50.7242065], [-1.9848092, 50.7252396], [-1.9849166, 50.7253989], [-1.9851041, 50.7256169], [-1.9852554, 50.7258125]]}}, {"id": "243278957", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243278957, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9830368, 50.7218214], [-1.9830472, 50.7216429], [-1.9830437, 50.7215528], [-1.9830196, 50.7214169]]}}, {"id": "243279687", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 243279687, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9831663, 50.7213241], [-1.9830857, 50.7216169], [-1.9830368, 50.7218214], [-1.98303, 50.7218681], [-1.9830053, 50.7220078], [-1.9829986, 50.7222048], [-1.9830118, 50.7222989], [-1.9830344, 50.7223876], [-1.9830732, 50.7225102], [-1.9831864, 50.7227634], [-1.9832914, 50.7229864], [-1.9834294, 50.7232265], [-1.9844747, 50.7248296], [-1.9845912, 50.7249924], [-1.9848092, 50.7252396]]}}, {"id": "243279688", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 243279688, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9856224, 50.7263146], [-1.9852993, 50.725879]]}}, {"id": "243279691", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243279691, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9830472, 50.7216429], [-1.9831289, 50.7212271], [-1.9831496, 50.72106]]}}, {"id": "243285315", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243285315, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9949277, 50.729914], [-1.99369, 50.729836], [-1.9929511, 50.7297859], [-1.9923223, 50.7297227], [-1.9918349, 50.7296597], [-1.9914021, 50.729594], [-1.9909178, 50.7295059], [-1.9904432, 50.7294064], [-1.989975, 50.7292979], [-1.9895499, 50.7291731], [-1.9893535, 50.7291099]]}}, {"id": "243285316", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243285316, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0131186, 50.728428], [-2.0123419, 50.7286238], [-2.0115882, 50.7287905], [-2.0108251, 50.7289472], [-2.0100246, 50.7290932], [-2.009287, 50.7292163], [-2.0085856, 50.729319], [-2.00784, 50.7294162], [-2.0071237, 50.7294957], [-2.006307, 50.7295772], [-2.0055897, 50.7296403]]}}, {"id": "243285317", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243285317, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9954879, 50.7299493], [-1.9949277, 50.729914]]}}, {"id": "243285318", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243285318, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0055897, 50.7296403], [-2.0050342, 50.7296915]]}}, {"id": "243285319", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 243285319, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0050342, 50.7296915], [-2.0037803, 50.7298031], [-2.0029916, 50.7298686], [-2.0022877, 50.7299235], [-2.0015314, 50.7299765], [-2.0008916, 50.7300117], [-2.00028, 50.7300405], [-1.9996457, 50.7300592], [-1.9989443, 50.7300719], [-1.9982845, 50.7300703], [-1.9975938, 50.7300541], [-1.9968985, 50.7300313], [-1.996211, 50.7299936], [-1.9954879, 50.7299493]]}}, {"id": "243285320", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 243285320, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0143029, 50.7280726], [-2.0141807, 50.7281144]]}}, {"id": "243312322", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "15 mph", "osmid": 243312322, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0172514, 50.7267356], [-2.0170506, 50.7268328]]}}, {"id": "243312324", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 243312324, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0171166, 50.7268966], [-2.016599, 50.7271547], [-2.0161403, 50.7273585], [-2.0155017, 50.7276348], [-2.0148647, 50.7278801], [-2.0143029, 50.7280726]]}}, {"id": "243312325", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 243312325, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0173108, 50.7267885], [-2.0171166, 50.7268966]]}}, {"id": "243313594", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243313594, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0206889, 50.7239598], [-2.0204372, 50.7241918], [-2.0203031, 50.7243192], [-2.0201341, 50.7244628]]}}, {"id": "243313602", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243313602, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0204705, 50.7242264], [-2.0207199, 50.7240343], [-2.0209157, 50.7238169], [-2.0210434, 50.7236128], [-2.0211705, 50.7233636], [-2.0212188, 50.7231785], [-2.021274, 50.7229608], [-2.0212966, 50.7227098], [-2.0212606, 50.7224194], [-2.0211614, 50.7221425], [-2.0210337, 50.7218829], [-2.020846, 50.72155]]}}, {"id": "243313605", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243313605, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0183059, 50.7259995], [-2.0181225, 50.7261536], [-2.017806, 50.7264016], [-2.0172514, 50.7267356]]}}, {"id": "243314215", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243314215, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9967802, 50.7107114], [-1.9974977, 50.7107868]]}}, {"id": "243314217", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243314217, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0013235, 50.7114176], [-1.9978214, 50.7108941], [-1.9965292, 50.7107104]]}}, {"id": "243314222", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243314222, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9950155, 50.7104534], [-1.9956864, 50.7105169]]}}, {"id": "243314224", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 243314224, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9978214, 50.7108941], [-1.9971813, 50.7107704]]}}, {"id": "243316397", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 243316397, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0401897, 50.7202899], [-2.0340521, 50.7219538], [-2.0334738, 50.7221071], [-2.0328987, 50.7222425], [-2.0322872, 50.7223784], [-2.0316419, 50.7225078], [-2.0310303, 50.7226165], [-2.030407, 50.7227146], [-2.0297348, 50.722805], [-2.0289677, 50.7228984], [-2.0283014, 50.7229608], [-2.0276845, 50.7230117], [-2.0269013, 50.7230474]]}}, {"id": "243316398", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 243316398, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0407613, 50.7201405], [-2.0401897, 50.7202899]]}}, {"id": "243458484", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 243458484, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.1197616, 50.6908161], [-2.117828, 50.6917607], [-2.116948, 50.6921711], [-2.1143909, 50.6933118], [-2.1142689, 50.6933662], [-2.1118223, 50.6944578], [-2.1097478, 50.6954212], [-2.1092396, 50.6956702], [-2.0922335, 50.7042299], [-2.0770284, 50.7118818], [-2.071647, 50.7146203], [-2.0709137, 50.7149787], [-2.0702737, 50.7152532], [-2.0697318, 50.7154824], [-2.0689138, 50.7157644], [-2.0681682, 50.7159937], [-2.0674359, 50.7161957], [-2.0667761, 50.7163537], [-2.0661538, 50.7164845], [-2.0655238, 50.7166085], [-2.0606446, 50.7174643], [-2.059915, 50.7175747], [-2.0591345, 50.7176647], [-2.0583969, 50.7177428], [-2.0576539, 50.7178142], [-2.056927, 50.7178719], [-2.0562447, 50.7179096], [-2.0513085, 50.7181015], [-2.0505247, 50.7181487], [-2.0497871, 50.7182234], [-2.0490013, 50.7183016], [-2.048261, 50.7184001], [-2.0475126, 50.7185291], [-2.0467953, 50.7186578], [-2.0460764, 50.7188004], [-2.0453238, 50.7189707], [-2.0446441, 50.7191334], [-2.0407613, 50.7201405]]}}, {"id": "243542018", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243542018, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0677363, 50.6479417], [-2.0681995, 50.6481112]]}}, {"id": "243542019", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243542019, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0661476, 50.6471833], [-2.0666474, 50.6474165], [-2.0670331, 50.6476269], [-2.0677363, 50.6479417], [-2.0692724, 50.6486275], [-2.0695816, 50.6487478], [-2.070246, 50.6489998]]}}, {"id": "243542020", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243542020, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0673707, 50.6476986], [-2.0683953, 50.6481545], [-2.0688432, 50.6483348], [-2.069308, 50.6485131], [-2.0697882, 50.6486781], [-2.0703675, 50.6488552], [-2.0708959, 50.6489953], [-2.0714297, 50.6491322], [-2.071714, 50.6491866], [-2.072086, 50.6492755]]}}, {"id": "243543143", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543143, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0527045, 50.6367087], [-2.0529484, 50.6368399], [-2.0531645, 50.6369668], [-2.0539928, 50.6375414], [-2.0542941, 50.6377562], [-2.0546892, 50.6380409], [-2.0550111, 50.6382994], [-2.0553203, 50.6385645], [-2.0553877, 50.6386307], [-2.0555663, 50.6388063], [-2.0557736, 50.6390527], [-2.0559073, 50.6392441]]}}, {"id": "243543144", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543144, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0526741, 50.6366069], [-2.0540498, 50.6375251], [-2.0542126, 50.6376272], [-2.0544534, 50.6377356], [-2.0547394, 50.6378457], [-2.0549783, 50.6379454], [-2.0552669, 50.6380998]]}}, {"id": "243543145", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543145, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0540498, 50.6375251], [-2.0541601, 50.6376399], [-2.0542941, 50.6377562]]}}, {"id": "243543146", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543146, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0250223, 50.6197992], [-2.0253681, 50.619766], [-2.0256177, 50.6197524], [-2.025816, 50.6197502], [-2.0262935, 50.6197655], [-2.0269184, 50.6197944], [-2.0277291, 50.6198423], [-2.0283216, 50.6198925], [-2.0288789, 50.6199829]]}}, {"id": "243543147", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543147, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0609352, 50.6441505], [-2.0611961, 50.6442314], [-2.0613741, 50.6442886], [-2.061713, 50.6444237], [-2.0622184, 50.6446288], [-2.0625623, 50.6447799], [-2.0627817, 50.6448984], [-2.0630424, 50.6450486], [-2.0632087, 50.6451575], [-2.0635332, 50.6453633]]}}, {"id": "243543148", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543148, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0283216, 50.6198925], [-2.0289318, 50.6199563], [-2.0298715, 50.6200548], [-2.0306968, 50.6201589], [-2.0312302, 50.6202348], [-2.0317858, 50.6203205]]}}, {"id": "243543149", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543149, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0399729, 50.6227013], [-2.0396153, 50.6225082], [-2.0391518, 50.6222768], [-2.0387262, 50.6220723], [-2.0382713, 50.6218863], [-2.0378631, 50.6217351]]}}, {"id": "243543150", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543150, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0289318, 50.6199563], [-2.029235, 50.6199683], [-2.0294665, 50.6199782], [-2.0299017, 50.6200262], [-2.0307854, 50.6201401]]}}, {"id": "243543151", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 243543151, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.040169, 50.622816], [-2.0399729, 50.6227013]]}}, {"id": "243543152", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543152, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0627817, 50.6448984], [-2.062532, 50.6447359], [-2.0623021, 50.6446268], [-2.0613511, 50.6442392]]}}, {"id": "243543153", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 243543153, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0378631, 50.6217351], [-2.0376988, 50.6216811]]}}, {"id": "243543154", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543154, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0632087, 50.6451575], [-2.0633125, 50.6452394], [-2.0634647, 50.6453744]]}}, {"id": "243543155", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543155, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0376988, 50.6216811], [-2.0371388, 50.6215083], [-2.0360519, 50.6212107], [-2.0354065, 50.6210662], [-2.0346856, 50.6209014], [-2.0338134, 50.620729], [-2.0328087, 50.6205356], [-2.0318411, 50.6203666], [-2.031045, 50.6202457], [-2.0303386, 50.6201521], [-2.0294315, 50.620035], [-2.0288789, 50.6199829], [-2.0278213, 50.6198832], [-2.0269463, 50.6198271], [-2.0265146, 50.6198086], [-2.0257285, 50.6197866], [-2.0250223, 50.6197992], [-2.0243702, 50.6198052], [-2.0236519, 50.6198409], [-2.0226785, 50.6199242], [-2.021937, 50.6199797], [-2.0211889, 50.6200162], [-2.0204344, 50.6200297], [-2.0197927, 50.62004], [-2.0191757, 50.6200347], [-2.01828, 50.6200043], [-2.0174643, 50.619965], [-2.0168703, 50.6199307], [-2.0163162, 50.6198776], [-2.0153645, 50.6197693], [-2.0141618, 50.619589], [-2.0097564, 50.6189095], [-2.0084561, 50.6187147], [-2.0079348, 50.6186625], [-2.007172, 50.6186217], [-2.0063052, 50.6186025], [-2.0054862, 50.618582], [-2.005021, 50.618565], [-2.0045382, 50.6185223], [-2.0040983, 50.6184612], [-2.0036677, 50.6183929], [-2.0032206, 50.6183107], [-2.0026881, 50.6181782], [-2.0021196, 50.6180182], [-2.0011486, 50.6176977], [-2.0006396, 50.6175575], [-2.0001355, 50.6174418], [-1.99963, 50.6173493], [-1.9991428, 50.6172804]]}}, {"id": "243543156", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543156, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0542126, 50.6376272], [-2.0543663, 50.6377305], [-2.0545667, 50.6378317]]}}, {"id": "243543859", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543859, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9796679, 50.6129548], [-1.9793456, 50.6129453], [-1.9789878, 50.6129407]]}}, {"id": "243543860", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543860, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9632481, 50.6099712], [-1.9626745, 50.6100369]]}}, {"id": "243543861", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543861, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9766918, 50.6127088], [-1.9769717, 50.6127411], [-1.9772282, 50.6127655], [-1.9792495, 50.6129223], [-1.9796679, 50.6129548], [-1.9802424, 50.6130071], [-1.9806034, 50.6130518], [-1.980993, 50.6131058], [-1.9816556, 50.6132071]]}}, {"id": "243543862", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543862, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9645483, 50.6099973], [-1.964184, 50.6099721], [-1.9638901, 50.6099599], [-1.9637567, 50.6099604], [-1.9632481, 50.6099712], [-1.9628923, 50.6099953], [-1.9625579, 50.6100135], [-1.9623107, 50.6100153], [-1.9620706, 50.6100093], [-1.9608007, 50.6099569]]}}, {"id": "243543863", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543863, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9649047, 50.6099825], [-1.9652918, 50.6099714], [-1.9654423, 50.6099777], [-1.9656425, 50.6099951], [-1.9658797, 50.6100233], [-1.9666888, 50.610137]]}}, {"id": "243543864", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 243543864, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.989395, 50.6156874], [-1.9893008, 50.6156541]]}}, {"id": "243543865", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 243543865, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9858668, 50.6143074], [-1.9857695, 50.6142718]]}}, {"id": "243543866", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543866, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9857695, 50.6142718], [-1.9850845, 50.6140361], [-1.9843637, 50.6138258], [-1.9835231, 50.6136115], [-1.9830066, 50.6134956], [-1.9825893, 50.6134067], [-1.9815658, 50.6132269], [-1.9811021, 50.6131546], [-1.9805576, 50.6130813], [-1.980083, 50.6130273], [-1.979712, 50.6129937], [-1.9789878, 50.6129407], [-1.9777169, 50.6128429], [-1.9770677, 50.6127889], [-1.9764577, 50.6127177], [-1.975831, 50.6126157], [-1.9751925, 50.6124804], [-1.9746285, 50.6123381], [-1.968223, 50.6105617], [-1.9678839, 50.6104719], [-1.9675716, 50.6104009], [-1.9672193, 50.610324], [-1.9668792, 50.6102627], [-1.9664805, 50.6101937], [-1.9661195, 50.6101426], [-1.965674, 50.6100835], [-1.9653563, 50.6100535], [-1.9649521, 50.6100184], [-1.9647901, 50.61001]]}}, {"id": "243543867", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543867, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.959688, 50.6100217], [-1.960552, 50.610058], [-1.9617846, 50.6101051], [-1.9618876, 50.6101059], [-1.9620067, 50.6100988], [-1.962443, 50.6100499]]}}, {"id": "243543868", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543868, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9637567, 50.6099604], [-1.9633143, 50.6099409], [-1.9631281, 50.6099407], [-1.9628546, 50.6099571], [-1.9625781, 50.6099697], [-1.9623803, 50.609969], [-1.9621008, 50.6099623]]}}, {"id": "243543869", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243543869, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9893008, 50.6156541], [-1.9882592, 50.6152575], [-1.9863406, 50.6144811], [-1.9858668, 50.6143074]]}}, {"id": "243544047", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 243544047, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9639239, 50.6100727], [-1.9637378, 50.6100455], [-1.9635325, 50.6100269], [-1.9633609, 50.6100183], [-1.9632042, 50.6100153], [-1.9630383, 50.6100172]]}}, {"id": "251763787", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "name": "Hamworthy Goods line", "osmid": 251763787, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0201341, 50.7244628], [-2.0204705, 50.7242264], [-2.0206786, 50.7240276], [-2.0208556, 50.7238213], [-2.0209978, 50.723603], [-2.0211143, 50.7233656], [-2.0211713, 50.7231763], [-2.0212134, 50.7229561], [-2.0212429, 50.7226964], [-2.0212043, 50.7224169], [-2.0211127, 50.7221473], [-2.0209856, 50.7218952], [-2.020687, 50.7213737], [-2.0187582, 50.7178737], [-2.0185483, 50.7175571], [-2.0183238, 50.7172578], [-2.0179991, 50.716889], [-2.01759, 50.7165019], [-2.0171161, 50.7161309], [-2.0165748, 50.7157371], [-2.0158989, 50.7153059], [-2.0153799, 50.7150076], [-2.014822, 50.7147355]]}}, {"id": "251764631", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "South Western Main Line", "osmid": 251764631, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9835264, 50.7198415], [-1.9835968, 50.7195522], [-1.9836222, 50.7193936], [-1.9836451, 50.7192372], [-1.9836366, 50.7190753], [-1.9836075, 50.7189052], [-1.9835552, 50.7187532], [-1.9834935, 50.7186242], [-1.9834117, 50.7184876], [-1.9832937, 50.7183338], [-1.9831502, 50.7181835], [-1.9830941, 50.7181362], [-1.9829839, 50.7180434], [-1.9828094, 50.7178992], [-1.9826091, 50.7177799], [-1.9824004, 50.7176818], [-1.9822545, 50.717622], [-1.9821745, 50.7175957], [-1.9819058, 50.7175062], [-1.9815493, 50.7174046]]}}, {"id": "251764632", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "South Western Main Line", "osmid": 251764632, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9835766, 50.7198417], [-1.9836525, 50.7195381], [-1.9836869, 50.7193855], [-1.983701, 50.7192402], [-1.9836908, 50.7190823], [-1.9836745, 50.7189814], [-1.9836599, 50.7188977], [-1.9836105, 50.7187492], [-1.983541, 50.7186102], [-1.9834436, 50.7184568], [-1.9833387, 50.7183161], [-1.9832008, 50.7181694], [-1.9830334, 50.718034], [-1.9828585, 50.7178887], [-1.9826454, 50.7177616], [-1.9824311, 50.7176649], [-1.9822741, 50.7175994], [-1.9819227, 50.7174873], [-1.9815598, 50.7173815]]}}, {"id": "556364617", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 556364617, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7883521, 50.73704], [-1.7889153, 50.7369177], [-1.7894585, 50.7368142], [-1.7900358, 50.736717], [-1.7906481, 50.7366394], [-1.7913159, 50.7365748], [-1.7919523, 50.7365311], [-1.7928139, 50.7364874]]}}, {"id": "556366211", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 556366211, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8128274, 50.734031], [-1.812097, 50.7343363], [-1.8114949, 50.7345727], [-1.8108708, 50.7347904], [-1.8102439, 50.7349909], [-1.8096885, 50.7351514], [-1.8091973, 50.7352832], [-1.8086007, 50.7354276]]}}, {"id": "556366212", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 556366212, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8391108, 50.7309551], [-1.8377308, 50.7309824], [-1.8348072, 50.7310331]]}}, {"id": "556366213", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 556366213, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.839119, 50.7309061], [-1.84082, 50.7308781], [-1.8415591, 50.7308581], [-1.8422658, 50.7308318], [-1.8429042, 50.7307851], [-1.8435318, 50.7307189], [-1.8442051, 50.7306255], [-1.844763, 50.730533], [-1.8453812, 50.7304158], [-1.8460283, 50.7302803], [-1.8491044, 50.7296069], [-1.849682, 50.729475], [-1.8501885, 50.7293554], [-1.8507429, 50.7292053], [-1.8512734, 50.7290639], [-1.8518306, 50.7288929], [-1.854637, 50.7279105]]}}, {"id": "556368641", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 556368641, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.854637, 50.7279105], [-1.8549936, 50.7277854], [-1.8554489, 50.7276492], [-1.8559002, 50.7275367], [-1.8563635, 50.7274463], [-1.8588627, 50.7270582]]}}, {"id": "556368642", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 556368642, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8546098, 50.7279478], [-1.8518623, 50.7289208], [-1.8513303, 50.7290888], [-1.850761, 50.7292494], [-1.8502219, 50.7293842], [-1.8497448, 50.7294992], [-1.8491271, 50.729638], [-1.8460678, 50.7303006], [-1.8453921, 50.7304417], [-1.8447758, 50.7305642], [-1.8442203, 50.730653], [-1.8435496, 50.7307478], [-1.8429562, 50.7308154], [-1.8422808, 50.7308683], [-1.8415731, 50.7308974], [-1.8404907, 50.7309277], [-1.8391237, 50.7309548], [-1.8391108, 50.7309551]]}}, {"id": "556368643", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 556368643, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8588792, 50.7270885], [-1.856429, 50.7274682], [-1.8559319, 50.7275705], [-1.8554699, 50.7276789], [-1.8550211, 50.7278111], [-1.8546098, 50.7279478]]}}, {"id": "556368644", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 556368644, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8588627, 50.7270582], [-1.8607851, 50.7267659], [-1.8610534, 50.7267298], [-1.8611855, 50.7267158]]}}, {"id": "558371531", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 558371531, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8656232, 50.7277772], [-1.8647976, 50.7274813], [-1.864156, 50.7272508], [-1.8636193, 50.7270554], [-1.8634339, 50.7269962], [-1.8633487, 50.726973], [-1.8630717, 50.7269033], [-1.8627635, 50.7268466], [-1.8624662, 50.7268004], [-1.8622148, 50.726776], [-1.8618741, 50.7267594], [-1.8617886, 50.7267569]]}}, {"id": "558371532", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "50 mph", "name": "South Western Main Line", "osmid": 558371532, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8700832, 50.730372], [-1.8698326, 50.730237], [-1.8695781, 50.7300896], [-1.8693018, 50.7298928], [-1.8690253, 50.7296785], [-1.8686721, 50.7293969], [-1.8682236, 50.7290633], [-1.8676912, 50.7287211], [-1.8674847, 50.7286015], [-1.867264, 50.7284832]]}}, {"id": "558371533", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 558371533, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8710391, 50.7308921], [-1.870595, 50.7306549], [-1.8700832, 50.730372]]}}, {"id": "558371534", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 558371534, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8711002, 50.7308533], [-1.8715734, 50.731081], [-1.8721002, 50.7313019], [-1.8725011, 50.73146], [-1.8729117, 50.7316095], [-1.8732514, 50.7317196], [-1.8737505, 50.7318645]]}}, {"id": "558371535", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 558371535, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9039074, 50.7321126], [-1.9046022, 50.7320758]]}}, {"id": "558371536", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 558371536, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9038945, 50.7321455], [-1.8888517, 50.7329402], [-1.8878895, 50.7329912], [-1.8871453, 50.7330201], [-1.8859518, 50.7330479], [-1.8848376, 50.733039], [-1.8840555, 50.7330026], [-1.8812067, 50.7328069], [-1.8797909, 50.7327015]]}}, {"id": "558371537", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 558371537, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9202095, 50.7268843], [-1.9199319, 50.7269573], [-1.9194344, 50.7270651], [-1.9190362, 50.7271386], [-1.918152, 50.7272811], [-1.9179376, 50.7273187], [-1.9177006, 50.7273606], [-1.917415, 50.7274228], [-1.9169981, 50.7275366], [-1.9165529, 50.7276742], [-1.9160749, 50.7278385]]}}, {"id": "558371538", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "35 mph", "name": "South Western Main Line", "osmid": 558371538, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9201879, 50.7268536], [-1.9200634, 50.7268894], [-1.9196847, 50.7269847], [-1.9189435, 50.7271194], [-1.9182167, 50.7272254], [-1.9178156, 50.7272947], [-1.9175293, 50.7273595], [-1.9172474, 50.7274298], [-1.9168818, 50.7275324], [-1.9165303, 50.7276386], [-1.9160695, 50.7278051]]}}, {"id": "558375205", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 558375205, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9469456, 50.7231926], [-1.9465032, 50.7232965], [-1.9459971, 50.7234019], [-1.9455165, 50.7234912], [-1.9451243, 50.7235508], [-1.9446929, 50.7236043], [-1.9442661, 50.7236462], [-1.9438953, 50.7236733], [-1.9434397, 50.7236986], [-1.9430524, 50.7237098], [-1.9426607, 50.7237032], [-1.9421951, 50.7236855], [-1.9417221, 50.723665], [-1.9407163, 50.7236056], [-1.9401678, 50.7235869], [-1.9396287, 50.7235835], [-1.9390983, 50.7235948], [-1.9385593, 50.7236206], [-1.9290864, 50.7241686], [-1.9285873, 50.7242055], [-1.9280934, 50.7242622], [-1.9275721, 50.7243357]]}}, {"id": "558375206", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 558375206, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9469191, 50.723171], [-1.9465022, 50.7232697], [-1.9459543, 50.7233835], [-1.9454832, 50.7234705], [-1.9451181, 50.7235233], [-1.9446781, 50.7235697], [-1.9442739, 50.7236147], [-1.9438488, 50.7236467], [-1.9434423, 50.7236636], [-1.9429959, 50.7236714], [-1.9426276, 50.7236654], [-1.9421702, 50.7236529], [-1.9417827, 50.7236338], [-1.9407301, 50.7235726], [-1.9401625, 50.7235569], [-1.9396168, 50.7235512], [-1.9390936, 50.7235649], [-1.9385469, 50.7235895], [-1.9290752, 50.7241364], [-1.9285776, 50.7241758], [-1.928089, 50.7242321], [-1.927514, 50.7243122]]}}, {"id": "558375207", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 558375207, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9815598, 50.7173815], [-1.9801985, 50.7169848], [-1.9770054, 50.7160525], [-1.976481, 50.7159057], [-1.9760606, 50.7158021], [-1.975659, 50.7157094], [-1.9752315, 50.7156298], [-1.9747778, 50.7155586], [-1.9743292, 50.7155065], [-1.9738042, 50.7154585], [-1.9731461, 50.7154127], [-1.9724672, 50.7153767], [-1.9717414, 50.7153458], [-1.9710214, 50.7153418], [-1.9702659, 50.7153624], [-1.9695695, 50.715391], [-1.9689563, 50.7154306], [-1.9683471, 50.7154934], [-1.9677402, 50.7155722], [-1.9670725, 50.715679], [-1.9664556, 50.7157868], [-1.9658639, 50.7159082], [-1.9652972, 50.7160373], [-1.9647565, 50.7161734], [-1.9641696, 50.7163317], [-1.9637053, 50.7164678], [-1.9631576, 50.7166495]]}}, {"id": "558375208", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 558375208, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9815493, 50.7174046], [-1.9811436, 50.717289], [-1.9810453, 50.7172605], [-1.976961, 50.7160753], [-1.9764635, 50.7159351], [-1.9760436, 50.7158307], [-1.975644, 50.715739], [-1.9752203, 50.7156599], [-1.9747616, 50.7155937], [-1.974315, 50.7155394], [-1.9738013, 50.715491], [-1.973155, 50.7154426], [-1.9724656, 50.7154069], [-1.971724, 50.7153729], [-1.971028, 50.7153712], [-1.970278, 50.7153947], [-1.9695868, 50.7154226], [-1.9689774, 50.7154604], [-1.9683673, 50.7155266], [-1.9677464, 50.715603], [-1.9671, 50.7157058], [-1.9664629, 50.715823], [-1.9659077, 50.7159368], [-1.9653284, 50.7160667], [-1.9648013, 50.7162017], [-1.9641965, 50.7163656], [-1.9637176, 50.7165031], [-1.9632107, 50.7166721]]}}, {"id": "558375209", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 558375209, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9833428, 50.7207809], [-1.9833517, 50.7207453]]}}, {"id": "558375210", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 558375210, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9832991, 50.7207756], [-1.983308, 50.7207392]]}}, {"id": "558917534", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "South Western Main Line", "osmid": 558917534, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9833517, 50.7207453], [-1.9835766, 50.7198417]]}}, {"id": "558917535", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "South Western Main Line", "osmid": 558917535, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.983308, 50.7207392], [-1.9835264, 50.7198415]]}}, {"id": "558917536", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 558917536, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9835672, 50.7232491], [-1.9834305, 50.7230343], [-1.9833218, 50.7228144], [-1.9832346, 50.7226072], [-1.9831756, 50.7224077], [-1.983126, 50.7221937], [-1.983114, 50.7219764], [-1.9831113, 50.7217828], [-1.9831271, 50.7215724], [-1.9831663, 50.7213241], [-1.9831806, 50.7212628], [-1.9832991, 50.7207756]]}}, {"id": "558917537", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 558917537, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9836232, 50.7232435], [-1.9834859, 50.7230225], [-1.9833729, 50.7228087], [-1.9832852, 50.7226071], [-1.9832241, 50.7223956], [-1.9831871, 50.7221944], [-1.9831624, 50.7219803], [-1.9831555, 50.7217849], [-1.9831703, 50.7215621], [-1.9832035, 50.7213608], [-1.9833428, 50.7207809]]}}, {"id": "558917538", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 558917538, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9893535, 50.7291099], [-1.989157, 50.7290466], [-1.9888043, 50.7289091], [-1.9884221, 50.7287502], [-1.9880693, 50.7285788], [-1.9877153, 50.7283886], [-1.9874015, 50.7281916], [-1.9871118, 50.7279904], [-1.986857, 50.7278011], [-1.9866035, 50.7275788], [-1.9863756, 50.7273631], [-1.9861758, 50.7271466], [-1.985992, 50.7269242], [-1.9858378, 50.7267124], [-1.9852993, 50.725879], [-1.9852554, 50.7258125], [-1.9845842, 50.7247933], [-1.9835672, 50.7232491]]}}, {"id": "558917539", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 558917539, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9893715, 50.7290838], [-1.9891725, 50.7290178], [-1.9887937, 50.7288739], [-1.9884621, 50.7287314], [-1.9881022, 50.7285547], [-1.9877522, 50.728369], [-1.9874391, 50.7281761], [-1.9871511, 50.7279766], [-1.9868974, 50.7277818], [-1.986642, 50.7275676], [-1.9864174, 50.7273474], [-1.9862194, 50.7271389], [-1.9860387, 50.7269166], [-1.9858863, 50.726704], [-1.9856224, 50.7263146], [-1.9854862, 50.726089], [-1.9852939, 50.7257973], [-1.9850641, 50.72543], [-1.9846366, 50.7247812], [-1.9836232, 50.7232435]]}}, {"id": "566770963", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 566770963, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9971813, 50.7107704], [-1.9967802, 50.7107114], [-1.9960733, 50.7106069], [-1.9950155, 50.7104534], [-1.9946915, 50.7104141], [-1.9944115, 50.7103924], [-1.9942021, 50.710373], [-1.9936781, 50.710349], [-1.9934172, 50.710347]]}}, {"id": "623588591", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Swanage Railway", "osmid": 623588591, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9647773, 50.6099753], [-1.9646822, 50.6099728]]}}, {"id": "623588592", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 623588592, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9667074, 50.6101805], [-1.965818, 50.6100558], [-1.9655596, 50.6100261], [-1.9652381, 50.6100014], [-1.9649047, 50.6099825], [-1.9647773, 50.6099753]]}}, {"id": "670903790", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "85 mph", "name": "South Western Main Line", "osmid": 670903790, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.1049943, 50.6977673], [-2.0922045, 50.7042135], [-2.077724, 50.7114998], [-2.076997, 50.7118666], [-2.0715873, 50.7146111], [-2.0708944, 50.7149443], [-2.0702493, 50.7152274], [-2.0696139, 50.7154866], [-2.0688701, 50.7157377], [-2.068131, 50.7159666], [-2.0674347, 50.7161549], [-2.0667657, 50.716315], [-2.0661465, 50.7164453], [-2.0655043, 50.7165742], [-2.0606435, 50.7174257], [-2.0599023, 50.7175377], [-2.0591317, 50.717628], [-2.0583784, 50.7177032], [-2.0576199, 50.7177784], [-2.0569328, 50.7178348], [-2.0562472, 50.7178754], [-2.0521944, 50.7180289], [-2.0512884, 50.7180638], [-2.0505365, 50.7181201], [-2.0497806, 50.7181893], [-2.0489866, 50.7182725], [-2.0482463, 50.7183761], [-2.0475079, 50.7184934], [-2.0468328, 50.7186093], [-2.0460577, 50.7187632], [-2.0453496, 50.7189268], [-2.044628, 50.7191016], [-2.0407373, 50.7201021]]}}, {"id": "706090545", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 706090545, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.867264, 50.7284832], [-1.8668362, 50.7282844], [-1.8663487, 50.7280719], [-1.8660043, 50.7279294], [-1.8656232, 50.7277772]]}}, {"id": "706090546", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 706090546, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8656232, 50.7277772], [-1.8659645, 50.7278893], [-1.8663413, 50.7280346], [-1.8665847, 50.728133]]}}, {"id": "706090547", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 706090547, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8665847, 50.728133], [-1.8661382, 50.727903]]}}, {"id": "706090548", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 706090548, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8661382, 50.727903], [-1.8657224, 50.7277143]]}}, {"id": "706090549", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "25 mph", "name": "South Western Main Line", "osmid": 706090549, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.8617869, 50.726695], [-1.8621879, 50.7266967], [-1.862483, 50.7267086], [-1.8627499, 50.7267307], [-1.8630375, 50.7267743], [-1.8632943, 50.7268325], [-1.8635222, 50.7268988], [-1.8638103, 50.7269972], [-1.8641366, 50.7271194], [-1.8648716, 50.7273935], [-1.8657224, 50.7277143]]}}, {"id": "733739638", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 733739638, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0642223, 50.6460972], [-2.0646622, 50.6462953], [-2.0648379, 50.6463855], [-2.0649377, 50.6464338], [-2.0650646, 50.6464952], [-2.0652349, 50.64657], [-2.0653058, 50.6465991]]}}, {"id": "733739639", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 733739639, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0649377, 50.6464338], [-2.0651142, 50.6465403], [-2.0653703, 50.6466865]]}}, {"id": "751172962", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 751172962, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9956864, 50.7105169], [-1.9974977, 50.7107868], [-2.0002378, 50.7111839], [-2.0008705, 50.7112784], [-2.0015086, 50.7113793], [-2.0020882, 50.7114765], [-2.0026885, 50.7115827], [-2.0035379, 50.711745], [-2.0042798, 50.7118915], [-2.004801, 50.7119995]]}}, {"id": "786945295", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 786945295, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0268927, 50.7230123], [-2.0259237, 50.723045], [-2.0251096, 50.7231005], [-2.0244042, 50.7231735], [-2.0237363, 50.7232732], [-2.0231124, 50.7234164], [-2.0225293, 50.7235632], [-2.022017, 50.7237215], [-2.0214833, 50.7239182], [-2.021195, 50.7240409]]}}, {"id": "786945296", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 786945296, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0269013, 50.7230474], [-2.0259046, 50.7230835], [-2.0250973, 50.7231361], [-2.0244026, 50.7232108], [-2.0237669, 50.7233059], [-2.0231393, 50.7234468], [-2.0225561, 50.7235958], [-2.0220422, 50.7237508], [-2.0215219, 50.7239392], [-2.021224, 50.7240629]]}}, {"id": "786945297", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 786945297, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.021224, 50.7240629], [-2.0209962, 50.7241616], [-2.0205777, 50.7243756], [-2.0202156, 50.7245742], [-2.0198482, 50.7247984], [-2.0195558, 50.7249987], [-2.0193134, 50.7251818], [-2.0190569, 50.7253926], [-2.0188021, 50.7256337], [-2.0184899, 50.725956], [-2.0182362, 50.7261771], [-2.0179492, 50.7263961], [-2.017586, 50.7266352], [-2.0173108, 50.7267885]]}}, {"id": "786945298", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 786945298, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.021195, 50.7240409], [-2.020959, 50.7241417], [-2.0205472, 50.7243415], [-2.0201582, 50.7245588], [-2.0197962, 50.7247817], [-2.0195252, 50.7249636], [-2.0192517, 50.7251728], [-2.0190154, 50.7253774], [-2.0187903, 50.725602], [-2.0184524, 50.7259407], [-2.0182056, 50.7261491], [-2.0180102, 50.7263033], [-2.0177818, 50.72646], [-2.0172883, 50.7267613]]}}, {"id": "786945299", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 786945299, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0100017, 50.7290647], [-2.0085856, 50.729319]]}}, {"id": "786945300", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 786945300, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0141514, 50.7280878], [-2.0135677, 50.7282715], [-2.0130954, 50.7283996]]}}, {"id": "786945301", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "name": "South Western Main Line", "osmid": 786945301, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0141807, 50.7281144], [-2.0136067, 50.7282901], [-2.0131186, 50.728428]]}}, {"id": "895325621", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325621, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9601437, 50.6100132], [-1.960552, 50.610058]]}}, {"id": "895325622", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325622, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9646822, 50.6099728], [-1.9642154, 50.609958], [-1.9638901, 50.6099599]]}}, {"id": "895325623", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325623, "railway": "rail", "tunnel": "covered", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9621008, 50.6099623], [-1.9616451, 50.6099446]]}}, {"id": "895325624", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325624, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9641787, 50.6100765], [-1.9641392, 50.6100814]]}}, {"id": "895325625", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325625, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9792495, 50.6129223], [-1.9790189, 50.6128874], [-1.9788633, 50.612862], [-1.9787016, 50.6128444], [-1.9781763, 50.6128004], [-1.9773382, 50.6127378]]}}, {"id": "895325626", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325626, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.980993, 50.6131058], [-1.9815658, 50.6132269]]}}, {"id": "895325629", "type": "Feature", "properties": {"electrified": "no", "name": "Swanage Railway", "osmid": 895325629, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0636077, 50.6454725], [-2.0638086, 50.6456591]]}}, {"id": "3486533", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 3486533, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5773602, 50.8125498], [-1.5770014, 50.813093], [-1.5767553, 50.8134444], [-1.5765649, 50.8137118], [-1.5763374, 50.8139927], [-1.5760802, 50.8143044], [-1.5758164, 50.8146144], [-1.5754759, 50.8149738], [-1.5750565, 50.815399], [-1.5747549, 50.8156761], [-1.574399, 50.8159971], [-1.5742347, 50.8161407], [-1.5738963, 50.8164065], [-1.5734176, 50.8167623], [-1.5731035, 50.8169843]]}}, {"id": "3486535", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 3486535, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6179178, 50.7797992], [-1.6169105, 50.7807579], [-1.61648, 50.7811099], [-1.6160053, 50.781458], [-1.6155451, 50.7818036], [-1.6149688, 50.7821645], [-1.6144193, 50.78248], [-1.6139, 50.7827577], [-1.610086, 50.7846689]]}}, {"id": "3489588", "type": "Feature", "properties": {"electrified": "no", "osmid": 3489588, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4522464, 50.8874819], [-1.4519923, 50.8873788], [-1.4517436, 50.8872953], [-1.4514739, 50.887227], [-1.451153, 50.8871756], [-1.4508647, 50.8871583], [-1.4505419, 50.8871652], [-1.4501687, 50.8872016], [-1.4498377, 50.8872657], [-1.4495511, 50.8873468], [-1.449298, 50.887429], [-1.449116, 50.8874869], [-1.4487457, 50.8876063], [-1.4485458, 50.8876791], [-1.4484265, 50.8877256], [-1.4442194, 50.8895213], [-1.4439928, 50.8896257], [-1.4438198, 50.8897213], [-1.443561, 50.8898518]]}}, {"id": "3533550", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "Hythe Pier Railway", "osmid": 3533550, "railway": "narrow_gauge", "type": "way", "voltage": "250"}, "geometry": {"type": "LineString", "coordinates": [[-1.399173, 50.8707205], [-1.3990848, 50.8707819], [-1.3989421, 50.8708932], [-1.3986572, 50.8710993], [-1.394505, 50.8739517], [-1.3936001, 50.8745854], [-1.3933941, 50.8747357]]}}, {"id": "3590552", "type": "Feature", "properties": {"electrified": "no", "osmid": 3590552, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7558584, 51.0588069], [-1.7552422, 51.0586746], [-1.7547433, 51.0585737], [-1.754048, 51.0584395], [-1.753374, 51.0583167], [-1.7526423, 51.0581946], [-1.7520142, 51.0580999], [-1.7512673, 51.0579907], [-1.7504301, 51.0578678], [-1.7497221, 51.0577627], [-1.7490724, 51.0576552], [-1.7484253, 51.0575393], [-1.747731, 51.0574081], [-1.7470892, 51.0572776], [-1.7464969, 51.0571475], [-1.745794, 51.0569857], [-1.7452437, 51.0568478], [-1.7447125, 51.0567059], [-1.7441318, 51.0565456], [-1.7435959, 51.0563832], [-1.7424386, 51.0560091], [-1.7413767, 51.0556315], [-1.7404685, 51.055277], [-1.7395847, 51.0548962], [-1.7386902, 51.0544898], [-1.7376973, 51.0540043], [-1.7369976, 51.0536174], [-1.736178, 51.0531463], [-1.7355089, 51.0527241], [-1.7348177, 51.0522774], [-1.7342072, 51.0518601], [-1.7336024, 51.0514091], [-1.7329378, 51.0508793], [-1.7323125, 51.0503336], [-1.7312305, 51.0493327], [-1.7305269, 51.0487298], [-1.7298939, 51.048255], [-1.7291269, 51.0477074], [-1.7282235, 51.0471106], [-1.7273198, 51.0465671], [-1.7265062, 51.0461133], [-1.7255181, 51.0456137], [-1.72474, 51.0452401], [-1.7242338, 51.0450205], [-1.7235254, 51.0447307], [-1.7227764, 51.0444349], [-1.7218825, 51.0441118], [-1.7210208, 51.0438309], [-1.7200269, 51.0435319], [-1.7191388, 51.0432841], [-1.7181103, 51.0430291], [-1.7169644, 51.0427796], [-1.7159683, 51.042585], [-1.7150784, 51.0424278], [-1.7141197, 51.0422886], [-1.7131801, 51.0421699], [-1.7122856, 51.0420797], [-1.7114792, 51.0420149], [-1.7106632, 51.0419671], [-1.7099536, 51.0419321], [-1.7091183, 51.0419143], [-1.7082519, 51.0419067], [-1.70728, 51.0419088], [-1.7063208, 51.0419331], [-1.7048678, 51.0419959]]}}, {"id": "3590553", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 3590553, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.779997, 51.0652113], [-1.7796064, 51.0651281]]}}, {"id": "4060274", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "name": "Fisherton Tunnel", "osmid": 4060274, "railway": "rail", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7917986, 51.0769056], [-1.7900394, 51.0771134], [-1.7878648, 51.0773637], [-1.7861193, 51.077541]]}}, {"id": "4281606", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 4281606, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8177524, 51.0727753], [-1.8185328, 51.0730843], [-1.819505, 51.0735197], [-1.8200973, 51.0738125], [-1.8203376, 51.0739313], [-1.8213766, 51.074477], [-1.8221377, 51.0748406], [-1.8229449, 51.075221], [-1.8236571, 51.0755283], [-1.8244134, 51.0758546], [-1.8257979, 51.0764205], [-1.827035, 51.0769136], [-1.8283689, 51.0774346], [-1.8296349, 51.0778782], [-1.8310469, 51.0783349], [-1.8325263, 51.0787747], [-1.8338956, 51.0791335], [-1.8342817, 51.0792264]]}}, {"id": "4281607", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 4281607, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8827607, 51.080875], [-1.8837284, 51.0807364], [-1.8846729, 51.0806109], [-1.8855866, 51.0805083], [-1.8895636, 51.0800969], [-1.8904756, 51.0800198], [-1.8913205, 51.079979], [-1.8923181, 51.0799655], [-1.8931873, 51.0799917], [-1.8940751, 51.080043], [-1.8948766, 51.0801192], [-1.8957919, 51.080237], [-1.8966849, 51.0803702], [-1.8974681, 51.0805164], [-1.8983854, 51.0807244], [-1.8991771, 51.0809356], [-1.8999465, 51.0811745], [-1.9007329, 51.0814465], [-1.902228, 51.0819813], [-1.9030003, 51.082224], [-1.9038544, 51.0824677], [-1.9046972, 51.0826549], [-1.9055576, 51.0828261], [-1.906542, 51.0829796], [-1.9075665, 51.0831079], [-1.9085188, 51.0832098], [-1.9185733, 51.0842203]]}}, {"id": "4281608", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 4281608, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9267401, 51.085025], [-1.9278558, 51.0850723], [-1.9288868, 51.0850987], [-1.9299521, 51.0851033], [-1.9309952, 51.0850716], [-1.9320052, 51.0850167], [-1.9329768, 51.0849401], [-1.9339873, 51.0848394], [-1.9701503, 51.0802019], [-1.9981881, 51.0765763], [-1.9982405, 51.0765684]]}}, {"id": "4281609", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 4281609, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0307033, 51.0668093], [-2.0315186, 51.0668908], [-2.0352334, 51.0673365], [-2.035981, 51.0674225], [-2.0367414, 51.0674965], [-2.0374103, 51.0675528], [-2.038061, 51.0675891], [-2.0387925, 51.067607], [-2.0395674, 51.0676141], [-2.0404014, 51.0676095], [-2.0412236, 51.0675849], [-2.0420416, 51.0675336], [-2.0427497, 51.0674732], [-2.0434376, 51.0674027], [-2.0441392, 51.0673152], [-2.0500816, 51.0664939], [-2.0508545, 51.0663967], [-2.0517046, 51.0663023], [-2.0524202, 51.066233]]}}, {"id": "4725665", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 4725665, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7711086, 50.7420652], [-1.7686124, 50.7425506]]}}, {"id": "4725666", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 4725666, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7803957, 50.7402385], [-1.7799139, 50.740354], [-1.7794976, 50.7404439], [-1.7790741, 50.7405279]]}}, {"id": "4933070", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 4933070, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.797, 51.0753798], [-1.7967842, 51.0754947], [-1.7964798, 51.0756525], [-1.7961601, 51.0758015], [-1.7957529, 51.0759775], [-1.7953385, 51.0761326], [-1.7948664, 51.0762942], [-1.7943768, 51.0764494], [-1.7936784, 51.0766204]]}}, {"id": "5947658", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "Southampton Tunnel", "osmid": 5947658, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4080592, 50.9071624], [-1.4021915, 50.9067432], [-1.401837, 50.9067223], [-1.4014987, 50.9067085], [-1.401176, 50.906705]]}}, {"id": "6267335", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 6267335, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4311074, 50.9973203], [-1.4307467, 50.9973226]]}}, {"id": "7971017", "type": "Feature", "properties": {"electrified": "no", "osmid": 7971017, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4331922, 50.9973031], [-1.4356945, 50.9972825]]}}, {"id": "10155686", "type": "Feature", "properties": {"electrified": "no", "osmid": 10155686, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5284414, 51.023453], [-1.526757, 51.0220273], [-1.5222875, 51.0182441], [-1.5172602, 51.0139883], [-1.5134941, 51.0107999], [-1.5065383, 51.0049102], [-1.5057854, 51.0042603], [-1.5051209, 51.0036435], [-1.50461, 51.003153], [-1.50334, 51.0018089]]}}, {"id": "13292590", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "Waterloo-Weymouth", "osmid": 13292590, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5869947, 50.8021102], [-1.5868622, 50.8022177]]}}, {"id": "13292592", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 13292592, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6024083, 50.7885094], [-1.5985303, 50.7904106], [-1.5979195, 50.7907509], [-1.597266, 50.7911385], [-1.596799, 50.791443], [-1.5962677, 50.791785], [-1.5958354, 50.7920903], [-1.595373, 50.7924349], [-1.5949685, 50.7927567], [-1.5945001, 50.7931446], [-1.5941085, 50.7934992], [-1.5937789, 50.7938249], [-1.5934904, 50.7941152], [-1.5931811, 50.7944393], [-1.5929338, 50.7947285], [-1.5924109, 50.7953867], [-1.5921604, 50.7957262], [-1.5919607, 50.7960291], [-1.5903765, 50.7985876], [-1.5901183, 50.7989521], [-1.5898686, 50.7992852], [-1.5896696, 50.7995306]]}}, {"id": "15698342", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 15698342, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5674362, 51.0360565], [-1.5672873, 51.0360419]]}}, {"id": "15698344", "type": "Feature", "properties": {"electrified": "no", "osmid": 15698344, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5672873, 51.0360419], [-1.5545923, 51.0350824], [-1.5536013, 51.0349923], [-1.5526354, 51.0348838], [-1.5518187, 51.0347793], [-1.5510718, 51.0346581], [-1.5509491, 51.0346399], [-1.5498881, 51.0344819], [-1.5490659, 51.0343321], [-1.5483797, 51.0341903]]}}, {"id": "15944366", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 15944366, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4211389, 50.9074767], [-1.4210358, 50.9074657], [-1.4204441, 50.9074282], [-1.4198905, 50.9074107], [-1.4192971, 50.907417], [-1.4190875, 50.907425], [-1.4186468, 50.9074419]]}}, {"id": "22801736", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "25 mph", "name": "South Western Main Line", "osmid": 22801736, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.3920906, 50.9091007], [-1.3921013, 50.9089218], [-1.3921258, 50.9087086], [-1.3921695, 50.9085177], [-1.3922431, 50.9083148], [-1.392341, 50.9081366], [-1.392508, 50.9079287], [-1.3927191, 50.9077459], [-1.3929057, 50.907631], [-1.3931356, 50.9075164], [-1.3932854, 50.9074474], [-1.3934378, 50.9073887], [-1.3935789, 50.9073471], [-1.3937397, 50.9073092], [-1.3938929, 50.9072783], [-1.3940663, 50.9072528], [-1.394256, 50.9072334], [-1.3944645, 50.9072221], [-1.3947203, 50.9072151], [-1.3950456, 50.9072067], [-1.3952736, 50.9071994], [-1.3982534, 50.9070172], [-1.3986696, 50.9069856], [-1.3990478, 50.906948], [-1.3994253, 50.9068906], [-1.3997488, 50.906836], [-1.4000544, 50.9067829], [-1.4002483, 50.9067525], [-1.4004845, 50.9067243], [-1.4006986, 50.9067022], [-1.4009012, 50.906687], [-1.4011798, 50.9066778]]}}, {"id": "22931023", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 22931023, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4879989, 50.9906196], [-1.487888, 50.9905139]]}}, {"id": "22931024", "type": "Feature", "properties": {"electrified": "no", "osmid": 22931024, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.487888, 50.9905139], [-1.4875931, 50.9901915], [-1.4873358, 50.989855], [-1.4870906, 50.9894723], [-1.4869354, 50.9891705], [-1.4868141, 50.9889141]]}}, {"id": "22931025", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 22931025, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4856307, 50.9911432], [-1.4859325, 50.9911584]]}}, {"id": "22931026", "type": "Feature", "properties": {"electrified": "no", "osmid": 22931026, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4859325, 50.9911584], [-1.4863844, 50.991191], [-1.4868471, 50.99123], [-1.4873654, 50.9912838], [-1.4879138, 50.991355], [-1.4884467, 50.9914314], [-1.4889754, 50.9915222], [-1.4893959, 50.9916023], [-1.4897395, 50.9916737], [-1.4898313, 50.9916931], [-1.4900424, 50.9917377], [-1.4903919, 50.9918177]]}}, {"id": "23436878", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23436878, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4976272, 50.9950358], [-1.4974512, 50.9949063]]}}, {"id": "23436879", "type": "Feature", "properties": {"electrified": "no", "osmid": 23436879, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4974512, 50.9949063], [-1.4968221, 50.9944757], [-1.4963975, 50.9942075], [-1.4959203, 50.9939339], [-1.4954877, 50.9936952], [-1.4950954, 50.9934838], [-1.4949119, 50.9934015], [-1.4945741, 50.9932446], [-1.4942209, 50.9930824], [-1.4938493, 50.992926], [-1.4934921, 50.9927818], [-1.4931284, 50.9926427], [-1.4925497, 50.9924365], [-1.4921565, 50.9923038], [-1.4918142, 50.9922], [-1.4914893, 50.9921021]]}}, {"id": "23436884", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23436884, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4999658, 50.997244], [-1.4998645, 50.9971163]]}}, {"id": "23436885", "type": "Feature", "properties": {"electrified": "no", "osmid": 23436885, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4998645, 50.9971163], [-1.4995283, 50.9967367], [-1.499068, 50.9962538]]}}, {"id": "23436886", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23436886, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.499068, 50.9962538], [-1.4987973, 50.9959962]]}}, {"id": "23436887", "type": "Feature", "properties": {"electrified": "no", "osmid": 23436887, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4987973, 50.9959962], [-1.4983758, 50.9956357], [-1.4980162, 50.9953388], [-1.4976272, 50.9950358]]}}, {"id": "24406072", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 24406072, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7440919, 50.7476243], [-1.7437068, 50.7477035]]}}, {"id": "24406073", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 24406073, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7564405, 50.7450346], [-1.7440919, 50.7476243]]}}, {"id": "24642162", "type": "Feature", "properties": {"electrified": "no", "osmid": 24642162, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4443881, 50.9972492], [-1.4491189, 50.9972317], [-1.453703, 50.9972148], [-1.4544544, 50.9972108], [-1.4550881, 50.9972067], [-1.4571132, 50.9972015], [-1.4577241, 50.9972017], [-1.4583356, 50.9971947], [-1.4589548, 50.9971785], [-1.459544, 50.997157], [-1.4601403, 50.9971311], [-1.460664, 50.9970986], [-1.4612612, 50.9970497], [-1.4618104, 50.996993], [-1.4623284, 50.9969255], [-1.4627973, 50.996864], [-1.4632603, 50.9967994], [-1.4636988, 50.9967319], [-1.4646133, 50.9965649], [-1.4653177, 50.9964261], [-1.465973, 50.9962745], [-1.4667496, 50.9960841], [-1.4674506, 50.9958837], [-1.4685742, 50.9955449], [-1.4694672, 50.9952404], [-1.4697327, 50.9951371], [-1.470402, 50.9948768]]}}, {"id": "24768766", "type": "Feature", "properties": {"electrified": "no", "osmid": 24768766, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5741164, 51.0365845], [-1.5687795, 51.0361611]]}}, {"id": "24768767", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 24768767, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5743916, 51.0366043], [-1.5741164, 51.0365845]]}}, {"id": "24770297", "type": "Feature", "properties": {"electrified": "no", "osmid": 24770297, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6354587, 51.0424924], [-1.6427991, 51.0430964], [-1.6455496, 51.043311]]}}, {"id": "24770299", "type": "Feature", "properties": {"electrified": "no", "osmid": 24770299, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6664774, 51.043675], [-1.6705621, 51.0434936]]}}, {"id": "24770300", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 24770300, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6662682, 51.0436852], [-1.6664774, 51.043675]]}}, {"id": "24770310", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 24770310, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.811173, 51.0711575], [-1.8097621, 51.0709135], [-1.8092572, 51.0708374]]}}, {"id": "24777696", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 24777696, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8601617, 51.0851434], [-1.8603859, 51.0851249]]}}, {"id": "24777697", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 24777697, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8603859, 51.0851249], [-1.8608122, 51.0850765]]}}, {"id": "24777699", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 24777699, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8608122, 51.0850765], [-1.861077, 51.0850394]]}}, {"id": "24777707", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 24777707, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9263902, 51.0850019], [-1.9267401, 51.085025]]}}, {"id": "24777711", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 24777711, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0224435, 51.0677869], [-2.0226366, 51.0677218]]}}, {"id": "24777724", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 24777724, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0226366, 51.0677218], [-2.0232251, 51.06753], [-2.0238882, 51.0673497], [-2.0246256, 51.0671701], [-2.0253424, 51.0670338], [-2.026056, 51.0669297], [-2.0267806, 51.0668458], [-2.0274655, 51.0667823], [-2.0281255, 51.06675], [-2.0289252, 51.0667275], [-2.0296587, 51.0667437], [-2.0304374, 51.0667884]]}}, {"id": "24778156", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 24778156, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0809928, 51.0590945], [-2.081197, 51.0589136]]}}, {"id": "24778157", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 24778157, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.081197, 51.0589136], [-2.0819252, 51.058283], [-2.0825721, 51.057742], [-2.0832475, 51.0572436], [-2.0839969, 51.0567855], [-2.0846875, 51.0563875], [-2.0854121, 51.0560255], [-2.0861177, 51.0557051]]}}, {"id": "25312257", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 25312257, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5240265, 50.8829033], [-1.5176928, 50.8776876], [-1.5128176, 50.8736706], [-1.5125411, 50.8734279], [-1.5122525, 50.8731733], [-1.5119435, 50.8728848], [-1.5116254, 50.8725671], [-1.5113432, 50.8722699], [-1.5111141, 50.8720133], [-1.5108842, 50.8717481], [-1.5106365, 50.8714457], [-1.510395, 50.8711265], [-1.5101706, 50.8708029], [-1.5099029, 50.870405], [-1.5096155, 50.8699307], [-1.5093889, 50.8695168], [-1.5091938, 50.8691378], [-1.5090302, 50.8687803], [-1.5089343, 50.868541]]}}, {"id": "25312258", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 25312258, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.472705, 50.9203006], [-1.4729799, 50.920336], [-1.4733159, 50.9203698], [-1.4736315, 50.9203912], [-1.4738563, 50.9203988]]}}, {"id": "25312260", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 25312260, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5075113, 50.8638743], [-1.5052437, 50.855933], [-1.5049879, 50.8551037], [-1.5049707, 50.8550478], [-1.5034935, 50.8499063], [-1.5034189, 50.8496209], [-1.5033526, 50.8493193], [-1.5032975, 50.8490256], [-1.5032481, 50.8487448], [-1.5031858, 50.8483174], [-1.5031568, 50.848027], [-1.503132, 50.8476916], [-1.5031066, 50.8473268], [-1.5031053, 50.8469523], [-1.5031105, 50.8465937], [-1.5031241, 50.8462239], [-1.5031507, 50.8458517], [-1.5031845, 50.8454989], [-1.5032338, 50.8451504], [-1.5043036, 50.8382923], [-1.5043772, 50.8379663], [-1.5044621, 50.8376458], [-1.5045747, 50.8372936], [-1.5047144, 50.8369594], [-1.5048797, 50.8366348], [-1.5050593, 50.8363229], [-1.5052758, 50.8360104], [-1.5055101, 50.8357093], [-1.5057668, 50.835407], [-1.5060522, 50.835124], [-1.5063593, 50.8348329], [-1.5067168, 50.8345209], [-1.5071353, 50.8341989], [-1.507596, 50.8338924], [-1.5080552, 50.8336155], [-1.5085676, 50.8333351], [-1.5090843, 50.833087], [-1.5096139, 50.832859], [-1.5101602, 50.8326504], [-1.5104266, 50.8325568], [-1.5105803, 50.8325052], [-1.5110719, 50.8323628], [-1.5116043, 50.8322211], [-1.5120414, 50.8321205], [-1.5125296, 50.8320246], [-1.5130601, 50.8319362], [-1.5135685, 50.8318634], [-1.5403627, 50.8286079]]}}, {"id": "25312262", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 25312262, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4211484, 50.9074366], [-1.4216273, 50.9074814], [-1.422193, 50.9075632], [-1.4227751, 50.9076638], [-1.423251, 50.9077696], [-1.4237617, 50.9079039], [-1.424237, 50.9080446], [-1.4282441, 50.9093684], [-1.4301387, 50.9099993], [-1.4304853, 50.9101347], [-1.431466, 50.9105228], [-1.4328723, 50.9110793], [-1.4335898, 50.9113394], [-1.4342727, 50.9115633], [-1.4345425, 50.9116471], [-1.4348886, 50.9117466]]}}, {"id": "25540895", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 25540895, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4914893, 50.9921021], [-1.4913122, 50.9920512]]}}, {"id": "25540897", "type": "Feature", "properties": {"electrified": "no", "osmid": 25540897, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4913122, 50.9920512], [-1.4911236, 50.992003], [-1.4903919, 50.9918177]]}}, {"id": "28141925", "type": "Feature", "properties": {"electrified": "no", "osmid": 28141925, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.805991, 51.0712067], [-1.8072489, 51.0712608], [-1.8075298, 51.071265], [-1.8078517, 51.0712525], [-1.8087343, 51.0711959]]}}, {"id": "28141935", "type": "Feature", "properties": {"electrified": "no", "osmid": 28141935, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8055611, 51.0709531], [-1.8087215, 51.0710884], [-1.8090567, 51.0710974], [-1.8093194, 51.0710939], [-1.8095761, 51.0710889]]}}, {"id": "28141938", "type": "Feature", "properties": {"electrified": "no", "osmid": 28141938, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8072676, 51.0711364], [-1.808708, 51.0711646]]}}, {"id": "28141940", "type": "Feature", "properties": {"electrified": "no", "osmid": 28141940, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8055585, 51.0707903], [-1.8089064, 51.0709193], [-1.8091801, 51.0709386], [-1.809615, 51.0709842], [-1.8100343, 51.0710517], [-1.8104533, 51.071129]]}}, {"id": "28141941", "type": "Feature", "properties": {"electrified": "no", "osmid": 28141941, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8055606, 51.0708769], [-1.8089032, 51.071004], [-1.8096066, 51.0710185], [-1.8100343, 51.0710517]]}}, {"id": "28145761", "type": "Feature", "properties": {"electrified": "no", "name": "Quidhampton Siding", "osmid": 28145761, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8387753, 51.0803133], [-1.8397602, 51.0804446], [-1.8404554, 51.0805259], [-1.8414985, 51.0806385], [-1.8425961, 51.0807409], [-1.8429649, 51.0807697]]}}, {"id": "28232953", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 28232953, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8859002, 51.1113574], [-1.8859517, 51.1114643]]}}, {"id": "28232973", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 28232973, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8859517, 51.1114643], [-1.887602, 51.1149148]]}}, {"id": "28487893", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "80 mph", "osmid": 28487893, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7699728, 51.0884366], [-1.7697502, 51.0885874]]}}, {"id": "28487894", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 28487894, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7858061, 51.0775694], [-1.7851692, 51.0776408], [-1.7846094, 51.0777207], [-1.7841521, 51.0778039], [-1.7837461, 51.0779002], [-1.7833615, 51.0780046], [-1.7829103, 51.0781447], [-1.7825363, 51.0782702], [-1.7821314, 51.0784225], [-1.7817516, 51.0785848], [-1.7814011, 51.0787555], [-1.7811318, 51.0789009], [-1.7808331, 51.0790709], [-1.78053, 51.0792661], [-1.7802377, 51.0794751], [-1.7799826, 51.079667], [-1.779729, 51.0798905], [-1.7794864, 51.0801364], [-1.7792929, 51.0803511], [-1.7790977, 51.0805922], [-1.7786821, 51.0811343], [-1.778228, 51.0817489]]}}, {"id": "29433324", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 29433324, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7686124, 50.7425506], [-1.7683455, 50.742601]]}}, {"id": "32482126", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 32482126, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7847306, 50.7383709], [-1.7833944, 50.7390372], [-1.7828831, 50.7392954], [-1.7825116, 50.7394783], [-1.7820441, 50.7396815], [-1.7815898, 50.7398577], [-1.7809946, 50.7400668], [-1.7803957, 50.7402385]]}}, {"id": "32482192", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 32482192, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7236339, 50.7516279], [-1.7193728, 50.7521482], [-1.7185496, 50.7522394], [-1.7177811, 50.752319], [-1.7170395, 50.7523865], [-1.7162347, 50.752452], [-1.7154582, 50.7525078], [-1.7145507, 50.7525572], [-1.7136258, 50.752603]]}}, {"id": "32482194", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 32482194, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5722675, 50.8175486], [-1.5720752, 50.8176768], [-1.5716417, 50.8179648], [-1.5711961, 50.8182346], [-1.5707674, 50.8184803], [-1.5703698, 50.8186965], [-1.5700224, 50.8188747], [-1.5696287, 50.8190676], [-1.5691963, 50.8192667], [-1.5687605, 50.819454], [-1.5683359, 50.819629]]}}, {"id": "33903255", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 33903255, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7861193, 51.077541], [-1.7858061, 51.0775694]]}}, {"id": "34334331", "type": "Feature", "properties": {"osmid": 34334331, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4432425, 50.8895617], [-1.4426957, 50.8896338], [-1.4425184, 50.889647], [-1.4423702, 50.8896581], [-1.4420784, 50.8896616], [-1.4417882, 50.8896449], [-1.4415379, 50.8896069], [-1.4412741, 50.8895505], [-1.4410052, 50.8894738], [-1.4399362, 50.8890522], [-1.4397909, 50.8889949], [-1.4371666, 50.8880107], [-1.4368407, 50.8878928], [-1.4367042, 50.8878434]]}}, {"id": "34334332", "type": "Feature", "properties": {"osmid": 34334332, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4384197, 50.8882729], [-1.4381235, 50.8881932], [-1.4379344, 50.8881629], [-1.4378228, 50.8881449], [-1.4375784, 50.8881055], [-1.4373851, 50.88807], [-1.4371666, 50.8880107]]}}, {"id": "37688571", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 37688571, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8092572, 51.0708374], [-1.8089199, 51.0707828], [-1.8084223, 51.0707313], [-1.8078241, 51.0706976], [-1.8062817, 51.0706363], [-1.8053438, 51.0706002], [-1.8049945, 51.0705867], [-1.8046537, 51.0705829], [-1.8044017, 51.070603], [-1.8041026, 51.0706392], [-1.8037737, 51.0707023]]}}, {"id": "37688575", "type": "Feature", "properties": {"electrified": "no", "name": "Down Test Valley", "osmid": 37688575, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4903919, 50.9918177], [-1.4901244, 50.9917462], [-1.4898837, 50.9916764], [-1.4894875, 50.9915407], [-1.4891234, 50.9913831], [-1.4887678, 50.991196], [-1.4884939, 50.9910186], [-1.4882118, 50.9907995], [-1.4879989, 50.9906196]]}}, {"id": "40488092", "type": "Feature", "properties": {"osmid": 40488092, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3997088, 50.803507], [-1.3996773, 50.8035076], [-1.3996473, 50.8035098], [-1.399616, 50.8035146], [-1.3995935, 50.8035221], [-1.3995836, 50.8034568]]}}, {"id": "42347825", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 42347825, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0705512, 51.0644795], [-2.0703613, 51.064542]]}}, {"id": "42347826", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 42347826, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0756014, 51.0626977], [-2.0759922, 51.0625366], [-2.0764326, 51.0623292], [-2.0768014, 51.0621439], [-2.0771347, 51.0619686], [-2.0773315, 51.0618589], [-2.0775302, 51.0617481], [-2.077782, 51.0615978], [-2.0785258, 51.0611201], [-2.0788923, 51.0608642], [-2.0794958, 51.0604161], [-2.0797148, 51.0602368], [-2.0800168, 51.0599677], [-2.0809928, 51.0590945]]}}, {"id": "46916897", "type": "Feature", "properties": {"osmid": 46916897, "railway": "monorail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4542463, 50.8232297], [-1.4543749, 50.8232644], [-1.4544991, 50.8232986], [-1.4545305, 50.8233115], [-1.4545966, 50.8233445], [-1.4546515, 50.8233853], [-1.4546877, 50.8234286], [-1.4546959, 50.8234681], [-1.4546933, 50.8235153], [-1.4546832, 50.823558], [-1.4546662, 50.8236006], [-1.4546215, 50.8236475], [-1.4545583, 50.8236855], [-1.4544875, 50.8237102], [-1.4542311, 50.823773], [-1.4540783, 50.8238061], [-1.4538494, 50.8238556], [-1.4537752, 50.8238771], [-1.4537141, 50.8239167], [-1.4536688, 50.8239602], [-1.4536429, 50.8240003], [-1.453626, 50.8240471], [-1.4536293, 50.8240934], [-1.4536472, 50.8241445], [-1.453671, 50.8241983], [-1.4537332, 50.8242627], [-1.4537674, 50.8242881], [-1.4538297, 50.8243158], [-1.4538937, 50.8243355], [-1.4539589, 50.8243466], [-1.4540328, 50.8243476], [-1.4541335, 50.8243345], [-1.4541874, 50.8243171], [-1.4542302, 50.8243004], [-1.4542766, 50.8242726], [-1.4543098, 50.8242371], [-1.4543644, 50.82417], [-1.454947, 50.8233116], [-1.4549735, 50.823262], [-1.4549809, 50.82322], [-1.4549845, 50.8231732], [-1.4549685, 50.8231324], [-1.4549366, 50.8230933], [-1.4549124, 50.823069], [-1.4548614, 50.8230395], [-1.4548101, 50.8230197], [-1.4547784, 50.8229983], [-1.4545306, 50.8228289], [-1.4536052, 50.8222164], [-1.4535649, 50.8221914], [-1.4535317, 50.822163], [-1.4535095, 50.8221382], [-1.4534916, 50.8221077], [-1.4534719, 50.8220622], [-1.4531423, 50.8214289], [-1.4531064, 50.821379], [-1.4530707, 50.8213421], [-1.4530298, 50.8213161], [-1.452973, 50.8212921], [-1.4529346, 50.8212817], [-1.4528835, 50.8212691], [-1.452815, 50.8212614], [-1.4527395, 50.8212614], [-1.4526791, 50.8212709], [-1.4516939, 50.8214762], [-1.4516034, 50.821497], [-1.4515368, 50.8215195], [-1.4514812, 50.8215561], [-1.4514416, 50.8215918], [-1.4514219, 50.8216237], [-1.4514004, 50.8216688], [-1.4514, 50.8217193], [-1.4514279, 50.8217872], [-1.451743, 50.8223911], [-1.4517748, 50.8224334], [-1.4518134, 50.8224662], [-1.4518682, 50.8224916], [-1.4519348, 50.8225136], [-1.4527866, 50.8227801], [-1.4529948, 50.8228441], [-1.4542463, 50.8232297]]}}, {"id": "47908702", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 47908702, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0304374, 51.0667884], [-2.0307033, 51.0668093]]}}, {"id": "48119387", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 48119387, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0196699, 51.0690651], [-2.0198428, 51.0689604]]}}, {"id": "48119388", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 48119388, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0198428, 51.0689604], [-2.0202989, 51.0687102], [-2.0207948, 51.0684491], [-2.0213165, 51.0682011], [-2.0218872, 51.0679772], [-2.0224435, 51.0677869]]}}, {"id": "48165386", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 48165386, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.006152, 51.0755146], [-2.0067292, 51.0754018], [-2.0073342, 51.0752761], [-2.0079202, 51.0751301], [-2.0085276, 51.0749754], [-2.0091044, 51.0748208], [-2.009666, 51.0746473], [-2.0102082, 51.0744678], [-2.0107382, 51.0742726], [-2.0112691, 51.0740601], [-2.0117874, 51.0738378], [-2.0123284, 51.0735762], [-2.0128566, 51.0733], [-2.0134159, 51.0729626], [-2.0196699, 51.0690651]]}}, {"id": "48165387", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 48165387, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0058777, 51.0755581], [-2.006152, 51.0755146]]}}, {"id": "51572687", "type": "Feature", "properties": {"electrified": "no", "osmid": 51572687, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3988873, 50.8675602], [-1.3978313, 50.8671641]]}}, {"id": "51572688", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 51572688, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3990122, 50.8676061], [-1.3988873, 50.8675602]]}}, {"id": "51572720", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 51572720, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3978313, 50.8671641], [-1.3976805, 50.8671077]]}}, {"id": "51572721", "type": "Feature", "properties": {"electrified": "no", "osmid": 51572721, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3976805, 50.8671077], [-1.3972148, 50.8669403], [-1.3967977, 50.8668151], [-1.3963337, 50.8666857], [-1.3934133, 50.8658855], [-1.3926538, 50.8656625], [-1.3922811, 50.8655363], [-1.3918859, 50.865384], [-1.3914954, 50.8652144], [-1.3911515, 50.8650522], [-1.3908031, 50.8648566]]}}, {"id": "55037092", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 55037092, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4762511, 50.9202054], [-1.4765795, 50.9201348], [-1.4768869, 50.9200566]]}}, {"id": "55037095", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 55037095, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4745584, 50.9204013], [-1.4749994, 50.9203745], [-1.4754824, 50.9203285], [-1.4758521, 50.920278], [-1.4762511, 50.9202054]]}}, {"id": "55037098", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 55037098, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4738563, 50.9203988], [-1.4742268, 50.9204071], [-1.4745584, 50.9204013]]}}, {"id": "72569654", "type": "Feature", "properties": {"electrified": "no", "osmid": 72569654, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867623, 50.9887737], [-1.4853236, 50.9838908], [-1.4832509, 50.9768549], [-1.4828906, 50.9754812], [-1.4827831, 50.9749728], [-1.4827207, 50.9746339], [-1.4825335, 50.9734424], [-1.4824757, 50.972881], [-1.482425, 50.9721441], [-1.4824068, 50.9716368], [-1.4823998, 50.9709841], [-1.4824247, 50.9701651], [-1.4829327, 50.9622898], [-1.4831291, 50.9592824], [-1.4834957, 50.9537787], [-1.4835088, 50.9531437], [-1.483507, 50.9492742], [-1.4835309, 50.9487652], [-1.4835666, 50.9483289], [-1.4838098, 50.9466111], [-1.4838445, 50.9460697], [-1.4838525, 50.945547], [-1.4837895, 50.9446964], [-1.4837227, 50.9442096], [-1.4832065, 50.9414938]]}}, {"id": "72569656", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 72569656, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4868141, 50.9889141], [-1.4867623, 50.9887737]]}}, {"id": "80050159", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 80050159, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5896696, 50.7995306], [-1.5892801, 50.7999864]]}}, {"id": "80050163", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 80050163, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5892801, 50.7999864], [-1.588979, 50.8003143], [-1.5887057, 50.8006152], [-1.5884219, 50.8008945], [-1.5880832, 50.8012045], [-1.587691, 50.8015565], [-1.5869947, 50.8021102]]}}, {"id": "81814370", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "80 mph", "osmid": 81814370, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7552085, 51.1016993], [-1.7550907, 51.1018435]]}}, {"id": "81814371", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 81814371, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7697502, 51.0885874], [-1.7670755, 51.0903952]]}}, {"id": "92995180", "type": "Feature", "properties": {"electrified": "no", "osmid": 92995180, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6512054, 51.0437459], [-1.6526391, 51.0438185], [-1.6540221, 51.0438662], [-1.6551106, 51.0438981], [-1.6575275, 51.043932], [-1.6587903, 51.0439323], [-1.6600356, 51.0439146], [-1.6610583, 51.0438917], [-1.6625515, 51.0438415], [-1.6655699, 51.0437134], [-1.6662682, 51.0436852]]}}, {"id": "92995182", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 92995182, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7046813, 51.0420041], [-1.7048678, 51.0419959]]}}, {"id": "92995183", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 92995183, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6511028, 51.0437396], [-1.6512054, 51.0437459]]}}, {"id": "92995188", "type": "Feature", "properties": {"electrified": "no", "osmid": 92995188, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6815605, 51.0430206], [-1.6860242, 51.0428226], [-1.6952155, 51.0424148], [-1.6999713, 51.0422038], [-1.7032951, 51.0420566], [-1.7046813, 51.0420041]]}}, {"id": "92995191", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 92995191, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6705621, 51.0434936], [-1.6706782, 51.043489]]}}, {"id": "97536012", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 97536012, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9213788, 51.1272453], [-1.9232123, 51.1274079], [-1.9242522, 51.127496], [-1.9251984, 51.1275499], [-1.9263528, 51.1276006], [-1.9276181, 51.1276351], [-1.9314541, 51.1276425], [-1.932805, 51.1276809], [-1.9339888, 51.1277348], [-1.9352281, 51.1278075], [-1.9365141, 51.1278964], [-1.9379358, 51.1280352], [-1.9395085, 51.1282022]]}}, {"id": "97536014", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 97536014, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9211337, 51.127225], [-1.9213788, 51.1272453]]}}, {"id": "97632132", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 97632132, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.860908, 51.0879749], [-1.861228, 51.0880996]]}}, {"id": "97632148", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 97632148, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.861228, 51.0880996], [-1.8626916, 51.0886698]]}}, {"id": "98775031", "type": "Feature", "properties": {"electrified": "no", "osmid": 98775031, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7799204, 51.0796628], [-1.7802444, 51.0793667], [-1.7805166, 51.079111], [-1.7806306, 51.0789669], [-1.7807981, 51.0787687], [-1.7809659, 51.0785296], [-1.7811925, 51.0781607], [-1.7813933, 51.0777719], [-1.7815761, 51.0773516], [-1.7816926, 51.0769812], [-1.7817925, 51.0766008]]}}, {"id": "98775036", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 98775036, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.785781, 51.0775395], [-1.7853593, 51.0775637], [-1.7849938, 51.0775531], [-1.7845881, 51.0775089], [-1.784259, 51.0774528], [-1.7839764, 51.0773756], [-1.7836796, 51.0772828], [-1.7833945, 51.0771659], [-1.7831243, 51.077026], [-1.7828499, 51.07687], [-1.7826682, 51.0767427], [-1.7824968, 51.076586]]}}, {"id": "98775037", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 98775037, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824968, 51.076586], [-1.7823831, 51.0764756]]}}, {"id": "98775043", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 98775043, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7817925, 51.0766008], [-1.7818088, 51.0765108]]}}, {"id": "98872437", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "20 mph", "osmid": 98872437, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8037737, 51.0707023], [-1.8034688, 51.0707689]]}}, {"id": "98944792", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 98944792, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7986853, 51.0741832], [-1.7984205, 51.0744384]]}}, {"id": "98952535", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "osmid": 98952535, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8176049, 51.072721], [-1.8177524, 51.0727753]]}}, {"id": "99784995", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99784995, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.50334, 51.0018089], [-1.5031688, 51.00161]]}}, {"id": "99784997", "type": "Feature", "properties": {"electrified": "no", "osmid": 99784997, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5031688, 51.00161], [-1.5027369, 51.0011073], [-1.5022256, 51.0004671]]}}, {"id": "99785001", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99785001, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5687795, 51.0361611], [-1.5684153, 51.0361319]]}}, {"id": "99785006", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99785006, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4442051, 50.9972504], [-1.4443881, 50.9972492]]}}, {"id": "99785030", "type": "Feature", "properties": {"electrified": "no", "osmid": 99785030, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5684153, 51.0361319], [-1.5674362, 51.0360565]]}}, {"id": "99785036", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99785036, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5022256, 51.0004671], [-1.5019924, 51.0001572], [-1.5019733, 51.0001319]]}}, {"id": "99785039", "type": "Feature", "properties": {"electrified": "no", "osmid": 99785039, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5019733, 51.0001319], [-1.5015565, 50.9995837], [-1.5012564, 50.9991587], [-1.501054, 50.9988575], [-1.5010222, 50.9988102], [-1.5004333, 50.9979028], [-1.5002101, 50.9975714], [-1.4999658, 50.997244]]}}, {"id": "99788427", "type": "Feature", "properties": {"electrified": "no", "osmid": 99788427, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6217775, 51.0413646], [-1.6196321, 51.0411827], [-1.6062458, 51.0400811], [-1.6047938, 51.0399616], [-1.6036792, 51.0398402], [-1.602781, 51.0397325], [-1.6019021, 51.0396042], [-1.6006829, 51.0394326], [-1.5995875, 51.0392572], [-1.5965673, 51.0387076], [-1.5957185, 51.0385625], [-1.59482, 51.0384129], [-1.5939266, 51.0382781], [-1.5930643, 51.0381594], [-1.5923468, 51.0380699], [-1.5916508, 51.0379951], [-1.5907128, 51.0379036], [-1.5743916, 51.0366043]]}}, {"id": "99788430", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99788430, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6219689, 51.0413789], [-1.6217775, 51.0413646]]}}, {"id": "99788434", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99788434, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5483797, 51.0341903], [-1.5481757, 51.0341483]]}}, {"id": "99791125", "type": "Feature", "properties": {"electrified": "no", "name": "Down Dean", "osmid": 99791125, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7796064, 51.0651281], [-1.7719564, 51.0636555], [-1.7712256, 51.0635034]]}}, {"id": "99791133", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99791133, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821515, 51.0708475], [-1.7821611, 51.0707184]]}}, {"id": "99791134", "type": "Feature", "properties": {"electrified": "no", "osmid": 99791134, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7710065, 51.0634557], [-1.7700183, 51.0632271], [-1.7693861, 51.0630753], [-1.768669, 51.0628838], [-1.7679873, 51.0626967], [-1.7674049, 51.0625235], [-1.7668814, 51.0623586], [-1.7664685, 51.0622242], [-1.7660693, 51.062089], [-1.7653269, 51.0618333], [-1.7646575, 51.0615915], [-1.763973, 51.0613304], [-1.7620425, 51.0605763], [-1.7610357, 51.0602322], [-1.7604155, 51.0600257], [-1.7597617, 51.0598261], [-1.7590986, 51.0596256], [-1.7584167, 51.0594306], [-1.7577353, 51.0592537], [-1.7571142, 51.0590975], [-1.7564334, 51.0589365]]}}, {"id": "99791135", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99791135, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7564334, 51.0589365], [-1.7558584, 51.0588069]]}}, {"id": "99791137", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 99791137, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7712256, 51.0635034], [-1.7710065, 51.0634557]]}}, {"id": "99791138", "type": "Feature", "properties": {"electrified": "no", "osmid": 99791138, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821611, 51.0707184], [-1.7823562, 51.0675191]]}}, {"id": "106925393", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 106925393, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7936784, 51.0766204], [-1.7930322, 51.0767419], [-1.7925021, 51.0768232], [-1.7917986, 51.0769056]]}}, {"id": "108109206", "type": "Feature", "properties": {"name": "Hythe Pier Railway", "osmid": 108109206, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3989421, 50.8708932], [-1.3989786, 50.8708431], [-1.3991154, 50.870745], [-1.3991208, 50.8707297], [-1.3991127, 50.8707179], [-1.3990001, 50.8706586]]}}, {"id": "108541440", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541440, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.426824, 50.8918651], [-1.4270159, 50.891851], [-1.4272585, 50.891839], [-1.427493, 50.8918237], [-1.4275572, 50.8918163], [-1.4281396, 50.8917491], [-1.4308353, 50.8914278], [-1.4345326, 50.8910228], [-1.4346018, 50.8910146], [-1.4352729, 50.8909351], [-1.4355196, 50.8909142], [-1.4357732, 50.8909071], [-1.4359783, 50.8909116], [-1.4362023, 50.8909356], [-1.4362964, 50.8909517], [-1.4364625, 50.8909786], [-1.4366754, 50.8910243], [-1.4368985, 50.8910878], [-1.4370941, 50.8911487], [-1.437308, 50.8912065], [-1.4375798, 50.8912578], [-1.4377894, 50.891283], [-1.4380104, 50.8912981], [-1.43817, 50.891308], [-1.4382998, 50.8913057], [-1.4385212, 50.8912854], [-1.4387774, 50.891255], [-1.4390199, 50.8912084], [-1.4392855, 50.8911433]]}}, {"id": "108541441", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541441, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4418602, 50.8902054], [-1.4413261, 50.8903503], [-1.4411061, 50.8903864], [-1.440837, 50.8904202], [-1.4403343, 50.8904789]]}}, {"id": "108541442", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541442, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4250108, 50.8924093], [-1.4252401, 50.8924178], [-1.425558, 50.8924187], [-1.4258503, 50.8924091], [-1.4261118, 50.8923822], [-1.4265349, 50.892334], [-1.4266858, 50.8923168], [-1.4297529, 50.8919686], [-1.4299097, 50.8919509], [-1.4327154, 50.8916345], [-1.4329703, 50.8915985], [-1.4332157, 50.8915499], [-1.4332779, 50.891533], [-1.4334249, 50.8914931], [-1.4335807, 50.89144], [-1.4339023, 50.8913261]]}}, {"id": "108541443", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541443, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4218164, 50.8949669], [-1.4236965, 50.8941231], [-1.423954, 50.8940172], [-1.4242282, 50.8939251], [-1.424473, 50.8938569], [-1.4247184, 50.8938102], [-1.4249545, 50.893788], [-1.4252737, 50.8937747], [-1.4254177, 50.8937721], [-1.4255928, 50.8937686], [-1.4259335, 50.893772]]}}, {"id": "108541444", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541444, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4342161, 50.8912105], [-1.4339186, 50.8913008], [-1.4336368, 50.8913613], [-1.4333968, 50.8913985], [-1.4332317, 50.8914173], [-1.4331392, 50.8914279], [-1.4305013, 50.8917248], [-1.4290656, 50.8918851], [-1.427689, 50.8920433], [-1.4274033, 50.8920935], [-1.4271397, 50.8921488], [-1.4268735, 50.8922135], [-1.4266048, 50.8922894], [-1.4265296, 50.8923065], [-1.4263726, 50.8923423], [-1.4261118, 50.8923822]]}}, {"id": "108541445", "type": "Feature", "properties": {"electrified": "no", "osmid": 108541445, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4396583, 50.8910526], [-1.4394464, 50.8911052], [-1.4392855, 50.8911433], [-1.4389999, 50.8911963], [-1.4387544, 50.8912174], [-1.4384877, 50.8912284], [-1.4382022, 50.8912189], [-1.4379323, 50.8911913], [-1.4375939, 50.8911348]]}}, {"id": "109080492", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 109080492, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8907182, 51.1184449], [-1.8913809, 51.118784], [-1.8920238, 51.1190532], [-1.8927732, 51.1193142], [-1.8935427, 51.1195215], [-1.8944185, 51.1197232], [-1.8958898, 51.1200231]]}}, {"id": "109080493", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 109080493, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8905495, 51.1183534], [-1.8907182, 51.1184449]]}}, {"id": "109579416", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579416, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4548446, 50.9123151], [-1.4577735, 50.9132808], [-1.457975, 50.9133666], [-1.4580916, 50.9134318], [-1.4582679, 50.9135367]]}}, {"id": "109579417", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579417, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.453239, 50.9121432], [-1.4578523, 50.9136588], [-1.458346, 50.9137888]]}}, {"id": "109579418", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579418, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4532564, 50.9121061], [-1.458346, 50.9137888], [-1.4587075, 50.9139079]]}}, {"id": "109579419", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579419, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4532746, 50.9120748], [-1.4582817, 50.9137235], [-1.4584663, 50.9137997], [-1.4587075, 50.9139079], [-1.4589928, 50.9139994]]}}, {"id": "109579420", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579420, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4622394, 50.9159699], [-1.4619178, 50.9157929], [-1.4616028, 50.9156017], [-1.4613448, 50.9154722], [-1.4608128, 50.9151998], [-1.4605629, 50.9150757], [-1.4603215, 50.9149666], [-1.4601155, 50.9148831], [-1.4597153, 50.9147391]]}}, {"id": "109579421", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579421, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4548775, 50.9122855], [-1.4577193, 50.9132158], [-1.4578742, 50.913271], [-1.4580272, 50.9133362], [-1.4581321, 50.9133986], [-1.4582843, 50.9135055], [-1.4585399, 50.9137062], [-1.4587944, 50.9138911], [-1.4589928, 50.9139994], [-1.459265, 50.9140986], [-1.4596394, 50.9142316], [-1.4599483, 50.9143449], [-1.4601822, 50.9144362], [-1.4603844, 50.9145414], [-1.4606565, 50.9147091], [-1.4610949, 50.9150286], [-1.461934, 50.9156805], [-1.462229, 50.9159126]]}}, {"id": "109579422", "type": "Feature", "properties": {"electrified": "no", "osmid": 109579422, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4516501, 50.912279], [-1.4520322, 50.9123011], [-1.4524184, 50.9123234], [-1.4527188, 50.9123564], [-1.4530031, 50.9124029], [-1.4532713, 50.9124688], [-1.453561, 50.9125593], [-1.4597758, 50.9146069], [-1.4600198, 50.9146901], [-1.4602451, 50.9147797], [-1.4604382, 50.9148786], [-1.4606179, 50.9149801]]}}, {"id": "110002029", "type": "Feature", "properties": {"osmid": 110002029, "railway": "monorail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4532665, 50.8217678], [-1.4533577, 50.8219483], [-1.4533737, 50.8219677], [-1.4534019, 50.8219881], [-1.4534261, 50.8220093]]}}, {"id": "111802227", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 111802227, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.610086, 50.7846689], [-1.6025817, 50.7884226]]}}, {"id": "111802228", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 111802228, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5410364, 50.8285263], [-1.5463687, 50.8278811], [-1.546966, 50.8278014], [-1.5474661, 50.8277313], [-1.5479949, 50.8276483], [-1.5485115, 50.8275589], [-1.5490742, 50.8274536], [-1.549627, 50.8273385], [-1.5501138, 50.8272282], [-1.5506659, 50.8270885], [-1.5512092, 50.8269432], [-1.5517028, 50.8268035], [-1.5522678, 50.8266326], [-1.5528185, 50.8264563], [-1.5532775, 50.8262947], [-1.5537816, 50.8261092], [-1.554298, 50.8259091], [-1.5547825, 50.8257167], [-1.5553092, 50.8254915], [-1.5558805, 50.8252348], [-1.5563498, 50.8250011], [-1.5568287, 50.8247518], [-1.5572615, 50.8245149], [-1.5576349, 50.8242922]]}}, {"id": "111802234", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 111802234, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6025817, 50.7884226], [-1.6024083, 50.7885094]]}}, {"id": "111802238", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 111802238, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5576349, 50.8242922], [-1.5577818, 50.8242049]]}}, {"id": "125925562", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925562, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7745343, 50.7414069], [-1.7715908, 50.7419708]]}}, {"id": "125925585", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925585, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7437068, 50.7477035], [-1.7302086, 50.7505908], [-1.7294835, 50.7507472], [-1.728758, 50.7508975], [-1.7279783, 50.7510389], [-1.7272176, 50.7511576], [-1.7263957, 50.7512725], [-1.7255382, 50.7513874], [-1.7245059, 50.751522]]}}, {"id": "125925592", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925592, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7245059, 50.751522], [-1.7236339, 50.7516279]]}}, {"id": "125925599", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925599, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7588197, 50.7445336], [-1.756674, 50.7449864]]}}, {"id": "125925608", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925608, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.77465, 50.7413847], [-1.7745343, 50.7414069]]}}, {"id": "125925623", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925623, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7683455, 50.742601], [-1.7628737, 50.7436847], [-1.762116, 50.7438375], [-1.7613948, 50.7439883], [-1.7606031, 50.7441549], [-1.7590511, 50.7444845]]}}, {"id": "125925630", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925630, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7715908, 50.7419708], [-1.7711086, 50.7420652]]}}, {"id": "125925636", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925636, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.756674, 50.7449864], [-1.7564405, 50.7450346]]}}, {"id": "125925637", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925637, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7590511, 50.7444845], [-1.7588197, 50.7445336]]}}, {"id": "125925641", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 125925641, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7790741, 50.7405279], [-1.77465, 50.7413847]]}}, {"id": "126137719", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 126137719, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.486119, 50.9035084], [-1.4857095, 50.9033153]]}}, {"id": "127054801", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "Waterloo - Weymouth", "osmid": 127054801, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5408685, 50.8285462], [-1.5410364, 50.8285263]]}}, {"id": "127054805", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "Waterloo - Weymouth", "osmid": 127054805, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5403627, 50.8286079], [-1.5405131, 50.8285899]]}}, {"id": "127054806", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127054806, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5405131, 50.8285899], [-1.5408685, 50.8285462]]}}, {"id": "127055046", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127055046, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5623303, 50.8218926], [-1.5624712, 50.821836]]}}, {"id": "127055051", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127055051, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5606937, 50.8225942], [-1.56086, 50.8225162]]}}, {"id": "127055053", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127055053, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5577818, 50.8242049], [-1.5587008, 50.8236571], [-1.5591662, 50.8233909], [-1.5596906, 50.823108], [-1.5601224, 50.8228819], [-1.5606937, 50.8225942]]}}, {"id": "127055055", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127055055, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.56086, 50.8225162], [-1.5613281, 50.8223104], [-1.561803, 50.8221113], [-1.5623303, 50.8218926]]}}, {"id": "127065161", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 127065161, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5084774, 50.8672192], [-1.507535, 50.8639622]]}}, {"id": "127065162", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "Waterloo - Weymouth", "osmid": 127065162, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.507535, 50.8639622], [-1.5075113, 50.8638743]]}}, {"id": "127065166", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "Waterloo - Weymouth", "osmid": 127065166, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5085226, 50.8673733], [-1.5084774, 50.8672192]]}}, {"id": "131388434", "type": "Feature", "properties": {"electrified": "no", "osmid": 131388434, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4251724, 50.9040716], [-1.4283116, 50.905112], [-1.4300215, 50.9056786], [-1.437851, 50.9082733], [-1.4383848, 50.9084501], [-1.4384824, 50.9084886], [-1.4387049, 50.9085939], [-1.4393979, 50.9089036], [-1.4396043, 50.9090142], [-1.4397345, 50.9091005], [-1.4398774, 50.9092154], [-1.4400172, 50.9093601], [-1.4401493, 50.9095143], [-1.4403427, 50.9097604]]}}, {"id": "131388435", "type": "Feature", "properties": {"electrified": "no", "osmid": 131388435, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4306169, 50.9098936], [-1.4341387, 50.9112448], [-1.4342448, 50.9112843], [-1.4345051, 50.9113607], [-1.4347017, 50.9114051], [-1.4348881, 50.9114581], [-1.4350907, 50.9115223], [-1.4355262, 50.9117077], [-1.4357765, 50.9117855], [-1.4360627, 50.9118489], [-1.43641, 50.9119147], [-1.4368753, 50.911995], [-1.4374092, 50.9120766], [-1.4376675, 50.91211], [-1.4379139, 50.9121236], [-1.4381342, 50.9121202], [-1.4383711, 50.9120995], [-1.4385934, 50.9120679], [-1.4387971, 50.9120308], [-1.4389947, 50.9119804], [-1.4391729, 50.9119224], [-1.4395377, 50.911755], [-1.4398971, 50.9115656], [-1.4400501, 50.9114569], [-1.440206, 50.9113428]]}}, {"id": "131388436", "type": "Feature", "properties": {"osmid": 131388436, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4305845, 50.9099454], [-1.4337007, 50.9111357], [-1.4339051, 50.9112071], [-1.4340583, 50.9112528], [-1.4341865, 50.9112838], [-1.4345051, 50.9113607]]}}, {"id": "137701570", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 137701570, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9983745, 51.0765543], [-2.0012252, 51.0761896], [-2.0045382, 51.0757658], [-2.0052333, 51.075662], [-2.0058777, 51.0755581]]}}, {"id": "137701584", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 137701584, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9982405, 51.0765684], [-1.9983745, 51.0765543]]}}, {"id": "137826135", "type": "Feature", "properties": {"electrified": "no", "osmid": 137826135, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8199348, 51.0739247], [-1.8182183, 51.0731494], [-1.8176872, 51.0729308]]}}, {"id": "137828841", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 137828841, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8176872, 51.0729308], [-1.8175102, 51.0728628]]}}, {"id": "137830675", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 137830675, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8068165, 51.0703691], [-1.8072994, 51.0704009], [-1.8077419, 51.0704567], [-1.8092002, 51.0706504], [-1.8098662, 51.0707931], [-1.810603, 51.0709987]]}}, {"id": "137830677", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 137830677, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8098662, 51.0707931], [-1.8092384, 51.0706247], [-1.8076954, 51.0704158], [-1.806821, 51.0703252]]}}, {"id": "137830678", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "30 mph", "osmid": 137830678, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8034154, 51.0707466], [-1.8037265, 51.0706795]]}}, {"id": "137830679", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "15 mph", "osmid": 137830679, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8036699, 51.0706614], [-1.8033848, 51.0707244]]}}, {"id": "137830680", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 137830680, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8015545, 51.0713861], [-1.8019542, 51.0711716], [-1.8023283, 51.0709991]]}}, {"id": "137830681", "type": "Feature", "properties": {"osmid": 137830681, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8092384, 51.0706247], [-1.8097138, 51.0707114], [-1.810084, 51.0707924], [-1.8104407, 51.0708733], [-1.8107974, 51.0709508], [-1.8116718, 51.0711155]]}}, {"id": "137830682", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 137830682, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8041132, 51.0706051], [-1.8044848, 51.0705514], [-1.8048806, 51.0705142], [-1.8051889, 51.0704937], [-1.8058461, 51.0704825], [-1.8065511, 51.0705004], [-1.8072899, 51.0705529], [-1.8077498, 51.0705892], [-1.8084945, 51.0706811], [-1.8090741, 51.0707681], [-1.8104943, 51.0710013]]}}, {"id": "137831799", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831799, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.805564, 51.0708353], [-1.808914, 51.0709532], [-1.8091898, 51.07096], [-1.809615, 51.0709842]]}}, {"id": "137831800", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831800, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8037961, 51.0707298], [-1.8040914, 51.0706691], [-1.8043682, 51.0706324], [-1.8046297, 51.0706126], [-1.8049784, 51.0706163], [-1.8053393, 51.0706311], [-1.8083043, 51.0707527], [-1.8087013, 51.0707782], [-1.8092572, 51.0708374]]}}, {"id": "137831801", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 137831801, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8035064, 51.0707872], [-1.8037961, 51.0707298]]}}, {"id": "137831802", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831802, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8060339, 51.0711563], [-1.8074575, 51.0712227], [-1.8079777, 51.0712061], [-1.808708, 51.0711646], [-1.8089175, 51.0711525], [-1.8091581, 51.0711336]]}}, {"id": "137831804", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831804, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8024222, 51.0710572], [-1.8028934, 51.0709299], [-1.8031947, 51.0708646], [-1.8035064, 51.0707872]]}}, {"id": "137831805", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831805, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8055532, 51.0709179], [-1.8088871, 51.0710474], [-1.8092418, 51.0710528], [-1.8095926, 51.0710548], [-1.8099631, 51.0710741]]}}, {"id": "137831946", "type": "Feature", "properties": {"osmid": 137831946, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8140939, 51.071883], [-1.8147309, 51.0720776]]}}, {"id": "137831947", "type": "Feature", "properties": {"electrified": "no", "osmid": 137831947, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8114772, 51.0713209], [-1.8120251, 51.0714223], [-1.8140939, 51.071883], [-1.8151069, 51.0721332]]}}, {"id": "137883108", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 137883108, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7984748, 51.0744514], [-1.798727, 51.0742056]]}}, {"id": "137883109", "type": "Feature", "properties": {"electrified": "no", "osmid": 137883109, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7939853, 51.0765828], [-1.7944078, 51.0764743], [-1.7948477, 51.0763446], [-1.7954868, 51.0761277], [-1.7960413, 51.0759054], [-1.7964087, 51.0757349], [-1.7967225, 51.0755746], [-1.7970291, 51.0754216]]}}, {"id": "137883112", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 137883112, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7984205, 51.0744384], [-1.7981481, 51.074662]]}}, {"id": "137883114", "type": "Feature", "properties": {"electrified": "no", "osmid": 137883114, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7981905, 51.0746758], [-1.7982668, 51.0746205], [-1.7984967, 51.0744566]]}}, {"id": "137883116", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 137883116, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7978556, 51.0749255], [-1.7980261, 51.0747975], [-1.7981905, 51.0746758]]}}, {"id": "137883118", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 137883118, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7981481, 51.074662], [-1.7979121, 51.0748396]]}}, {"id": "153173928", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153173928, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5517446, 50.7714375], [-1.5506736, 50.7708579]]}}, {"id": "153173929", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153173929, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5506736, 50.7708579], [-1.5505839, 50.7708092]]}}, {"id": "153173930", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153173930, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5520154, 50.7715851], [-1.5517446, 50.7714375]]}}, {"id": "153173931", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153173931, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5353374, 50.7595643], [-1.5350915, 50.7594814], [-1.5348751, 50.7594244], [-1.5346512, 50.7593773], [-1.5343948, 50.7593407], [-1.5341323, 50.759315], [-1.533893, 50.7593028], [-1.5335848, 50.7593032], [-1.533157, 50.7593136], [-1.5324722, 50.7593394], [-1.5322035, 50.7593448], [-1.5319451, 50.7593432], [-1.5316831, 50.7593246], [-1.531431, 50.7592916], [-1.5311943, 50.7592484], [-1.5309708, 50.7591915], [-1.5307537, 50.7591199], [-1.5305786, 50.7590501], [-1.5304158, 50.758973], [-1.5302741, 50.758892], [-1.5301106, 50.7587873], [-1.5299357, 50.7586628], [-1.5297801, 50.7585211], [-1.52964, 50.7583552], [-1.5295391, 50.7581738], [-1.5293235, 50.7576921], [-1.5292021, 50.7574403]]}}, {"id": "153173932", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153173932, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5505839, 50.7708092], [-1.5470057, 50.7688979], [-1.5466395, 50.7686945], [-1.5462724, 50.7684697], [-1.5459181, 50.7682445], [-1.5455971, 50.7680167], [-1.5452752, 50.7677702], [-1.5449676, 50.7675118], [-1.5446713, 50.7672443], [-1.5443883, 50.7669547], [-1.5436842, 50.7661624], [-1.5434571, 50.7659078], [-1.5432542, 50.7657048], [-1.5432233, 50.7656746], [-1.5430048, 50.7654832], [-1.5427561, 50.7652814], [-1.5425126, 50.7651127], [-1.5422667, 50.7649585], [-1.542029, 50.7648118], [-1.5390189, 50.7630125], [-1.5386589, 50.7627885], [-1.5383658, 50.7625878], [-1.5382485, 50.7624985], [-1.5380801, 50.7623477], [-1.537864, 50.762163], [-1.5376804, 50.7619757], [-1.5375048, 50.7617686], [-1.537364, 50.7615703], [-1.5372393, 50.7613549], [-1.5371052, 50.7610799], [-1.5369671, 50.7608235], [-1.5367847, 50.7605683], [-1.5365822, 50.7603404], [-1.5363323, 50.7601143], [-1.5361248, 50.7599527]]}}, {"id": "153173933", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153173933, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5361248, 50.7599527], [-1.5358928, 50.7598112], [-1.5356206, 50.7596765], [-1.5353374, 50.7595643]]}}, {"id": "153408542", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 153408542, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5624712, 50.821836], [-1.5683045, 50.8196051]]}}, {"id": "153408544", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153408544, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5845679, 50.8028417], [-1.5846083, 50.8026978]]}}, {"id": "153408546", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 153408546, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5773602, 50.8125498], [-1.577026, 50.813111], [-1.5768943, 50.8133366], [-1.5767084, 50.8136178], [-1.5765013, 50.8138894], [-1.5761483, 50.8143243], [-1.5757543, 50.8147623], [-1.5751319, 50.8154383], [-1.5748638, 50.8157202], [-1.5745984, 50.815984], [-1.5742032, 50.816351], [-1.5739618, 50.8165598], [-1.5735616, 50.8168437], [-1.5733159, 50.8169868], [-1.5730525, 50.8171313], [-1.5726711, 50.8173183], [-1.5725169, 50.8174019], [-1.5722675, 50.8175486]]}}, {"id": "153674405", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153674405, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5846083, 50.8026978], [-1.5846829, 50.8024067], [-1.5847198, 50.8021822], [-1.5847477, 50.8019232], [-1.5847596, 50.8016957], [-1.5847493, 50.8014377], [-1.5847134, 50.8011181], [-1.5846658, 50.800825], [-1.5846119, 50.8005003], [-1.5845571, 50.8002177], [-1.5844947, 50.7998952], [-1.5844149, 50.7995998], [-1.5843136, 50.7992916], [-1.5841819, 50.7989504], [-1.5840475, 50.7986469], [-1.5839087, 50.7983756], [-1.5837371, 50.7980638], [-1.5813278, 50.7944186]]}}, {"id": "153674411", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153674411, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5811986, 50.7942219], [-1.5805395, 50.7932258], [-1.580331, 50.7929525], [-1.5800948, 50.7926613], [-1.5798512, 50.7923904], [-1.5795526, 50.7920939], [-1.5792078, 50.7917762], [-1.5788764, 50.7914957], [-1.5785257, 50.7912083], [-1.5728596, 50.7868927], [-1.5725599, 50.7866565], [-1.5722652, 50.7864135], [-1.5719981, 50.786174], [-1.5717119, 50.7859014], [-1.5714728, 50.7856517], [-1.5712276, 50.7853783], [-1.5709956, 50.785096], [-1.5707827, 50.7848107], [-1.5705775, 50.7845071], [-1.5703732, 50.7841721], [-1.5701906, 50.783832], [-1.5699738, 50.7833925]]}}, {"id": "153674414", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153674414, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5813278, 50.7944186], [-1.5811986, 50.7942219]]}}, {"id": "153674419", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "osmid": 153674419, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5699738, 50.7833925], [-1.5699261, 50.7832725]]}}, {"id": "153674422", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 153674422, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5699261, 50.7832725], [-1.5698026, 50.7829208], [-1.5696978, 50.7825921], [-1.5696218, 50.7822592], [-1.5695609, 50.7819179], [-1.5695231, 50.7816125], [-1.5695005, 50.7812891], [-1.5694925, 50.7801495], [-1.5694735, 50.7798242], [-1.5694331, 50.7795118], [-1.5693839, 50.7792362], [-1.5693164, 50.7789566], [-1.5692355, 50.7786786], [-1.5691257, 50.7783807], [-1.5690042, 50.7780887], [-1.5688456, 50.7777735], [-1.5686755, 50.777481], [-1.5684799, 50.7771685], [-1.5682495, 50.7768429], [-1.5679925, 50.7765168], [-1.5677177, 50.7761928], [-1.5674396, 50.775898], [-1.5670681, 50.7755365], [-1.566732, 50.7752171], [-1.5663932, 50.7749468], [-1.5660012, 50.7746844], [-1.565533, 50.7744099], [-1.5651433, 50.7742146], [-1.5647187, 50.7740364], [-1.5642359, 50.7738698], [-1.5637481, 50.7737342], [-1.5632207, 50.7736286], [-1.5627327, 50.7735627], [-1.562245, 50.7735194], [-1.5617481, 50.7735053], [-1.561179, 50.7735167], [-1.5592625, 50.7736388], [-1.5587351, 50.7736596], [-1.5582282, 50.773664], [-1.5577489, 50.7736489], [-1.5572503, 50.7736039], [-1.5567792, 50.7735448], [-1.5562999, 50.7734543], [-1.555819, 50.7733439], [-1.5554126, 50.7732256], [-1.5549579, 50.7730717], [-1.5545341, 50.7729039], [-1.5541354, 50.7727155], [-1.5537308, 50.7725061], [-1.5520154, 50.7715851]]}}, {"id": "171928076", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 171928076, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5724793, 50.8173614], [-1.5727018, 50.8171835], [-1.572887, 50.8170096]]}}, {"id": "191277699", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 191277699, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8677853, 51.0905561], [-1.8680219, 51.0906601]]}}, {"id": "191277700", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 191277700, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8680219, 51.0906601], [-1.8687908, 51.0910452], [-1.8691194, 51.0912748], [-1.8694192, 51.0914062], [-1.8698175, 51.0916589], [-1.8701004, 51.0918384], [-1.8706636, 51.0922255], [-1.8712618, 51.0926745], [-1.8718223, 51.0931441], [-1.87227, 51.0935645], [-1.8726172, 51.093929], [-1.872949, 51.0943111], [-1.8732638, 51.0947099], [-1.8754246, 51.0976549], [-1.8757861, 51.0981065], [-1.8761474, 51.0985348], [-1.8765189, 51.0989621], [-1.8773413, 51.0998193]]}}, {"id": "191277701", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 191277701, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8626916, 51.0886698], [-1.8629703, 51.0887762]]}}, {"id": "191277702", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 191277702, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8629703, 51.0887762], [-1.8649237, 51.0894558], [-1.8657843, 51.0897684], [-1.8668254, 51.0901595], [-1.8677853, 51.0905561]]}}, {"id": "191277989", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 191277989, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8678312, 51.0837508], [-1.8685885, 51.0836024]]}}, {"id": "191277990", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 191277990, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8675646, 51.0838008], [-1.8678312, 51.0837508]]}}, {"id": "191310830", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 191310830, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9518956, 51.1306816], [-1.9521405, 51.1307451]]}}, {"id": "191310832", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 191310832, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9521405, 51.1307451], [-1.9529595, 51.1309457], [-1.9538411, 51.1311468], [-1.9548043, 51.131345], [-1.9560164, 51.1315872], [-1.9575123, 51.1318391]]}}, {"id": "192114275", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 192114275, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4113804, 50.9073396], [-1.412132, 50.9073233], [-1.4124708, 50.9073288], [-1.4127776, 50.9073349], [-1.4133021, 50.9073551], [-1.4141674, 50.9074105], [-1.4142796, 50.9074152]]}}, {"id": "192118490", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "25 mph", "name": "Southampton Tunnel", "osmid": 192118490, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4011798, 50.9066778], [-1.4014957, 50.9066798], [-1.4018172, 50.9066917], [-1.4022019, 50.9067163], [-1.4080604, 50.9071338]]}}, {"id": "192118492", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 192118492, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4165141, 50.9074523], [-1.4168421, 50.9074414]]}}, {"id": "193082917", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "80 mph", "osmid": 193082917, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7484745, 51.1083702], [-1.7483184, 51.108494]]}}, {"id": "193082918", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "80 mph", "osmid": 193082918, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7405263, 51.1144278], [-1.7403862, 51.1145334]]}}, {"id": "193082919", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 193082919, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7483184, 51.108494], [-1.7405263, 51.1144278]]}}, {"id": "193082920", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 193082920, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7550907, 51.1018435], [-1.7538447, 51.103367], [-1.7531876, 51.1041279], [-1.7525338, 51.1048786], [-1.7519507, 51.105472], [-1.7514388, 51.1059809], [-1.7508681, 51.1065034], [-1.7484745, 51.1083702]]}}, {"id": "195664097", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 195664097, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9185733, 51.0842203], [-1.9188416, 51.084246]]}}, {"id": "195664098", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 195664098, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9188416, 51.084246], [-1.9253978, 51.0849153], [-1.9263902, 51.0850019]]}}, {"id": "198613013", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 198613013, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8826524, 51.0808937], [-1.8827607, 51.080875]]}}, {"id": "198613014", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 198613014, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8688268, 51.0835564], [-1.8800195, 51.0813722]]}}, {"id": "199091786", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 199091786, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8877732, 51.1152688], [-1.8880447, 51.1158255], [-1.8883002, 51.116285], [-1.8886026, 51.1167216], [-1.8889574, 51.1171188], [-1.8894277, 51.1175569], [-1.8899729, 51.1179736], [-1.8905495, 51.1183534]]}}, {"id": "199091787", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 199091787, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.887602, 51.1149148], [-1.887652, 51.1150203]]}}, {"id": "210809499", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 210809499, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7403862, 51.1145334], [-1.7261981, 51.1253274], [-1.7249495, 51.126255], [-1.7231607, 51.1276075]]}}, {"id": "210809516", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 210809516, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7133231, 51.1335288], [-1.713174, 51.1335972]]}}, {"id": "215108995", "type": "Feature", "properties": {"electrified": "no", "name": "Romsey Up Sidings", "osmid": 215108995, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4973484, 50.9949274], [-1.4967814, 50.9945384], [-1.4962315, 50.9941922], [-1.4957298, 50.9939063], [-1.4951679, 50.9935971], [-1.4949862, 50.9934783]]}}, {"id": "227223914", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "30 mph", "name": "South Western Main Line", "osmid": 227223914, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.401176, 50.906705], [-1.4009281, 50.9067138], [-1.4006691, 50.906736], [-1.400469, 50.9067557], [-1.4002675, 50.9067807], [-1.4000661, 50.9068107], [-1.3997657, 50.9068605], [-1.39943, 50.9069153], [-1.399063, 50.9069713], [-1.3986645, 50.9070153], [-1.3982555, 50.9070442], [-1.3952698, 50.9072284], [-1.3950422, 50.9072374], [-1.3947122, 50.9072466], [-1.3944374, 50.9072527], [-1.3942579, 50.9072637], [-1.3940714, 50.9072804], [-1.3939045, 50.9073049], [-1.3937442, 50.9073375], [-1.393598, 50.9073739], [-1.3934465, 50.9074195], [-1.3932996, 50.9074715], [-1.3931528, 50.9075371], [-1.3930352, 50.9075929], [-1.3928949, 50.9076709], [-1.3927719, 50.907757], [-1.3925484, 50.9079442], [-1.3923845, 50.9081418], [-1.3922856, 50.9083204], [-1.3922152, 50.9085168], [-1.3921779, 50.9087159], [-1.3921509, 50.9089193], [-1.3921402, 50.9090964]]}}, {"id": "236588274", "type": "Feature", "properties": {"electrified": "no", "osmid": 236588274, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3921603, 50.908236], [-1.392214, 50.9080257], [-1.3922596, 50.907748], [-1.3925563, 50.905534], [-1.3929217, 50.902623], [-1.3929484, 50.9024341], [-1.3929751, 50.9022925], [-1.3930037, 50.9021677], [-1.3930992, 50.9018121], [-1.3932038, 50.9014395], [-1.3933221, 50.9010694], [-1.3934776, 50.9006029], [-1.3936887, 50.9000543], [-1.3938948, 50.8995548], [-1.3941309, 50.8990162], [-1.3942622, 50.8987468], [-1.394404, 50.8984762], [-1.3945581, 50.8982629], [-1.3947546, 50.8980648], [-1.3950737, 50.8977963], [-1.3955335, 50.8974204], [-1.3958952, 50.8971739], [-1.3961898, 50.8970155], [-1.3964024, 50.896911]]}}, {"id": "236589935", "type": "Feature", "properties": {"electrified": "no", "osmid": 236589935, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3974333, 50.8924612], [-1.3974545, 50.8923189], [-1.3974723, 50.8922072], [-1.3974964, 50.8920929], [-1.3982656, 50.889901], [-1.3982942, 50.8897938], [-1.3983084, 50.8896943], [-1.3983035, 50.8895251], [-1.3982697, 50.8893539], [-1.3982249, 50.8892494], [-1.3970374, 50.8874723], [-1.3966585, 50.8869243], [-1.396513, 50.8866972], [-1.3962316, 50.8862631], [-1.3959918, 50.8858932], [-1.394467, 50.8836372]]}}, {"id": "236589940", "type": "Feature", "properties": {"electrified": "no", "osmid": 236589940, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3974333, 50.8924612], [-1.397484, 50.892274], [-1.3975184, 50.8921748], [-1.3982615, 50.8900586], [-1.3983149, 50.8899084], [-1.3983473, 50.8897709], [-1.39836, 50.8896633], [-1.3983584, 50.8895289], [-1.3983271, 50.8893846], [-1.3982576, 50.8892103], [-1.3981571, 50.8890394], [-1.3967073, 50.8869137], [-1.3965849, 50.8867273], [-1.3963202, 50.8863099]]}}, {"id": "236614889", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236614889, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4110311, 50.9073759], [-1.4121037, 50.9074254]]}}, {"id": "236614891", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 236614891, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4085824, 50.90717], [-1.4096828, 50.907247], [-1.4098775, 50.9072609], [-1.410591, 50.907312], [-1.4113804, 50.9073396], [-1.4120258, 50.9073511], [-1.4126209, 50.9073627], [-1.4132678, 50.9073891], [-1.4142781, 50.9074416]]}}, {"id": "236614897", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 236614897, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4085824, 50.90717], [-1.4096805, 50.9072191], [-1.4104331, 50.9072636], [-1.4107413, 50.9072825], [-1.4110994, 50.9073028], [-1.4115616, 50.9073153], [-1.412132, 50.9073233]]}}, {"id": "236614901", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236614901, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4087741, 50.9072152], [-1.4096828, 50.907247]]}}, {"id": "236761516", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 236761516, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4178456, 50.9074984], [-1.4170329, 50.9075794]]}}, {"id": "236761519", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 236761519, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4165633, 50.9076022], [-1.4158832, 50.9076237], [-1.4153907, 50.907625], [-1.4147902, 50.9076149], [-1.4142452, 50.907597], [-1.413824, 50.9075734], [-1.4132023, 50.907532], [-1.4126113, 50.9074926], [-1.4120108, 50.907449], [-1.4110311, 50.9073759], [-1.4107663, 50.9073583], [-1.4096745, 50.9072799], [-1.4087741, 50.9072152]]}}, {"id": "236761520", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 236761520, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4186468, 50.9074419], [-1.418171, 50.9074755], [-1.4178456, 50.9074984], [-1.4165677, 50.9075742]]}}, {"id": "236761521", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236761521, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.418171, 50.9074755], [-1.4186804, 50.9074215], [-1.4190672, 50.9073805]]}}, {"id": "236761522", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236761522, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4192937, 50.9073734], [-1.4199456, 50.9073393]]}}, {"id": "236761523", "type": "Feature", "properties": {"electrified": "no", "osmid": 236761523, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4168259, 50.9073925], [-1.417185, 50.9073913], [-1.4175029, 50.9073791], [-1.4178425, 50.9073688], [-1.4188537, 50.9073189], [-1.4192641, 50.9073028], [-1.4196718, 50.9072935], [-1.4200057, 50.9072935], [-1.4203919, 50.9073071], [-1.4206509, 50.9073218], [-1.4209619, 50.9073451]]}}, {"id": "236761525", "type": "Feature", "properties": {"electrified": "no", "osmid": 236761525, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4175029, 50.9073791], [-1.4171733, 50.9073756], [-1.4169292, 50.907362], [-1.4166047, 50.9073426], [-1.4163378, 50.9073324], [-1.4157289, 50.9073155]]}}, {"id": "236761526", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 236761526, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4165677, 50.9075742], [-1.4161296, 50.9075874], [-1.4157582, 50.9075937], [-1.4153668, 50.9075944], [-1.4149378, 50.9075831], [-1.414538, 50.9075729], [-1.4141898, 50.9075619], [-1.4132177, 50.9075026], [-1.4125391, 50.9074557], [-1.4121037, 50.9074254], [-1.4112363, 50.9073613], [-1.410591, 50.907312]]}}, {"id": "236761527", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236761527, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4182718, 50.907418], [-1.4186804, 50.9074215], [-1.4190875, 50.907425]]}}, {"id": "236761528", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 236761528, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4147494, 50.9073238], [-1.4154759, 50.9073438], [-1.4163935, 50.9073762], [-1.4165289, 50.9073816], [-1.4168259, 50.9073925], [-1.417565, 50.9074175], [-1.4178009, 50.9074271], [-1.4180598, 50.9074301]]}}, {"id": "236763131", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "Up Goods Loop", "osmid": 236763131, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4282071, 50.9094383], [-1.4277509, 50.9093135], [-1.4273902, 50.9092139], [-1.4241752, 50.9081476], [-1.4237058, 50.9080073], [-1.4232109, 50.9078796], [-1.4227322, 50.9077713], [-1.4222547, 50.9076859], [-1.4218082, 50.9076183], [-1.4212452, 50.9075545], [-1.4208882, 50.9075202], [-1.4205287, 50.9074779], [-1.4201454, 50.9074465]]}}, {"id": "236763133", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "15 mph", "osmid": 236763133, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4201194, 50.9073409], [-1.4205462, 50.9073367], [-1.4209619, 50.9073451]]}}, {"id": "236763134", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236763134, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4275864, 50.9090702], [-1.4279129, 50.9091987], [-1.4283224, 50.909363]]}}, {"id": "236763135", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236763135, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4273902, 50.9092139], [-1.4278096, 50.9093713]]}}, {"id": "236763136", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 236763136, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4200771, 50.9074441], [-1.4192971, 50.907417]]}}, {"id": "236836376", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 236836376, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4316666, 50.9105078], [-1.4312072, 50.910353], [-1.4308023, 50.9102222]]}}, {"id": "236838201", "type": "Feature", "properties": {"electrified": "no", "osmid": 236838201, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4431471, 50.9123064], [-1.4428076, 50.9124531], [-1.4426118, 50.9125241], [-1.4423973, 50.9125842], [-1.4422041, 50.9126205], [-1.4419869, 50.9126527], [-1.4417307, 50.9126687], [-1.4414879, 50.912667], [-1.4367655, 50.9124941], [-1.4365527, 50.9124743], [-1.4363806, 50.9124459], [-1.436213, 50.912407], [-1.4360149, 50.9123517], [-1.435812, 50.912281], [-1.435521, 50.9121593], [-1.4350888, 50.911991]]}}, {"id": "236838202", "type": "Feature", "properties": {"electrified": "no", "osmid": 236838202, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4427825, 50.91243], [-1.4426199, 50.9124709], [-1.4424643, 50.912503], [-1.4422698, 50.9125444], [-1.4420821, 50.9125791], [-1.4418917, 50.9126019], [-1.4417079, 50.9126087], [-1.4414497, 50.9126047], [-1.4367507, 50.9124315], [-1.4365147, 50.9124104], [-1.4363243, 50.9123732], [-1.4360507, 50.9123021], [-1.4355746, 50.9121567]]}}, {"id": "236838203", "type": "Feature", "properties": {"electrified": "no", "osmid": 236838203, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4374681, 50.9123962], [-1.4364423, 50.9123098], [-1.4361754, 50.9122802], [-1.4358737, 50.9122277], [-1.4355746, 50.9121567], [-1.4350888, 50.911991], [-1.4348035, 50.9118931], [-1.434341, 50.9117372]]}}, {"id": "236839401", "type": "Feature", "properties": {"electrified": "no", "osmid": 236839401, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4407214, 50.912278], [-1.4412749, 50.9122243], [-1.4438627, 50.9119283], [-1.444358, 50.9118819], [-1.4448706, 50.9118368], [-1.4453181, 50.9117995], [-1.4458031, 50.9117662], [-1.4461725, 50.9117518], [-1.4465411, 50.9117421], [-1.4469489, 50.911743], [-1.4473167, 50.9117477], [-1.4476574, 50.9117641], [-1.447995, 50.9117828], [-1.4483407, 50.91181], [-1.4486276, 50.9118353], [-1.4488926, 50.9118651], [-1.4491626, 50.9119025], [-1.4496536, 50.9119746], [-1.4499082, 50.9120162], [-1.4502532, 50.9120837], [-1.4507463, 50.9121806], [-1.4509227, 50.912222]]}}, {"id": "236839741", "type": "Feature", "properties": {"electrified": "no", "osmid": 236839741, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4379175, 50.9122252], [-1.4383829, 50.9122523], [-1.4388978, 50.9122649], [-1.4393558, 50.9122703], [-1.4398393, 50.9122624], [-1.4402953, 50.9122396], [-1.4407553, 50.9122134], [-1.4414152, 50.9121625], [-1.4419395, 50.9121102], [-1.4434965, 50.9119377], [-1.444108, 50.9118734], [-1.4445694, 50.9118303], [-1.4450186, 50.9117931], [-1.4454049, 50.9117635], [-1.4458381, 50.9117356], [-1.4463678, 50.9117162], [-1.4469244, 50.9117128], [-1.4473924, 50.9117238], [-1.4479288, 50.9117491], [-1.44824, 50.9117709], [-1.4485882, 50.9117996], [-1.4489146, 50.9118379], [-1.4491617, 50.9118807], [-1.4496536, 50.9119746]]}}, {"id": "236840669", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 236840669, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4508937, 50.9122677], [-1.4510196, 50.9122957]]}}, {"id": "236840670", "type": "Feature", "properties": {"electrified": "no", "osmid": 236840670, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4459976, 50.9118092], [-1.4468036, 50.9117615], [-1.4469997, 50.9117537], [-1.4473167, 50.9117477]]}}, {"id": "236840671", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 236840671, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4427629, 50.9121091], [-1.4442, 50.9119564], [-1.4446297, 50.9119115], [-1.4450129, 50.9118747], [-1.4453499, 50.9118489], [-1.4456773, 50.9118242], [-1.4459976, 50.9118092], [-1.4465529, 50.9117939], [-1.4470992, 50.9117952], [-1.4476933, 50.9118211], [-1.4481745, 50.9118487], [-1.4485586, 50.9118829], [-1.4489023, 50.9119202], [-1.4494934, 50.9119993], [-1.4501557, 50.9121144], [-1.4506633, 50.9122196], [-1.4508937, 50.9122677]]}}, {"id": "236840672", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 236840672, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4683345, 50.9189322], [-1.4677345, 50.9186839]]}}, {"id": "236840673", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 236840673, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4446485, 50.9119396], [-1.4449784, 50.9118971], [-1.4453499, 50.9118489]]}}, {"id": "236840674", "type": "Feature", "properties": {"electrified": "no", "osmid": 236840674, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4443869, 50.9119706], [-1.444037, 50.9120224], [-1.4438027, 50.9120693], [-1.4436292, 50.9121136], [-1.4433932, 50.9121986], [-1.4431471, 50.9123064], [-1.4429584, 50.9123733], [-1.4427825, 50.91243], [-1.442618, 50.9124851], [-1.4424246, 50.9125406], [-1.4422497, 50.9125797], [-1.4420484, 50.9126126], [-1.4418622, 50.9126352], [-1.4416792, 50.9126391], [-1.4414621, 50.912637], [-1.4368324, 50.9124671], [-1.4365947, 50.9124509], [-1.4363807, 50.9124199], [-1.4361819, 50.9123746], [-1.4359004, 50.9122924], [-1.435521, 50.9121593]]}}, {"id": "236840977", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 236840977, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4509227, 50.912222], [-1.4510758, 50.9122563]]}}, {"id": "236840979", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 236840979, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4427724, 50.9121679], [-1.4419808, 50.9122711], [-1.4414254, 50.9123329], [-1.440867, 50.9123891], [-1.440436, 50.9124157], [-1.4400163, 50.9124315], [-1.4393564, 50.9124437], [-1.4386556, 50.9124337], [-1.4380731, 50.9124048], [-1.4375166, 50.9123612], [-1.4370136, 50.9123043], [-1.4364624, 50.9122259], [-1.4358335, 50.9121102], [-1.4350963, 50.9119479], [-1.434341, 50.9117372], [-1.4339978, 50.911627], [-1.4333374, 50.9113892], [-1.4321482, 50.9109115], [-1.4313487, 50.9105712], [-1.4305045, 50.9102292], [-1.4301401, 50.910089], [-1.4294911, 50.9098648], [-1.4282071, 50.9094383], [-1.426022, 50.9087264], [-1.4242137, 50.9081198], [-1.4237312, 50.9079794], [-1.4232414, 50.9078497], [-1.4227474, 50.9077377], [-1.4221334, 50.9076275], [-1.4216293, 50.9075592], [-1.4211302, 50.9075083]]}}, {"id": "236840980", "type": "Feature", "properties": {"electrified": "no", "osmid": 236840980, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.450921, 50.9122115], [-1.4507463, 50.9121806]]}}, {"id": "236840981", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 236840981, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4510737, 50.9122341], [-1.450921, 50.9122115]]}}, {"id": "236840982", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 236840982, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4510067, 50.9123284], [-1.4508712, 50.9122979]]}}, {"id": "236848839", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848839, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4598696, 50.9145438], [-1.4601525, 50.9146935], [-1.4603363, 50.9148], [-1.4606179, 50.9149801], [-1.4608553, 50.9151332], [-1.4612784, 50.9154032]]}}, {"id": "236848841", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848841, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4520322, 50.9123011], [-1.4523156, 50.912332], [-1.4525119, 50.9123542], [-1.4527938, 50.9123935], [-1.4530538, 50.9124439], [-1.4532448, 50.9124963], [-1.4599253, 50.9146908], [-1.4601626, 50.9147843], [-1.4603778, 50.9148846], [-1.4608553, 50.9151332]]}}, {"id": "236848842", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848842, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4616028, 50.9156017], [-1.4612784, 50.9154032], [-1.4606794, 50.9150871], [-1.4604221, 50.91497], [-1.4601995, 50.9148803], [-1.4599849, 50.9147958], [-1.4596209, 50.9146646], [-1.4533601, 50.9126016], [-1.4530085, 50.9124967], [-1.4527201, 50.9124325], [-1.4523346, 50.9123659]]}}, {"id": "236848843", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848843, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4613448, 50.9154722], [-1.4610609, 50.9153512], [-1.4608987, 50.915281], [-1.4606841, 50.9151694], [-1.4604208, 50.9150478], [-1.4601096, 50.9149218], [-1.4595933, 50.9147307]]}}, {"id": "236848844", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848844, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4606794, 50.9150871], [-1.4602862, 50.9148833], [-1.4600648, 50.9147801], [-1.4593094, 50.9145225], [-1.4537733, 50.912705], [-1.4533559, 50.9125672], [-1.4531479, 50.9125052], [-1.4529313, 50.9124497], [-1.4526649, 50.9124061], [-1.4523346, 50.9123659], [-1.4520134, 50.9123215], [-1.4516501, 50.912279], [-1.4513378, 50.9122602], [-1.4510737, 50.9122341]]}}, {"id": "236848845", "type": "Feature", "properties": {"electrified": "no", "osmid": 236848845, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.459265, 50.9140986], [-1.4595199, 50.9142092], [-1.4596697, 50.9142834], [-1.4599496, 50.9144373], [-1.462229, 50.9159126], [-1.4623911, 50.9160138], [-1.4626476, 50.9161513]]}}, {"id": "236849031", "type": "Feature", "properties": {"electrified": "no", "osmid": 236849031, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4510758, 50.9122563], [-1.4517938, 50.9124284], [-1.4523958, 50.9125745], [-1.4533495, 50.9128216], [-1.45412, 50.9130369], [-1.4550464, 50.9133044], [-1.4564074, 50.9137234], [-1.4570923, 50.9139535], [-1.4588217, 50.914529], [-1.4592064, 50.9146571], [-1.4595911, 50.9147942], [-1.4600516, 50.9149851], [-1.4614783, 50.9156228], [-1.4622394, 50.9159699], [-1.4626476, 50.9161513], [-1.462871, 50.9162577]]}}, {"id": "236857371", "type": "Feature", "properties": {"electrified": "no", "osmid": 236857371, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4548093, 50.9123496], [-1.4577495, 50.9133193], [-1.457912, 50.9133768], [-1.4580469, 50.9134316], [-1.4582679, 50.9135367], [-1.4585399, 50.9137062]]}}, {"id": "236857883", "type": "Feature", "properties": {"electrified": "no", "osmid": 236857883, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4911236, 50.992003], [-1.4904552, 50.9918664]]}}, {"id": "236859308", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859308, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4687999, 50.9190127], [-1.4685631, 50.918865], [-1.4683284, 50.9187332], [-1.4679971, 50.9185691], [-1.4656488, 50.9174523]]}}, {"id": "236859309", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859309, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4687777, 50.9190439], [-1.4683072, 50.9188571]]}}, {"id": "236859310", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859310, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4692867, 50.9192545], [-1.4697954, 50.9194789]]}}, {"id": "236859311", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859311, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.462871, 50.9162577], [-1.4631746, 50.9163777], [-1.4634119, 50.9164766], [-1.4637097, 50.916584], [-1.4639429, 50.9166846], [-1.4641556, 50.9167841], [-1.4687999, 50.9190127], [-1.4691438, 50.9191982]]}}, {"id": "236859312", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859312, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4634119, 50.9164766], [-1.4687777, 50.9190439], [-1.4691438, 50.9191982], [-1.4692867, 50.9192545], [-1.4709074, 50.9198623], [-1.4711106, 50.9199343], [-1.4713847, 50.9200115], [-1.4716886, 50.9200822]]}}, {"id": "236859313", "type": "Feature", "properties": {"electrified": "no", "osmid": 236859313, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.462871, 50.9162577], [-1.4683072, 50.9188571], [-1.4687844, 50.9190827], [-1.4690951, 50.9192138], [-1.4694139, 50.919339], [-1.4697954, 50.9194789], [-1.4704393, 50.9197202], [-1.4706708, 50.9198216], [-1.4708707, 50.9199094], [-1.4710543, 50.9199749], [-1.4713475, 50.9200594]]}}, {"id": "236859504", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 236859504, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.476259, 50.9202348], [-1.4758804, 50.9203059], [-1.4754135, 50.9203683], [-1.4749895, 50.9204089], [-1.4745702, 50.9204311]]}}, {"id": "236859505", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "50 mph", "name": "South Western Main Line", "osmid": 236859505, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4716524, 50.9201558], [-1.471135, 50.9200401], [-1.470619, 50.9199075], [-1.4701678, 50.9197652], [-1.469685, 50.9195877], [-1.4692597, 50.9194092], [-1.468709, 50.9191473]]}}, {"id": "236859506", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 236859506, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4745702, 50.9204311], [-1.4742437, 50.9204355], [-1.4738785, 50.920434]]}}, {"id": "236859507", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "50 mph", "name": "South Western Main Line", "osmid": 236859507, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4687213, 50.9191172], [-1.4692871, 50.9193879], [-1.4697008, 50.919562], [-1.4701834, 50.919738], [-1.4706278, 50.919879], [-1.4709549, 50.9199647], [-1.4713475, 50.9200594], [-1.4717729, 50.9201476]]}}, {"id": "236859508", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "50 mph", "name": "South Western Main Line", "osmid": 236859508, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4727376, 50.920336], [-1.4725193, 50.9203057], [-1.472339, 50.920277], [-1.472121, 50.9202423], [-1.4716524, 50.9201558]]}}, {"id": "236860733", "type": "Feature", "properties": {"electrified": "no", "osmid": 236860733, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.436649, 50.9079142], [-1.4376828, 50.9082608], [-1.4378747, 50.90831], [-1.4380948, 50.9083659], [-1.4383848, 50.9084501]]}}, {"id": "237457335", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 237457335, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8685885, 51.0836024], [-1.8688268, 51.0835564]]}}, {"id": "238060418", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 238060418, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824465, 51.0766013], [-1.7826342, 51.0767614], [-1.7828066, 51.0768904], [-1.7830614, 51.0770387], [-1.7833403, 51.0771837], [-1.7836568, 51.07731], [-1.7839271, 51.077395], [-1.7842416, 51.0774769], [-1.7845842, 51.0775399], [-1.7850026, 51.077581], [-1.7853191, 51.0775893], [-1.7853602, 51.0775891], [-1.7856021, 51.0775881], [-1.7858061, 51.0775694]]}}, {"id": "238060420", "type": "Feature", "properties": {"electrified": "no", "osmid": 238060420, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4878521, 50.9905334], [-1.4875491, 50.9902036], [-1.4872821, 50.9898548], [-1.4870488, 50.9895011], [-1.486892, 50.9891964], [-1.4867725, 50.9889211]]}}, {"id": "238060421", "type": "Feature", "properties": {"electrified": "no", "osmid": 238060421, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4913303, 50.9920932], [-1.4904552, 50.9918664], [-1.4903558, 50.9918427]]}}, {"id": "238060422", "type": "Feature", "properties": {"electrified": "no", "name": "Up Test Valley", "osmid": 238060422, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4903558, 50.9918427], [-1.4900399, 50.9917563], [-1.4898313, 50.9916931], [-1.4897444, 50.9916655], [-1.4894561, 50.991565], [-1.4890873, 50.9914063], [-1.4887279, 50.9912189], [-1.4884638, 50.9910451], [-1.4881833, 50.990822], [-1.4879621, 50.990639]]}}, {"id": "238060423", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238060423, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4879621, 50.990639], [-1.4878521, 50.9905334]]}}, {"id": "238060424", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238060424, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867725, 50.9889211], [-1.4867184, 50.9887863]]}}, {"id": "238060425", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238060425, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4914972, 50.9921416], [-1.4913303, 50.9920932]]}}, {"id": "238060426", "type": "Feature", "properties": {"electrified": "no", "osmid": 238060426, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867184, 50.9887863], [-1.4852773, 50.983895], [-1.483205, 50.97686], [-1.4828381, 50.9754887], [-1.4827374, 50.9749815], [-1.4826692, 50.9746375], [-1.4824903, 50.9734631], [-1.4824303, 50.9728826], [-1.4823791, 50.9721466], [-1.4823547, 50.9716369], [-1.4823531, 50.9709897], [-1.4823776, 50.9701651], [-1.482395, 50.9698966], [-1.4834395, 50.9537681], [-1.4834583, 50.9531301], [-1.483455, 50.9492736], [-1.4834815, 50.9487627], [-1.4835218, 50.9482976], [-1.4837631, 50.9466022], [-1.4837966, 50.9460699], [-1.4838024, 50.9455457], [-1.4837416, 50.9446968], [-1.4836748, 50.944216], [-1.4831639, 50.9414991]]}}, {"id": "238167522", "type": "Feature", "properties": {"electrified": "no", "osmid": 238167522, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4858835, 50.9911869], [-1.4863873, 50.9912207], [-1.4868564, 50.9912618], [-1.4873707, 50.9913194], [-1.4878884, 50.9913844], [-1.4884351, 50.9914633], [-1.4889446, 50.9915499], [-1.4893585, 50.991628], [-1.4897444, 50.991706], [-1.4899992, 50.9917592], [-1.4903558, 50.9918427]]}}, {"id": "238167523", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238167523, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4855683, 50.9911709], [-1.4858835, 50.9911869]]}}, {"id": "238168332", "type": "Feature", "properties": {"electrified": "no", "osmid": 238168332, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4778213, 50.9918856], [-1.4782233, 50.9917802], [-1.4787569, 50.9916464], [-1.4793191, 50.9915346], [-1.4802488, 50.9913862], [-1.4810944, 50.9912822], [-1.4817435, 50.9912129], [-1.4823592, 50.9911662], [-1.4829621, 50.9911344], [-1.4835984, 50.9911159]]}}, {"id": "238168333", "type": "Feature", "properties": {"electrified": "no", "osmid": 238168333, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4835984, 50.9911159], [-1.4840746, 50.9911093], [-1.4845704, 50.9911074], [-1.4851328, 50.991124], [-1.4856307, 50.9911432]]}}, {"id": "238168334", "type": "Feature", "properties": {"electrified": "no", "osmid": 238168334, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4836266, 50.9911347], [-1.4840676, 50.9911362], [-1.4846174, 50.9911379], [-1.4851208, 50.9911506], [-1.4855683, 50.9911709]]}}, {"id": "238170822", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170822, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4356945, 50.9972825], [-1.4371863, 50.9972769]]}}, {"id": "238170824", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170824, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4027796, 50.9954829], [-1.4037419, 50.995798], [-1.4048931, 50.996137]]}}, {"id": "238170825", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170825, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4157273, 50.9973294], [-1.416986, 50.9973266]]}}, {"id": "238170828", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170828, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3957548, 50.9914054], [-1.3974991, 50.9926894], [-1.398568, 50.993445], [-1.3991864, 50.9938379], [-1.3996891, 50.9941305], [-1.4004214, 50.9945111], [-1.4010638, 50.9948126], [-1.401734, 50.9950946], [-1.4027796, 50.9954829]]}}, {"id": "238170830", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170830, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4048931, 50.996137], [-1.4055044, 50.9963033], [-1.4055972, 50.9963285], [-1.4063007, 50.9964886]]}}, {"id": "238170831", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170831, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.416986, 50.9973266], [-1.4307467, 50.9973226]]}}, {"id": "238170832", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170832, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4371863, 50.9972769], [-1.4399969, 50.9972663]]}}, {"id": "238170833", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170833, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3921025, 50.9887384], [-1.3957548, 50.9914054]]}}, {"id": "238170834", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170834, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4399969, 50.9972663], [-1.4408557, 50.997263]]}}, {"id": "238170835", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170835, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4063007, 50.9964886], [-1.4075245, 50.996736], [-1.4082159, 50.9968563], [-1.4091286, 50.9969985], [-1.4097559, 50.9970813], [-1.4104821, 50.9971674], [-1.4112242, 50.9972277], [-1.4120777, 50.9972816], [-1.4127661, 50.9973102], [-1.4136123, 50.9973263], [-1.414388, 50.9973249], [-1.4157273, 50.9973294]]}}, {"id": "238170837", "type": "Feature", "properties": {"electrified": "no", "osmid": 238170837, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4408557, 50.997263], [-1.4428178, 50.9972586], [-1.4442051, 50.9972504]]}}, {"id": "238368289", "type": "Feature", "properties": {"electrified": "no", "osmid": 238368289, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4987991, 50.9960558], [-1.4983318, 50.9956458], [-1.497981, 50.9953527], [-1.4975833, 50.9950445]]}}, {"id": "238368290", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238368290, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4999195, 50.9972593], [-1.4998175, 50.9971295]]}}, {"id": "238368291", "type": "Feature", "properties": {"electrified": "no", "osmid": 238368291, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4974057, 50.9949189], [-1.4967874, 50.9944952], [-1.4963489, 50.99422], [-1.4958809, 50.9939499], [-1.4954683, 50.9937235], [-1.4949862, 50.9934783], [-1.4948835, 50.9934314], [-1.4945468, 50.9932717], [-1.4941473, 50.9930868], [-1.4938293, 50.9929518], [-1.4934889, 50.9928152], [-1.4931133, 50.99267], [-1.4927309, 50.992534], [-1.4923273, 50.9923964], [-1.491791, 50.9922251], [-1.4914972, 50.9921416]]}}, {"id": "238368292", "type": "Feature", "properties": {"electrified": "no", "osmid": 238368292, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4998175, 50.9971295], [-1.4994845, 50.9967488], [-1.4990196, 50.9962682]]}}, {"id": "238368293", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238368293, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4990196, 50.9962682], [-1.4987991, 50.9960558]]}}, {"id": "238368295", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238368295, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4975833, 50.9950445], [-1.4975224, 50.9950014], [-1.4974622, 50.9949589], [-1.4974057, 50.9949189]]}}, {"id": "238370821", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238370821, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5021845, 51.0004813], [-1.5019245, 51.0001434]]}}, {"id": "238370822", "type": "Feature", "properties": {"electrified": "no", "osmid": 238370822, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5031431, 51.0016469], [-1.5026952, 51.0011183], [-1.5021845, 51.0004813]]}}, {"id": "238370823", "type": "Feature", "properties": {"electrified": "no", "osmid": 238370823, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5019245, 51.0001434], [-1.5015041, 50.9995855], [-1.5012398, 50.9992156], [-1.5009776, 50.9988222], [-1.500387, 50.9979161], [-1.5001654, 50.9975817], [-1.4999195, 50.9972593]]}}, {"id": "238370824", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238370824, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5483046, 51.0342107], [-1.5481199, 51.0341719]]}}, {"id": "238370825", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238370825, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5033007, 51.0018289], [-1.5031431, 51.0016469]]}}, {"id": "238370826", "type": "Feature", "properties": {"electrified": "no", "osmid": 238370826, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5284021, 51.0234729], [-1.5267165, 51.022046], [-1.5222461, 51.0182617], [-1.5172214, 51.0140079], [-1.5134538, 51.010818], [-1.5057577, 51.0042839], [-1.5050661, 51.0036585], [-1.5045787, 51.0031872], [-1.5033007, 51.0018289]]}}, {"id": "238424791", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238424791, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5674441, 51.0360866], [-1.5672683, 51.0360726]]}}, {"id": "238424792", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238424792, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5687664, 51.036192], [-1.5684172, 51.036164]]}}, {"id": "238424793", "type": "Feature", "properties": {"electrified": "no", "osmid": 238424793, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5684172, 51.036164], [-1.5674441, 51.0360866]]}}, {"id": "238424796", "type": "Feature", "properties": {"electrified": "no", "osmid": 238424796, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5672683, 51.0360726], [-1.554595, 51.0351146], [-1.5536, 51.0350236], [-1.5526208, 51.0349111], [-1.5517878, 51.0348086], [-1.5510516, 51.0347018], [-1.5508781, 51.0346739], [-1.5498832, 51.0345139], [-1.5490481, 51.0343612], [-1.5483046, 51.0342107]]}}, {"id": "238425497", "type": "Feature", "properties": {"electrified": "no", "osmid": 238425497, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5741617, 51.0366161], [-1.5687664, 51.036192]]}}, {"id": "238425498", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238425498, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5744394, 51.036638], [-1.5741617, 51.0366161]]}}, {"id": "238429289", "type": "Feature", "properties": {"osmid": 238429289, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6252314, 51.0356692], [-1.6250021, 51.035692], [-1.6249109, 51.0357156], [-1.6248211, 51.0357535]]}}, {"id": "238429296", "type": "Feature", "properties": {"osmid": 238429296, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6106882, 51.0385538], [-1.6119623, 51.03844], [-1.6122536, 51.0384125], [-1.6124748, 51.0383804], [-1.6127095, 51.0383366], [-1.6129228, 51.038291], [-1.6143033, 51.0379435], [-1.6143491, 51.0379363], [-1.6154977, 51.0376442], [-1.6184735, 51.0368922], [-1.6185997, 51.0368574], [-1.6187459, 51.0368068], [-1.6189014, 51.0367402], [-1.6192823, 51.0365614], [-1.6194124, 51.0365032], [-1.6195679, 51.0364467], [-1.6197731, 51.0363869], [-1.6200347, 51.0363228], [-1.6226833, 51.0357101], [-1.6227533, 51.0356939], [-1.6229402, 51.0356483], [-1.6231313, 51.0356017], [-1.6232251, 51.0355823], [-1.6233593, 51.0355672], [-1.6245246, 51.0355039], [-1.6246427, 51.0354913], [-1.6247688, 51.0354634], [-1.6249029, 51.0354204], [-1.6265609, 51.0347847], [-1.6266641, 51.034747], [-1.6267258, 51.0347348], [-1.6267911, 51.034723], [-1.6269132, 51.0347154], [-1.6270473, 51.034723], [-1.6271881, 51.0347373], [-1.628451, 51.034884], [-1.6292423, 51.0349734], [-1.6293701, 51.0349861], [-1.6294918, 51.0349785], [-1.6295645, 51.0349667], [-1.6301131, 51.0348453], [-1.6314555, 51.0345619], [-1.6335018, 51.0341278], [-1.6336589, 51.0340972], [-1.6338333, 51.0340685], [-1.6340277, 51.0340542], [-1.6342182, 51.0340474], [-1.635747, 51.0340584], [-1.6360381, 51.0340678], [-1.6363143, 51.0340845], [-1.6373428, 51.0341559], [-1.637544, 51.0341627], [-1.6376848, 51.0341602], [-1.6378264, 51.0341445], [-1.6378981, 51.0341365], [-1.6379892, 51.0341323], [-1.6380684, 51.0341332]]}}, {"id": "238429310", "type": "Feature", "properties": {"osmid": 238429310, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6100421, 51.038614], [-1.6106882, 51.0385538], [-1.6108695, 51.0385171], [-1.6110144, 51.0384892], [-1.6120553, 51.038398], [-1.6123716, 51.0383653], [-1.6127484, 51.0382953], [-1.6130797, 51.0382202], [-1.6139702, 51.0379925], [-1.6143249, 51.0379037], [-1.61507, 51.0377172], [-1.6152053, 51.0376898], [-1.6153609, 51.0376645], [-1.6154977, 51.0376442]]}}, {"id": "238429311", "type": "Feature", "properties": {"osmid": 238429311, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6247607, 51.0357856], [-1.624632, 51.035848], [-1.6245676, 51.0358699], [-1.6244885, 51.0358842], [-1.6241572, 51.0359214], [-1.624058, 51.0359197], [-1.6239574, 51.035907], [-1.6237636, 51.0358462]]}}, {"id": "238429313", "type": "Feature", "properties": {"osmid": 238429313, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6292862, 51.0355451], [-1.6291448, 51.0355208], [-1.6290187, 51.0354988], [-1.628914, 51.0354713], [-1.6281358, 51.0352463], [-1.6275153, 51.0350671], [-1.6273879, 51.0350443], [-1.6272431, 51.0350392]]}}, {"id": "238429315", "type": "Feature", "properties": {"osmid": 238429315, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6139702, 51.0379925], [-1.6141443, 51.0379684], [-1.6143033, 51.0379435], [-1.6143491, 51.0379363], [-1.6144262, 51.0379242], [-1.6145307, 51.0379118], [-1.6146193, 51.0378981], [-1.6148714, 51.0378534], [-1.6159498, 51.0376543], [-1.6161186, 51.0376198], [-1.6162836, 51.0375995], [-1.6164472, 51.0375886], [-1.6167396, 51.0375818], [-1.6183024, 51.037552], [-1.6194745, 51.0375301], [-1.6207903, 51.0375051], [-1.6219434, 51.0374839], [-1.6224594, 51.0374747], [-1.6228456, 51.0374663], [-1.6229596, 51.0374688], [-1.6230642, 51.0374933], [-1.62315, 51.0375228], [-1.6237911, 51.0377463], [-1.6238957, 51.0377758], [-1.6240446, 51.0377977], [-1.6241653, 51.0378019], [-1.6247486, 51.0377859]]}}, {"id": "238429316", "type": "Feature", "properties": {"osmid": 238429316, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6297402, 51.0356785], [-1.6292862, 51.0355451], [-1.6278613, 51.0351311], [-1.6275985, 51.0350527], [-1.6274925, 51.0350333], [-1.6273839, 51.0350308], [-1.6272431, 51.0350392], [-1.6271666, 51.0350468], [-1.6270392, 51.0350679], [-1.6269145, 51.0351117], [-1.6267777, 51.0351632], [-1.6267113, 51.03518], [-1.6266637, 51.0351919], [-1.6265269, 51.0352011], [-1.62637, 51.0351927], [-1.626346, 51.0351903], [-1.6262507, 51.0351809], [-1.6261242, 51.0351757], [-1.6260173, 51.0351851], [-1.6259328, 51.0351969], [-1.6258148, 51.035234], [-1.6256369, 51.0352871], [-1.6255363, 51.0353298], [-1.6246976, 51.0357614], [-1.6246064, 51.035801], [-1.6245165, 51.0358263], [-1.6243998, 51.0358499], [-1.624119, 51.0358808], [-1.6240197, 51.0358859], [-1.6239272, 51.0358783], [-1.6237636, 51.0358462], [-1.6236348, 51.0358165], [-1.6231286, 51.0356945], [-1.6229402, 51.0356483], [-1.6227537, 51.0356026], [-1.6226946, 51.0355874], [-1.6222072, 51.0354626], [-1.6221442, 51.0354516], [-1.6220691, 51.0354449], [-1.6219377, 51.0354432], [-1.6217767, 51.0354432], [-1.6209037, 51.0354516], [-1.6203994, 51.0354499], [-1.6202546, 51.03546], [-1.6201312, 51.0354727], [-1.6192772, 51.0355777], [-1.6185313, 51.0356734], [-1.6184052, 51.0356945], [-1.618306, 51.03574], [-1.6180098, 51.0359165], [-1.6179211, 51.0359694]]}}, {"id": "238429321", "type": "Feature", "properties": {"osmid": 238429321, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6281358, 51.0352463], [-1.628025, 51.035202], [-1.6279525, 51.0351674], [-1.6278613, 51.0351311]]}}, {"id": "238429324", "type": "Feature", "properties": {"osmid": 238429324, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6258148, 51.035234], [-1.6254782, 51.0354086], [-1.6253427, 51.0354794], [-1.6252127, 51.0355486], [-1.6250785, 51.0356161], [-1.6249753, 51.0356717], [-1.6248211, 51.0357535], [-1.6247607, 51.0357856], [-1.6246507, 51.0358269], [-1.6245715, 51.0358403], [-1.6243998, 51.0358499]]}}, {"id": "238430073", "type": "Feature", "properties": {"osmid": 238430073, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6395437, 51.0351573], [-1.6395263, 51.0350773], [-1.6394391, 51.0348132], [-1.6393747, 51.0346909], [-1.6393117, 51.0346133], [-1.6392366, 51.0345256], [-1.6391668, 51.0344522]]}}, {"id": "238430488", "type": "Feature", "properties": {"osmid": 238430488, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6395424, 51.0353293], [-1.6395383, 51.035245], [-1.6395437, 51.0351573], [-1.6395464, 51.0350375], [-1.6395303, 51.0349608], [-1.6394941, 51.034836], [-1.6394351, 51.0347103], [-1.6393761, 51.0346251], [-1.6392889, 51.0345484], [-1.6391668, 51.0344522], [-1.6391326, 51.0344341], [-1.6390502, 51.0343907], [-1.6388074, 51.0342667], [-1.6386975, 51.0342212], [-1.6385526, 51.0341849], [-1.6384118, 51.0341689], [-1.6380684, 51.0341332], [-1.63766, 51.0340964], [-1.637186, 51.0340572], [-1.6362862, 51.0339791], [-1.63592, 51.0339513], [-1.6345239, 51.0338985], [-1.6343616, 51.0338879], [-1.6334565, 51.0338528], [-1.6325494, 51.0338205], [-1.631653, 51.0337769], [-1.6313211, 51.0337586], [-1.6301184, 51.0337033], [-1.6292199, 51.0336519], [-1.628725, 51.0336241], [-1.6285131, 51.0336182], [-1.6282959, 51.0336215], [-1.6280296, 51.0336277], [-1.6277433, 51.0336409], [-1.6274389, 51.0336629], [-1.6271814, 51.0336831], [-1.6259851, 51.0337776], [-1.6259315, 51.0337835], [-1.6250933, 51.0338526], [-1.6242337, 51.0339192], [-1.6235939, 51.0339698], [-1.6234384, 51.0339791], [-1.6233069, 51.0339817], [-1.623036, 51.03398], [-1.6219143, 51.0339725], [-1.6217835, 51.0339715], [-1.6208983, 51.0339665], [-1.6200224, 51.0339586], [-1.6194982, 51.033953], [-1.6193292, 51.033958], [-1.6191589, 51.033969], [-1.6185755, 51.0340154], [-1.6176461, 51.034093], [-1.6175764, 51.0341023], [-1.6174731, 51.0341208], [-1.6164007, 51.0343041], [-1.6161508, 51.0343468], [-1.6160543, 51.0343688], [-1.6159255, 51.0344025], [-1.6158035, 51.0344455], [-1.6157029, 51.0344894], [-1.6155996, 51.0345467], [-1.6146346, 51.0350625], [-1.6145348, 51.035121], [-1.6144811, 51.035159], [-1.6144538, 51.0351866], [-1.6140065, 51.0356781]]}}, {"id": "238430489", "type": "Feature", "properties": {"osmid": 238430489, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6392151, 51.034556], [-1.6391709, 51.0345062], [-1.6391399, 51.0344649], [-1.6391326, 51.0344341], [-1.6391242, 51.0343991], [-1.6391494, 51.0343266], [-1.6392098, 51.0341841]]}}, {"id": "238430491", "type": "Feature", "properties": {"osmid": 238430491, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6396322, 51.0356287], [-1.6395424, 51.0353293], [-1.6393841, 51.0347951], [-1.6393506, 51.034728], [-1.6393036, 51.0346538], [-1.6392151, 51.034556], [-1.6388074, 51.0342667]]}}, {"id": "238431379", "type": "Feature", "properties": {"osmid": 238431379, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.63766, 51.0340964], [-1.6378088, 51.0340762], [-1.6379268, 51.0340357], [-1.6380234, 51.0339843], [-1.6380797, 51.0339227], [-1.6381173, 51.0338729]]}}, {"id": "238431380", "type": "Feature", "properties": {"osmid": 238431380, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6362862, 51.0339791], [-1.63614, 51.0339471], [-1.636026, 51.0339057], [-1.6359562, 51.0338594], [-1.6358637, 51.0337683]]}}, {"id": "238431381", "type": "Feature", "properties": {"osmid": 238431381, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.637186, 51.0340572], [-1.637072, 51.0340378], [-1.6369728, 51.0340016], [-1.6368843, 51.0339484], [-1.6368306, 51.033881], [-1.6368092, 51.0338337]]}}, {"id": "238431382", "type": "Feature", "properties": {"osmid": 238431382, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.63592, 51.0339513], [-1.6358034, 51.0339361], [-1.6356679, 51.0339176], [-1.6347895, 51.0338875], [-1.6346996, 51.033888], [-1.6345239, 51.0338985]]}}, {"id": "238431383", "type": "Feature", "properties": {"osmid": 238431383, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6343616, 51.0338879], [-1.6342329, 51.0338736], [-1.6341108, 51.0338398], [-1.6340303, 51.0337918], [-1.6339016, 51.0336872]]}}, {"id": "238434813", "type": "Feature", "properties": {"osmid": 238434813, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6187123, 51.0338071], [-1.618766, 51.0338526], [-1.618825, 51.0338923], [-1.6189162, 51.0339412], [-1.6190315, 51.0339682], [-1.6191589, 51.033969]]}}, {"id": "238434814", "type": "Feature", "properties": {"osmid": 238434814, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6219143, 51.0339725], [-1.622049, 51.0339842], [-1.6221265, 51.0340019], [-1.622171, 51.034012], [-1.6223092, 51.0340348], [-1.6224553, 51.0340427], [-1.6232382, 51.0340637], [-1.6234382, 51.0340674], [-1.6236422, 51.0340609], [-1.623834, 51.0340517], [-1.6246078, 51.0340129], [-1.6247956, 51.0340019], [-1.6254018, 51.0339867], [-1.6255573, 51.0339876], [-1.6257974, 51.034007], [-1.6263566, 51.03405], [-1.6266438, 51.0340683], [-1.6270433, 51.0340938], [-1.6277473, 51.0341242], [-1.6278801, 51.0341267], [-1.6280089, 51.0341225], [-1.6281081, 51.0341208], [-1.6282139, 51.0341246], [-1.6283065, 51.0341326], [-1.6294479, 51.0342591], [-1.6295619, 51.0342726], [-1.6296571, 51.0342971], [-1.6297349, 51.03433], [-1.6298033, 51.0343696], [-1.6298569, 51.0344092], [-1.6299052, 51.0344674], [-1.6299441, 51.0345341], [-1.6299575, 51.0346015], [-1.6299535, 51.0346724], [-1.6299307, 51.0347322], [-1.6298971, 51.0347845], [-1.6298496, 51.0348309], [-1.629785, 51.0348787], [-1.6296893, 51.0349237], [-1.6295645, 51.0349667]]}}, {"id": "238434815", "type": "Feature", "properties": {"osmid": 238434815, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6174731, 51.0341208], [-1.617614, 51.0340812], [-1.6176837, 51.0340601], [-1.6177772, 51.03404], [-1.6182684, 51.0340027], [-1.6183623, 51.0340044], [-1.6184709, 51.0340103], [-1.6185755, 51.0340154]]}}, {"id": "238434817", "type": "Feature", "properties": {"osmid": 238434817, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6196068, 51.0337725], [-1.6196444, 51.0338113], [-1.6197047, 51.0338644], [-1.6197933, 51.0339133], [-1.6198965, 51.0339429], [-1.6200224, 51.0339586]]}}, {"id": "238434818", "type": "Feature", "properties": {"osmid": 238434818, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6204772, 51.0337809], [-1.6205402, 51.0338408], [-1.6205952, 51.0338889], [-1.620677, 51.0339285], [-1.6207816, 51.0339564], [-1.6208983, 51.0339665]]}}, {"id": "238434819", "type": "Feature", "properties": {"osmid": 238434819, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.623036, 51.03398], [-1.6229288, 51.0339665], [-1.6228174, 51.0339589], [-1.6226954, 51.033953], [-1.6220262, 51.0339513], [-1.6219404, 51.0339547], [-1.6217835, 51.0339715]]}}, {"id": "238434820", "type": "Feature", "properties": {"osmid": 238434820, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6141499, 51.0351075], [-1.6142102, 51.035121], [-1.6143215, 51.0351328], [-1.6144355, 51.0351244], [-1.6145334, 51.0351058], [-1.6146346, 51.0350625]]}}, {"id": "238434821", "type": "Feature", "properties": {"osmid": 238434821, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6213141, 51.0337658], [-1.6213838, 51.0338315], [-1.6214442, 51.0338813], [-1.6215166, 51.0339235], [-1.6215863, 51.0339479], [-1.6216762, 51.0339656], [-1.6217835, 51.0339715]]}}, {"id": "238434822", "type": "Feature", "properties": {"osmid": 238434822, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6168844, 51.0339429], [-1.6169461, 51.0339977], [-1.6170078, 51.0340432], [-1.6170829, 51.0340845], [-1.6171701, 51.0341132], [-1.6172733, 51.0341326], [-1.6173726, 51.0341318], [-1.6174731, 51.0341208]]}}, {"id": "238434823", "type": "Feature", "properties": {"osmid": 238434823, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6148862, 51.0345408], [-1.6150927, 51.0345821], [-1.6151973, 51.0345998], [-1.6153073, 51.0346066], [-1.6153998, 51.0346015], [-1.6154856, 51.0345872], [-1.6155996, 51.0345467]]}}, {"id": "238434824", "type": "Feature", "properties": {"osmid": 238434824, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6157512, 51.0341318], [-1.6160127, 51.0342659], [-1.6161119, 51.0342996], [-1.6161951, 51.0343156], [-1.616293, 51.0343165], [-1.6164007, 51.0343041]]}}, {"id": "238434827", "type": "Feature", "properties": {"osmid": 238434827, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6139686, 51.0356642], [-1.6143162, 51.0352956], [-1.6143806, 51.0352433], [-1.6144538, 51.0351866]]}}, {"id": "238435684", "type": "Feature", "properties": {"osmid": 238435684, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6301184, 51.0337033], [-1.6299937, 51.0336823], [-1.6299065, 51.0336468], [-1.6298314, 51.0335979], [-1.6296222, 51.0334158]]}}, {"id": "238435685", "type": "Feature", "properties": {"osmid": 238435685, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.631653, 51.0337769], [-1.6315525, 51.0337669], [-1.6314747, 51.0337399], [-1.6313791, 51.0336974], [-1.6311524, 51.0335136]]}}, {"id": "238435686", "type": "Feature", "properties": {"osmid": 238435686, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6259851, 51.0337776], [-1.6261018, 51.0337548], [-1.6261997, 51.0337379], [-1.6267737, 51.0336932], [-1.6269293, 51.0336814], [-1.6270111, 51.0336797], [-1.6271117, 51.0336848], [-1.6271814, 51.0336831]]}}, {"id": "238435688", "type": "Feature", "properties": {"osmid": 238435688, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6265216, 51.0336738], [-1.6263969, 51.0336443], [-1.6263124, 51.0336198], [-1.6261461, 51.0335583]]}}, {"id": "238435689", "type": "Feature", "properties": {"osmid": 238435689, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6334565, 51.0338528], [-1.6333414, 51.0338373], [-1.6332395, 51.0338095], [-1.6331604, 51.033769], [-1.6329941, 51.0336417]]}}, {"id": "238435690", "type": "Feature", "properties": {"osmid": 238435690, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6325494, 51.0338205], [-1.6324408, 51.0338078], [-1.6323429, 51.03378], [-1.6322571, 51.0337336], [-1.6320653, 51.0335784]]}}, {"id": "238435691", "type": "Feature", "properties": {"osmid": 238435691, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6250933, 51.0338526], [-1.6249887, 51.0338518], [-1.6248895, 51.0338374], [-1.6247848, 51.033802], [-1.624695, 51.0337472], [-1.6245998, 51.0336671]]}}, {"id": "238435692", "type": "Feature", "properties": {"osmid": 238435692, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6292199, 51.0336519], [-1.6290911, 51.0336342], [-1.6289959, 51.0336021], [-1.6289262, 51.0335583], [-1.6287317, 51.0333904]]}}, {"id": "238435693", "type": "Feature", "properties": {"osmid": 238435693, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6267737, 51.0336932], [-1.6266463, 51.0336941], [-1.6265712, 51.0336839], [-1.6265216, 51.0336738], [-1.6264022, 51.0336342], [-1.6261635, 51.0335431]]}}, {"id": "238435694", "type": "Feature", "properties": {"osmid": 238435694, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6242337, 51.0339192], [-1.6241116, 51.0339201], [-1.623999, 51.0339007], [-1.6239158, 51.0338678], [-1.62383, 51.0338189], [-1.6237213, 51.0337253]]}}, {"id": "238435695", "type": "Feature", "properties": {"osmid": 238435695, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6282959, 51.0336215], [-1.6281698, 51.0336139], [-1.6280679, 51.0335895], [-1.6279834, 51.0335498], [-1.627911, 51.0334959], [-1.6278037, 51.0334014]]}}, {"id": "238435696", "type": "Feature", "properties": {"osmid": 238435696, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6274389, 51.0336629], [-1.6273142, 51.0336645], [-1.6272404, 51.0336511], [-1.6271573, 51.0336283], [-1.6270848, 51.0335954], [-1.6270299, 51.0335583], [-1.6269627, 51.0335094]]}}, {"id": "238435697", "type": "Feature", "properties": {"osmid": 238435697, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6233069, 51.0339817], [-1.6231809, 51.0339707], [-1.6230937, 51.0339479], [-1.6230173, 51.0339117], [-1.6229516, 51.0338636], [-1.622863, 51.0337801]]}}, {"id": "238435698", "type": "Feature", "properties": {"osmid": 238435698, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6259315, 51.0337835], [-1.6258148, 51.0337809], [-1.6257142, 51.0337556], [-1.6256284, 51.0337202], [-1.6255654, 51.0336806], [-1.6254608, 51.033592]]}}, {"id": "238448543", "type": "Feature", "properties": {"electrified": "no", "osmid": 238448543, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6217682, 51.0413916], [-1.6196247, 51.0412195], [-1.606231, 51.0401153], [-1.6047817, 51.0399958], [-1.6043112, 51.0399436], [-1.6036029, 51.039865], [-1.6027454, 51.0397602], [-1.6018509, 51.039638], [-1.6007341, 51.0394713], [-1.5995901, 51.0392873], [-1.5965513, 51.0387359], [-1.5956823, 51.0385867], [-1.5947502, 51.0384349], [-1.5939026, 51.0383067], [-1.5930457, 51.0381869], [-1.5923108, 51.0380992], [-1.5916469, 51.0380249], [-1.5907053, 51.037934], [-1.5744394, 51.036638]]}}, {"id": "238448546", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238448546, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6219653, 51.041409], [-1.6217682, 51.0413916]]}}, {"id": "238634022", "type": "Feature", "properties": {"electrified": "no", "osmid": 238634022, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6705538, 51.0435277], [-1.6665382, 51.0437001]]}}, {"id": "238634024", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238634024, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6354546, 51.0425183], [-1.6352873, 51.0425045]]}}, {"id": "238634028", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238634028, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6511999, 51.0437718], [-1.651099, 51.0437675]]}}, {"id": "238634030", "type": "Feature", "properties": {"electrified": "no", "osmid": 238634030, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6352873, 51.0425045], [-1.6350794, 51.0424853], [-1.6219653, 51.041409]]}}, {"id": "238634035", "type": "Feature", "properties": {"electrified": "no", "osmid": 238634035, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.651099, 51.0437675], [-1.649651, 51.0436723], [-1.6457103, 51.043352]]}}, {"id": "238634037", "type": "Feature", "properties": {"electrified": "no", "osmid": 238634037, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6663304, 51.0437085], [-1.6625511, 51.0438721], [-1.6610585, 51.0439202], [-1.6600353, 51.0439452], [-1.658786, 51.0439642], [-1.6575466, 51.0439633], [-1.6550943, 51.043928], [-1.6540168, 51.0438976], [-1.6526272, 51.0438506], [-1.6511999, 51.0437718]]}}, {"id": "238634039", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238634039, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6707003, 51.0435263], [-1.6705538, 51.0435277]]}}, {"id": "238634041", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238634041, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6665382, 51.0437001], [-1.6663304, 51.0437085]]}}, {"id": "238634043", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238634043, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6354587, 51.0424924], [-1.6352899, 51.0424774]]}}, {"id": "238634047", "type": "Feature", "properties": {"electrified": "no", "osmid": 238634047, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6352899, 51.0424774], [-1.6350789, 51.0424583], [-1.634563, 51.0424158], [-1.63263, 51.0422561], [-1.6313878, 51.0421551], [-1.6219689, 51.0413789]]}}, {"id": "238636898", "type": "Feature", "properties": {"electrified": "no", "osmid": 238636898, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.679573, 51.0430582], [-1.6797415, 51.0430688], [-1.6798589, 51.0430762], [-1.6801626, 51.0430811]]}}, {"id": "238638962", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238638962, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.704858, 51.0420266], [-1.7046858, 51.0420328]]}}, {"id": "238768984", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238768984, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6457103, 51.043352], [-1.6455237, 51.0433377]]}}, {"id": "238768985", "type": "Feature", "properties": {"electrified": "no", "osmid": 238768985, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6455237, 51.0433377], [-1.6354546, 51.0425183]]}}, {"id": "238768986", "type": "Feature", "properties": {"electrified": "no", "osmid": 238768986, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6457298, 51.043326], [-1.6496087, 51.0436417], [-1.6511028, 51.0437396]]}}, {"id": "238768987", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238768987, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6455496, 51.043311], [-1.6457298, 51.043326]]}}, {"id": "238768988", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238768988, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7709904, 51.0634834], [-1.7712056, 51.0635298]]}}, {"id": "238768989", "type": "Feature", "properties": {"electrified": "no", "osmid": 238768989, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7564158, 51.0589673], [-1.7570816, 51.0591236], [-1.7577186, 51.0592821], [-1.7583865, 51.0594549], [-1.7590704, 51.0596487], [-1.7597383, 51.0598477], [-1.760374, 51.0600449], [-1.7610069, 51.0602531], [-1.7620101, 51.0606021], [-1.7639482, 51.0613541], [-1.7646146, 51.0616093], [-1.7652824, 51.0618562], [-1.7660308, 51.0621125], [-1.7664406, 51.0622515], [-1.7668569, 51.0623856], [-1.767447, 51.0625685], [-1.767972, 51.0627251], [-1.7686328, 51.0629096], [-1.7693303, 51.0630934], [-1.7699951, 51.0632554], [-1.7709904, 51.0634834]]}}, {"id": "238768990", "type": "Feature", "properties": {"electrified": "no", "osmid": 238768990, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.704858, 51.0420266], [-1.706337, 51.0419615], [-1.7072515, 51.0419395], [-1.7082506, 51.0419369], [-1.7091237, 51.0419437], [-1.7098626, 51.0419631], [-1.7107035, 51.0419985], [-1.7114907, 51.0420482], [-1.7122712, 51.0421123], [-1.7131644, 51.0422026], [-1.7141085, 51.0423215], [-1.7150622, 51.0424582], [-1.7159418, 51.0426107], [-1.7169611, 51.0428097], [-1.7180822, 51.0430567], [-1.7191189, 51.0433105], [-1.7200228, 51.0435626], [-1.7209924, 51.0438544], [-1.7218709, 51.0441394], [-1.7227493, 51.0444606], [-1.7234762, 51.0447473], [-1.7242144, 51.0450499], [-1.7247327, 51.0452803], [-1.7255075, 51.0456438], [-1.7264593, 51.0461275], [-1.727301, 51.0465955], [-1.7281915, 51.0471283], [-1.7290823, 51.0477248], [-1.7298552, 51.048271], [-1.730492, 51.0487513], [-1.7311877, 51.049349], [-1.7322756, 51.0503554], [-1.7328973, 51.0508951], [-1.7335731, 51.0514244], [-1.7341734, 51.0518775], [-1.734768, 51.0522993], [-1.7354697, 51.0527457], [-1.7361251, 51.0531602], [-1.7369556, 51.0536368], [-1.7376687, 51.0540283], [-1.738654, 51.0545102], [-1.73956, 51.0549282], [-1.7404304, 51.0552941], [-1.7413464, 51.0556549], [-1.7424327, 51.0560427], [-1.7435713, 51.0564119], [-1.7441058, 51.0565695], [-1.744679, 51.0567289], [-1.7452113, 51.0568701], [-1.7457921, 51.0570171], [-1.7464705, 51.0571717], [-1.7470742, 51.0573063], [-1.7477089, 51.0574343], [-1.7484194, 51.057571], [-1.749054, 51.0576829], [-1.7497108, 51.0577893], [-1.750423, 51.0578989], [-1.7512759, 51.0580175], [-1.7519505, 51.0581172], [-1.7526237, 51.0582217], [-1.7533533, 51.0583439], [-1.7540319, 51.0584636], [-1.7547279, 51.0586002], [-1.755306, 51.0587182], [-1.7558408, 51.0588378]]}}, {"id": "238768991", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238768991, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7558408, 51.0588378], [-1.7564158, 51.0589673]]}}, {"id": "238769249", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238769249, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7795863, 51.0651547], [-1.7799742, 51.0652377]]}}, {"id": "238769250", "type": "Feature", "properties": {"electrified": "no", "name": "Up Dean", "osmid": 238769250, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7712056, 51.0635298], [-1.7719418, 51.0636826], [-1.7795863, 51.0651547]]}}, {"id": "238772930", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238772930, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.785781, 51.0775395], [-1.7860989, 51.0775042]]}}, {"id": "238772931", "type": "Feature", "properties": {"electrified": "no", "osmid": 238772931, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7818088, 51.0765108], [-1.7818506, 51.0762473], [-1.7818672, 51.075932], [-1.7818926, 51.0753772]]}}, {"id": "238772935", "type": "Feature", "properties": {"electrified": "no", "osmid": 238772935, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821112, 51.0708443], [-1.7819107, 51.0751395], [-1.7818926, 51.0753772], [-1.7819402, 51.0757041], [-1.7819927, 51.0759015], [-1.782069, 51.0760849], [-1.7822004, 51.0763107], [-1.7823377, 51.0764926]]}}, {"id": "238772937", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238772937, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7823377, 51.0764926], [-1.7824465, 51.0766013]]}}, {"id": "238772939", "type": "Feature", "properties": {"electrified": "no", "osmid": 238772939, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7799742, 51.0652377], [-1.7801896, 51.0652947]]}}, {"id": "238772942", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238772942, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821175, 51.070713], [-1.7821112, 51.0708443]]}}, {"id": "238772944", "type": "Feature", "properties": {"electrified": "no", "osmid": 238772944, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7823831, 51.0764756], [-1.7822649, 51.0763088], [-1.7821421, 51.0760951], [-1.7820522, 51.0758985], [-1.7819949, 51.0757018], [-1.7819581, 51.0753851], [-1.7819865, 51.0745578], [-1.7821515, 51.0708475]]}}, {"id": "238772946", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 238772946, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.778228, 51.0817489], [-1.7786216, 51.0811464]]}}, {"id": "238772949", "type": "Feature", "properties": {"electrified": "no", "osmid": 238772949, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7819107, 51.0751395], [-1.7819865, 51.0745578]]}}, {"id": "238774444", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774444, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7972523, 51.0752034], [-1.7975017, 51.0750593], [-1.7978853, 51.0748133]]}}, {"id": "238774445", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774445, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7917968, 51.0768669], [-1.7924458, 51.076788], [-1.7929768, 51.0767105], [-1.7936764, 51.0765862]]}}, {"id": "238774446", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "name": "Fisherton Tunnel", "osmid": 238774446, "railway": "rail", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7860989, 51.0775042], [-1.7900091, 51.0770765], [-1.7917968, 51.0768669]]}}, {"id": "238774447", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 238774447, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7972778, 51.0752321], [-1.797, 51.0753798]]}}, {"id": "238774448", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774448, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7936764, 51.0765862], [-1.7943394, 51.0764237], [-1.7947845, 51.0762815], [-1.7952393, 51.0761323], [-1.795702, 51.0759579], [-1.7961122, 51.0757862], [-1.7964716, 51.0756109], [-1.7967587, 51.0754623], [-1.7970081, 51.0753355]]}}, {"id": "238774449", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774449, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7979121, 51.0748396], [-1.7976858, 51.0749879], [-1.7975598, 51.0750704], [-1.7972778, 51.0752321]]}}, {"id": "238774450", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774450, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7986283, 51.0741706], [-1.7992177, 51.0735332], [-1.7997923, 51.0728045], [-1.8000082, 51.0725532], [-1.8001879, 51.0723673]]}}, {"id": "238774451", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 238774451, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7978853, 51.0748133], [-1.7981267, 51.0746223]]}}, {"id": "238774452", "type": "Feature", "properties": {"electrified": "no", "osmid": 238774452, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7978717, 51.0748856], [-1.7976858, 51.0749879]]}}, {"id": "238774453", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238774453, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7970291, 51.0754216], [-1.7972679, 51.0752878]]}}, {"id": "238774454", "type": "Feature", "properties": {"electrified": "no", "osmid": 238774454, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7972679, 51.0752878], [-1.797554, 51.075123], [-1.7978556, 51.0749255]]}}, {"id": "238774455", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 238774455, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7970081, 51.0753355], [-1.7972523, 51.0752034]]}}, {"id": "238774456", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238774456, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7980261, 51.0747975], [-1.7978717, 51.0748856]]}}, {"id": "238774457", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 238774457, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7983627, 51.0744256], [-1.7986283, 51.0741706]]}}, {"id": "238774458", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238774458, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7981267, 51.0746223], [-1.7983627, 51.0744256]]}}, {"id": "238774742", "type": "Feature", "properties": {"electrified": "no", "osmid": 238774742, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8005743, 51.0719592], [-1.8003301, 51.072155], [-1.8001155, 51.0723559], [-1.7999365, 51.0725641], [-1.7986805, 51.0740291]]}}, {"id": "238775028", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 238775028, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7984967, 51.0744566], [-1.7987999, 51.0742281]]}}, {"id": "238775030", "type": "Feature", "properties": {"electrified": "no", "osmid": 238775030, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7982668, 51.0746205], [-1.7984748, 51.0744514]]}}, {"id": "238775512", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 238775512, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.800146, 51.0724727], [-1.7998875, 51.0727652], [-1.799488, 51.0732609], [-1.7986853, 51.0741832]]}}, {"id": "238775515", "type": "Feature", "properties": {"electrified": "no", "osmid": 238775515, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7992592, 51.0735962], [-1.7994718, 51.0734023], [-1.799622, 51.073237], [-1.7998366, 51.0729806], [-1.8000579, 51.0727193], [-1.800259, 51.0724886], [-1.8004535, 51.0722958], [-1.8006868, 51.0720994], [-1.8009752, 51.0719034], [-1.801364, 51.071681], [-1.8017153, 51.071504], [-1.8021151, 51.0713251]]}}, {"id": "238775516", "type": "Feature", "properties": {"electrified": "no", "osmid": 238775516, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7998918, 51.0728345], [-1.800146, 51.0724727]]}}, {"id": "238775518", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 238775518, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8033848, 51.0707244], [-1.8028527, 51.0708475], [-1.8023283, 51.0709991]]}}, {"id": "238775519", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 238775519, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8004306, 51.0721888], [-1.8008424, 51.071824]]}}, {"id": "238775520", "type": "Feature", "properties": {"electrified": "no", "osmid": 238775520, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8007056, 51.0718664], [-1.8012581, 51.0715541]]}}, {"id": "238775832", "type": "Feature", "properties": {"electrified": "no", "osmid": 238775832, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8017155, 51.0712386], [-1.8014124, 51.0713806], [-1.8010543, 51.0715748], [-1.8006895, 51.0718255], [-1.8002805, 51.0721419], [-1.8000887, 51.0723224], [-1.7999653, 51.0724556], [-1.7998393, 51.0725885], [-1.7995764, 51.072883], [-1.7986484, 51.0739801]]}}, {"id": "238776884", "type": "Feature", "properties": {"electrified": "no", "osmid": 238776884, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.798727, 51.0742056], [-1.7992592, 51.0735962], [-1.7996703, 51.073114], [-1.7998918, 51.0728345], [-1.8002932, 51.0723827], [-1.8004696, 51.0722241], [-1.8006412, 51.0720809], [-1.8008612, 51.0719168], [-1.8011113, 51.0717369], [-1.8014244, 51.0715465], [-1.8018146, 51.0713613], [-1.8022828, 51.071166], [-1.8026958, 51.0710209], [-1.8031947, 51.0708646]]}}, {"id": "238776887", "type": "Feature", "properties": {"electrified": "no", "osmid": 238776887, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8008612, 51.0719168], [-1.8015049, 51.0715574], [-1.801985, 51.0713359], [-1.8024222, 51.0711611]]}}, {"id": "238777237", "type": "Feature", "properties": {"electrified": "no", "osmid": 238777237, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8083043, 51.0707527], [-1.8087894, 51.0708099], [-1.8091197, 51.0708607], [-1.8102489, 51.0710534], [-1.8118138, 51.0713294], [-1.813109, 51.0715917], [-1.813591, 51.0716946], [-1.8145706, 51.0719201], [-1.814949, 51.0720241], [-1.8159198, 51.0723114], [-1.816475, 51.0724841], [-1.8168941, 51.0726284]]}}, {"id": "238785102", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 238785102, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8125248, 51.0713837], [-1.8117416, 51.0712223]]}}, {"id": "238785103", "type": "Feature", "properties": {"electrified": "no", "osmid": 238785103, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8175102, 51.0728628], [-1.8168941, 51.0726284], [-1.8164776, 51.0725148], [-1.8147309, 51.0720776], [-1.8139398, 51.0718815], [-1.8119253, 51.0714293], [-1.8114772, 51.0713209], [-1.8112931, 51.0712755], [-1.8110714, 51.0712299], [-1.8108245, 51.0711832], [-1.8104533, 51.071129], [-1.810155, 51.0710931], [-1.8099631, 51.0710741], [-1.8095761, 51.0710889], [-1.8093188, 51.0711124], [-1.8091581, 51.0711336], [-1.8087343, 51.0711959], [-1.8079, 51.0713002], [-1.8075782, 51.0713187], [-1.8073395, 51.0713187], [-1.8060044, 51.0712648]]}}, {"id": "238785104", "type": "Feature", "properties": {"electrified": "no", "osmid": 238785104, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8118138, 51.0713294], [-1.8110714, 51.0712299]]}}, {"id": "238785105", "type": "Feature", "properties": {"electrified": "no", "osmid": 238785105, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8108245, 51.0711832], [-1.8102489, 51.0710534]]}}, {"id": "238785106", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 238785106, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8097621, 51.0709135], [-1.8104943, 51.0710013]]}}, {"id": "238788016", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "osmid": 238788016, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8177363, 51.0728044], [-1.8175807, 51.0727436]]}}, {"id": "238788017", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 238788017, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8342577, 51.0792599], [-1.833843, 51.0791593], [-1.8324965, 51.0788054], [-1.8310133, 51.0783673], [-1.829597, 51.0779039], [-1.8283176, 51.0774556], [-1.827006, 51.0769434], [-1.8257477, 51.076443], [-1.8243394, 51.0758684], [-1.8229237, 51.0752497], [-1.8220895, 51.0748537], [-1.8213572, 51.0745065], [-1.8202549, 51.0739333], [-1.8193886, 51.0735156], [-1.8185088, 51.0731111], [-1.8177363, 51.0728044]]}}, {"id": "241005703", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "West of England Main Line", "osmid": 241005703, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6655249, 51.1553874], [-1.6595447, 51.15809], [-1.6459429, 51.1643078], [-1.6450775, 51.1646818], [-1.644174, 51.1650209], [-1.6433038, 51.1653348], [-1.642391, 51.1656269], [-1.6415032, 51.165902], [-1.6404652, 51.1661991], [-1.6393821, 51.1664737], [-1.6383087, 51.16672], [-1.6373443, 51.1669216], [-1.619847, 51.1703259]]}}, {"id": "241005711", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "West of England Main Line", "osmid": 241005711, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6198312, 51.1702999], [-1.6373249, 51.1668923], [-1.6382887, 51.1666897], [-1.6393949, 51.1664357], [-1.6404545, 51.1661671], [-1.641471, 51.1658763], [-1.6423942, 51.1655841], [-1.6432279, 51.1653164], [-1.6441506, 51.1649915], [-1.6450651, 51.1646479], [-1.6459114, 51.1642837], [-1.6595232, 51.1580552], [-1.6655086, 51.1553535]]}}, {"id": "242240930", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 242240930, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7131501, 51.1335756], [-1.7132956, 51.1335114]]}}, {"id": "242240931", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242240931, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7231287, 51.1275915], [-1.7261595, 51.1253073], [-1.740345, 51.1145107]]}}, {"id": "242242466", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 242242466, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7482875, 51.1084692], [-1.7484318, 51.1083546]]}}, {"id": "242242467", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242242467, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7670633, 51.0903605], [-1.7696975, 51.0885816]]}}, {"id": "242242468", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 242242468, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7550443, 51.1018279], [-1.7551595, 51.1016865]]}}, {"id": "242242469", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242242469, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7404754, 51.1144117], [-1.7482875, 51.1084692]]}}, {"id": "242242471", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 242242471, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.740345, 51.1145107], [-1.7404754, 51.1144117]]}}, {"id": "242242472", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242242472, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7484318, 51.1083546], [-1.7508211, 51.1064802], [-1.7513959, 51.1059524], [-1.7519162, 51.1054494], [-1.7525016, 51.1048531], [-1.7531587, 51.104103], [-1.7537998, 51.1033586], [-1.7550443, 51.1018279]]}}, {"id": "242242473", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 242242473, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7696975, 51.0885816], [-1.7699272, 51.0884238]]}}, {"id": "242242955", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 242242955, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7782019, 51.0817218], [-1.7786216, 51.0811464], [-1.7790461, 51.0805797], [-1.7792533, 51.0803327], [-1.779437, 51.0801218], [-1.7796556, 51.079903], [-1.7799204, 51.0796628], [-1.7802162, 51.0794448], [-1.7804978, 51.0792342], [-1.780819, 51.0790428], [-1.7811255, 51.0788665], [-1.7813964, 51.0787158], [-1.7817424, 51.0785502], [-1.782109, 51.078396], [-1.7825068, 51.0782414], [-1.7828904, 51.0781132], [-1.7833477, 51.0779698], [-1.7837379, 51.0778643], [-1.7841631, 51.0777661], [-1.7846472, 51.0776772], [-1.7850992, 51.0776199], [-1.7853602, 51.0775891], [-1.785781, 51.0775395]]}}, {"id": "242376185", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 242376185, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4787016, 50.9194212], [-1.478144, 50.9196563], [-1.4778302, 50.9197823], [-1.4775365, 50.9198897], [-1.4772266, 50.9199937], [-1.4769001, 50.9200878]]}}, {"id": "242376186", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242376186, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.488807, 50.917071], [-1.4884866, 50.9170421], [-1.4881033, 50.9170137]]}}, {"id": "242376188", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 242376188, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4890618, 50.9170896], [-1.4893716, 50.9170989], [-1.4898151, 50.9171161]]}}, {"id": "242376189", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 242376189, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4769001, 50.9200878], [-1.4765725, 50.9201687], [-1.476259, 50.9202348]]}}, {"id": "242376508", "type": "Feature", "properties": {"electrified": "no", "osmid": 242376508, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.491403, 50.9171046], [-1.4910648, 50.9170879], [-1.4906613, 50.9170498], [-1.4903164, 50.9170036], [-1.4899694, 50.9169447], [-1.4894733, 50.9168589], [-1.4889652, 50.9167822], [-1.4884788, 50.9167173], [-1.4880029, 50.9166656], [-1.4873448, 50.9166026]]}}, {"id": "242377353", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377353, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4899216, 50.917081], [-1.4904311, 50.9171132], [-1.4909228, 50.9171336], [-1.4913645, 50.9171496]]}}, {"id": "242377354", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377354, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.488625, 50.91688], [-1.4894723, 50.9169956], [-1.489664, 50.917016], [-1.4898423, 50.9170321], [-1.4902671, 50.9170625], [-1.4904928, 50.9170811], [-1.4908294, 50.917093]]}}, {"id": "242377355", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377355, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4869, 50.9165924], [-1.48736, 50.9166381], [-1.4875571, 50.9166651], [-1.4877663, 50.9167074], [-1.4879502, 50.9167411], [-1.4881554, 50.9167682], [-1.4884597, 50.9167979], [-1.4887708, 50.9168325], [-1.4890417, 50.9168714], [-1.4898088, 50.9169974], [-1.4900503, 50.9170388], [-1.4902671, 50.9170625]]}}, {"id": "242377356", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377356, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4924052, 50.9170786], [-1.491795, 50.9171014], [-1.491403, 50.9171046], [-1.4908294, 50.917093], [-1.4906604, 50.917082], [-1.4904794, 50.9170642], [-1.4901992, 50.9170244], [-1.4898692, 50.9169754], [-1.4895366, 50.9169196], [-1.4890484, 50.9168393], [-1.4888298, 50.916803], [-1.4885844, 50.91677], [-1.4883081, 50.9167438], [-1.4880467, 50.9167175], [-1.4878669, 50.9166913], [-1.4876322, 50.9166457], [-1.4873448, 50.9166026], [-1.4867754, 50.9165462]]}}, {"id": "242377357", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377357, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4915792, 50.9171461], [-1.4918433, 50.9171302], [-1.4921021, 50.9171039], [-1.4924052, 50.9170786], [-1.4928062, 50.9170498], [-1.4932273, 50.9170093], [-1.4935921, 50.9169661], [-1.4939944, 50.9169103], [-1.4943377, 50.9168522], [-1.4946544, 50.9167953], [-1.4949977, 50.9167242], [-1.4953368, 50.9166508], [-1.4956681, 50.9165679], [-1.4960074, 50.9164783], [-1.4963871, 50.9163641], [-1.4967396, 50.9162508], [-1.4971408, 50.9161053], [-1.4974679, 50.9159828], [-1.497838, 50.9158264], [-1.4981384, 50.9156903], [-1.4982968, 50.9156132], [-1.4984764, 50.9155415], [-1.4986373, 50.9154763], [-1.4988921, 50.9153537]]}}, {"id": "242377358", "type": "Feature", "properties": {"electrified": "no", "osmid": 242377358, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4902545, 50.917147], [-1.4905142, 50.9171564], [-1.490761, 50.9171581], [-1.4910762, 50.9171538], [-1.4913645, 50.9171496], [-1.4915792, 50.9171461], [-1.4920914, 50.917131], [-1.4924709, 50.9171124], [-1.4928451, 50.9170887], [-1.4932608, 50.9170498], [-1.4935773, 50.9170126], [-1.4939475, 50.9169585], [-1.4943458, 50.9168951], [-1.4946772, 50.916835], [-1.495015, 50.9167666], [-1.4953503, 50.916688], [-1.4956865, 50.9166086], [-1.4960342, 50.9165129], [-1.4964112, 50.9164038], [-1.4967839, 50.9162787], [-1.4971729, 50.9161408], [-1.4975069, 50.9160098], [-1.497873, 50.9158593], [-1.4982338, 50.9156927], [-1.4985301, 50.9155447], [-1.4988921, 50.9153537], [-1.4991927, 50.9151778], [-1.4995265, 50.9149707], [-1.4998309, 50.9147627], [-1.5002287, 50.9144732], [-1.500535, 50.9142613], [-1.5007162, 50.9141457], [-1.5008836, 50.9140423], [-1.5010914, 50.9139031]]}}, {"id": "242378204", "type": "Feature", "properties": {"electrified": "no", "osmid": 242378204, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5002287, 50.9144732], [-1.5004504, 50.9142934], [-1.5006701, 50.9141073], [-1.5008671, 50.913912], [-1.5010573, 50.913694], [-1.5012293, 50.9134502], [-1.5013844, 50.9131547], [-1.5014798, 50.9128708], [-1.5015181, 50.9126568], [-1.5015346, 50.9124421], [-1.5015243, 50.9122015], [-1.5014845, 50.9119547], [-1.5014235, 50.9117414], [-1.5013298, 50.9115069], [-1.501202, 50.9112548], [-1.501026, 50.9110003], [-1.5008158, 50.9107515], [-1.5006073, 50.9105473], [-1.500354, 50.9103387], [-1.5001056, 50.91016], [-1.4998128, 50.9099915], [-1.4994489, 50.9098067], [-1.4990679, 50.9096308], [-1.4986624, 50.9094501], [-1.498141, 50.9092156], [-1.4957144, 50.9080867], [-1.4951598, 50.9078238], [-1.4945825, 50.9075484], [-1.4941437, 50.9073369], [-1.4936888, 50.9071188], [-1.4914743, 50.9060519], [-1.486119, 50.9035084]]}}, {"id": "242379286", "type": "Feature", "properties": {"electrified": "no", "osmid": 242379286, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4567132, 50.88952], [-1.4560279, 50.8891943]]}}, {"id": "242379289", "type": "Feature", "properties": {"electrified": "no", "osmid": 242379289, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4566226, 50.8895189], [-1.456398, 50.889399], [-1.456229, 50.8893034], [-1.4560279, 50.8891943], [-1.4541838, 50.8883208], [-1.4538365, 50.8881655], [-1.4534477, 50.8880006], [-1.4528226, 50.8877138], [-1.4498677, 50.8863088], [-1.4491085, 50.8859424], [-1.449037, 50.8859085], [-1.4430672, 50.8830775], [-1.4424906, 50.882802], [-1.4418725, 50.8825179], [-1.4414215, 50.8823312], [-1.4409648, 50.8821458], [-1.4404978, 50.881965], [-1.4399802, 50.881781], [-1.4359211, 50.880346], [-1.4144148, 50.8727429], [-1.4138459, 50.8725355], [-1.4133098, 50.8723193], [-1.4127837, 50.8720999], [-1.4121504, 50.8718115], [-1.4117855, 50.8716303], [-1.4099343, 50.8707026], [-1.4095787, 50.8705028], [-1.4091554, 50.8703286], [-1.408711, 50.8701661], [-1.4082441, 50.870016], [-1.4078394, 50.8699035], [-1.4074094, 50.8698008], [-1.4069915, 50.8697171], [-1.4027748, 50.8688528], [-1.4023325, 50.8687535], [-1.4019049, 50.8686442], [-1.4015573, 50.8685472], [-1.4011593, 50.8684199], [-1.400875, 50.8683184], [-1.3990122, 50.8676061]]}}, {"id": "242379292", "type": "Feature", "properties": {"electrified": "no", "osmid": 242379292, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4564972, 50.8895014], [-1.4562974, 50.889399], [-1.4561579, 50.8893127], [-1.4559586, 50.8892012]]}}, {"id": "242379295", "type": "Feature", "properties": {"electrified": "no", "osmid": 242379295, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4857095, 50.9033153], [-1.4801303, 50.9006803], [-1.4781565, 50.8997531], [-1.4733378, 50.8974656], [-1.4607325, 50.8914715], [-1.4566226, 50.8895189], [-1.4559586, 50.8892012], [-1.4558323, 50.8891408], [-1.4541522, 50.8883431], [-1.4538221, 50.8881969], [-1.4534182, 50.888026], [-1.4527671, 50.88773], [-1.4522464, 50.8874819], [-1.4498379, 50.8863392], [-1.4491085, 50.8859424]]}}, {"id": "242380481", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380481, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4484265, 50.8877256], [-1.4482186, 50.887806], [-1.4480148, 50.8878677], [-1.4477814, 50.8879481], [-1.4475481, 50.8880446], [-1.4459374, 50.8887326], [-1.4441215, 50.8895059], [-1.4428837, 50.8900712], [-1.4427241, 50.8901392], [-1.4425672, 50.8901949]]}}, {"id": "242380482", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380482, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4437368, 50.8896439], [-1.4433558, 50.8897432], [-1.4431197, 50.8898044], [-1.4428745, 50.8898809], [-1.4418602, 50.8902054]]}}, {"id": "242380483", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380483, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4459374, 50.8887326], [-1.4457121, 50.8888178], [-1.445417, 50.88891], [-1.4437778, 50.8894337], [-1.443512, 50.8895104], [-1.4432425, 50.8895617], [-1.442794, 50.8895934], [-1.4425414, 50.8895872], [-1.4423348, 50.8895822], [-1.4419436, 50.8895259], [-1.4415393, 50.8894283], [-1.4400895, 50.8888913], [-1.4384197, 50.8882729], [-1.4378154, 50.8880474]]}}, {"id": "242380484", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380484, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4484309, 50.8877706], [-1.4481886, 50.8878985], [-1.4480014, 50.8879998], [-1.4477976, 50.8880976], [-1.4439579, 50.8897318], [-1.4436481, 50.8898452], [-1.4432538, 50.8899741], [-1.4431533, 50.8900039], [-1.4428418, 50.8901258], [-1.4425808, 50.8902398], [-1.4423175, 50.8903421], [-1.4420267, 50.8904424], [-1.4397491, 50.8911701], [-1.4391949, 50.8913473], [-1.4387276, 50.8914956], [-1.4383843, 50.8916243], [-1.4381248, 50.8917348], [-1.4380115, 50.8917831], [-1.4368571, 50.8922748], [-1.4367285, 50.8923381], [-1.4366033, 50.8923998], [-1.4364383, 50.8925066], [-1.4362144, 50.8926775], [-1.4361145, 50.8927573], [-1.4359918, 50.8928359], [-1.4357182, 50.8929924], [-1.4353977, 50.8931588], [-1.4351404, 50.8932785], [-1.4332885, 50.8940262], [-1.4315031, 50.8947365]]}}, {"id": "242380485", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380485, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4431533, 50.8900039], [-1.4425672, 50.8901949], [-1.4424273, 50.8902394], [-1.4421253, 50.8903164], [-1.4417947, 50.8903901], [-1.4414919, 50.8904688], [-1.440502, 50.8907813], [-1.4397061, 50.8910372], [-1.4396583, 50.8910526], [-1.4383548, 50.8914684], [-1.4378988, 50.8916135]]}}, {"id": "242380486", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380486, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.449116, 50.8874869], [-1.4488012, 50.8876141], [-1.4484309, 50.8877706], [-1.443561, 50.8898518], [-1.4432538, 50.8899741]]}}, {"id": "242380487", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380487, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4395591, 50.8910072], [-1.4388121, 50.89114], [-1.4386217, 50.8911705], [-1.4384339, 50.8911866], [-1.438226, 50.8911874], [-1.4380892, 50.8911809], [-1.4378881, 50.8911705], [-1.4375939, 50.8911348]]}}, {"id": "242380488", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380488, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4441215, 50.8895059], [-1.4439056, 50.889588], [-1.4437368, 50.8896439], [-1.4427617, 50.8899669], [-1.4417719, 50.8902891], [-1.4414608, 50.8903903], [-1.4411899, 50.8904921], [-1.4407617, 50.8906779], [-1.440502, 50.8907813]]}}, {"id": "242380490", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380490, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4410947, 50.8904565], [-1.4409109, 50.890492], [-1.4406923, 50.8905191], [-1.4404751, 50.8905538], [-1.4402229, 50.8906054], [-1.4397603, 50.8907103]]}}, {"id": "242380491", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380491, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4413991, 50.8903846], [-1.441159, 50.8904277], [-1.440927, 50.8904531], [-1.4403866, 50.8905056], [-1.4402243, 50.8905267], [-1.4400835, 50.8905546], [-1.4397147, 50.8906358]]}}, {"id": "242380492", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380492, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4417719, 50.8902891], [-1.4415171, 50.8903609], [-1.4413991, 50.8903846], [-1.4410947, 50.8904565], [-1.4397804, 50.8907543]]}}, {"id": "242380494", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380494, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4427617, 50.8899669], [-1.4425243, 50.8900547], [-1.4421622, 50.8902095]]}}, {"id": "242380495", "type": "Feature", "properties": {"electrified": "no", "osmid": 242380495, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4424273, 50.8902394], [-1.4418269, 50.8904264], [-1.4406494, 50.8908093]]}}, {"id": "242382783", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382783, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4288692, 50.8936136], [-1.4286854, 50.8936161], [-1.4284682, 50.8936085], [-1.4282616, 50.8936119], [-1.4259563, 50.893668]]}}, {"id": "242382784", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382784, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.426832, 50.8938294], [-1.4271552, 50.8938479], [-1.4273725, 50.8938555], [-1.4276112, 50.8938504], [-1.4278459, 50.8938276], [-1.4281906, 50.8937947], [-1.4294981, 50.8936466], [-1.4297999, 50.8936009], [-1.4300359, 50.8935577], [-1.4302787, 50.8935174]]}}, {"id": "242382785", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382785, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4263157, 50.8938614], [-1.4270573, 50.8938919], [-1.4272799, 50.8938961], [-1.4274704, 50.8938919], [-1.4276353, 50.8938783], [-1.4278204, 50.8938555], [-1.4280015, 50.8938234], [-1.4281906, 50.8937947]]}}, {"id": "242382786", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382786, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4362908, 50.8919115], [-1.4359783, 50.8919141], [-1.4357007, 50.8919183], [-1.4351013, 50.8919688], [-1.4345712, 50.8920289], [-1.4340313, 50.8920901], [-1.4336837, 50.8921295]]}}, {"id": "242382787", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382787, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4264273, 50.8938031], [-1.4267475, 50.8938084], [-1.4270935, 50.8937988], [-1.427296, 50.8937924], [-1.4274878, 50.8937829], [-1.427689, 50.8937658], [-1.4283233, 50.8936905], [-1.4285956, 50.8936643], [-1.4288799, 50.8936449], [-1.4291548, 50.8936356], [-1.4294268, 50.8936178], [-1.4297744, 50.8935752]]}}, {"id": "242382789", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382789, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4218498, 50.8950034], [-1.4238118, 50.8941228], [-1.4240465, 50.8940281], [-1.4242558, 50.8939595], [-1.4244918, 50.8938986], [-1.4247077, 50.893853], [-1.4249116, 50.8938267], [-1.4251758, 50.8938098], [-1.4254293, 50.893804], [-1.4258356, 50.8937946], [-1.4260461, 50.8937912], [-1.4262795, 50.8937934], [-1.4264273, 50.8938031], [-1.426832, 50.8938294], [-1.4271002, 50.8938347], [-1.4273832, 50.8938268], [-1.4277212, 50.8938116], [-1.4279758, 50.8937846], [-1.4294268, 50.8936178]]}}, {"id": "242382790", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382790, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4397491, 50.8911701], [-1.4395476, 50.8912253], [-1.4393521, 50.8912704], [-1.4389327, 50.8913685], [-1.4384487, 50.8914818], [-1.4381831, 50.8915402], [-1.4378988, 50.8916135], [-1.4377005, 50.8916764], [-1.4375407, 50.8917271], [-1.4372309, 50.8918263], [-1.4369721, 50.891915], [-1.4352433, 50.8925646], [-1.4348643, 50.8927005], [-1.4345372, 50.892809], [-1.4340819, 50.8929458], [-1.4337077, 50.8930357], [-1.4333323, 50.8931166], [-1.4329436, 50.8931866], [-1.4325473, 50.8932485], [-1.4302787, 50.8935174], [-1.4297744, 50.8935752], [-1.4296014, 50.8935918], [-1.4294552, 50.8935989], [-1.4291655, 50.8935925], [-1.4288465, 50.893573], [-1.428558, 50.8935518], [-1.4282522, 50.8935051], [-1.4279518, 50.8934363], [-1.4276639, 50.8933452], [-1.4274181, 50.8932449], [-1.4260166, 50.8926329], [-1.4259525, 50.89261], [-1.4257841, 50.8925498], [-1.4255808, 50.892497], [-1.4252884, 50.8924412], [-1.4250108, 50.8924093], [-1.4247119, 50.8924005], [-1.4246529, 50.8924023]]}}, {"id": "242382791", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382791, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4275053, 50.8926011], [-1.427689, 50.8925845], [-1.427811, 50.8925798], [-1.42798, 50.8925731], [-1.4281611, 50.8925573], [-1.4304463, 50.892284], [-1.4312862, 50.8921835], [-1.4315138, 50.8921538], [-1.4317418, 50.8921088], [-1.4320073, 50.8920618]]}}, {"id": "242382792", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382792, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4294552, 50.8935989], [-1.429128, 50.8936068], [-1.4288692, 50.8936136], [-1.4285245, 50.8936288], [-1.4282804, 50.8936449], [-1.427296, 50.8937274], [-1.4269634, 50.8937557], [-1.4266054, 50.893765], [-1.4263827, 50.8937684], [-1.42623, 50.8937612], [-1.4258396, 50.8937337]]}}, {"id": "242382793", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382793, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4263827, 50.8937684], [-1.4266992, 50.8937844], [-1.426891, 50.8937954], [-1.4270935, 50.8937988]]}}, {"id": "242382794", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382794, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4252884, 50.8924412], [-1.4262371, 50.8925749], [-1.4263036, 50.8925843], [-1.4265812, 50.8926224], [-1.426828, 50.8926382], [-1.4270532, 50.8926384], [-1.4272679, 50.8926274], [-1.4275053, 50.8926011], [-1.4304339, 50.8922503], [-1.4320073, 50.8920618], [-1.4321766, 50.8920416], [-1.433378, 50.8918979], [-1.4339517, 50.8918306], [-1.4342952, 50.8917903], [-1.4345153, 50.8917661], [-1.4347191, 50.8917594], [-1.4349217, 50.8917713], [-1.4351611, 50.8917984], [-1.4354744, 50.8918416], [-1.4357829, 50.8918793], [-1.4359985, 50.8919011], [-1.4362908, 50.8919115], [-1.4365548, 50.8918998], [-1.436787, 50.8918763], [-1.436995, 50.8918491], [-1.4372752, 50.8917984], [-1.4375407, 50.8917271]]}}, {"id": "242382795", "type": "Feature", "properties": {"electrified": "no", "osmid": 242382795, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4217841, 50.894933], [-1.4236308, 50.8940985], [-1.4238078, 50.8940238], [-1.4240211, 50.8939418], [-1.4242584, 50.8938741], [-1.4244837, 50.8938208], [-1.4247278, 50.8937743], [-1.4249652, 50.8937506], [-1.4252012, 50.8937413], [-1.4254071, 50.8937442], [-1.4254413, 50.8937447], [-1.4259335, 50.893772], [-1.4262795, 50.8937934]]}}, {"id": "242383351", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383351, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4331392, 50.8914279], [-1.4328884, 50.8914446], [-1.4326068, 50.8914573], [-1.4323882, 50.8914762], [-1.4298441, 50.8917631], [-1.4297033, 50.8917796], [-1.4278124, 50.8919928], [-1.4275388, 50.8920367], [-1.4273135, 50.892085], [-1.4270935, 50.8921484], [-1.4268735, 50.8922135]]}}, {"id": "242383354", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383354, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4247119, 50.8924005], [-1.4249692, 50.8923876], [-1.4251922, 50.89236], [-1.4254004, 50.8923223], [-1.4256103, 50.8922707], [-1.4263827, 50.8920064], [-1.4266201, 50.8919431], [-1.4268478, 50.8918989], [-1.4271123, 50.8918661], [-1.427493, 50.8918237]]}}, {"id": "242383356", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383356, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4266858, 50.8923168], [-1.4268495, 50.8922922], [-1.4270117, 50.8922635], [-1.4271338, 50.8922372], [-1.4273041, 50.8922155], [-1.4290998, 50.8920101], [-1.4305388, 50.8918476], [-1.4326296, 50.8916129], [-1.4329086, 50.8915749], [-1.4331526, 50.8915266], [-1.4332612, 50.8914993], [-1.4336193, 50.8914091], [-1.4339023, 50.8913261], [-1.4342161, 50.8912105], [-1.4344725, 50.89112], [-1.4347144, 50.8910445], [-1.4349551, 50.8909906], [-1.4352729, 50.8909351]]}}, {"id": "242383359", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383359, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4297529, 50.8919686], [-1.4295491, 50.8919851], [-1.4293533, 50.8919928], [-1.4290998, 50.8920101]]}}, {"id": "242383361", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383361, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4299097, 50.8919509], [-1.4301459, 50.8919166], [-1.4303551, 50.891876], [-1.4305388, 50.8918476]]}}, {"id": "242383363", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383363, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4298441, 50.8917631], [-1.4301124, 50.8917449], [-1.4303189, 50.8917381], [-1.4305013, 50.8917248]]}}, {"id": "242383367", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383367, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4297033, 50.8917796], [-1.429537, 50.8918041], [-1.4293439, 50.8918413], [-1.4290656, 50.8918851]]}}, {"id": "242383807", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383807, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4246529, 50.8924023], [-1.4243523, 50.8924081], [-1.4241901, 50.8924149], [-1.4241297, 50.8924174], [-1.423891, 50.8924428], [-1.4236777, 50.8924724], [-1.4235074, 50.8925096], [-1.4233545, 50.8925604], [-1.4231641, 50.8926329], [-1.4198583, 50.8941162]]}}, {"id": "242383808", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383808, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4246529, 50.8924023], [-1.4242772, 50.8924278], [-1.4241231, 50.8924502], [-1.4240157, 50.8924658], [-1.4237465, 50.8925262], [-1.4235114, 50.8926018], [-1.4233197, 50.8926771], [-1.4199682, 50.8941786]]}}, {"id": "242383809", "type": "Feature", "properties": {"electrified": "no", "osmid": 242383809, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4237465, 50.8925262], [-1.4235159, 50.8925867], [-1.4232875, 50.8926503], [-1.4230731, 50.8927262], [-1.4198973, 50.8941447]]}}, {"id": "242385777", "type": "Feature", "properties": {"electrified": "no", "osmid": 242385777, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4275572, 50.8918163], [-1.4277614, 50.8917847], [-1.4278995, 50.8917593], [-1.4280363, 50.8917322], [-1.428216, 50.891704]]}}, {"id": "242385778", "type": "Feature", "properties": {"electrified": "no", "osmid": 242385778, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4345313, 50.8909853], [-1.4342483, 50.8910081], [-1.4340646, 50.8910148], [-1.4338902, 50.8910286], [-1.4288343, 50.8916045], [-1.4286626, 50.8916315], [-1.428495, 50.891662], [-1.4282764, 50.8916975]]}}, {"id": "242385779", "type": "Feature", "properties": {"electrified": "no", "osmid": 242385779, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4375939, 50.8911348], [-1.436313, 50.8909136], [-1.4361581, 50.8908933], [-1.4359408, 50.8908769], [-1.4356981, 50.8908769], [-1.4354687, 50.8908854], [-1.4352595, 50.8909049], [-1.4345313, 50.8909853], [-1.4282764, 50.8916975], [-1.428216, 50.891704], [-1.426824, 50.8918651], [-1.4248764, 50.8920832], [-1.4246702, 50.8921076], [-1.4244529, 50.892148], [-1.4244383, 50.8921516], [-1.4242413, 50.8921998], [-1.4240345, 50.8922628], [-1.4238494, 50.8923349], [-1.4231641, 50.8926329]]}}, {"id": "242385780", "type": "Feature", "properties": {"electrified": "no", "osmid": 242385780, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4281396, 50.8917491], [-1.4284092, 50.8917297], [-1.4286184, 50.8917221], [-1.4288182, 50.8917077], [-1.4338715, 50.8911317], [-1.4340418, 50.8911113], [-1.4341893, 50.8910783], [-1.4343704, 50.8910478], [-1.4345326, 50.8910228]]}}, {"id": "242385781", "type": "Feature", "properties": {"electrified": "no", "osmid": 242385781, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4346018, 50.8910146], [-1.4347486, 50.8909945], [-1.434876, 50.8909708], [-1.4350123, 50.8909423], [-1.4352595, 50.8909049]]}}, {"id": "242474644", "type": "Feature", "properties": {"electrified": "no", "osmid": 242474644, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4498677, 50.8863088], [-1.4496066, 50.8861571], [-1.4494564, 50.8860708], [-1.4493049, 50.8859922]]}}, {"id": "242474649", "type": "Feature", "properties": {"electrified": "no", "osmid": 242474649, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4498379, 50.8863392], [-1.4496053, 50.8862282], [-1.4494738, 50.8861656], [-1.4492566, 50.8860531]]}}, {"id": "242695496", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242695496, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5075871, 50.8639607], [-1.508528, 50.8672085]]}}, {"id": "242695500", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242695500, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.508528, 50.8672085], [-1.5085722, 50.8673558]]}}, {"id": "242697959", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242697959, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5075594, 50.8638651], [-1.5075871, 50.8639607]]}}, {"id": "242697960", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242697960, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5403801, 50.8286387], [-1.5136277, 50.8318851], [-1.5130818, 50.8319622], [-1.5125373, 50.8320536], [-1.5120431, 50.8321502], [-1.5116106, 50.832251], [-1.5110842, 50.8323891], [-1.5106219, 50.8325303], [-1.5104499, 50.8325877], [-1.5101971, 50.832672], [-1.5096446, 50.8328829], [-1.5091001, 50.8331141], [-1.5086085, 50.8333555], [-1.5080949, 50.8336316], [-1.5076335, 50.8339095], [-1.5071661, 50.8342225], [-1.5067478, 50.834543], [-1.5063964, 50.8348428], [-1.5060866, 50.8351376], [-1.5058123, 50.8354171], [-1.5055448, 50.8357212], [-1.5053142, 50.8360235], [-1.5051122, 50.8363284], [-1.5049258, 50.8366418], [-1.5047636, 50.8369603], [-1.5046201, 50.8373007], [-1.5045101, 50.8376446], [-1.5044183, 50.8379749], [-1.504349, 50.8382985], [-1.5032763, 50.8451546], [-1.5032374, 50.845495], [-1.5032025, 50.8458667], [-1.5031784, 50.8462097], [-1.5031636, 50.8466001], [-1.5031583, 50.8469616], [-1.5031623, 50.847319], [-1.5031811, 50.8476958], [-1.5032052, 50.8480268], [-1.5032387, 50.8483347], [-1.5032944, 50.8487412], [-1.5033433, 50.8490125], [-1.503401, 50.8493207], [-1.503477, 50.8496497], [-1.5035454, 50.8499063], [-1.5075594, 50.8638651]]}}, {"id": "242702102", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702102, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5405276, 50.8286208], [-1.5403801, 50.8286387]]}}, {"id": "242702108", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702108, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5408763, 50.8285785], [-1.5405276, 50.8286208]]}}, {"id": "242702122", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702122, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5410538, 50.8285569], [-1.5408763, 50.8285785]]}}, {"id": "242702126", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702126, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5578144, 50.8242298], [-1.5576699, 50.8243172]]}}, {"id": "242702136", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702136, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5576699, 50.8243172], [-1.5573021, 50.8245399], [-1.5568287, 50.824794], [-1.556378, 50.8250295], [-1.5558918, 50.825265], [-1.555336, 50.8255132], [-1.5548143, 50.8257403], [-1.5543213, 50.8259402], [-1.5538165, 50.8261325], [-1.5532753, 50.8263299], [-1.5528501, 50.8264807], [-1.5522909, 50.8266619], [-1.5517244, 50.8268314], [-1.5512247, 50.8269745], [-1.550695, 50.8271135], [-1.5501317, 50.8272549], [-1.5496141, 50.8273744], [-1.549095, 50.8274794], [-1.5485193, 50.82759], [-1.5480061, 50.8276793], [-1.5474865, 50.8277607], [-1.5469756, 50.8278301], [-1.5463796, 50.8279075], [-1.5410538, 50.8285569]]}}, {"id": "242702140", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242702140, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5607366, 50.8226177], [-1.5601605, 50.8229115], [-1.5597354, 50.8231284], [-1.5592078, 50.8234122], [-1.5587397, 50.8236827], [-1.5578144, 50.8242298]]}}, {"id": "242703035", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242703035, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5608975, 50.8225441], [-1.5607366, 50.8226177]]}}, {"id": "242703036", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242703036, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5625243, 50.8218541], [-1.5623747, 50.8219127]]}}, {"id": "242703037", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242703037, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5623747, 50.8219127], [-1.5618329, 50.8221304], [-1.561342, 50.8223374], [-1.5608975, 50.8225441]]}}, {"id": "242705202", "type": "Feature", "properties": {"osmid": 242705202, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.572618, 50.81739], [-1.5730525, 50.8171313]]}}, {"id": "242706577", "type": "Feature", "properties": {"electrified": "no", "osmid": 242706577, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5763543, 50.8135211], [-1.5774803, 50.8118975], [-1.5776552, 50.8116263], [-1.5777941, 50.8113677], [-1.5780878, 50.8109195], [-1.5782507, 50.8107431]]}}, {"id": "242706580", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 242706580, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5781702, 50.811234], [-1.5785814, 50.8104741]]}}, {"id": "242706583", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 242706583, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5791929, 50.8097497], [-1.5787625, 50.8104833], [-1.5785142, 50.8108824], [-1.577886, 50.8118661], [-1.5776602, 50.8122009], [-1.5768943, 50.8133366]]}}, {"id": "242706585", "type": "Feature", "properties": {"electrified": "no", "osmid": 242706585, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5762854, 50.8135011], [-1.5774259, 50.8118458], [-1.5775836, 50.8116085], [-1.5777732, 50.8112831], [-1.5779006, 50.8111077], [-1.5780562, 50.8109298], [-1.5782507, 50.8107431], [-1.5785658, 50.810401], [-1.5786718, 50.8102832], [-1.5788147, 50.8100844]]}}, {"id": "242706588", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 242706588, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5794075, 50.8092088], [-1.5789877, 50.8097927]]}}, {"id": "242706591", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 242706591, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5779462, 50.8115857], [-1.5775997, 50.8121882]]}}, {"id": "242875652", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875652, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6025452, 50.7883959], [-1.6138679, 50.7827357], [-1.6143749, 50.7824625], [-1.6149392, 50.782145], [-1.6155064, 50.7817821], [-1.615969, 50.7814412], [-1.6164345, 50.7810902], [-1.6168583, 50.7807484], [-1.6178814, 50.7797769]]}}, {"id": "242875653", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875653, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5868236, 50.8021987], [-1.5869479, 50.8020987]]}}, {"id": "242875654", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875654, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5891479, 50.8000633], [-1.589571, 50.7995835]]}}, {"id": "242875655", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875655, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.589571, 50.7995835], [-1.5898152, 50.7992831], [-1.5900684, 50.7989346], [-1.5903313, 50.7985642], [-1.5919034, 50.7960092], [-1.5921032, 50.7957001], [-1.5923321, 50.7953846], [-1.5928813, 50.7947144], [-1.5931382, 50.7944241], [-1.5934385, 50.7941054], [-1.5937256, 50.793824], [-1.5940743, 50.7934857], [-1.5944658, 50.7931313], [-1.5949179, 50.7927465], [-1.5953349, 50.7924193], [-1.5957785, 50.7920845], [-1.5962335, 50.7917622], [-1.5967109, 50.7914486], [-1.5972177, 50.7911298], [-1.597887, 50.7907161], [-1.5985174, 50.7903787], [-1.6023825, 50.7884783]]}}, {"id": "242875656", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875656, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6023825, 50.7884783], [-1.6025452, 50.7883959]]}}, {"id": "242875657", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242875657, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5869479, 50.8020987], [-1.5876312, 50.8015372], [-1.5880514, 50.8011783], [-1.5883773, 50.8008808], [-1.5886588, 50.8005951], [-1.5889312, 50.8003002], [-1.5891479, 50.8000633]]}}, {"id": "242877595", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242877595, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.617989, 50.7796747], [-1.6183778, 50.7792623], [-1.6246391, 50.7723096], [-1.6263586, 50.7704235], [-1.6266697, 50.7701002], [-1.6270412, 50.7697387], [-1.6274038, 50.7693961], [-1.6281921, 50.7686654], [-1.6285996, 50.7682916], [-1.6290731, 50.767923], [-1.6294754, 50.7676116], [-1.6298872, 50.7672901], [-1.6303472, 50.7669449], [-1.63083, 50.7666141], [-1.6314749, 50.7661572], [-1.6321906, 50.7656758], [-1.6328065, 50.7652665], [-1.6335161, 50.7648143], [-1.6342, 50.7643939], [-1.6348612, 50.7639956], [-1.6354821, 50.763642], [-1.6359622, 50.7633712], [-1.6366851, 50.7629742], [-1.6376347, 50.7624687], [-1.6387812, 50.7618935], [-1.6407097, 50.7609915], [-1.6418282, 50.7604978], [-1.642822, 50.7600816], [-1.6438788, 50.7596609], [-1.6449813, 50.7592365], [-1.6455155, 50.7590484], [-1.6478822, 50.758239], [-1.6484499, 50.7580545], [-1.649064, 50.7578602], [-1.6496161, 50.7576951], [-1.6509896, 50.7572977], [-1.6517057, 50.7570949], [-1.6525566, 50.7568729], [-1.6534177, 50.7566539], [-1.6539882, 50.7565095], [-1.654739, 50.756345], [-1.6560235, 50.756066], [-1.6569148, 50.7558821], [-1.6586893, 50.7555464], [-1.6597385, 50.7553736], [-1.6783729, 50.7524754], [-1.6791406, 50.7523618], [-1.6800203, 50.7522481], [-1.6806936, 50.7521539]]}}, {"id": "242877596", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242877596, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6806964, 50.7521865], [-1.679999, 50.7522786], [-1.6791558, 50.7523926], [-1.6783764, 50.7525068], [-1.6597053, 50.7554096], [-1.6587454, 50.7555765], [-1.6576793, 50.7557804], [-1.6569166, 50.7559308], [-1.6560451, 50.7561066], [-1.6547739, 50.7563834], [-1.6540292, 50.7565523], [-1.6525864, 50.7569112], [-1.6517482, 50.7571286], [-1.6510076, 50.7573277], [-1.6496451, 50.7577258], [-1.6490896, 50.75789], [-1.6484717, 50.758081], [-1.6479031, 50.7582676], [-1.6455439, 50.7590694], [-1.6450133, 50.7592571], [-1.6439124, 50.7596834], [-1.6428729, 50.7601028], [-1.6418711, 50.7605154], [-1.6406977, 50.7610351], [-1.6388148, 50.7619155], [-1.6376813, 50.762491], [-1.6367253, 50.7629964], [-1.6359891, 50.7633992], [-1.6349068, 50.7640202], [-1.6342443, 50.7644155], [-1.6335684, 50.764832], [-1.6328609, 50.7652831], [-1.6322313, 50.7656947], [-1.6315084, 50.7661843], [-1.6308689, 50.766632], [-1.6304087, 50.7669572], [-1.6299529, 50.7672997], [-1.6295385, 50.767629], [-1.6291441, 50.7679407], [-1.6286786, 50.7683222], [-1.6282482, 50.7686825], [-1.6274476, 50.7694101], [-1.6270896, 50.7697573], [-1.6267274, 50.7701105], [-1.6264069, 50.7704446], [-1.6260723, 50.7708031], [-1.6247137, 50.7723228], [-1.6184253, 50.7792802], [-1.6180184, 50.779705]]}}, {"id": "242877597", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242877597, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6178814, 50.7797769], [-1.617989, 50.7796747]]}}, {"id": "242877598", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242877598, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6180184, 50.779705], [-1.6179178, 50.7797992]]}}, {"id": "242927119", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242927119, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6808886, 50.7521318], [-1.6815413, 50.7520638], [-1.6822466, 50.7519953], [-1.6829574, 50.7519325], [-1.6837365, 50.7518748], [-1.6845063, 50.7518281], [-1.6851822, 50.7517959], [-1.6859064, 50.7517713], [-1.6866628, 50.7517416], [-1.6876874, 50.7517229], [-1.6885605, 50.7517136], [-1.6893504, 50.7517203], [-1.6900759, 50.7517339], [-1.6909047, 50.751762], [-1.6916222, 50.7517925], [-1.6924041, 50.751834], [-1.6932289, 50.7518917], [-1.6941207, 50.7519673], [-1.6948838, 50.7520419], [-1.6958481, 50.752148], [-1.6967613, 50.7522473], [-1.6979496, 50.7523703], [-1.6987207, 50.7524433], [-1.6994556, 50.7525001], [-1.7001745, 50.7525468], [-1.7009134, 50.7525833], [-1.7018549, 50.7526257], [-1.7027145, 50.7526572], [-1.7035151, 50.7526757], [-1.7043654, 50.7526851], [-1.7052117, 50.7526819], [-1.7126354, 50.752591], [-1.713619, 50.7525637], [-1.7145498, 50.7525256], [-1.715447, 50.752478], [-1.7162315, 50.7524254], [-1.7170348, 50.7523584], [-1.7177765, 50.7522888], [-1.7185436, 50.7522091], [-1.7193388, 50.75212], [-1.7237128, 50.7515729]]}}, {"id": "242927124", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242927124, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7136258, 50.752603], [-1.7126546, 50.7526301], [-1.7052036, 50.7527135], [-1.7043761, 50.7527194], [-1.7035019, 50.7527163], [-1.7027158, 50.7527049], [-1.7018334, 50.7526701], [-1.7009162, 50.7526254], [-1.7001718, 50.7525821], [-1.6994477, 50.7525318], [-1.6987194, 50.7524759], [-1.697943, 50.7524052], [-1.6967347, 50.7522782], [-1.6958414, 50.7521799], [-1.6948906, 50.7520758], [-1.6941195, 50.7519992], [-1.6932387, 50.751925], [-1.692399, 50.7518741], [-1.691617, 50.7518357], [-1.6908806, 50.7518074], [-1.6900908, 50.7517797], [-1.689333, 50.7517651], [-1.6885605, 50.7517577], [-1.6876861, 50.7517629], [-1.686663, 50.7517891], [-1.6859102, 50.7518134], [-1.6851743, 50.7518396], [-1.684504, 50.7518648], [-1.6837514, 50.7519054], [-1.6829612, 50.7519646], [-1.6822609, 50.7520272], [-1.6815601, 50.752093], [-1.6808917, 50.7521637]]}}, {"id": "242927125", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242927125, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6808917, 50.7521637], [-1.6806964, 50.7521865]]}}, {"id": "242927128", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242927128, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.6806936, 50.7521539], [-1.6808886, 50.7521318]]}}, {"id": "242928058", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928058, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7245502, 50.7514681], [-1.7255334, 50.7513402], [-1.726385, 50.7512231], [-1.7271615, 50.7511179], [-1.7279648, 50.7509949], [-1.728744, 50.7508608], [-1.7295098, 50.7507106], [-1.730187, 50.7505681], [-1.7438759, 50.7476387]]}}, {"id": "242928060", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928060, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7441933, 50.7475708], [-1.7565014, 50.74499]]}}, {"id": "242928061", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928061, "railway": "rail", "tunnel": "yes", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7237128, 50.7515729], [-1.7245502, 50.7514681]]}}, {"id": "242928062", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928062, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7438759, 50.7476387], [-1.7441933, 50.7475708]]}}, {"id": "242928752", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928752, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7683805, 50.7425653], [-1.7686363, 50.7425147]]}}, {"id": "242928753", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928753, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7565014, 50.74499], [-1.7567457, 50.7449388]]}}, {"id": "242928754", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928754, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7590251, 50.7444557], [-1.7605846, 50.7441247], [-1.7613701, 50.7439619], [-1.762088, 50.7438121], [-1.7628181, 50.7436656], [-1.7683805, 50.7425653]]}}, {"id": "242928755", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928755, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7567457, 50.7449388], [-1.7587966, 50.7445041]]}}, {"id": "242928756", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928756, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7686363, 50.7425147], [-1.7710998, 50.7420357]]}}, {"id": "242928757", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242928757, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7587966, 50.7445041], [-1.7590251, 50.7444557]]}}, {"id": "242955581", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 242955581, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7803749, 50.7402104], [-1.7809814, 50.7400419], [-1.7815623, 50.739832], [-1.7820167, 50.7396566], [-1.7824901, 50.7394461], [-1.7829065, 50.7392488], [-1.7847423, 50.7383187]]}}, {"id": "242955586", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242955586, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7746327, 50.7413553], [-1.7790821, 50.740498]]}}, {"id": "242955587", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242955587, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7745216, 50.7413767], [-1.7746327, 50.7413553]]}}, {"id": "242955588", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 242955588, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7790821, 50.740498], [-1.7795015, 50.7404135], [-1.7799246, 50.7403201], [-1.7803749, 50.7402104]]}}, {"id": "242955589", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242955589, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7715872, 50.7419409], [-1.7745216, 50.7413767]]}}, {"id": "242955591", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 242955591, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7710998, 50.7420357], [-1.7715872, 50.7419409]]}}, {"id": "250104574", "type": "Feature", "properties": {"electrified": "no", "osmid": 250104574, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4345392, 50.9115597], [-1.4350583, 50.9117136], [-1.4355348, 50.9118409], [-1.4359729, 50.9119385], [-1.4364879, 50.9120383], [-1.4370096, 50.9121246], [-1.4375554, 50.9121914], [-1.4379175, 50.9122252], [-1.4381187, 50.9122286], [-1.4383466, 50.912226], [-1.4385508, 50.9122123], [-1.4387329, 50.912187], [-1.438879, 50.9121582], [-1.4390504, 50.9121153], [-1.4392119, 50.912062], [-1.4394048, 50.9119902], [-1.4395715, 50.9119094], [-1.4397422, 50.911801], [-1.4398904, 50.911695], [-1.4400291, 50.9115816], [-1.4401535, 50.9114651], [-1.4402733, 50.9113324], [-1.4403842, 50.9111745], [-1.4404744, 50.9110219], [-1.4405378, 50.91087], [-1.4405986, 50.9107203], [-1.4406363, 50.9106214], [-1.4406551, 50.9105258], [-1.4406633, 50.910405], [-1.4406461, 50.9102964], [-1.4405967, 50.9101523], [-1.4405039, 50.9100074], [-1.4403806, 50.9098185], [-1.4403427, 50.9097604], [-1.4401485, 50.9094614], [-1.440048, 50.9093211], [-1.4399192, 50.9091951], [-1.4397931, 50.9090903], [-1.439651, 50.9089947], [-1.439478, 50.9089067], [-1.4386183, 50.9085144], [-1.4384722, 50.9084509], [-1.4382978, 50.9083892], [-1.4339634, 50.9069512]]}}, {"id": "250105703", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 250105703, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4168421, 50.9074414], [-1.4175473, 50.9074512]]}}, {"id": "250105704", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 250105704, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4168421, 50.9074414], [-1.417565, 50.9074175], [-1.4187732, 50.9073682], [-1.4193298, 50.9073392], [-1.4199456, 50.9073393], [-1.4201194, 50.9073409], [-1.4206028, 50.9073605], [-1.4210881, 50.9073964], [-1.4211579, 50.9074033]]}}, {"id": "250105705", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osmid": 250105705, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4098775, 50.9072609], [-1.4107663, 50.9073583]]}}, {"id": "250153350", "type": "Feature", "properties": {"electrified": "no", "osmid": 250153350, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3983149, 50.8899084], [-1.3985282, 50.8893087], [-1.3986679, 50.8889816], [-1.398719, 50.8888296]]}}, {"id": "250153352", "type": "Feature", "properties": {"electrified": "no", "osmid": 250153352, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.396513, 50.8866972], [-1.3963202, 50.8863099]]}}, {"id": "250154211", "type": "Feature", "properties": {"electrified": "no", "osmid": 250154211, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3964024, 50.896911], [-1.396529, 50.8968504], [-1.3967643, 50.8967473], [-1.3968887, 50.8966868], [-1.3970207, 50.8966036], [-1.3971326, 50.8965129], [-1.3972331, 50.8964117], [-1.3973059, 50.8963075], [-1.3973751, 50.8961916], [-1.3975179, 50.8959353], [-1.3975801, 50.8958063], [-1.3976221, 50.8957027], [-1.3976536, 50.8955967], [-1.3976672, 50.8954896], [-1.3976765, 50.8951321], [-1.3976778, 50.8949172], [-1.397668, 50.8947992], [-1.3976511, 50.8946801], [-1.3976049, 50.8945365], [-1.3975621, 50.8944373], [-1.3974422, 50.8941745], [-1.3973792, 50.8940447], [-1.3973138, 50.8938888], [-1.3972811, 50.8937831], [-1.3972715, 50.89368], [-1.3972845, 50.8935526], [-1.3973256, 50.8932719], [-1.3973852, 50.8928357], [-1.3974333, 50.8924612]]}}, {"id": "251486675", "type": "Feature", "properties": {"electrified": "no", "osmid": 251486675, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8023283, 51.0709991], [-1.801989, 51.071121], [-1.8017155, 51.0712386], [-1.8014298, 51.071389], [-1.8012193, 51.071512], [-1.8009953, 51.0716548], [-1.8007056, 51.0718664], [-1.8005743, 51.0719592], [-1.8002805, 51.0721419]]}}, {"id": "251486676", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 251486676, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8036699, 51.0706614], [-1.8039913, 51.0705892]]}}, {"id": "251488429", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 251488429, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8472795, 51.0811706], [-1.8478937, 51.0812919], [-1.8485777, 51.0814503], [-1.8492321, 51.0816424], [-1.849849, 51.0818513], [-1.8504418, 51.0820973], [-1.8510033, 51.0823569], [-1.8514575, 51.0825966], [-1.8519152, 51.0828775], [-1.8523631, 51.0831758], [-1.8540154, 51.0843805], [-1.8544767, 51.0846956], [-1.8550078, 51.0850442], [-1.8555655, 51.0853811], [-1.8564265, 51.0858613], [-1.8584489, 51.0869261], [-1.8593179, 51.0873321], [-1.8601413, 51.0876944], [-1.8608682, 51.0879959]]}}, {"id": "251488431", "type": "Feature", "properties": {"electrified": "no", "osmid": 251488431, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8465147, 51.0810376], [-1.8472929, 51.0811419]]}}, {"id": "251488433", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 251488433, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8472929, 51.0811419], [-1.8479205, 51.0812667], [-1.8486099, 51.0814201], [-1.8492885, 51.081618], [-1.8498855, 51.0818292], [-1.850466, 51.0820693], [-1.8510239, 51.0823334], [-1.8514962, 51.0825817], [-1.8519265, 51.0828408], [-1.8523955, 51.0831634], [-1.854036, 51.0843526], [-1.8545211, 51.0846878], [-1.8550547, 51.085035], [-1.8556142, 51.0853653], [-1.8564642, 51.0858415], [-1.8584784, 51.0869105], [-1.8593368, 51.0873041], [-1.8601683, 51.0876697], [-1.860908, 51.0879749]]}}, {"id": "251488434", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 251488434, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8475343, 51.0811302], [-1.8469063, 51.0810329], [-1.8460721, 51.0809267], [-1.8453345, 51.0808308]]}}, {"id": "251522887", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 251522887, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.861077, 51.0850394], [-1.8613279, 51.0849977], [-1.8622496, 51.0848522]]}}, {"id": "251522889", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 251522889, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8622496, 51.0848522], [-1.8614702, 51.0850026], [-1.8610721, 51.0850695]]}}, {"id": "251522890", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 251522890, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8604016, 51.0851521], [-1.8601495, 51.085174]]}}, {"id": "251522892", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "40 mph", "osmid": 251522892, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8610721, 51.0850695], [-1.8608173, 51.0851049]]}}, {"id": "251522893", "type": "Feature", "properties": {"electrified": "no", "osmid": 251522893, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8613279, 51.0849977], [-1.8624964, 51.0847731]]}}, {"id": "251522895", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 251522895, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8608173, 51.0851049], [-1.8604016, 51.0851521]]}}, {"id": "251532777", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "40 mph", "osmid": 251532777, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0703513, 51.0645127], [-2.0705498, 51.0644454]]}}, {"id": "251532778", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 251532778, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0690347, 51.0649935], [-2.0697802, 51.0647065], [-2.0703513, 51.0645127]]}}, {"id": "251532780", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 251532780, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0705498, 51.0644454], [-2.0736098, 51.0634112], [-2.0743557, 51.0631507], [-2.0756014, 51.0626977]]}}, {"id": "251736614", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "osmid": 251736614, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5789877, 50.8097927], [-1.5793619, 50.8091665]]}}, {"id": "252081540", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 252081540, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8800195, 51.0813722], [-1.8812909, 51.0811268], [-1.8826524, 51.0808937]]}}, {"id": "252156203", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252156203, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8629494, 51.0888038], [-1.8649465, 51.0895072], [-1.86575, 51.0897972], [-1.8668629, 51.0902156], [-1.867742, 51.0905843]]}}, {"id": "252156205", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252156205, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8612099, 51.0881286], [-1.8626633, 51.0886927]]}}, {"id": "252156207", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252156207, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8608682, 51.0879959], [-1.8612099, 51.0881286]]}}, {"id": "252156208", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252156208, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8679975, 51.0906915], [-1.8687593, 51.0910688], [-1.8691194, 51.0912748], [-1.8693896, 51.0914294], [-1.8698175, 51.0916589], [-1.870063, 51.0918523], [-1.8706343, 51.0922498], [-1.8712243, 51.0926929], [-1.8717849, 51.0931646], [-1.8722059, 51.0935671], [-1.8726057, 51.0939883], [-1.8729033, 51.0943437], [-1.8732199, 51.0947396], [-1.875379, 51.0976789], [-1.8757519, 51.0981271], [-1.8761033, 51.0985515], [-1.8764679, 51.0989759], [-1.8772914, 51.09984], [-1.8795285, 51.1020364], [-1.880018, 51.1025313], [-1.8805155, 51.1030821], [-1.881001, 51.1036347], [-1.8815293, 51.1042847], [-1.8820335, 51.1049264], [-1.8825539, 51.1056304], [-1.8830556, 51.1063428], [-1.8835813, 51.1071512], [-1.8840505, 51.1079021], [-1.8848713, 51.1093806], [-1.8852253, 51.1100847], [-1.8858442, 51.1113612]]}}, {"id": "252156209", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252156209, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.867742, 51.0905843], [-1.8679975, 51.0906915]]}}, {"id": "252156210", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252156210, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8626633, 51.0886927], [-1.8629494, 51.0888038]]}}, {"id": "252159745", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252159745, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8858983, 51.1114728], [-1.8875419, 51.1149182]]}}, {"id": "252159747", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252159747, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8858442, 51.1113612], [-1.8858983, 51.1114728]]}}, {"id": "252160897", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252160897, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9009568, 51.1214059], [-1.9010761, 51.1214579]]}}, {"id": "252160898", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252160898, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9009321, 51.1214359], [-1.9010426, 51.1214845]]}}, {"id": "252160899", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "50 mph", "osmid": 252160899, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8904933, 51.118364], [-1.8906826, 51.1184681]]}}, {"id": "252160900", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252160900, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9010426, 51.1214845], [-1.9017962, 51.1218339], [-1.9026357, 51.1222397], [-1.9076541, 51.1247043], [-1.9084775, 51.1250898], [-1.9093922, 51.1254635], [-1.9104006, 51.1258149], [-1.9113501, 51.1260879], [-1.912407, 51.1263353], [-1.9134636, 51.1265189], [-1.9146009, 51.1266653], [-1.9211331, 51.1272532]]}}, {"id": "252160901", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 252160901, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8906826, 51.1184681], [-1.8913329, 51.1187973], [-1.8919954, 51.1190762], [-1.8927437, 51.1193372], [-1.8935108, 51.119546], [-1.8944147, 51.119753], [-1.8958725, 51.1200528]]}}, {"id": "252160902", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252160902, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9213599, 51.1272736], [-1.9231983, 51.1274318], [-1.9242021, 51.1275184], [-1.9251957, 51.1275778], [-1.9263356, 51.1276317], [-1.9276419, 51.1276636], [-1.9314208, 51.127677], [-1.9327959, 51.1277103], [-1.9339853, 51.1277596], [-1.9352325, 51.127837], [-1.9365119, 51.1279279], [-1.9379255, 51.1280575], [-1.9394999, 51.1282275]]}}, {"id": "252160903", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252160903, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8875419, 51.1149182], [-1.887595, 51.1150295]]}}, {"id": "252160904", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252160904, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9211331, 51.1272532], [-1.9213599, 51.1272736]]}}, {"id": "252160905", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252160905, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9010761, 51.1214579], [-1.9018339, 51.1218098], [-1.9026519, 51.1222114], [-1.9076942, 51.1246803], [-1.9085265, 51.1250697], [-1.9094296, 51.1254424], [-1.910426, 51.1257854], [-1.9113895, 51.1260664], [-1.9123988, 51.1262979], [-1.9134824, 51.1264903], [-1.9146245, 51.1266321], [-1.9198234, 51.127115], [-1.9211337, 51.127225]]}}, {"id": "252160906", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 252160906, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8877182, 51.1152767], [-1.8879911, 51.1158241], [-1.8882536, 51.1162913], [-1.8885513, 51.1167392], [-1.8889135, 51.1171366], [-1.8893802, 51.1175795], [-1.8899328, 51.1179903], [-1.8904933, 51.118364]]}}, {"id": "252173664", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252173664, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9395085, 51.1282022], [-1.9397044, 51.1282267]]}}, {"id": "252173666", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252173666, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9397044, 51.1282267], [-1.941041, 51.1284094], [-1.9421857, 51.1285855], [-1.9432407, 51.1287564], [-1.9443538, 51.1289445], [-1.9454705, 51.1291496], [-1.9466594, 51.1293915], [-1.9476983, 51.1296206]]}}, {"id": "252174235", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252174235, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9595992, 51.1321446], [-1.9597628, 51.1321664]]}}, {"id": "252174236", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Up Salisbury", "osmid": 252174236, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9597628, 51.1321664], [-1.9608276, 51.1322989], [-1.9617667, 51.1324009], [-1.9628527, 51.1325003], [-1.9638076, 51.1325673], [-1.964756, 51.1326239], [-1.9666346, 51.1327068], [-1.9677783, 51.1327738], [-1.9690245, 51.1328598], [-1.9701483, 51.132959], [-1.9711675, 51.133063], [-1.9722646, 51.1331855], [-1.9733348, 51.1333283], [-1.9744559, 51.1334993], [-1.9756101, 51.1336947], [-1.988109, 51.1360518], [-1.9895139, 51.1363239], [-1.9957047, 51.1374903], [-2.0040038, 51.1390622], [-2.0052286, 51.139278], [-2.0065834, 51.1394775], [-2.0077731, 51.1396218], [-2.0090009, 51.1397388], [-2.0099697, 51.1398058], [-2.0109568, 51.1398431], [-2.0115517, 51.1398522], [-2.012062, 51.13986], [-2.0162206, 51.1398647], [-2.0178895, 51.1398743], [-2.0189429, 51.139896], [-2.0200639, 51.1399279], [-2.0211549, 51.1399714], [-2.0222115, 51.1400409], [-2.0232105, 51.1401209], [-2.0241921, 51.1402172], [-2.0253514, 51.1403537], [-2.0264688, 51.1405117], [-2.0277082, 51.1407155], [-2.0289303, 51.1409594], [-2.0300061, 51.1411867], [-2.0312383, 51.1414793], [-2.032228, 51.1417481], [-2.0330217, 51.1419807], [-2.0339361, 51.1422672], [-2.0374879, 51.1434382], [-2.0385684, 51.1438168], [-2.0395772, 51.1441804], [-2.0407512, 51.1446418], [-2.0444959, 51.1462111], [-2.0454507, 51.1466341], [-2.0464112, 51.1470856], [-2.0472544, 51.1475494], [-2.0480439, 51.1480433], [-2.048824, 51.1486199], [-2.0495735, 51.1492274], [-2.0501504, 51.1498132]]}}, {"id": "252174237", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252174237, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9575123, 51.1318391], [-1.9577353, 51.1318749]]}}, {"id": "252174238", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252174238, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9577353, 51.1318749], [-1.9587087, 51.1320269], [-1.9595992, 51.1321446]]}}, {"id": "252255496", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255496, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9394999, 51.1282275], [-1.9396959, 51.1282529]]}}, {"id": "252255497", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255497, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9575043, 51.1318697], [-1.9577363, 51.1319088]]}}, {"id": "252255500", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252255500, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9521212, 51.1307704], [-1.9529405, 51.1309696], [-1.9538324, 51.1311727], [-1.9547927, 51.131373], [-1.9560062, 51.1316176], [-1.9575043, 51.1318697]]}}, {"id": "252255501", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252255501, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9396959, 51.1282529], [-1.941008, 51.1284346], [-1.9421768, 51.1286147], [-1.9432577, 51.1287881], [-1.9443118, 51.1289665], [-1.9454652, 51.1291786], [-1.9466265, 51.1294159], [-1.9476879, 51.1296451]]}}, {"id": "252255502", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255502, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9476879, 51.1296451], [-1.947828, 51.129676]]}}, {"id": "252255504", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Down Salisbury", "osmid": 252255504, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9597533, 51.1321983], [-1.9608169, 51.1323307], [-1.9617691, 51.1324317], [-1.9628432, 51.1325299], [-1.9638156, 51.1326], [-1.9647556, 51.1326595], [-1.9666278, 51.1327386], [-1.9677719, 51.1328037], [-1.9690084, 51.1328912], [-1.970151, 51.1329872], [-1.9711419, 51.1330887], [-1.9722646, 51.1332093], [-1.9733118, 51.1333529], [-1.9744425, 51.1335224], [-1.9755971, 51.1337232], [-1.9881004, 51.1360888], [-1.9956931, 51.1375249], [-2.0039802, 51.1390886], [-2.0052236, 51.1393001], [-2.0065578, 51.1395043], [-2.0077824, 51.1396552], [-2.0090055, 51.139773], [-2.0099642, 51.1398425], [-2.0109674, 51.1398779], [-2.0115393, 51.1398857], [-2.0120724, 51.139893], [-2.0162191, 51.1398978], [-2.0178955, 51.1399031], [-2.0189484, 51.1399178], [-2.0200708, 51.1399502], [-2.0211598, 51.139999], [-2.0222246, 51.140069], [-2.0231956, 51.1401438], [-2.0241907, 51.1402464], [-2.0253199, 51.1403777], [-2.0264679, 51.1405392], [-2.0277017, 51.1407429], [-2.0289048, 51.1409763], [-2.0299896, 51.1412107], [-2.0311725, 51.1414968], [-2.0321997, 51.1417744], [-2.0330017, 51.142005], [-2.0339217, 51.1422944], [-2.0374662, 51.1434646], [-2.0385347, 51.1438305], [-2.0395593, 51.1442023], [-2.0407158, 51.1446537], [-2.0444542, 51.1462369], [-2.0454252, 51.146654], [-2.0463832, 51.1471086], [-2.0472227, 51.1475764], [-2.0479979, 51.148061], [-2.0487887, 51.1486378], [-2.0495241, 51.1492405], [-2.0501084, 51.1498206]]}}, {"id": "252255505", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255505, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.959588, 51.1321756], [-1.9597533, 51.1321983]]}}, {"id": "252255506", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255506, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9476983, 51.1296206], [-1.9478464, 51.1296533]]}}, {"id": "252255507", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "osmid": 252255507, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9518754, 51.1307066], [-1.9521212, 51.1307704]]}}, {"id": "252255508", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252255508, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9478464, 51.1296533], [-1.9489357, 51.1299088], [-1.9518956, 51.1306816]]}}, {"id": "252255509", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252255509, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9577363, 51.1319088], [-1.9586965, 51.1320533], [-1.959588, 51.1321756]]}}, {"id": "252255511", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252255511, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.947828, 51.129676], [-1.9489279, 51.1299411], [-1.9518754, 51.1307066]]}}, {"id": "252257736", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252257736, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0547159, 51.1538271], [-2.0565044, 51.1549439], [-2.0577827, 51.1557121], [-2.0586593, 51.1562027], [-2.0596059, 51.1566898], [-2.0605802, 51.1571753], [-2.0616197, 51.1576756], [-2.0626223, 51.1581293], [-2.0635475, 51.1585348], [-2.0646061, 51.1589699], [-2.0654367, 51.1593057], [-2.0665654, 51.1597431], [-2.0675825, 51.1601188], [-2.0687029, 51.1605036], [-2.0698353, 51.1608829], [-2.071119, 51.1612818], [-2.0725659, 51.1617252], [-2.0806567, 51.1641539], [-2.0823105, 51.1646859]]}}, {"id": "252257738", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "65 mph", "osmid": 252257738, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0525035, 51.1522331], [-2.0531835, 51.152731]]}}, {"id": "252267924", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252267924, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.054682, 51.1538453], [-2.0564797, 51.1549692], [-2.0577652, 51.1557447], [-2.0586141, 51.1562191], [-2.0595663, 51.1567086], [-2.060564, 51.1572049], [-2.0615886, 51.1576927], [-2.0626149, 51.1581685], [-2.0635141, 51.1585554], [-2.0645739, 51.1589914], [-2.0654162, 51.1593295], [-2.0665191, 51.1597556], [-2.0675669, 51.160145], [-2.068672, 51.1605252], [-2.0698042, 51.160909], [-2.0710837, 51.1612993], [-2.0725343, 51.1617514], [-2.0806262, 51.1641784], [-2.0822842, 51.1647067]]}}, {"id": "252267925", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "65 mph", "osmid": 252267925, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0524638, 51.1522487], [-2.0531477, 51.1527518]]}}, {"id": "252427482", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252427482, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8773413, 51.0998193], [-1.8795847, 51.1020203], [-1.8800681, 51.1025221], [-1.8805556, 51.1030601], [-1.8810438, 51.1036189], [-1.8815668, 51.1042756], [-1.8820739, 51.1049157], [-1.8826046, 51.1056239], [-1.8831162, 51.1063386], [-1.8836321, 51.1071404], [-1.8840988, 51.1078883], [-1.8849233, 51.1093763], [-1.8852641, 51.1100601], [-1.8859002, 51.1113574]]}}, {"id": "252427483", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 252427483, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8958898, 51.1200231], [-1.8978651, 51.120421], [-1.8986808, 51.1206235], [-1.8994836, 51.1208532], [-1.9002464, 51.1211139], [-1.9009568, 51.1214059]]}}, {"id": "295726009", "type": "Feature", "properties": {"osmid": 295726009, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9817008, 50.7831155], [-1.9816213, 50.783118], [-1.9815371, 50.7831318], [-1.9814585, 50.783186], [-1.9814191, 50.7833586], [-1.9814263, 50.7834341], [-1.9814696, 50.7834743], [-1.9815172, 50.7835112], [-1.9815761, 50.7835404], [-1.9816095, 50.7835546], [-1.9816577, 50.783572], [-1.9817531, 50.783603], [-1.9819019, 50.7836689], [-1.9819773, 50.7836723], [-1.9820532, 50.7836545], [-1.9821771, 50.783575], [-1.982213, 50.7835127], [-1.9822075, 50.7834026], [-1.9821807, 50.7833129], [-1.9820361, 50.7832075], [-1.981833, 50.7831391], [-1.9817008, 50.7831155]]}}, {"id": "306925764", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 306925764, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.713174, 51.1335972], [-1.6976869, 51.1406576], [-1.6953999, 51.1417004], [-1.6900668, 51.1441319], [-1.6864257, 51.1458097], [-1.6837789, 51.1470171], [-1.6811375, 51.148222]]}}, {"id": "306925769", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 306925769, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6811243, 51.148215], [-1.6858864, 51.1459499], [-1.6900382, 51.1441159], [-1.6953741, 51.1416773], [-1.6976856, 51.1406135], [-1.7131501, 51.1335756]]}}, {"id": "306937599", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 306937599, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7551595, 51.1016865], [-1.7596812, 51.0962204], [-1.7598366, 51.0960388], [-1.7600996, 51.0957314], [-1.7605207, 51.0952613], [-1.76142, 51.0943751], [-1.7620442, 51.0938047], [-1.7626397, 51.0933476], [-1.7669304, 51.0904502]]}}, {"id": "306937602", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 306937602, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7669304, 51.0904502], [-1.7670633, 51.0903605]]}}, {"id": "306937606", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "80 mph", "osmid": 306937606, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7670755, 51.0903952], [-1.7669476, 51.0904817]]}}, {"id": "306937607", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 306937607, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7669476, 51.0904817], [-1.7626898, 51.0933593], [-1.7620952, 51.093821], [-1.7614676, 51.0943855], [-1.7605771, 51.0952647], [-1.7601442, 51.0957548], [-1.759904, 51.0960335], [-1.759725, 51.0962411], [-1.7552085, 51.1016993]]}}, {"id": "308666470", "type": "Feature", "properties": {"osmid": 308666470, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9817531, 50.783603], [-1.9818688, 50.7835921], [-1.981933, 50.7835616], [-1.9819839, 50.7835168], [-1.98202, 50.7834576], [-1.9820347, 50.7833932], [-1.9820361, 50.7833052], [-1.982008, 50.7832282], [-1.9819143, 50.7831825], [-1.9818206, 50.7831521], [-1.9817296, 50.7831377], [-1.9816386, 50.7831292], [-1.9815523, 50.7831502], [-1.9815035, 50.7831742], [-1.981484, 50.7831961]]}}, {"id": "308666471", "type": "Feature", "properties": {"osmid": 308666471, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9814581, 50.7832539], [-1.9814191, 50.7833586]]}}, {"id": "308666472", "type": "Feature", "properties": {"osmid": 308666472, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9815224, 50.7834806], [-1.981598, 50.7835186]]}}, {"id": "308666473", "type": "Feature", "properties": {"osmid": 308666473, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9819063, 50.783519], [-1.9819401, 50.7834522], [-1.9819424, 50.7833536], [-1.9819415, 50.7833151], [-1.9819406, 50.7832778], [-1.9818854, 50.7832245], [-1.9817496, 50.7831749], [-1.9816571, 50.7831567], [-1.9815985, 50.783157], [-1.9815529, 50.7831581], [-1.9814999, 50.7831845], [-1.981484, 50.7831961], [-1.9814634, 50.7832229], [-1.9814581, 50.7832539], [-1.9814491, 50.7833078], [-1.9814449, 50.7833282], [-1.981446, 50.7833551], [-1.9814428, 50.7833878], [-1.9814734, 50.7834347], [-1.981495, 50.7834577], [-1.9815224, 50.7834806], [-1.9815466, 50.783508], [-1.9816236, 50.7835389], [-1.9816514, 50.7835473], [-1.9816993, 50.7835629], [-1.9817504, 50.7835703], [-1.9817983, 50.7835639], [-1.9818421, 50.7835499], [-1.9819063, 50.783519]]}}, {"id": "308666474", "type": "Feature", "properties": {"osmid": 308666474, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9814835, 50.783257], [-1.9814745, 50.7833105], [-1.981446, 50.7833551]]}}, {"id": "308666475", "type": "Feature", "properties": {"osmid": 308666475, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.981833, 50.7831391], [-1.9817723, 50.7831186], [-1.9817106, 50.7831056], [-1.9816601, 50.7831045], [-1.9815975, 50.7831077], [-1.9815371, 50.7831318]]}}, {"id": "308666856", "type": "Feature", "properties": {"osmid": 308666856, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9819835, 50.7834138], [-1.9819935, 50.7833384]]}}, {"id": "308666857", "type": "Feature", "properties": {"osmid": 308666857, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9819623, 50.7834146], [-1.9819698, 50.7833368]]}}, {"id": "308666858", "type": "Feature", "properties": {"osmid": 308666858, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9819415, 50.7833151], [-1.9819161, 50.7832823], [-1.9818936, 50.7832574], [-1.9818586, 50.7832349]]}}, {"id": "336052319", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 336052319, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6655086, 51.1553535], [-1.6689686, 51.1537724], [-1.6699651, 51.153321], [-1.6730221, 51.151892], [-1.6758176, 51.1506279], [-1.6811243, 51.148215]]}}, {"id": "336052320", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 336052320, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6811375, 51.148222], [-1.6758552, 51.1506596], [-1.6730519, 51.15192], [-1.6700133, 51.1533353], [-1.6689899, 51.1538032], [-1.6655249, 51.1553874]]}}, {"id": "353537876", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 353537876, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0687321, 51.0650994], [-2.0688437, 51.0650601]]}}, {"id": "353537877", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 353537877, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0688437, 51.0650601], [-2.0690347, 51.0649935]]}}, {"id": "488307672", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 488307672, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4080604, 50.9071338], [-1.4085824, 50.90717]]}}, {"id": "488307674", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "name": "South Western Main Line", "osmid": 488307674, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4087741, 50.9072152], [-1.4080592, 50.9071624]]}}, {"id": "488307677", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 488307677, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4348886, 50.9117466], [-1.4352198, 50.91184], [-1.4355433, 50.9119217], [-1.4359717, 50.9120193], [-1.4365048, 50.912121], [-1.4370032, 50.9121996], [-1.437487, 50.9122632], [-1.438006, 50.912314], [-1.4385116, 50.912347], [-1.4389931, 50.912363], [-1.4395134, 50.912363], [-1.4400002, 50.9123512], [-1.4404723, 50.9123309], [-1.4409457, 50.9122911], [-1.4419971, 50.9121905]]}}, {"id": "488307681", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 488307681, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4508712, 50.9122979], [-1.4505252, 50.9122235], [-1.4501497, 50.9121423], [-1.4497206, 50.9120688], [-1.4493424, 50.9120045], [-1.4489159, 50.9119529], [-1.4485055, 50.9119073], [-1.447989, 50.9118666], [-1.4476874, 50.9118481], [-1.4472945, 50.9118312], [-1.4469114, 50.9118291], [-1.4461839, 50.9118381], [-1.4457131, 50.9118559], [-1.4452687, 50.9118845], [-1.4446485, 50.9119396], [-1.4443869, 50.9119706], [-1.4437186, 50.9120506], [-1.4429161, 50.9121503], [-1.4427724, 50.9121679]]}}, {"id": "488307684", "type": "Feature", "properties": {"electrified": "no", "osmid": 488307684, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4778213, 50.9918856], [-1.4788308, 50.9916632], [-1.4793632, 50.9915619], [-1.4802912, 50.9914082], [-1.4811361, 50.9913002], [-1.481781, 50.9912367], [-1.4824102, 50.9911845], [-1.4829968, 50.9911551], [-1.4836266, 50.9911347]]}}, {"id": "512105957", "type": "Feature", "properties": {"maxspeed": "15 mph", "osmid": 512105957, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8039913, 51.0705892], [-1.804475, 51.0705105], [-1.8047099, 51.0704777], [-1.8050606, 51.0704449]]}}, {"id": "552005780", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 552005780, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0653165, 51.0660996], [-2.0658863, 51.0659658], [-2.0664023, 51.0658322], [-2.0669856, 51.0656665], [-2.0675408, 51.0654944], [-2.0680549, 51.0653232], [-2.0687321, 51.0650994]]}}, {"id": "552235098", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "50 mph", "osmid": 552235098, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.841102, 51.0802551], [-1.8453171, 51.0807936], [-1.8457455, 51.0808483], [-1.8464972, 51.0809471], [-1.8470296, 51.0810174], [-1.8475719, 51.0811034], [-1.8481458, 51.0812161], [-1.8487748, 51.0813564], [-1.8493689, 51.0815312], [-1.8500448, 51.0817656], [-1.8506162, 51.0820085], [-1.8511735, 51.0822797], [-1.8517088, 51.0825684], [-1.8522026, 51.0828893], [-1.8529637, 51.0834462], [-1.8534122, 51.083749], [-1.853929, 51.0840635], [-1.8544052, 51.084287], [-1.854884, 51.0844824], [-1.8553627, 51.0846556], [-1.8559781, 51.0848319], [-1.8566256, 51.0849864], [-1.8573535, 51.0851], [-1.8580839, 51.0851671], [-1.8588235, 51.0851892], [-1.8594687, 51.0851816], [-1.8601617, 51.0851434]]}}, {"id": "552235099", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 552235099, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8601495, 51.085174], [-1.8594762, 51.0852094], [-1.858811, 51.0852178], [-1.8581004, 51.0851992], [-1.8573718, 51.085129], [-1.8566364, 51.0850184], [-1.8559202, 51.0848524], [-1.8553586, 51.0846868], [-1.8548516, 51.0845051], [-1.8543617, 51.0843058], [-1.8539242, 51.0840974], [-1.8534092, 51.0837908], [-1.8529049, 51.0834504], [-1.8521512, 51.0828977], [-1.8516819, 51.0825945], [-1.8511705, 51.0823101], [-1.8509994, 51.0822293], [-1.8506027, 51.0820417], [-1.8499939, 51.0817907], [-1.8493287, 51.0815598], [-1.8487467, 51.0813913], [-1.8481351, 51.0812515], [-1.8475343, 51.0811302]]}}, {"id": "552235100", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 552235100, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8431686, 51.0805568], [-1.8410817, 51.0802927], [-1.8369061, 51.0797592], [-1.8359029, 51.0796075], [-1.8349615, 51.0794306], [-1.8342577, 51.0792599]]}}, {"id": "552235101", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 552235101, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8342817, 51.0792264], [-1.8349998, 51.0793991], [-1.8359461, 51.0795751], [-1.8368869, 51.0797166], [-1.841102, 51.0802551]]}}, {"id": "552235102", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 552235102, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8111932, 51.0711145], [-1.8117416, 51.0712223], [-1.8125462, 51.0713533], [-1.8131551, 51.0714699], [-1.8139453, 51.071637], [-1.8148013, 51.0718475], [-1.8154327, 51.0720213], [-1.8161383, 51.0722257], [-1.8169236, 51.0724754], [-1.8176049, 51.072721]]}}, {"id": "552235103", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 552235103, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8175807, 51.0727436], [-1.8168887, 51.0725021], [-1.8161136, 51.0722562], [-1.8154117, 51.0720515], [-1.8146545, 51.0718421], [-1.8138015, 51.0716381], [-1.8131176, 51.0714932], [-1.8125248, 51.0713837], [-1.811173, 51.0711575]]}}, {"id": "552235104", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 552235104, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8109341, 51.0710635], [-1.8111932, 51.0711145]]}}, {"id": "552235105", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 552235105, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8104943, 51.0710013], [-1.8109341, 51.0710635]]}}, {"id": "553148114", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "20 mph", "osmid": 553148114, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8034688, 51.0707689], [-1.8031786, 51.0708416], [-1.8028862, 51.0709136], [-1.8024222, 51.0710572], [-1.8019663, 51.0712339], [-1.8016256, 51.0713929], [-1.8013492, 51.0715383], [-1.8011254, 51.0716809], [-1.8007995, 51.071908], [-1.8004306, 51.0721888]]}}, {"id": "553148115", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553148115, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8037265, 51.0706795], [-1.8041132, 51.0706051]]}}, {"id": "553148116", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553148116, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8041132, 51.0706051], [-1.8047122, 51.0705069], [-1.8052204, 51.0704586], [-1.8057891, 51.0704367], [-1.8064109, 51.0704562], [-1.8071134, 51.0705042], [-1.8078813, 51.0705727], [-1.8085479, 51.0706561], [-1.809284, 51.0707647], [-1.8100975, 51.070897], [-1.810603, 51.0709987], [-1.8109341, 51.0710635]]}}, {"id": "553148117", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553148117, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8004306, 51.0721888], [-1.8003166, 51.0723051], [-1.800146, 51.0724727]]}}, {"id": "553148118", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553148118, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8001879, 51.0723673], [-1.800373, 51.0721876], [-1.8005769, 51.0720218], [-1.8008424, 51.071824], [-1.8012581, 51.0715541], [-1.8015545, 51.0713861], [-1.8020226, 51.0711743], [-1.8024155, 51.0710254], [-1.802893, 51.0708772], [-1.8034154, 51.0707466]]}}, {"id": "553148119", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "osmid": 553148119, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.778228, 51.0817489], [-1.7778526, 51.0822772], [-1.7775415, 51.0826436], [-1.7769894, 51.0832613], [-1.7763206, 51.0839138], [-1.7755733, 51.0845741], [-1.774785, 51.0851784], [-1.7739632, 51.0857697], [-1.7699728, 51.0884366]]}}, {"id": "553148120", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 553148120, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7699272, 51.0884238], [-1.7739211, 51.0857515], [-1.7747445, 51.0851548], [-1.7755411, 51.0845449], [-1.7762868, 51.0838895], [-1.7769466, 51.0832411], [-1.7775086, 51.0826241], [-1.777829, 51.0822147], [-1.7782019, 51.0817218]]}}, {"id": "553148121", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 553148121, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7231607, 51.1276075], [-1.7201504, 51.1298858], [-1.7194906, 51.1303409], [-1.7188284, 51.1307745], [-1.7180505, 51.1312439], [-1.7171778, 51.1317035], [-1.7165699, 51.1320212], [-1.7139396, 51.1332487], [-1.7133231, 51.1335288]]}}, {"id": "553148122", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 553148122, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7132956, 51.1335114], [-1.7165469, 51.1319995], [-1.7171707, 51.1316726], [-1.7180163, 51.1312185], [-1.7187888, 51.1307576], [-1.7194514, 51.130325], [-1.7200978, 51.1298756], [-1.7231287, 51.1275915]]}}, {"id": "553861188", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 553861188, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4211302, 50.9075083], [-1.4206586, 50.9074674], [-1.420406, 50.9074536], [-1.4201454, 50.9074465], [-1.4200771, 50.9074441], [-1.4193366, 50.9074464], [-1.4187815, 50.9074674], [-1.4182543, 50.9074989], [-1.4176947, 50.907539], [-1.4170329, 50.9075794], [-1.4165633, 50.9076022]]}}, {"id": "553861189", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 553861189, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4427724, 50.9121679], [-1.4413352, 50.9123118], [-1.4407727, 50.9123537], [-1.4402148, 50.9123842], [-1.4396596, 50.9124053], [-1.4391191, 50.9124138], [-1.4386645, 50.9124045], [-1.4380757, 50.9123749], [-1.4375387, 50.9123303], [-1.4370301, 50.9122745], [-1.4364963, 50.9121972], [-1.4358832, 50.912092], [-1.4351204, 50.9119214], [-1.4344109, 50.9117246], [-1.4339045, 50.9115677], [-1.4333981, 50.9113783], [-1.4327458, 50.9111185], [-1.432145, 50.9108696], [-1.4314404, 50.9105708], [-1.4304686, 50.9101795], [-1.4302082, 50.9100744], [-1.4295139, 50.9098379], [-1.4282349, 50.9094143], [-1.4242359, 50.9080922], [-1.4237472, 50.9079501], [-1.4232535, 50.9078195], [-1.4227571, 50.9077121], [-1.4221696, 50.9076038], [-1.421642, 50.9075305], [-1.4211389, 50.9074767]]}}, {"id": "553861190", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 553861190, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.416508, 50.9074841], [-1.4175473, 50.9074512], [-1.4180598, 50.9074301], [-1.4182718, 50.907418], [-1.4187592, 50.9073901], [-1.4190672, 50.9073805], [-1.4192937, 50.9073734], [-1.4199619, 50.9073706], [-1.4204611, 50.9073855], [-1.4210296, 50.9074255], [-1.4211484, 50.9074366]]}}, {"id": "553861191", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 553861191, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4211579, 50.9074033], [-1.4216328, 50.9074505], [-1.4221526, 50.9075237], [-1.4227894, 50.9076351], [-1.4232978, 50.9077483], [-1.4237981, 50.9078779], [-1.4242596, 50.9080181], [-1.4283224, 50.909363], [-1.4295475, 50.9097711], [-1.4301453, 50.9099696], [-1.4305018, 50.9101032], [-1.4308023, 50.9102222], [-1.4314614, 50.9104831], [-1.432406, 50.9108611], [-1.4332456, 50.9111784], [-1.4343278, 50.9115425], [-1.4349089, 50.9117215], [-1.4352631, 50.911818], [-1.4356339, 50.9119103], [-1.4360146, 50.9119955], [-1.4365221, 50.9120922], [-1.4371794, 50.9121923], [-1.4377362, 50.9122577], [-1.4380492, 50.9122862], [-1.4384094, 50.9123109], [-1.438977, 50.9123277], [-1.4395954, 50.9123256], [-1.4401864, 50.9123057], [-1.4407214, 50.912278], [-1.4419971, 50.9121905]]}}, {"id": "553861192", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "20 mph", "name": "Down Goods loop", "osmid": 553861192, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4209619, 50.9073451], [-1.4213414, 50.9073773], [-1.4218403, 50.9074364], [-1.4223151, 50.9075058], [-1.4227898, 50.9075878], [-1.4233156, 50.907702], [-1.4238185, 50.9078381], [-1.4242825, 50.9079811], [-1.4275864, 50.9090702], [-1.4281502, 50.9092579], [-1.4284734, 50.9093603], [-1.4289173, 50.9094922], [-1.4298257, 50.9097853], [-1.4302304, 50.9099286], [-1.4305938, 50.9100673], [-1.4316666, 50.9105078], [-1.4320491, 50.9106656], [-1.4327234, 50.9109264], [-1.4333081, 50.9111446], [-1.4338392, 50.9113306], [-1.434224, 50.9114611], [-1.4345392, 50.9115597]]}}, {"id": "553861193", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 553861193, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4419971, 50.9121905], [-1.4427629, 50.9121091]]}}, {"id": "553861194", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 553861194, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4510196, 50.9122957], [-1.4514384, 50.9123924], [-1.4519547, 50.9125199], [-1.453305, 50.9128665], [-1.4540787, 50.9130777], [-1.4550543, 50.9133586], [-1.456377, 50.9137728], [-1.4570151, 50.9139793], [-1.4576826, 50.9142108], [-1.4583636, 50.9144509], [-1.459153, 50.9147458], [-1.4598579, 50.915016], [-1.4606179, 50.9153243], [-1.461562, 50.9157272], [-1.4621127, 50.91597], [-1.4626385, 50.9162128], [-1.465994, 50.9178109], [-1.4683345, 50.9189322], [-1.4687213, 50.9191172]]}}, {"id": "553861195", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "65 mph", "name": "South Western Main Line", "osmid": 553861195, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.468709, 50.9191473], [-1.4677345, 50.9186839], [-1.4626091, 50.916232], [-1.4620828, 50.9159882], [-1.4615406, 50.9157521], [-1.4609947, 50.9155162], [-1.460586, 50.9153416], [-1.4598441, 50.9150486], [-1.4591298, 50.9147711], [-1.4577953, 50.9142833], [-1.4570779, 50.9140381], [-1.456347, 50.9137963], [-1.4547108, 50.9132923], [-1.453658, 50.9129938], [-1.4528681, 50.9127833], [-1.4521225, 50.9125939], [-1.4514761, 50.9124366], [-1.4510067, 50.9123284]]}}, {"id": "553861196", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 553861196, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4738785, 50.920434], [-1.4736466, 50.9204229], [-1.4733154, 50.920401], [-1.4729759, 50.9203671], [-1.4727376, 50.920336]]}}, {"id": "553861197", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "50 mph", "name": "South Western Main Line", "osmid": 553861197, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4717729, 50.9201476], [-1.472413, 50.9202566], [-1.472705, 50.9203006]]}}, {"id": "553861198", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553861198, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4741864, 50.9211336], [-1.4739617, 50.9209508], [-1.4737467, 50.9208205], [-1.4734533, 50.9206649], [-1.4731549, 50.9205326], [-1.4727981, 50.9204051], [-1.4724819, 50.9203127], [-1.472339, 50.920277], [-1.4722001, 50.9202423], [-1.4717729, 50.9201476]]}}, {"id": "553861199", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 553861199, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4741689, 50.9211731], [-1.4739624, 50.9210083], [-1.473725, 50.920851], [-1.4734595, 50.9207048], [-1.473125, 50.9205616], [-1.4728044, 50.92045], [-1.4724563, 50.920342], [-1.4721366, 50.9202606], [-1.4716524, 50.9201558]]}}, {"id": "553861200", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 553861200, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4912223, 50.9172105], [-1.4908027, 50.9172011], [-1.4904096, 50.9171868], [-1.4900355, 50.9171657], [-1.4895902, 50.9171302], [-1.4890618, 50.9170896], [-1.488807, 50.917071], [-1.4884137, 50.9170525], [-1.4880231, 50.9170442], [-1.4877167, 50.9170414], [-1.4872741, 50.9170465], [-1.486845, 50.9170634], [-1.4863783, 50.9170946], [-1.486207, 50.9171104], [-1.4859934, 50.9171302], [-1.4855387, 50.9171809], [-1.4851297, 50.9172392], [-1.4847368, 50.917306], [-1.4843691, 50.9173737], [-1.4839782, 50.9174551], [-1.4835812, 50.9175496], [-1.4832, 50.9176509], [-1.4828553, 50.9177515], [-1.4824864, 50.917864], [-1.4821122, 50.9179959], [-1.4817703, 50.9181271], [-1.4787016, 50.9194212]]}}, {"id": "553861201", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "55 mph", "name": "South Western Main Line", "osmid": 553861201, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4768869, 50.9200566], [-1.477189, 50.9199706], [-1.4774902, 50.9198713], [-1.4778075, 50.9197569], [-1.4781291, 50.9196281], [-1.478682, 50.919396]]}}, {"id": "553865135", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "name": "South Western Main Line", "osmid": 553865135, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.478682, 50.919396], [-1.4805394, 50.9186161], [-1.4817296, 50.9181109], [-1.4820771, 50.9179746], [-1.4824602, 50.9178407], [-1.4828274, 50.9177265], [-1.483158, 50.917632], [-1.4835518, 50.9175255], [-1.48391, 50.9174414], [-1.4843567, 50.9173468], [-1.4847229, 50.9172738], [-1.4851423, 50.9172057], [-1.4855673, 50.9171482], [-1.485993, 50.9170973], [-1.486174, 50.9170805], [-1.4863659, 50.9170675], [-1.4868389, 50.9170339], [-1.4872688, 50.9170173], [-1.4877204, 50.9170109], [-1.4881033, 50.9170137], [-1.488519, 50.9170273], [-1.4889003, 50.9170472], [-1.4898151, 50.9171161], [-1.4902545, 50.917147], [-1.4902608, 50.9171474], [-1.4907747, 50.9171776], [-1.4912219, 50.9171867]]}}, {"id": "553865136", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 553865136, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5003305, 50.9145203], [-1.5002171, 50.9146063], [-1.4999341, 50.9148109], [-1.4996284, 50.9150189], [-1.4992958, 50.9152235], [-1.4990049, 50.9153942], [-1.4986856, 50.9155609], [-1.4983221, 50.9157449], [-1.4979507, 50.9159126], [-1.4975859, 50.9160682], [-1.4972278, 50.9162052], [-1.4968335, 50.9163464], [-1.4964607, 50.9164639], [-1.4960746, 50.9165813], [-1.4957244, 50.9166778], [-1.4953945, 50.916759], [-1.4950673, 50.9168334], [-1.4947197, 50.9169028], [-1.4943458, 50.916972], [-1.4939729, 50.9170312], [-1.4935988, 50.9170811], [-1.4931871, 50.9171285], [-1.4928196, 50.9171614], [-1.4924642, 50.9171851], [-1.4920726, 50.9172003], [-1.4916019, 50.9172113], [-1.4912223, 50.9172105]]}}, {"id": "553865137", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "75 mph", "name": "South Western Main Line", "osmid": 553865137, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4912219, 50.9171867], [-1.4916254, 50.9171879], [-1.4920685, 50.9171754], [-1.4924872, 50.9171524], [-1.4927949, 50.9171327], [-1.4931863, 50.9170952], [-1.4935776, 50.9170518], [-1.4939603, 50.9170002], [-1.4943452, 50.9169399], [-1.4946869, 50.9168785], [-1.4950384, 50.9168067], [-1.4953782, 50.9167319], [-1.4957074, 50.9166491], [-1.4960675, 50.9165515], [-1.4964453, 50.9164396], [-1.4968151, 50.9163179], [-1.4972034, 50.9161807], [-1.4975488, 50.9160507], [-1.4979212, 50.9158909], [-1.49828, 50.9157295], [-1.4986562, 50.9155417], [-1.4989481, 50.9153828], [-1.4992639, 50.9152004], [-1.4996143, 50.9149838], [-1.4998985, 50.9147932], [-1.5001749, 50.9145915], [-1.5002859, 50.9145081]]}}, {"id": "553865138", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865138, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5250038, 50.8919638], [-1.5152712, 50.9026513], [-1.5149948, 50.9029398], [-1.5146823, 50.9032426], [-1.5143564, 50.9035429], [-1.5140587, 50.9038076], [-1.5137951, 50.9040291], [-1.5137408, 50.9040748], [-1.5134579, 50.904304], [-1.5131387, 50.9045493], [-1.5128515, 50.9047626], [-1.5118324, 50.9054779], [-1.5114918, 50.9057223], [-1.5111444, 50.9059794], [-1.5103631, 50.9065771], [-1.5100448, 50.9068366], [-1.5097524, 50.9070762], [-1.5094537, 50.9073207], [-1.5091471, 50.9075914], [-1.5077353, 50.9088652], [-1.5074846, 50.9090762], [-1.5072459, 50.9092665], [-1.506979, 50.9094787], [-1.5067091, 50.909686], [-1.5003305, 50.9145203]]}}, {"id": "553865139", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 553865139, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5240727, 50.8828954], [-1.5243368, 50.883113], [-1.5246883, 50.8834091], [-1.5250289, 50.8837171], [-1.5253186, 50.8840133], [-1.5256083, 50.8843272], [-1.5258582, 50.8846479], [-1.5260683, 50.8849423], [-1.5262667, 50.8852561], [-1.5264237, 50.8855531], [-1.5265511, 50.8858171], [-1.526661, 50.8860929], [-1.526775, 50.8864085], [-1.5268622, 50.8867444], [-1.5269252, 50.8870498], [-1.5269722, 50.8873594], [-1.5269856, 50.8876513], [-1.5269928, 50.8879427], [-1.5269608, 50.8882537], [-1.5269044, 50.8885686], [-1.5268293, 50.8889334], [-1.5267394, 50.889258], [-1.5266327, 50.8895523], [-1.5264733, 50.8899274], [-1.5262987, 50.8902608], [-1.5261004, 50.8905909], [-1.5258991, 50.89089], [-1.5257233, 50.891143], [-1.5254701, 50.8914517], [-1.5250038, 50.8919638]]}}, {"id": "553865140", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865140, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5002859, 50.9145081], [-1.5010914, 50.9139031], [-1.5066666, 50.9096683], [-1.5069371, 50.9094589], [-1.5072117, 50.9092479], [-1.5074452, 50.9090575], [-1.507691, 50.9088519], [-1.5091105, 50.9075761], [-1.5094098, 50.9073156], [-1.5096959, 50.9070704], [-1.5099977, 50.9068245], [-1.5103132, 50.906568], [-1.5111108, 50.9059567], [-1.5114561, 50.9057004], [-1.5117951, 50.9054614], [-1.5128124, 50.9047465], [-1.5131028, 50.9045287], [-1.5134153, 50.9042841], [-1.5137543, 50.904009], [-1.5140345, 50.9037817], [-1.5143204, 50.903528], [-1.5146372, 50.90323], [-1.5149594, 50.9029108], [-1.5152304, 50.9026328], [-1.5249481, 50.8919602]]}}, {"id": "553865144", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 553865144, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5249481, 50.8919602], [-1.5254281, 50.8914329], [-1.5256722, 50.8911308], [-1.5258564, 50.890879], [-1.526048, 50.8905854], [-1.5262504, 50.8902526], [-1.5264572, 50.8898464], [-1.5265833, 50.8895507], [-1.5266862, 50.8892512], [-1.5267818, 50.8889154], [-1.5268555, 50.8885612], [-1.5269111, 50.8882465], [-1.52694, 50.8879432], [-1.5269384, 50.8876533], [-1.5269215, 50.8873578], [-1.5268798, 50.8870579], [-1.5268203, 50.8867483], [-1.5267189, 50.8864172], [-1.526618, 50.8861053], [-1.5265054, 50.8858312], [-1.5263716, 50.8855564], [-1.5262192, 50.8852714], [-1.5260162, 50.8849462], [-1.5258057, 50.8846542], [-1.5255645, 50.8843438], [-1.5252755, 50.8840218], [-1.5249701, 50.8837159], [-1.5246479, 50.8834273], [-1.5242942, 50.8831238], [-1.5240265, 50.8829033]]}}, {"id": "553865151", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865151, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5089879, 50.8685366], [-1.5090791, 50.8687692], [-1.5092438, 50.8691239], [-1.5094332, 50.8695107], [-1.5096562, 50.8699138], [-1.5099609, 50.8704124], [-1.5102096, 50.870788], [-1.5104442, 50.8711146], [-1.5106851, 50.871429], [-1.5109357, 50.8717374], [-1.5111617, 50.8720008], [-1.5114153, 50.8722826], [-1.5116814, 50.8725626], [-1.5119987, 50.8728782], [-1.5123005, 50.8731634], [-1.5125727, 50.8734097], [-1.512862, 50.8736579], [-1.5177334, 50.8776719], [-1.5240727, 50.8828954]]}}, {"id": "553865157", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865157, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5683359, 50.819629], [-1.5625243, 50.8218541]]}}, {"id": "553865162", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 553865162, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5683045, 50.8196051], [-1.5687234, 50.8194306], [-1.5691655, 50.8192394], [-1.5695781, 50.8190557], [-1.5699903, 50.8188528], [-1.5703832, 50.8186494], [-1.5707411, 50.818453], [-1.5711643, 50.8182143], [-1.5715889, 50.8179611], [-1.572068, 50.8176384], [-1.5724793, 50.8173614]]}}, {"id": "553865167", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865167, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5781702, 50.811234], [-1.5784607, 50.8107874], [-1.5787388, 50.8103171], [-1.5789408, 50.8099831], [-1.5794075, 50.8092088], [-1.580556, 50.8072961], [-1.5806574, 50.8071249], [-1.5808881, 50.806784], [-1.5811045, 50.8064823], [-1.5813553, 50.8061797], [-1.5815994, 50.8059162], [-1.5818743, 50.8056373], [-1.582227, 50.8053254], [-1.582598, 50.8050262], [-1.5829445, 50.8047763], [-1.5834153, 50.8044636], [-1.585512, 50.8031197], [-1.5859433, 50.8028197], [-1.5868236, 50.8021987]]}}, {"id": "553865168", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "osmid": 553865168, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.572887, 50.8170096], [-1.573071, 50.8168435], [-1.5735273, 50.8164634], [-1.5740362, 50.8160756], [-1.5744333, 50.8157739], [-1.5747445, 50.8155115], [-1.5751782, 50.8151144], [-1.5754131, 50.8148903], [-1.5757195, 50.8145737], [-1.5759761, 50.8142778], [-1.5762504, 50.8139492], [-1.576461, 50.8136791], [-1.5766703, 50.8134176], [-1.5768928, 50.8130821], [-1.5771021, 50.8127586], [-1.5775259, 50.8121249], [-1.5778022, 50.8116962], [-1.5781026, 50.8112285], [-1.5785814, 50.8104741]]}}, {"id": "553865169", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "45 mph", "osmid": 553865169, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5793619, 50.8091665], [-1.5797361, 50.8085403], [-1.5806043, 50.8071035], [-1.5808253, 50.8067604], [-1.581041, 50.806472], [-1.5812931, 50.8061632], [-1.5815345, 50.8058979], [-1.5818201, 50.8056139], [-1.5821688, 50.805301], [-1.5825604, 50.8049892], [-1.5828944, 50.8047425], [-1.5832538, 50.8044858], [-1.5835809, 50.8042341], [-1.5838666, 50.8039674], [-1.5840919, 50.8037103], [-1.5842944, 50.803428], [-1.5844587, 50.8031189], [-1.5845679, 50.8028417]]}}, {"id": "553865170", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "70 mph", "name": "South Western Main Line", "osmid": 553865170, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5845211, 50.8038023], [-1.5834638, 50.8044779], [-1.583011, 50.8047759], [-1.5826436, 50.8050403], [-1.5822677, 50.805344], [-1.5819237, 50.8056552], [-1.5816431, 50.8059308], [-1.5814036, 50.8061965]]}}, {"id": "553865171", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 553865171, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5868622, 50.8022177], [-1.5860139, 50.8028314], [-1.5855551, 50.8031417], [-1.5850791, 50.8034458], [-1.5845211, 50.8038023]]}}, {"id": "585754175", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "60 mph", "osmid": 585754175, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5785814, 50.8104741], [-1.5788147, 50.8100844], [-1.5789877, 50.8097927]]}}, {"id": "585754176", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 585754176, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5751514, 50.8152439], [-1.575437, 50.8149573], [-1.5757763, 50.8145949], [-1.5760463, 50.8142778], [-1.5762992, 50.8139801], [-1.5765188, 50.8136955], [-1.5767084, 50.8134313], [-1.5769492, 50.813095], [-1.5771531, 50.8127872], [-1.5775863, 50.8121397], [-1.5779462, 50.8115857], [-1.5781702, 50.811234]]}}, {"id": "585754177", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 585754177, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5814036, 50.8061965], [-1.581156, 50.8064925], [-1.5809323, 50.8067981], [-1.580711, 50.8071341], [-1.579142, 50.8097349], [-1.5787046, 50.8104638], [-1.5784634, 50.8108689], [-1.5778314, 50.8118458], [-1.5775997, 50.8121882], [-1.5773602, 50.8125498]]}}, {"id": "585754178", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 585754178, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5724793, 50.8173614], [-1.572967, 50.8170385], [-1.5732076, 50.81687], [-1.5737478, 50.8164522], [-1.5740404, 50.8162424], [-1.5743562, 50.8159744], [-1.5747217, 50.8156583], [-1.5750221, 50.8153737], [-1.5751514, 50.8152439]]}}, {"id": "585754179", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "80 mph", "name": "South Western Main Line", "osmid": 585754179, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5731035, 50.8169843], [-1.5722675, 50.8175486]]}}, {"id": "637645010", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 637645010, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0756014, 51.0626977], [-2.0750892, 51.0629053], [-2.074479, 51.0631377], [-2.0736251, 51.0634315], [-2.0705512, 51.0644795]]}}, {"id": "637645011", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 637645011, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0703613, 51.064542], [-2.0690347, 51.0649935]]}}, {"id": "637645012", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 637645012, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8622496, 51.0848522], [-1.8657741, 51.0841631], [-1.8675646, 51.0838008]]}}, {"id": "729976574", "type": "Feature", "properties": {"osmid": 729976574, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.491282, 50.9917759], [-1.4908297, 50.9916137]]}}, {"id": "751412130", "type": "Feature", "properties": {"electrified": "no", "name": "Milford Curve", "osmid": 751412130, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7823562, 51.0675191], [-1.7823583, 51.0673385], [-1.7823383, 51.0671349], [-1.7823013, 51.0669496], [-1.7822382, 51.0667583], [-1.7821645, 51.0665938], [-1.7820659, 51.0664307], [-1.7819473, 51.0662792], [-1.7818295, 51.0661517], [-1.7816637, 51.0659953], [-1.7814888, 51.0658623], [-1.7813042, 51.0657291], [-1.781138, 51.06563], [-1.7809141, 51.0655158], [-1.7806695, 51.0654136], [-1.7804329, 51.0653303], [-1.7802122, 51.0652662]]}}, {"id": "751412131", "type": "Feature", "properties": {"electrified": "no", "name": "Milford Curve", "osmid": 751412131, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7801896, 51.0652947], [-1.7804005, 51.0653567], [-1.7806346, 51.0654375], [-1.7808714, 51.0655369], [-1.7810914, 51.0656456], [-1.7812617, 51.0657476], [-1.7814508, 51.0658714], [-1.7816204, 51.0660087], [-1.781784, 51.0661621], [-1.781906, 51.0663028], [-1.782016, 51.0664419], [-1.7821112, 51.0665961], [-1.7821903, 51.0667638], [-1.782252, 51.066945], [-1.7822936, 51.0671439], [-1.782311, 51.0673344], [-1.7823097, 51.0675316], [-1.7821175, 51.070713]]}}, {"id": "751412132", "type": "Feature", "properties": {"electrified": "no", "osmid": 751412132, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7802122, 51.0652662], [-1.779997, 51.0652113]]}}, {"id": "772530414", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 772530414, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4143952, 50.9074478], [-1.4147637, 50.9074647], [-1.4151425, 50.9074796], [-1.4154943, 50.9074918], [-1.41599, 50.9074896], [-1.416508, 50.9074841]]}}, {"id": "772530415", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 772530415, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4143977, 50.9074212], [-1.4148385, 50.9074417], [-1.4155104, 50.9074627], [-1.4159105, 50.9074601], [-1.4165141, 50.9074523]]}}, {"id": "772530416", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 772530416, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4142796, 50.9074152], [-1.4143977, 50.9074212]]}}, {"id": "772530417", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "40 mph", "name": "South Western Main Line", "osmid": 772530417, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.4142781, 50.9074416], [-1.4143952, 50.9074478]]}}, {"id": "785341379", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "65 mph", "name": "Down Salisbury", "osmid": 785341379, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0501084, 51.1498206], [-2.0506368, 51.1504179], [-2.0510797, 51.1509482], [-2.0515353, 51.1514459], [-2.0519779, 51.1518598], [-2.0524638, 51.1522487]]}}, {"id": "785341380", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "65 mph", "name": "Up Salisbury", "osmid": 785341380, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0501504, 51.1498132], [-2.0506763, 51.1503996], [-2.0511154, 51.1509336], [-2.0515546, 51.1514182], [-2.0520157, 51.1518466], [-2.0525035, 51.1522331]]}}, {"id": "785341381", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "65 mph", "osmid": 785341381, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0531477, 51.1527518], [-2.0539068, 51.1533154], [-2.054682, 51.1538453]]}}, {"id": "785341382", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "65 mph", "osmid": 785341382, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0531835, 51.152731], [-2.0539488, 51.1533012], [-2.0547159, 51.1538271]]}}, {"id": "785341383", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 785341383, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8958725, 51.1200528], [-1.8978639, 51.1204531], [-1.8986671, 51.1206466], [-1.8994753, 51.1208875], [-1.9002397, 51.1211459], [-1.9009321, 51.1214359]]}}, {"id": "785341384", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 785341384, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.887595, 51.1150295], [-1.8877182, 51.1152767]]}}, {"id": "785341385", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 785341385, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.887652, 51.1150203], [-1.8877732, 51.1152688]]}}, {"id": "785341386", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 785341386, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8453345, 51.0808308], [-1.8463208, 51.0810036], [-1.8465147, 51.0810376], [-1.8472795, 51.0811706]]}}, {"id": "785341387", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "40 mph", "osmid": 785341387, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8453171, 51.0807936], [-1.8460721, 51.0809267], [-1.8472929, 51.0811419]]}}, {"id": "815657017", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "osmid": 815657017, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8432738, 51.0805701], [-1.8431686, 51.0805568]]}}, {"id": "815657018", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "osmid": 815657018, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8453345, 51.0808308], [-1.8432738, 51.0805701]]}}, {"id": "815657019", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Quidhampton Siding", "osmid": 815657019, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8429649, 51.0807697], [-1.8430786, 51.0807786]]}}, {"id": "815657020", "type": "Feature", "properties": {"electrified": "no", "name": "Quidhampton Siding", "osmid": 815657020, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8430786, 51.0807786], [-1.8442401, 51.0808693], [-1.8450441, 51.0809138], [-1.8458575, 51.0809605], [-1.8463208, 51.0810036]]}}, {"id": "834763136", "type": "Feature", "properties": {"electrified": "no", "osmid": 834763136, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6790613, 51.0429852], [-1.6792841, 51.0430213], [-1.6794415, 51.0430428], [-1.679573, 51.0430582], [-1.6797415, 51.0430688], [-1.6798589, 51.0430762], [-1.6798827, 51.0430777], [-1.6801626, 51.0430811]]}}, {"id": "891376961", "type": "Feature", "properties": {"electrified": "no", "osmid": 891376961, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4403806, 50.9098185], [-1.4405173, 50.910071], [-1.4405561, 50.9101598], [-1.4405808, 50.9102358], [-1.4406096, 50.9103877], [-1.4406068, 50.9105001], [-1.4405843, 50.9106132], [-1.4405373, 50.910736], [-1.4404811, 50.9108711], [-1.4404251, 50.9110102], [-1.4403908, 50.9110751], [-1.440333, 50.9111779], [-1.440206, 50.9113428], [-1.4400779, 50.9114762], [-1.4399194, 50.9116152], [-1.4397696, 50.9117285], [-1.4396147, 50.9118331], [-1.4394358, 50.911924], [-1.4392374, 50.9120089], [-1.4390578, 50.9120726], [-1.4389021, 50.912113], [-1.4387162, 50.9121557], [-1.4385251, 50.9121809], [-1.4383083, 50.9121972], [-1.4380533, 50.9121947], [-1.4378445, 50.9121879], [-1.4375195, 50.912158], [-1.4371457, 50.9121119], [-1.436677, 50.9120392], [-1.4362156, 50.9119563], [-1.4357454, 50.911857], [-1.4353198, 50.9117542], [-1.4349429, 50.9116485], [-1.4344293, 50.9114895], [-1.4338633, 50.9113039], [-1.4333671, 50.9111285], [-1.4328709, 50.9109467], [-1.4325303, 50.9108275], [-1.4320491, 50.9106656]]}}, {"id": "892791410", "type": "Feature", "properties": {"electrified": "no", "osmid": 892791410, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4704774, 50.9948475], [-1.4705566, 50.9948167], [-1.4711961, 50.9945495], [-1.471379, 50.9944675], [-1.4717648, 50.9942946], [-1.472373, 50.9940084], [-1.4729708, 50.9937075], [-1.4738218, 50.9932838], [-1.4744419, 50.9930057], [-1.4750353, 50.9927705], [-1.4756239, 50.992549], [-1.4763292, 50.9923118], [-1.4771181, 50.9920775], [-1.4778213, 50.9918856]]}}, {"id": "892791411", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 892791411, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.470402, 50.9948768], [-1.4704774, 50.9948475]]}}, {"id": "893079280", "type": "Feature", "properties": {"electrified": "no", "osmid": 893079280, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6706782, 51.043489], [-1.6801626, 51.0430811], [-1.6802219, 51.0430785]]}}, {"id": "893079282", "type": "Feature", "properties": {"osmid": 893079282, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7046858, 51.0420328], [-1.7042592, 51.0420535], [-1.7033076, 51.0420962], [-1.7025424, 51.042128], [-1.6990132, 51.0422877], [-1.6970836, 51.0423687], [-1.6952175, 51.042445], [-1.6942516, 51.0424845], [-1.6932727, 51.0425326], [-1.6903642, 51.0426636], [-1.6861854, 51.0428436], [-1.6801623, 51.0431103], [-1.6791579, 51.0431488], [-1.676447, 51.0432673], [-1.672904, 51.0434145], [-1.6707003, 51.0435263]]}}, {"id": "893079283", "type": "Feature", "properties": {"osmid": 893079283, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6802219, 51.0430785], [-1.6815605, 51.0430206]]}}, {"id": "895336964", "type": "Feature", "properties": {"electrified": "no", "osmid": 895336964, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4311074, 50.9973203], [-1.4330566, 50.9973042]]}}, {"id": "895336965", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 895336965, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4330566, 50.9973042], [-1.4331922, 50.9973031]]}}, {"id": "895687021", "type": "Feature", "properties": {"electrified": "no", "osmid": 895687021, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4831488, 50.9414187], [-1.4830755, 50.9410291], [-1.4829588, 50.9405018], [-1.4828247, 50.9400243], [-1.4826741, 50.9395666], [-1.4824591, 50.9390361], [-1.4822403, 50.9385528], [-1.4819818, 50.9380587], [-1.4817675, 50.9376752], [-1.4814296, 50.937147], [-1.4810943, 50.9366611], [-1.4806584, 50.9361168], [-1.4802306, 50.9356224], [-1.4798833, 50.9352539], [-1.4795726, 50.9349388], [-1.4780674, 50.9335221], [-1.4777381, 50.9331944], [-1.4772514, 50.9326619], [-1.4766131, 50.9318727], [-1.4761846, 50.9312857], [-1.4759445, 50.9308893], [-1.475745, 50.9305078], [-1.4755908, 50.9301333], [-1.4754795, 50.9297631], [-1.4754041, 50.9294033], [-1.4753628, 50.9290472], [-1.4753582, 50.9288805], [-1.4753531, 50.9286984], [-1.4755063, 50.925409], [-1.4755148, 50.9250402], [-1.475505, 50.9247014], [-1.4754658, 50.9243424], [-1.4754, 50.9239941], [-1.4753115, 50.9236754], [-1.4752311, 50.9234142], [-1.4751214, 50.9230825], [-1.4747607, 50.9221137], [-1.4746624, 50.9218731], [-1.4745641, 50.92167], [-1.4744497, 50.9214986], [-1.4743151, 50.9213346], [-1.4741689, 50.9211731]]}}, {"id": "895687022", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 895687022, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4831639, 50.9414991], [-1.4831488, 50.9414187]]}}, {"id": "895687026", "type": "Feature", "properties": {"electrified": "no", "osmid": 895687026, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4831913, 50.9414134], [-1.4831168, 50.9410217], [-1.4830016, 50.9405009], [-1.4828674, 50.9400166], [-1.4827106, 50.9395662], [-1.4824948, 50.939017], [-1.4822888, 50.9385442], [-1.4820247, 50.938049], [-1.4818012, 50.9376616], [-1.4814837, 50.9371586], [-1.4811302, 50.936648], [-1.4807062, 50.9361089], [-1.480268, 50.9356018], [-1.4799306, 50.9352447], [-1.4796203, 50.9349314], [-1.4781111, 50.9335182], [-1.4777814, 50.9331771], [-1.4772888, 50.9326494], [-1.4766607, 50.9318635], [-1.4762382, 50.931275], [-1.4759886, 50.9308819], [-1.4757889, 50.9305004], [-1.4756343, 50.9301226], [-1.475522, 50.9297545], [-1.4754493, 50.9293918], [-1.4754106, 50.9290463], [-1.4754032, 50.9288798], [-1.4753983, 50.9287021], [-1.4755506, 50.9254088], [-1.4755604, 50.925042], [-1.4755523, 50.9246987], [-1.4755152, 50.9243368], [-1.4754458, 50.923986], [-1.4753626, 50.9236745], [-1.4752774, 50.9234053], [-1.4751635, 50.92307], [-1.4748083, 50.9221043], [-1.4747083, 50.9218738], [-1.4746079, 50.921655], [-1.4744922, 50.9214793], [-1.4743572, 50.9213124], [-1.4741864, 50.9211336]]}}, {"id": "895687027", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 895687027, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4832065, 50.9414938], [-1.4831913, 50.9414134]]}}, {"id": "900375475", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 900375475, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5085722, 50.8673558], [-1.5086808, 50.8677079], [-1.5088069, 50.8680693], [-1.5089316, 50.8684197]]}}, {"id": "900375476", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 900375476, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5089316, 50.8684197], [-1.5089879, 50.8685366]]}}, {"id": "900375477", "type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 900375477, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5088768, 50.8684182], [-1.5087508, 50.8680704], [-1.5086297, 50.867718], [-1.5085226, 50.8673733]]}}, {"id": "900375478", "type": "Feature", "properties": {"bridge": "yes", "electrified": "rail", "frequency": "0", "maxspeed": "90 mph", "name": "South Western Main Line", "osmid": 900375478, "railway": "rail", "type": "way", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.5089343, 50.868541], [-1.5088768, 50.8684182]]}}, {"id": "908703828", "type": "Feature", "properties": {"electrified": "no", "osmid": 908703828, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5481757, 51.0341483], [-1.5472691, 51.0339495], [-1.5468958, 51.033863], [-1.5463796, 51.033731], [-1.5454424, 51.033482], [-1.5444891, 51.0332094], [-1.5436033, 51.0329317], [-1.5427877, 51.0326419], [-1.5419748, 51.0323549], [-1.5412063, 51.0320724], [-1.540281, 51.0316904], [-1.5396231, 51.0313998], [-1.5390203, 51.0311183], [-1.5380312, 51.0306212], [-1.5373931, 51.030283], [-1.5368202, 51.029955], [-1.5361367, 51.0295406], [-1.5355937, 51.0291982], [-1.5342897, 51.028308], [-1.5334462, 51.0276822], [-1.5331549, 51.027443], [-1.5285182, 51.023518]]}}, {"id": "908703829", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 908703829, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5285182, 51.023518], [-1.5284414, 51.023453]]}}, {"id": "908703830", "type": "Feature", "properties": {"electrified": "no", "osmid": 908703830, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5481199, 51.0341719], [-1.5472692, 51.0339796], [-1.5471651, 51.0339561], [-1.546355, 51.0337607], [-1.5453968, 51.0335031], [-1.5445052, 51.0332491], [-1.5435682, 51.0329602], [-1.5427712, 51.0326711], [-1.5419465, 51.0323801], [-1.5411673, 51.0320948], [-1.5402495, 51.0317111], [-1.5395915, 51.0314269], [-1.5389852, 51.0311376], [-1.5379982, 51.0306383], [-1.5373545, 51.0303009], [-1.5367725, 51.0299644], [-1.5360949, 51.029557], [-1.5355491, 51.0292177], [-1.5347997, 51.0287127], [-1.534255, 51.0283285], [-1.5334105, 51.027707], [-1.5331015, 51.0274513], [-1.5284789, 51.0235379]]}}, {"id": "908703831", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 908703831, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5284789, 51.0235379], [-1.5284021, 51.0234729]]}}, {"id": "912161992", "type": "Feature", "properties": {"osmid": 912161992, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6339016, 51.0336872], [-1.6335177, 51.0330713]]}}, {"id": "912161993", "type": "Feature", "properties": {"osmid": 912161993, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6329941, 51.0336417], [-1.6325516, 51.0329913]]}}, {"id": "912161994", "type": "Feature", "properties": {"osmid": 912161994, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6320653, 51.0335784], [-1.6314218, 51.0329252]]}}, {"id": "912161995", "type": "Feature", "properties": {"osmid": 912161995, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6311524, 51.0335136], [-1.6304804, 51.0328309]]}}, {"id": "912161996", "type": "Feature", "properties": {"osmid": 912161996, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6296222, 51.0334158], [-1.6290388, 51.0328002]]}}, {"id": "912161997", "type": "Feature", "properties": {"osmid": 912161997, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6287317, 51.0333904], [-1.6281017, 51.0328359]]}}, {"id": "912161998", "type": "Feature", "properties": {"osmid": 912161998, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6278037, 51.0334014], [-1.6272668, 51.0329038]]}}, {"id": "912161999", "type": "Feature", "properties": {"osmid": 912161999, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6269627, 51.0335094], [-1.6264035, 51.0329716]]}}, {"id": "912162000", "type": "Feature", "properties": {"osmid": 912162000, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6261461, 51.0335583], [-1.6254142, 51.0332194]]}}, {"id": "912162001", "type": "Feature", "properties": {"osmid": 912162001, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6261635, 51.0335431], [-1.6254573, 51.0331827]]}}, {"id": "912162002", "type": "Feature", "properties": {"osmid": 912162002, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6254608, 51.033592], [-1.625091, 51.0330665]]}}, {"id": "912162003", "type": "Feature", "properties": {"osmid": 912162003, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6245998, 51.0336671], [-1.62414, 51.0331575]]}}, {"id": "912162004", "type": "Feature", "properties": {"osmid": 912162004, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6237213, 51.0337253], [-1.6232659, 51.0332214]]}}, {"id": "912162005", "type": "Feature", "properties": {"osmid": 912162005, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.622863, 51.0337801], [-1.6223641, 51.0333375]]}}, {"id": "912162006", "type": "Feature", "properties": {"osmid": 912162006, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6213141, 51.0337658], [-1.6210006, 51.0333549]]}}, {"id": "912162007", "type": "Feature", "properties": {"osmid": 912162007, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6204772, 51.0337809], [-1.620222, 51.0333453]]}}, {"id": "912162008", "type": "Feature", "properties": {"osmid": 912162008, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6196068, 51.0337725], [-1.6186997, 51.0327449]]}}, {"id": "912162009", "type": "Feature", "properties": {"osmid": 912162009, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6187123, 51.0338071], [-1.6177352, 51.0328561]]}}, {"id": "912162010", "type": "Feature", "properties": {"osmid": 912162010, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6168844, 51.0339429], [-1.6161184, 51.032903]]}}, {"id": "912162011", "type": "Feature", "properties": {"osmid": 912162011, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6157512, 51.0341318], [-1.6143465, 51.0331899]]}}, {"id": "912162012", "type": "Feature", "properties": {"osmid": 912162012, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6148862, 51.0345408], [-1.6127852, 51.0340877]]}}, {"id": "912162013", "type": "Feature", "properties": {"osmid": 912162013, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6141499, 51.0351075], [-1.6125969, 51.034676]]}}, {"id": "912162014", "type": "Feature", "properties": {"osmid": 912162014, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6358637, 51.0337683], [-1.6356784, 51.0331347]]}}, {"id": "912162015", "type": "Feature", "properties": {"osmid": 912162015, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6368092, 51.0338337], [-1.6367579, 51.0331808]]}}, {"id": "912162016", "type": "Feature", "properties": {"osmid": 912162016, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6381173, 51.0338729], [-1.6387596, 51.0327985]]}}, {"id": "912162017", "type": "Feature", "properties": {"osmid": 912162017, "railway": "narrow_gauge", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6392098, 51.0341841], [-1.6395877, 51.0331083]]}}, {"id": "916918268", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 916918268, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0524202, 51.066233], [-2.053114, 51.0661866], [-2.0539928, 51.0661462], [-2.0548303, 51.0661261], [-2.0558229, 51.0661335], [-2.0567604, 51.066155], [-2.0576496, 51.0661966], [-2.0585795, 51.0662726], [-2.059671, 51.0663778], [-2.0604839, 51.0664417], [-2.0613366, 51.0664826], [-2.0615539, 51.0664856], [-2.0618966, 51.0664904], [-2.0624536, 51.0664791], [-2.063014, 51.0664385], [-2.0635893, 51.066378], [-2.0642004, 51.0662957], [-2.0647453, 51.0662112], [-2.0653165, 51.0660996]]}}, {"id": "3218434", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 3218434, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.601323, 51.5999291], [-1.601885, 51.5997242], [-1.6024418, 51.5995141], [-1.6027163, 51.5994093], [-1.6034673, 51.5991226], [-1.6042354, 51.5988475], [-1.6049705, 51.5985827], [-1.6057264, 51.5983226], [-1.6071188, 51.5978509], [-1.6084952, 51.5974012], [-1.6108218, 51.5966432], [-1.6145247, 51.5954437], [-1.6152709, 51.5952093], [-1.6160299, 51.5949787], [-1.6174816, 51.594562], [-1.6184905, 51.5942778], [-1.6195131, 51.5940017], [-1.6203705, 51.5937755], [-1.6213519, 51.5935277], [-1.622199, 51.5933222], [-1.6231069, 51.5931076], [-1.6243982, 51.5928151], [-1.6258579, 51.5925014], [-1.6273942, 51.5921874], [-1.629537, 51.591765], [-1.6317459, 51.5913323], [-1.6343959, 51.5908071], [-1.6357246, 51.5905319], [-1.6370264, 51.5902512], [-1.6376321, 51.5901163], [-1.6384867, 51.5899222], [-1.6396845, 51.5896426], [-1.6407305, 51.5893993], [-1.6417725, 51.5891675], [-1.6431652, 51.588877], [-1.6438087, 51.5887428], [-1.6445585, 51.5885978], [-1.6458687, 51.5883489], [-1.6470014, 51.5881418], [-1.6477671, 51.5880155], [-1.6485518, 51.5878853], [-1.6495386, 51.5877392], [-1.6506956, 51.587576], [-1.6518082, 51.5874206], [-1.6528794, 51.5872836], [-1.6537378, 51.5871808], [-1.6548092, 51.587053], [-1.6557521, 51.5869451], [-1.6566708, 51.5868543], [-1.6574022, 51.5867858], [-1.6582071, 51.5867115], [-1.6591664, 51.5866362], [-1.6601104, 51.5865696], [-1.6609232, 51.586522], [-1.6618568, 51.5864718], [-1.6632222, 51.5864158], [-1.6648853, 51.5863701], [-1.6665162, 51.5863366], [-1.6684358, 51.5862879], [-1.6703365, 51.5862291], [-1.6733909, 51.5860756]]}}, {"id": "3218448", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 3218448, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7634457, 51.5716136], [-1.7646708, 51.5713381], [-1.7649731, 51.5712702], [-1.7678184, 51.5706304], [-1.7692574, 51.5702998], [-1.7705991, 51.5699792], [-1.7730328, 51.56937], [-1.7742396, 51.5690566], [-1.7754314, 51.5687377]]}}, {"id": "3218521", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 3218521, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8387882, 51.542081], [-1.8395299, 51.541872], [-1.8401954, 51.5416911], [-1.8415222, 51.5413507], [-1.8428804, 51.5410114], [-1.8441356, 51.5407124], [-1.8456268, 51.5403759], [-1.8470428, 51.5400745], [-1.848471, 51.5397699], [-1.8498823, 51.5394842], [-1.8516188, 51.5391589], [-1.8533672, 51.5388574], [-1.8551213, 51.5385715], [-1.8568674, 51.5383071], [-1.8585687, 51.5380857], [-1.8602482, 51.5378755], [-1.8619613, 51.537658], [-1.8628386, 51.5375523], [-1.8638854, 51.5374422], [-1.8716611, 51.5365826], [-1.8754826, 51.5361598], [-1.877498, 51.5359398], [-1.8787606, 51.5357751], [-1.879354, 51.5356926], [-1.8799041, 51.5356161], [-1.8809835, 51.535442], [-1.8820327, 51.5352662], [-1.8831017, 51.5351003], [-1.8841966, 51.5349435], [-1.8847002, 51.5348754], [-1.8852476, 51.5348053], [-1.8862613, 51.5346875]]}}, {"id": "3241788", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 3241788, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8862613, 51.5346875], [-1.8871681, 51.5345964], [-1.8880672, 51.534514], [-1.8891243, 51.534428], [-1.8895966, 51.534396], [-1.8900431, 51.5343727], [-1.8910824, 51.5343247], [-1.8917345, 51.5342965], [-1.8926862, 51.5342785], [-1.8937084, 51.5342473], [-1.8947359, 51.5342449], [-1.8960894, 51.5342608], [-1.8975477, 51.5343063], [-1.8989268, 51.5343837], [-1.8999219, 51.5344471], [-1.9008336, 51.5345312], [-1.9017188, 51.5346197], [-1.9026574, 51.5347254], [-1.9034677, 51.5348328], [-1.9052202, 51.5351003], [-1.9060757, 51.5352453], [-1.9063935, 51.5353062]]}}, {"id": "3241789", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 3241789, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9506192, 51.5335793], [-1.9514482, 51.5333094], [-1.9523322, 51.5330111], [-1.9539937, 51.5324295], [-1.9556436, 51.5318679], [-1.9568749, 51.5314803], [-1.9576761, 51.5312427], [-1.9584958, 51.5310301], [-1.9595143, 51.5307758], [-1.9602022, 51.5306202], [-1.9609482, 51.530459], [-1.9617009, 51.5303159], [-1.9642494, 51.5298421], [-1.966063, 51.5295183], [-1.9674847, 51.5292633], [-1.9756637, 51.5277836]]}}, {"id": "4033544", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "name": "Golden Valley Line", "osmid": 4033544, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7881101, 51.5648014], [-1.7882661, 51.5647225], [-1.7890196, 51.5644015], [-1.7892313, 51.5643334]]}}, {"id": "4033546", "type": "Feature", "properties": {"electrified": "no", "name": "Golden Valley Line", "osmid": 4033546, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8904863, 51.6033336], [-1.8909679, 51.6035456], [-1.8913885, 51.6037187], [-1.8920557, 51.6039999], [-1.8923986, 51.6041364], [-1.89298, 51.604356], [-1.8933859, 51.6045065], [-1.8938941, 51.6046948]]}}, {"id": "4064135", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 4064135, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7827339, 51.3380202], [-1.7833079, 51.3378677], [-1.7838981, 51.3377231], [-1.7841394, 51.3376781]]}}, {"id": "4281565", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 4281565, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4520926, 51.2209144], [-1.4498064, 51.2214886], [-1.4147775, 51.2305996]]}}, {"id": "4281566", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 4281566, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5616412, 51.1853112], [-1.5606293, 51.1858728], [-1.5597735, 51.1863805], [-1.5588832, 51.1869362], [-1.5581434, 51.1874303], [-1.5574529, 51.1878962], [-1.5567587, 51.1884083], [-1.5561098, 51.1889056], [-1.5554218, 51.1894472], [-1.5548169, 51.1899648], [-1.5536888, 51.1909837], [-1.5530468, 51.1915058], [-1.5523327, 51.1920715], [-1.5516286, 51.1925914], [-1.5509204, 51.193087], [-1.5501731, 51.1935921], [-1.5488442, 51.1944323], [-1.5481177, 51.1948524], [-1.5473581, 51.1952577], [-1.5406843, 51.1987563]]}}, {"id": "4779469", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "name": "Great Western Main Line", "osmid": 4779469, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7823514, 51.5666419], [-1.7825129, 51.5665864]]}}, {"id": "4859141", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 4859141, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7754314, 51.5687377], [-1.775741, 51.5686489], [-1.7762814, 51.5684993]]}}, {"id": "5136325", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 5136325, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4445382, 51.4026612], [-1.4459182, 51.4025983], [-1.4464063, 51.4025644], [-1.4472645, 51.4024983]]}}, {"id": "5136329", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 5136329, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5099849, 51.4143384], [-1.5104473, 51.4144601], [-1.5109455, 51.4145847], [-1.5114392, 51.4146933]]}}, {"id": "5143309", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 5143309, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5686272, 51.4056466], [-1.5698418, 51.4047243], [-1.5706297, 51.4041119], [-1.5713907, 51.4034957], [-1.5721397, 51.4028707], [-1.5728492, 51.4022404], [-1.5734331, 51.4016812], [-1.5739937, 51.4011117], [-1.5750151, 51.3999644], [-1.5761254, 51.3986701], [-1.5767269, 51.3980353], [-1.5773157, 51.3974652], [-1.5773624, 51.39742], [-1.5780261, 51.3968288], [-1.5787419, 51.3962488], [-1.5802294, 51.3951388], [-1.5808002, 51.394714], [-1.5813566, 51.3942709], [-1.5823079, 51.3934393], [-1.5832724, 51.3925581], [-1.5843016, 51.3916211], [-1.5868505, 51.3892683], [-1.588101, 51.3880721], [-1.5887316, 51.3874734], [-1.5893844, 51.3868867], [-1.5896833, 51.3866356], [-1.5899977, 51.3863884], [-1.5906526, 51.3859117], [-1.5913352, 51.3854685], [-1.5920502, 51.3850415], [-1.5928096, 51.3846148], [-1.5935264, 51.3842038], [-1.5938981, 51.3839876], [-1.5942349, 51.3837918], [-1.5949425, 51.3833331], [-1.5954161, 51.3829953], [-1.5958984, 51.3826281], [-1.5965886, 51.3820352], [-1.5970173, 51.3816159], [-1.5972011, 51.3814321], [-1.5977694, 51.3808096], [-1.5983149, 51.3801823], [-1.5988532, 51.3795509]]}}, {"id": "5143623", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 5143623, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7395397, 51.3543307], [-1.7412519, 51.3537873], [-1.7432595, 51.3531759], [-1.7457488, 51.3523888], [-1.7482443, 51.3516001], [-1.7507132, 51.3508192], [-1.7519615, 51.3504147], [-1.7531592, 51.3500036], [-1.7538049, 51.3497776], [-1.7544397, 51.3495397], [-1.7549724, 51.3492983], [-1.7554531, 51.3490589], [-1.7573802, 51.3480156]]}}, {"id": "8550100", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "West of England Main Line", "osmid": 8550100, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.619847, 51.1703259], [-1.6040379, 51.1734072]]}}, {"id": "11545888", "type": "Feature", "properties": {"electrified": "no", "osmid": 11545888, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7650786, 51.5713306], [-1.7648564, 51.5713972], [-1.7646303, 51.5714756], [-1.7643837, 51.5715889], [-1.7641742, 51.5717134], [-1.7639329, 51.5718903], [-1.7637109, 51.5720879], [-1.7633662, 51.5725472], [-1.7628061, 51.573602], [-1.7623427, 51.5744194], [-1.762294, 51.5745666], [-1.7619777, 51.5753162], [-1.7617472, 51.5761414], [-1.7612932, 51.5779772], [-1.761253, 51.5781389], [-1.7612208, 51.5782306], [-1.7611725, 51.5783206], [-1.7611457, 51.5783839], [-1.761135, 51.5784439]]}}, {"id": "17506925", "type": "Feature", "properties": {"electrified": "no", "osmid": 17506925, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5641853, 51.2150371], [-1.5646183, 51.2154003], [-1.5653342, 51.2160837], [-1.5656722, 51.2164278], [-1.5660918, 51.2169074], [-1.5667146, 51.2176328], [-1.5680459, 51.2191882]]}}, {"id": "17506926", "type": "Feature", "properties": {"electrified": "no", "osmid": 17506926, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6077861, 51.2528371], [-1.6149795, 51.2542157], [-1.6159046, 51.254381], [-1.6169702, 51.2545001], [-1.6178545, 51.2545666], [-1.6191931, 51.2546112], [-1.6217071, 51.2546988], [-1.6223853, 51.2547437], [-1.6230374, 51.254833], [-1.6240542, 51.2550694], [-1.6251206, 51.2554578]]}}, {"id": "22649651", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 22649651, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7082439, 51.5834157], [-1.7084642, 51.5833854]]}}, {"id": "22649652", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 22649652, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.704074, 51.5839639], [-1.7056282, 51.5837724], [-1.706952, 51.5835966], [-1.7082439, 51.5834157]]}}, {"id": "22649675", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 22649675, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6863536, 51.5853699], [-1.6871245, 51.5853366]]}}, {"id": "22649676", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 22649676, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6733909, 51.5860756], [-1.6743763, 51.5860222], [-1.6755344, 51.5859602], [-1.6785808, 51.5857969], [-1.6817526, 51.5856246], [-1.6825824, 51.5855787], [-1.6843477, 51.5854836], [-1.6863536, 51.5853699]]}}, {"id": "23385708", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 23385708, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5914302, 51.6043139], [-1.5924917, 51.6038736], [-1.5936049, 51.6033341], [-1.594993, 51.6026878], [-1.5969972, 51.6017786], [-1.5987181, 51.6010224], [-1.6010911, 51.6000221]]}}, {"id": "23390887", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 23390887, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6010911, 51.6000221], [-1.601323, 51.5999291]]}}, {"id": "23393846", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23393846, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5701249, 51.2216635], [-1.5702319, 51.2217902]]}}, {"id": "23393847", "type": "Feature", "properties": {"electrified": "no", "osmid": 23393847, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5702319, 51.2217902], [-1.5761623, 51.2288512], [-1.5765324, 51.2292604], [-1.5769122, 51.2296395], [-1.5776109, 51.2303148]]}}, {"id": "23393849", "type": "Feature", "properties": {"electrified": "no", "osmid": 23393849, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5681425, 51.2193054], [-1.5701249, 51.2216635]]}}, {"id": "23393850", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23393850, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5680459, 51.2191882], [-1.5681425, 51.2193054]]}}, {"id": "23393853", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 23393853, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5639962, 51.2148845], [-1.5641853, 51.2150371]]}}, {"id": "23393854", "type": "Feature", "properties": {"electrified": "no", "osmid": 23393854, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5615473, 51.2132012], [-1.5621821, 51.2135971], [-1.5626712, 51.2139138], [-1.5632615, 51.2143395], [-1.5639962, 51.2148845]]}}, {"id": "23393855", "type": "Feature", "properties": {"electrified": "no", "osmid": 23393855, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5138578, 51.2057763], [-1.5147268, 51.2056599], [-1.5155527, 51.2055639], [-1.5166862, 51.2054377], [-1.517897, 51.2053245], [-1.5189485, 51.2052505], [-1.5197853, 51.2051899], [-1.520783, 51.2051], [-1.5216037, 51.2050052], [-1.5222892, 51.2049157], [-1.5230799, 51.204798], [-1.5246798, 51.2045474], [-1.5254347, 51.2044433], [-1.5261471, 51.2043714], [-1.5268976, 51.2043336], [-1.52757, 51.2043236], [-1.5282567, 51.2043354], [-1.5289456, 51.2043812], [-1.529605, 51.2044438], [-1.530272, 51.2045339], [-1.5308484, 51.204633], [-1.5314512, 51.2047525], [-1.5320048, 51.204886], [-1.5490344, 51.2090089]]}}, {"id": "27212081", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27212081, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0507431, 51.5033805], [-2.0545835, 51.5008965], [-2.0588792, 51.4981828]]}}, {"id": "27212084", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27212084, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0505382, 51.5034987], [-2.0507431, 51.5033805]]}}, {"id": "27212095", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27212095, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0433011, 51.5081417], [-2.0505382, 51.5034987]]}}, {"id": "27212096", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27212096, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0431369, 51.5082552], [-2.0433011, 51.5081417]]}}, {"id": "27243396", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27243396, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0402864, 51.509986], [-2.0404939, 51.5098581]]}}, {"id": "27243397", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27243397, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0404939, 51.5098581], [-2.0431369, 51.5082552]]}}, {"id": "27259839", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 27259839, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9504729, 51.5336256], [-1.9506192, 51.5335793]]}}, {"id": "27455545", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 27455545, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0618495, 51.5558136], [-2.0629472, 51.5557173], [-2.0643287, 51.5555798], [-2.065484, 51.5554448], [-2.0674535, 51.555169], [-2.0685529, 51.5549847], [-2.0700767, 51.5547117]]}}, {"id": "27455546", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 27455546, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0700767, 51.5547117], [-2.0705856, 51.5546086]]}}, {"id": "28035950", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 28035950, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5152685, 51.4152992], [-1.5156491, 51.415336]]}}, {"id": "28035951", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 28035951, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5129296, 51.4149826], [-1.5131025, 51.4150153], [-1.5135356, 51.4150847], [-1.5143973, 51.415206], [-1.5152685, 51.4152992]]}}, {"id": "29282504", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 29282504, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9984334, 51.2972056], [-1.9986044, 51.297065]]}}, {"id": "29282505", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 29282505, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9844409, 51.3061368], [-1.986935, 51.3051803], [-1.9882858, 51.3046206], [-1.9895051, 51.3040542], [-1.9901422, 51.3037499], [-1.990727, 51.3034482], [-1.9918658, 51.3027625], [-1.9923121, 51.3024772], [-1.9925837, 51.3022988], [-1.9927377, 51.3021977], [-1.9935513, 51.3016019], [-1.9943435, 51.3009646], [-1.9950567, 51.3003262]]}}, {"id": "33653055", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 33653055, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8122884, 51.5526455], [-1.8124715, 51.5525452]]}}, {"id": "33653056", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 33653056, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7974268, 51.5607145], [-1.7981979, 51.5603496], [-1.7989672, 51.5599809], [-1.8005319, 51.5592133], [-1.8020862, 51.5584341], [-1.8036126, 51.5576322], [-1.8051106, 51.5568126], [-1.8058554, 51.5563956], [-1.806616, 51.5559803], [-1.807326, 51.5555557], [-1.8080329, 51.5551176]]}}, {"id": "33734342", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 33734342, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7927232, 51.5627809], [-1.7948231, 51.5618851], [-1.7960414, 51.5613409], [-1.7966808, 51.5610601], [-1.7972411, 51.5607987]]}}, {"id": "33734343", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 33734343, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7972411, 51.5607987], [-1.7974268, 51.5607145]]}}, {"id": "34990420", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 34990420, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0676489, 51.4926346], [-2.0687283, 51.4919751], [-2.0698622, 51.4912427], [-2.0707893, 51.490595], [-2.0721195, 51.4896589], [-2.0728748, 51.4891015], [-2.0730186, 51.4889965], [-2.0733555, 51.4887387], [-2.0741124, 51.4881563], [-2.0749089, 51.4874627], [-2.078054, 51.4848163], [-2.0800567, 51.4831932]]}}, {"id": "34990421", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 34990421, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0668754, 51.4931309], [-2.0676489, 51.4926346]]}}, {"id": "37665174", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 37665174, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7084642, 51.5833854], [-1.7105813, 51.5830622], [-1.711917, 51.5828472], [-1.7137656, 51.5825322], [-1.7157782, 51.5821676], [-1.7174125, 51.5818451]]}}, {"id": "37665182", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 37665182, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7174125, 51.5818451], [-1.718348, 51.5816622], [-1.7192305, 51.5814699], [-1.7210367, 51.581083], [-1.7224493, 51.5807666], [-1.7238329, 51.5804504]]}}, {"id": "37665188", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 37665188, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7270266, 51.5797409], [-1.7286878, 51.5793865], [-1.7295574, 51.5791896], [-1.7304771, 51.5789854], [-1.7317263, 51.5787049], [-1.7325527, 51.578532], [-1.7345665, 51.5780788], [-1.7376209, 51.5774093], [-1.7394332, 51.5769908], [-1.7412385, 51.5765843], [-1.7447956, 51.5757891], [-1.7519616, 51.5741901]]}}, {"id": "37909237", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 37909237, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8166529, 51.574601], [-1.8181478, 51.5752836]]}}, {"id": "38031294", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 38031294, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0598672, 51.5559247], [-2.0611069, 51.5558625], [-2.0618495, 51.5558136]]}}, {"id": "38031295", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 38031295, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0507364, 51.5561366], [-2.0525052, 51.5561031], [-2.0539963, 51.5560771], [-2.0545133, 51.5560788], [-2.0582928, 51.556002], [-2.0598672, 51.5559247]]}}, {"id": "38293010", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 38293010, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9063935, 51.5353062], [-1.9078936, 51.5355551], [-1.9093222, 51.5357947], [-1.9102904, 51.5359521], [-1.9107764, 51.5360406], [-1.9115194, 51.536161], [-1.912866, 51.5363738], [-1.9133249, 51.5364466], [-1.9139352, 51.5365233]]}}, {"id": "41339406", "type": "Feature", "properties": {"name": "South Marston Euro Terminal", "osmid": 41339406, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7287174, 51.5794131], [-1.7290765, 51.5793598], [-1.7293747, 51.5793296], [-1.7294186, 51.5793251], [-1.7296789, 51.5793216], [-1.7299851, 51.5793313], [-1.7303023, 51.579366], [-1.730666, 51.5794187], [-1.7310059, 51.5795011], [-1.731309, 51.5795968], [-1.7316235, 51.5797368], [-1.7319231, 51.5798933], [-1.7321626, 51.5800731], [-1.732354, 51.5803042], [-1.7325671, 51.5805807], [-1.7327131, 51.5808882], [-1.7327688, 51.5810901], [-1.732765, 51.5813835], [-1.732761, 51.5819724], [-1.7327546, 51.5821958], [-1.7327506, 51.5827915], [-1.73272, 51.5831495], [-1.7327154, 51.5833947], [-1.7326957, 51.5836095], [-1.7326836, 51.5837595], [-1.7326634, 51.5838772], [-1.7326099, 51.5839801], [-1.7325978, 51.5840035], [-1.7325039, 51.5841519], [-1.7324, 51.5842816], [-1.7321962, 51.5844975], [-1.7318698, 51.5848172], [-1.7316162, 51.5850656], [-1.7310884, 51.585595], [-1.7305943, 51.586099]]}}, {"id": "42784976", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 42784976, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6075225, 51.25279], [-1.6077861, 51.2528371]]}}, {"id": "42784978", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 42784978, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6040379, 51.1734072], [-1.6037447, 51.1734616]]}}, {"id": "43478682", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "name": "Great Western Main Line", "osmid": 43478682, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8080329, 51.5551176], [-1.8082813, 51.5549659]]}}, {"id": "43478683", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 43478683, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8082813, 51.5549659], [-1.8102658, 51.5537955], [-1.8122884, 51.5526455]]}}, {"id": "43658188", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "osmid": 43658188, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.923652, 51.5456314], [-1.9238613, 51.5458306]]}}, {"id": "43658189", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 43658189, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9162785, 51.5391445], [-1.9168839, 51.5395645], [-1.9173451, 51.5399139], [-1.9180816, 51.5405188], [-1.9185034, 51.540898], [-1.9189473, 51.5413041], [-1.9199241, 51.5422166], [-1.920866, 51.5430797], [-1.9217337, 51.5438871], [-1.9222779, 51.5443737], [-1.922816, 51.5448657], [-1.9233751, 51.5453836], [-1.923652, 51.5456314]]}}, {"id": "44002922", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 44002922, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.070654, 51.2928837], [-2.1367759, 51.2768689], [-2.1391512, 51.2763086], [-2.1414855, 51.2757866], [-2.1426872, 51.2755116], [-2.1439162, 51.2752514], [-2.1464479, 51.2747344], [-2.1489508, 51.2742652], [-2.1515025, 51.2738196], [-2.1524915, 51.2736573], [-2.1534348, 51.2735016], [-2.1552145, 51.2732268], [-2.1588487, 51.2727144], [-2.1606724, 51.2724834], [-2.1624984, 51.2722692], [-2.1643385, 51.2720681], [-2.1661562, 51.271877], [-2.1687159, 51.2716275], [-2.171263, 51.2714024], [-2.1762953, 51.271013]]}}, {"id": "44006159", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 44006159, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0705856, 51.5546086], [-2.072203, 51.5542547], [-2.0735612, 51.5539337], [-2.0750345, 51.553552], [-2.076829, 51.5530331], [-2.0793824, 51.5521864]]}}, {"id": "47990060", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Reading to Taunton line", "osmid": 47990060, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6229215, 51.3602774], [-1.623502, 51.3598638], [-1.6238753, 51.3596149], [-1.6242711, 51.3593658], [-1.6246761, 51.359133], [-1.6251087, 51.3589139], [-1.6254198, 51.3587806], [-1.6257451, 51.3586508], [-1.6260789, 51.3585241], [-1.6264188, 51.3584134], [-1.6267587, 51.3583057], [-1.6271194, 51.3582072], [-1.6274813, 51.3581187], [-1.6278527, 51.3580445], [-1.6281085, 51.3579942], [-1.6283726, 51.3579507], [-1.6289045, 51.3578789], [-1.6294082, 51.35783], [-1.629819, 51.3578026], [-1.6302323, 51.3577842], [-1.6306395, 51.3577842], [-1.6310455, 51.3577924], [-1.6315785, 51.3578186], [-1.6321195, 51.3578644], [-1.6326529, 51.3579341], [-1.6334477, 51.3580671]]}}, {"id": "47990084", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 47990084, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.643856, 51.3594546], [-1.6442782, 51.3595157], [-1.6446473, 51.3595752], [-1.6451541, 51.3596729], [-1.6458376, 51.3598292], [-1.6465759, 51.3600351], [-1.6471683, 51.3602182], [-1.6477207, 51.360416], [-1.6482922, 51.360643], [-1.6488475, 51.3608933], [-1.6494418, 51.3611936], [-1.649989, 51.3615156]]}}, {"id": "54857571", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 54857571, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4865104, 51.2143272], [-1.482295, 51.216204], [-1.4815098, 51.2165548], [-1.480721, 51.2168829]]}}, {"id": "54857572", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 54857572, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.480721, 51.2168829], [-1.4804904, 51.2169837]]}}, {"id": "55038664", "type": "Feature", "properties": {"osmid": 55038664, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6284616, 51.2572232], [-1.6280247, 51.2569565], [-1.6274118, 51.2565146], [-1.6271565, 51.256335], [-1.6268688, 51.2561756], [-1.6266099, 51.2560602], [-1.6262532, 51.2559391], [-1.6261348, 51.2558993], [-1.6260078, 51.2558533], [-1.6258388, 51.2557756]]}}, {"id": "55038665", "type": "Feature", "properties": {"osmid": 55038665, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6288385, 51.2572743], [-1.6273952, 51.2563317]]}}, {"id": "55038704", "type": "Feature", "properties": {"osmid": 55038704, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6281548, 51.2571884], [-1.6270184, 51.256474], [-1.6264374, 51.2561094], [-1.6258388, 51.2557756]]}}, {"id": "55046994", "type": "Feature", "properties": {"electrified": "no", "osmid": 55046994, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.62593, 51.255607], [-1.6263724, 51.2557244], [-1.6269412, 51.2558502], [-1.6274882, 51.2559291], [-1.627881, 51.2559647], [-1.6282716, 51.2559876], [-1.628578, 51.2560034], [-1.6287682, 51.256006], [-1.6289669, 51.2559954], [-1.6293175, 51.2559646]]}}, {"id": "55046995", "type": "Feature", "properties": {"electrified": "no", "osmid": 55046995, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6260541, 51.2555794], [-1.6264859, 51.2556917], [-1.627144, 51.2558054], [-1.6275232, 51.2558601], [-1.6279021, 51.2559062], [-1.6282823, 51.255927], [-1.628865, 51.2559354]]}}, {"id": "55046996", "type": "Feature", "properties": {"electrified": "no", "osmid": 55046996, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6262096, 51.2554419], [-1.6269412, 51.2556187], [-1.6273549, 51.2556883], [-1.627768, 51.2557422], [-1.6287247, 51.2558204], [-1.6295999, 51.2558879]]}}, {"id": "55046997", "type": "Feature", "properties": {"electrified": "no", "osmid": 55046997, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6269197, 51.2554505], [-1.6274347, 51.2555445], [-1.628057, 51.2556251], [-1.6287088, 51.2556997], [-1.6289546, 51.2557481], [-1.6292134, 51.2558058], [-1.6294989, 51.2558559], [-1.6297963, 51.2559013]]}}, {"id": "55047002", "type": "Feature", "properties": {"electrified": "no", "osmid": 55047002, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6342187, 51.2545849], [-1.6334214, 51.2549133], [-1.6326684, 51.2551722]]}}, {"id": "59498874", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 59498874, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4804904, 51.2169837], [-1.4798787, 51.2172275], [-1.4791869, 51.2174725], [-1.478331, 51.2177532], [-1.4774699, 51.2180303], [-1.4764773, 51.218307]]}}, {"id": "59498876", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 59498876, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4764773, 51.218307], [-1.4762263, 51.2183757]]}}, {"id": "69922825", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "maxspeed": "85 mph", "osmid": 69922825, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3860002, 51.2380457], [-1.3842209, 51.238504]]}}, {"id": "69922826", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 69922826, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3992654, 51.2346009], [-1.3888745, 51.2373091]]}}, {"id": "86000432", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 86000432, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8021281, 51.5688716], [-1.8029989, 51.5692229], [-1.8051033, 51.5700316], [-1.8067391, 51.5706699], [-1.806974, 51.5707616], [-1.8072941, 51.5708865], [-1.8098493, 51.5718979], [-1.8103228, 51.5720853], [-1.8134985, 51.5733056], [-1.8144805, 51.573684], [-1.8148848, 51.5738508], [-1.8157829, 51.5742197], [-1.8166529, 51.574601]]}}, {"id": "86002075", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 86002075, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8008061, 51.568303], [-1.8011703, 51.5684631]]}}, {"id": "94252692", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 94252692, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5768728, 51.1791352], [-1.5766331, 51.1792182]]}}, {"id": "94252694", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 94252694, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5975659, 51.1746728], [-1.5972121, 51.1747393]]}}, {"id": "94252696", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 94252696, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5972121, 51.1747393], [-1.5820545, 51.1777073], [-1.5804134, 51.1780891]]}}, {"id": "94252702", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 94252702, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5804134, 51.1780891], [-1.5801182, 51.1781656]]}}, {"id": "94252707", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 94252707, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6037447, 51.1734616], [-1.599461, 51.1743015], [-1.5975659, 51.1746728]]}}, {"id": "94252708", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 94252708, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5801182, 51.1781656], [-1.579099, 51.1784381], [-1.578153, 51.1787203], [-1.5768728, 51.1791352]]}}, {"id": "94647913", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 94647913, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5618202, 51.1852196], [-1.5616412, 51.1853112]]}}, {"id": "94647918", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "maxspeed": "90 mph", "osmid": 94647918, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5406843, 51.1987563], [-1.5399711, 51.1991317], [-1.5397669, 51.199232]]}}, {"id": "94647980", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 94647980, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5397669, 51.199232], [-1.5385224, 51.1998869], [-1.5377124, 51.2003107], [-1.5368916, 51.2007053], [-1.5361292, 51.2010465], [-1.5354388, 51.2013436], [-1.5346773, 51.2016565], [-1.5337989, 51.2020006], [-1.5330666, 51.2022731], [-1.5321386, 51.2026014], [-1.531133, 51.2029109]]}}, {"id": "94647992", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 94647992, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5766331, 51.1792182], [-1.5662163, 51.1832183], [-1.5651274, 51.1836476], [-1.5641416, 51.1840855], [-1.563006, 51.1846233], [-1.5618202, 51.1852196]]}}, {"id": "94648019", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 94648019, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.531133, 51.2029109], [-1.5308755, 51.2029914]]}}, {"id": "95541833", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 95541833, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867514, 51.2142181], [-1.4865104, 51.2143272]]}}, {"id": "95541838", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 95541838, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5308755, 51.2029914], [-1.5301165, 51.2032247], [-1.5293532, 51.203438], [-1.5283848, 51.2036793], [-1.5274158, 51.2039127], [-1.5262591, 51.204165], [-1.5252144, 51.2043709], [-1.5242512, 51.2045478], [-1.5232565, 51.2047097], [-1.5223122, 51.2048549], [-1.5213563, 51.204973], [-1.520161, 51.2051061], [-1.5176839, 51.2053021], [-1.5166631, 51.2054007], [-1.5155393, 51.2055286], [-1.5147078, 51.2056264], [-1.5138253, 51.2057457]]}}, {"id": "95542541", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 95542541, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5138253, 51.2057457], [-1.5118425, 51.206045], [-1.5103887, 51.2062942], [-1.508876, 51.2065847], [-1.5073739, 51.2068987], [-1.5059953, 51.2072031], [-1.5045603, 51.207549], [-1.503533, 51.2078078], [-1.5012299, 51.2084565], [-1.5001115, 51.2087861], [-1.4977311, 51.209572], [-1.4967346, 51.2099237], [-1.4958484, 51.2102807]]}}, {"id": "96637679", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 96637679, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4904142, 51.2126121], [-1.4901651, 51.2127252]]}}, {"id": "96637680", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 96637680, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867514, 51.2142181], [-1.4901651, 51.2127252]]}}, {"id": "98500424", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 98500424, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3885939, 51.2373828], [-1.3860002, 51.2380457]]}}, {"id": "109167640", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 109167640, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5440975, 51.4115497], [-1.5442326, 51.4115367], [-1.5443955, 51.4115262]]}}, {"id": "109167641", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 109167641, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5270009, 51.4138059], [-1.5273266, 51.413769], [-1.5282744, 51.4136743], [-1.5301524, 51.4135421], [-1.5316634, 51.4135317], [-1.5331777, 51.4135058], [-1.5335942, 51.4134917], [-1.5340135, 51.4134724], [-1.5348232, 51.4134147], [-1.5356947, 51.4133206], [-1.536383, 51.4132264], [-1.5368466, 51.4131517], [-1.5373406, 51.4130581], [-1.5382899, 51.4128417], [-1.5390231, 51.4126503], [-1.5397698, 51.4124486], [-1.5412432, 51.4120476], [-1.5416193, 51.4119537], [-1.541675, 51.4119398], [-1.5420844, 51.4118428], [-1.54251, 51.4117625], [-1.5429257, 51.4116915], [-1.5435041, 51.4116141], [-1.5440975, 51.4115497]]}}, {"id": "109189760", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Reading to Taunton line", "osmid": 109189760, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4733104, 51.4086919], [-1.474064, 51.4088688]]}}, {"id": "109189763", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 109189763, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4547165, 51.4021888], [-1.4554552, 51.4022621], [-1.4559897, 51.4023228], [-1.4565373, 51.4023995], [-1.4570604, 51.4024847], [-1.4575793, 51.402581], [-1.4581078, 51.40269], [-1.4586485, 51.4028178], [-1.4591302, 51.4029414], [-1.4596259, 51.4030794], [-1.4600787, 51.4032195], [-1.4605517, 51.403373], [-1.460987, 51.4035256], [-1.4618781, 51.4038729], [-1.4623156, 51.4040542], [-1.4627402, 51.4042366], [-1.4649583, 51.4052477], [-1.467184, 51.4062622], [-1.4695506, 51.4073398], [-1.4707778, 51.4078587], [-1.471488, 51.4081314], [-1.4720992, 51.4083322], [-1.4733104, 51.4086919]]}}, {"id": "112403490", "type": "Feature", "properties": {"electrified": "no", "osmid": 112403490, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5777546, 51.2304511], [-1.5791453, 51.2317755]]}}, {"id": "112403494", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 112403494, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5776109, 51.2303148], [-1.5777546, 51.2304511]]}}, {"id": "112403504", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 112403504, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5610618, 51.2129231], [-1.5615473, 51.2132012]]}}, {"id": "112403508", "type": "Feature", "properties": {"electrified": "no", "osmid": 112403508, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5599617, 51.2123522], [-1.5610618, 51.2129231]]}}, {"id": "112403509", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 112403509, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5597395, 51.2122485], [-1.5599617, 51.2123522]]}}, {"id": "112403526", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 112403526, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5791453, 51.2317755], [-1.5793088, 51.2319311]]}}, {"id": "112403532", "type": "Feature", "properties": {"electrified": "no", "osmid": 112403532, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5793088, 51.2319311], [-1.5945731, 51.2465586], [-1.595243, 51.2471752], [-1.5957255, 51.2475955], [-1.5958325, 51.2476887], [-1.5963708, 51.2481232], [-1.5973296, 51.2487968], [-1.5979739, 51.2492012], [-1.598018, 51.2492289], [-1.5987337, 51.2496499], [-1.5996749, 51.2501584], [-1.6004847, 51.2505555], [-1.6016167, 51.2510465], [-1.6025139, 51.2513983], [-1.6034491, 51.2517252], [-1.6042063, 51.2519725], [-1.6048702, 51.2521618], [-1.6056906, 51.2523766], [-1.6065972, 51.2525925], [-1.6075225, 51.25279]]}}, {"id": "130180220", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 130180220, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3888745, 51.2373091], [-1.3885939, 51.2373828]]}}, {"id": "130886286", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 130886286, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8232225, 51.5777761], [-1.8248515, 51.5786098], [-1.826123, 51.57928]]}}, {"id": "130886288", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 130886288, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8230507, 51.5776811], [-1.8232225, 51.5777761]]}}, {"id": "133389476", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133389476, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4166134, 51.4036582], [-1.4175688, 51.4036326], [-1.4185014, 51.4035905], [-1.4197383, 51.4035299], [-1.420981, 51.4034568], [-1.4234868, 51.4033294], [-1.4252983, 51.4032566], [-1.427111, 51.4032085], [-1.4307366, 51.4030936], [-1.4323914, 51.403045], [-1.4335232, 51.4030088], [-1.4362863, 51.402924], [-1.4400886, 51.4028007], [-1.4415666, 51.402754], [-1.4430277, 51.4027119], [-1.444346, 51.4026676]]}}, {"id": "133389478", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133389478, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.444346, 51.4026676], [-1.4445382, 51.4026612]]}}, {"id": "133394109", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133394109, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4472645, 51.4024983], [-1.448597, 51.4023774], [-1.4499306, 51.4022497], [-1.4506089, 51.4021927], [-1.45127, 51.4021451], [-1.452119, 51.4021105], [-1.4528173, 51.4021047], [-1.4535108, 51.4021216], [-1.4542131, 51.4021564]]}}, {"id": "133394110", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133394110, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4542131, 51.4021564], [-1.4547165, 51.4021888]]}}, {"id": "133404115", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 133404115, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5114178, 51.4147307], [-1.5109227, 51.4146226], [-1.510427, 51.414492], [-1.5099616, 51.4143671]]}}, {"id": "133404116", "type": "Feature", "properties": {"maxspeed": "25 mph", "name": "Hungerford Loop", "osmid": 133404116, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4811018, 51.4100823], [-1.4816477, 51.4101807], [-1.4818888, 51.4102192], [-1.4824974, 51.4103073], [-1.4833339, 51.4104127], [-1.4845071, 51.4105576], [-1.4857978, 51.4107098], [-1.4866373, 51.4107933], [-1.4870445, 51.4108318], [-1.4878854, 51.4109033], [-1.4888307, 51.4109721], [-1.4897613, 51.4110252], [-1.4905478, 51.4110592], [-1.4911946, 51.4110775], [-1.4917033, 51.4110913], [-1.4920737, 51.4110986], [-1.4923428, 51.4110903], [-1.4930005, 51.4110686]]}}, {"id": "133404117", "type": "Feature", "properties": {"osmid": 133404117, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.50748, 51.4135377], [-1.506937, 51.4133861]]}}, {"id": "133404134", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Reading to Taunton line", "osmid": 133404134, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4741573, 51.4089255], [-1.4733982, 51.4087455]]}}, {"id": "133404533", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133404533, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4548232, 51.4022449], [-1.4543133, 51.4022091]]}}, {"id": "133404535", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133404535, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4733982, 51.4087455], [-1.4727192, 51.4085549], [-1.4720798, 51.4083563], [-1.4714666, 51.4081548], [-1.470748, 51.4078863], [-1.4701275, 51.4076302], [-1.4695257, 51.4073618], [-1.4671585, 51.406284], [-1.4649328, 51.4052695], [-1.4627042, 51.4042674], [-1.4622914, 51.4040765], [-1.4618547, 51.4038956], [-1.4609539, 51.4035567], [-1.4605217, 51.4034046], [-1.4600544, 51.4032543], [-1.4596012, 51.4031126], [-1.4591084, 51.402976], [-1.4586295, 51.4028537], [-1.4580886, 51.4027292], [-1.4575648, 51.4026195], [-1.4570456, 51.4025264], [-1.4565224, 51.4024424], [-1.4559811, 51.4023689], [-1.4554432, 51.4023064], [-1.4548232, 51.4022449]]}}, {"id": "133404728", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133404728, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4543133, 51.4022091], [-1.4535074, 51.4021575], [-1.4531582, 51.4021529], [-1.452814, 51.4021491], [-1.4521213, 51.4021464], [-1.4512752, 51.4021809], [-1.450616, 51.4022284], [-1.4499388, 51.4022853], [-1.4486055, 51.4024129], [-1.4472721, 51.4025339]]}}, {"id": "133404730", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133404730, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4445482, 51.4026905], [-1.4443648, 51.4026964]]}}, {"id": "133404858", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133404858, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4443648, 51.4026964], [-1.4430302, 51.4027433], [-1.441569, 51.4027854], [-1.4400912, 51.4028321], [-1.4362889, 51.4029554], [-1.4335258, 51.4030402], [-1.4323934, 51.4030719], [-1.4307387, 51.4031205], [-1.427113, 51.4032354], [-1.4253006, 51.4032835], [-1.42349, 51.4033563], [-1.4209848, 51.4034836], [-1.419742, 51.4035567], [-1.4185046, 51.4036173], [-1.4175713, 51.4036595], [-1.4166164, 51.4036949]]}}, {"id": "133540546", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133540546, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5224184, 51.4146136], [-1.5233406, 51.4144045], [-1.5240849, 51.4142496], [-1.5248486, 51.4141182], [-1.5256796, 51.4139813], [-1.5257024, 51.4139782]]}}, {"id": "133540547", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133540547, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5268547, 51.4138234], [-1.5270009, 51.4138059]]}}, {"id": "133547932", "type": "Feature", "properties": {"electrified": "no", "osmid": 133547932, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.911297, 51.5360791], [-1.9108772, 51.5359705], [-1.9104251, 51.5358487]]}}, {"id": "133547933", "type": "Feature", "properties": {"electrified": "no", "osmid": 133547933, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9127605, 51.5362445], [-1.9118948, 51.5360971], [-1.9110926, 51.5359668], [-1.9104251, 51.5358487], [-1.9080852, 51.535426], [-1.9057155, 51.5350143], [-1.9054316, 51.5349725], [-1.9051589, 51.534943], [-1.9047321, 51.5349098], [-1.9042988, 51.5348576], [-1.9037143, 51.5347671]]}}, {"id": "133547935", "type": "Feature", "properties": {"electrified": "no", "osmid": 133547935, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9049933, 51.5350007], [-1.9063642, 51.5352417], [-1.9075932, 51.5354445], [-1.9091406, 51.5357106], [-1.9108805, 51.5360058], [-1.911297, 51.5360791], [-1.9116424, 51.536142], [-1.912286, 51.5362507], [-1.912866, 51.5363738]]}}, {"id": "133552471", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance Line", "osmid": 133552471, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5188285, 51.4153055], [-1.5191657, 51.4152691], [-1.5197137, 51.4151915], [-1.5202708, 51.4150908], [-1.5206859, 51.4150041]]}}, {"id": "133552472", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 133552472, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5206859, 51.4150041], [-1.5208002, 51.41498]]}}, {"id": "133612299", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133612299, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7374246, 51.3550172], [-1.7393814, 51.3543785]]}}, {"id": "133612300", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133612300, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7372394, 51.3550822], [-1.7374246, 51.3550172]]}}, {"id": "133612301", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133612301, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7393814, 51.3543785], [-1.7395397, 51.3543307]]}}, {"id": "133612302", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133612302, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.723098, 51.3607913], [-1.724607, 51.3602645], [-1.7261268, 51.3597758], [-1.7276413, 51.3592866], [-1.7287956, 51.358889], [-1.7298784, 51.3584721], [-1.7304415, 51.3582603], [-1.7310068, 51.3580268], [-1.7315397, 51.3578005], [-1.7320231, 51.3575648], [-1.7326672, 51.3572734], [-1.7333705, 51.3569234], [-1.7345891, 51.3562904], [-1.7352235, 51.3559559], [-1.7358823, 51.3556382], [-1.7365563, 51.3553544], [-1.7372394, 51.3550822]]}}, {"id": "133623626", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Penzance to Paddington Line", "osmid": 133623626, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5207042, 51.4150382], [-1.520288, 51.4151251], [-1.5197281, 51.4152263], [-1.519177, 51.4153043], [-1.518847, 51.4153399]]}}, {"id": "133623627", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 133623627, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5156432, 51.4153717], [-1.5152529, 51.4153354]]}}, {"id": "133623628", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 133623628, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5152529, 51.4153354], [-1.5143833, 51.415243], [-1.5135221, 51.4151241], [-1.513084, 51.4150587], [-1.5129051, 51.4150274]]}}, {"id": "133625764", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 133625764, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5208199, 51.4150138], [-1.5207042, 51.4150382]]}}, {"id": "133625765", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133625765, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5268643, 51.4138555], [-1.5264065, 51.4139176], [-1.5258216, 51.4139985]]}}, {"id": "133625811", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133625811, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5270099, 51.4138368], [-1.5268643, 51.4138555]]}}, {"id": "133625812", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133625812, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5440279, 51.4116002], [-1.543508, 51.4116597], [-1.5429377, 51.4117221], [-1.542524, 51.4117927], [-1.5421007, 51.4118726], [-1.5416933, 51.4119691], [-1.5416313, 51.4119846], [-1.5412627, 51.4120766], [-1.5397899, 51.4124774], [-1.5390429, 51.4126792], [-1.5383083, 51.412871], [-1.5373566, 51.4130879], [-1.5368602, 51.413182], [-1.5363947, 51.413257], [-1.5357044, 51.4133515], [-1.5348304, 51.4134458], [-1.5340182, 51.4135037], [-1.5335974, 51.4135231], [-1.5331798, 51.4135372], [-1.5316644, 51.4135631], [-1.5301555, 51.4135735], [-1.5282812, 51.4137055], [-1.5273351, 51.4138], [-1.5270099, 51.4138368]]}}, {"id": "133625822", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 133625822, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5443344, 51.4115724], [-1.5441689, 51.411587], [-1.5440279, 51.4116002]]}}, {"id": "133856829", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133856829, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.1763, 51.2710507], [-2.1761215, 51.2710644], [-2.1712708, 51.271438], [-2.1687297, 51.2716598], [-2.1661608, 51.2719124], [-2.1643464, 51.2721082], [-2.1624993, 51.2723077], [-2.1606724, 51.2725263], [-2.1588605, 51.2727576], [-2.1552377, 51.2732733], [-2.1534665, 51.2735457], [-2.1525097, 51.273699], [-2.1515325, 51.2738589], [-2.1489781, 51.2743066], [-2.1464725, 51.2747734], [-2.1439565, 51.2752856], [-2.1427204, 51.2755481], [-2.1415044, 51.2758205], [-2.139168, 51.2763342], [-2.1368048, 51.2769023], [-2.0706776, 51.292912]]}}, {"id": "133858098", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133858098, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0043054, 51.2937151], [-2.0046632, 51.2935655], [-2.0053947, 51.2932773], [-2.006135, 51.293013], [-2.0068914, 51.2927582], [-2.0073407, 51.2926241], [-2.0077321, 51.2925066]]}}, {"id": "133858099", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133858099, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0079479, 51.2924789], [-2.0077527, 51.2925353]]}}, {"id": "133858100", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133858100, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0077321, 51.2925066], [-2.0079312, 51.2924507]]}}, {"id": "133860547", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133860547, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0077527, 51.2925353], [-2.0073624, 51.2926525], [-2.0069142, 51.2927862], [-2.0061594, 51.2930405], [-2.0054206, 51.2933043], [-2.0046906, 51.2935919], [-2.0043338, 51.293741]]}}, {"id": "133860548", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133860548, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9986653, 51.2970858], [-1.9984943, 51.2972264]]}}, {"id": "133860549", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133860549, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9966455, 51.2988604], [-1.9969948, 51.2985333], [-1.9977019, 51.2978688], [-1.9984334, 51.2972056]]}}, {"id": "133862516", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133862516, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.99511, 51.300349], [-1.9943898, 51.3009859], [-1.9935958, 51.3016246], [-1.9927804, 51.3022218], [-1.9923534, 51.3025021], [-1.9919063, 51.3027881], [-1.9907652, 51.3034751], [-1.9901779, 51.303778], [-1.9895396, 51.3040829], [-1.9883189, 51.30465], [-1.9869659, 51.3052106], [-1.9844712, 51.3061673]]}}, {"id": "133862517", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133862517, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9984943, 51.2972264], [-1.9977555, 51.2978915], [-1.9970486, 51.2985558], [-1.9967004, 51.2988819]]}}, {"id": "133862593", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133862593, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9663814, 51.320721], [-1.9665332, 51.3206174]]}}, {"id": "133862594", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133862594, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9194167, 51.3300657], [-1.922346, 51.33005], [-1.9224767, 51.3300493], [-1.9256357, 51.3301185], [-1.9280135, 51.3302232], [-1.9303759, 51.3303266], [-1.9351072, 51.330565], [-1.9367304, 51.3306037], [-1.938399, 51.330536], [-1.9400468, 51.3304455], [-1.941506, 51.3302816], [-1.942752, 51.3301269], [-1.9437987, 51.3299391], [-1.9448024, 51.3297546], [-1.9456612, 51.3295668], [-1.9474003, 51.3290972], [-1.9490018, 51.3286239], [-1.9504008, 51.3281347], [-1.9511415, 51.3278429], [-1.951748, 51.3275712], [-1.9531597, 51.326944], [-1.9544395, 51.3263391], [-1.9551403, 51.3260334], [-1.9597923, 51.3240042], [-1.9605043, 51.3236757], [-1.9612805, 51.3233164], [-1.9627205, 51.3226682], [-1.9641339, 51.3219914], [-1.9655202, 51.3212708], [-1.9663814, 51.320721]]}}, {"id": "133862812", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133862812, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9665964, 51.3206341], [-1.9664446, 51.3207404]]}}, {"id": "133862981", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133862981, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7890589, 51.3368928], [-1.79288, 51.3363881], [-1.796681, 51.3359314], [-1.8005395, 51.3355488], [-1.8024193, 51.3353718], [-1.8043294, 51.3352073], [-1.8065606, 51.3350439], [-1.808769, 51.334891], [-1.8087919, 51.3348894], [-1.8110387, 51.334754], [-1.8132803, 51.334639], [-1.8160889, 51.334562], [-1.8189704, 51.3344603], [-1.8244988, 51.3343821], [-1.8300169, 51.3344105], [-1.8337642, 51.3345051], [-1.8365298, 51.3345699], [-1.8375248, 51.3345998], [-1.8391808, 51.3346726], [-1.8403581, 51.3347133], [-1.8429457, 51.3348028], [-1.8442682, 51.3348506], [-1.845011, 51.3348857], [-1.8457239, 51.3349109], [-1.8463882, 51.33493], [-1.8475765, 51.3349784], [-1.8498516, 51.335048], [-1.8501336, 51.3350566], [-1.8519975, 51.3351188], [-1.8540595, 51.3351938], [-1.856107, 51.3352627], [-1.8580157, 51.3353309], [-1.8600071, 51.3353732], [-1.8619886, 51.3353642], [-1.862149, 51.3353635], [-1.8642666, 51.3353397], [-1.8659626, 51.3352891], [-1.8667458, 51.3352395], [-1.867597, 51.3351756], [-1.8692712, 51.3349913], [-1.8708922, 51.3347606], [-1.8737828, 51.3343176], [-1.8765477, 51.3338927], [-1.8765977, 51.333885], [-1.882104, 51.3330381], [-1.8850024, 51.3325979], [-1.8879194, 51.3322008], [-1.8907626, 51.3318462], [-1.8935411, 51.3315201], [-1.8956545, 51.3313073], [-1.8977447, 51.3311005]]}}, {"id": "133862982", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133862982, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9664446, 51.3207404], [-1.965569, 51.3213039], [-1.9641788, 51.3220265], [-1.9627634, 51.3227043], [-1.9613229, 51.3233527], [-1.960547, 51.3237118], [-1.9598342, 51.3240407], [-1.9551753, 51.3260729], [-1.9544818, 51.3263754], [-1.9532022, 51.3269802], [-1.9517898, 51.3276078], [-1.9511816, 51.3278802], [-1.9504375, 51.3281733], [-1.9490348, 51.3286638], [-1.9474299, 51.3291381], [-1.9456874, 51.3296087], [-1.9448244, 51.3297974], [-1.9438188, 51.3299822], [-1.942769, 51.3301706], [-1.9415194, 51.3303257], [-1.9400563, 51.3304901], [-1.9384045, 51.3305808], [-1.9367314, 51.3306487], [-1.9351029, 51.3306098], [-1.9303705, 51.3303714], [-1.9280084, 51.330268], [-1.9256319, 51.3301634], [-1.9224757, 51.3300943], [-1.9223594, 51.3300949], [-1.9194185, 51.3301106]]}}, {"id": "133863402", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133863402, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8977616, 51.3311389], [-1.8956636, 51.3313428], [-1.893551, 51.3315555], [-1.8907735, 51.3318815], [-1.8879312, 51.332236], [-1.8850153, 51.3326329], [-1.8821177, 51.333073], [-1.8766114, 51.3339199], [-1.8765578, 51.3339281], [-1.8737965, 51.3343525], [-1.8709054, 51.3347956], [-1.8692826, 51.3350265], [-1.8676054, 51.3352112], [-1.8667521, 51.3352752], [-1.8659669, 51.3353249], [-1.8642685, 51.3353756], [-1.8621497, 51.3353994], [-1.8617614, 51.3354012], [-1.8600059, 51.3354091], [-1.8591139, 51.3353957], [-1.8575974, 51.3353613], [-1.8563049, 51.3353144], [-1.8553653, 51.3352829], [-1.8536419, 51.3352201], [-1.8519362, 51.3351556], [-1.8509933, 51.3351233], [-1.8501697, 51.3350926], [-1.848847, 51.3350457], [-1.8476682, 51.3350039], [-1.8463473, 51.3349648], [-1.8456985, 51.334939], [-1.8449946, 51.3349111], [-1.844106, 51.3348715], [-1.8408179, 51.3347593], [-1.8390969, 51.334698], [-1.8375097, 51.3346388], [-1.8364842, 51.3345984], [-1.8337615, 51.334541], [-1.8319024, 51.3344941], [-1.8300155, 51.3344464], [-1.8244992, 51.334418], [-1.8189726, 51.3344962], [-1.8160922, 51.3345979], [-1.8132844, 51.3346792], [-1.811037, 51.3347879], [-1.8088014, 51.3349206], [-1.8065657, 51.3350768], [-1.8043316, 51.3352418], [-1.8024275, 51.3353988], [-1.8005433, 51.3355859], [-1.7966884, 51.3359699], [-1.7928867, 51.3364264], [-1.7890763, 51.3369327]]}}, {"id": "133864757", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864757, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7638645, 51.3446893], [-1.7648584, 51.3443007], [-1.7670179, 51.343533]]}}, {"id": "133864758", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864758, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.767025, 51.3435616], [-1.7648806, 51.3443239], [-1.7638734, 51.3447176]]}}, {"id": "133864759", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864759, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7697751, 51.3425391], [-1.770657, 51.3422301], [-1.7723911, 51.3416211], [-1.7741142, 51.341051], [-1.7747352, 51.3408246], [-1.7753157, 51.3406223], [-1.7764921, 51.3402137], [-1.7783048, 51.339569], [-1.780064, 51.3389428], [-1.7813275, 51.3384942], [-1.7819695, 51.3382591], [-1.782491, 51.3380928]]}}, {"id": "133864760", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864760, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824983, 51.33813], [-1.7820034, 51.3382864], [-1.7813556, 51.3385256], [-1.7800925, 51.3389741], [-1.7783332, 51.3396002], [-1.7765203, 51.340245], [-1.7753437, 51.3406537], [-1.7747637, 51.3408558], [-1.7741427, 51.3410823], [-1.7724043, 51.3416499], [-1.7706813, 51.3422536], [-1.7697977, 51.342564]]}}, {"id": "133864763", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864763, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7827562, 51.3380558], [-1.7824983, 51.33813]]}}, {"id": "133864764", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864764, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7697977, 51.342564], [-1.7695267, 51.3426625]]}}, {"id": "133864765", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864765, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.782491, 51.3380928], [-1.7827339, 51.3380202]]}}, {"id": "133864766", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864766, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.76949, 51.3426352], [-1.7697751, 51.3425391]]}}, {"id": "133864767", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864767, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7841667, 51.3377181], [-1.7839193, 51.3377564], [-1.7833279, 51.3378988], [-1.7827562, 51.3380558]]}}, {"id": "133864881", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864881, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7574086, 51.3480359], [-1.7554807, 51.3490796], [-1.7549985, 51.3493198], [-1.7544635, 51.3495622], [-1.7538265, 51.3498009], [-1.7531801, 51.3500272], [-1.7519818, 51.3504384], [-1.7507328, 51.3508432], [-1.7482638, 51.3516242], [-1.7457683, 51.3524128], [-1.7432787, 51.3532], [-1.7412711, 51.3538114], [-1.7395585, 51.354355]]}}, {"id": "133864882", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864882, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7374446, 51.3550411], [-1.7372605, 51.3551057]]}}, {"id": "133864883", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864883, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7394014, 51.3544024], [-1.7374446, 51.3550411]]}}, {"id": "133864884", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864884, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7395585, 51.354355], [-1.7394014, 51.3544024]]}}, {"id": "133864925", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864925, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7372605, 51.3551057], [-1.73658, 51.3553769], [-1.7359076, 51.3556601], [-1.7352506, 51.3559769], [-1.7346168, 51.3563111], [-1.7333978, 51.3569443], [-1.7326933, 51.3572949], [-1.732049, 51.3575863], [-1.7315651, 51.3578223], [-1.7310308, 51.3580492], [-1.7304645, 51.3582831], [-1.7299009, 51.3584951], [-1.7288174, 51.3589123], [-1.7276616, 51.3593104], [-1.7261466, 51.3597997], [-1.7246274, 51.3602882], [-1.7231247, 51.3608201]]}}, {"id": "133864926", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133864926, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6740948, 51.369703], [-1.6762715, 51.3697117], [-1.6806074, 51.3697162], [-1.6833095, 51.369723], [-1.6860041, 51.369718], [-1.6872415, 51.3696926], [-1.6884941, 51.369651], [-1.6901556, 51.3695665], [-1.6909748, 51.3695118], [-1.6921874, 51.3694156], [-1.693378, 51.3693043], [-1.6945809, 51.3691687], [-1.695765, 51.3690198], [-1.6972771, 51.368811], [-1.6987198, 51.3685971], [-1.7015, 51.3681433], [-1.7023679, 51.3679905], [-1.7047033, 51.3675514], [-1.7069515, 51.3670957], [-1.7080789, 51.3668528], [-1.7091779, 51.3666053], [-1.7103124, 51.3663173], [-1.7113818, 51.3660168], [-1.7120678, 51.3657962], [-1.7127263, 51.3655749], [-1.7139888, 51.3650865], [-1.7145844, 51.3648338], [-1.7151842, 51.3645588], [-1.7157441, 51.3642878], [-1.7163318, 51.3639844], [-1.718902, 51.3626275], [-1.7195667, 51.3622974], [-1.7202597, 51.3619648], [-1.7209555, 51.3616525], [-1.7216667, 51.3613517], [-1.7223697, 51.361071], [-1.723098, 51.3607913]]}}, {"id": "133865147", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 133865147, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6499545, 51.3615385], [-1.6494086, 51.3612173], [-1.6488169, 51.3609183], [-1.6482639, 51.360669], [-1.6476946, 51.3604429], [-1.6471446, 51.360246], [-1.6465545, 51.3600636], [-1.6458187, 51.3598584], [-1.645138, 51.3597027], [-1.6446336, 51.3596055], [-1.6442662, 51.3595462], [-1.6438446, 51.3594852]]}}, {"id": "133865148", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Reading to Taunton line", "osmid": 133865148, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6334317, 51.3581016], [-1.6326395, 51.3579691], [-1.6321097, 51.3578998], [-1.6315724, 51.3578543], [-1.6310423, 51.3578283], [-1.6306386, 51.3578201], [-1.6302343, 51.3578201], [-1.6298241, 51.3578384], [-1.6294157, 51.3578656], [-1.628915, 51.3579142], [-1.628386, 51.3579857], [-1.6281245, 51.3580287], [-1.6278701, 51.3580788], [-1.6275006, 51.3581526], [-1.6271414, 51.3582404], [-1.6267833, 51.3583382], [-1.6264451, 51.3584454], [-1.6261072, 51.3585554], [-1.6257755, 51.3586813], [-1.6254516, 51.3588106], [-1.6251432, 51.3589427], [-1.6247137, 51.3591602], [-1.624311, 51.3593917], [-1.6239172, 51.3596396], [-1.6235293, 51.3598974], [-1.6229752, 51.3602975]]}}, {"id": "133865149", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133865149, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7231247, 51.3608201], [-1.7223965, 51.3610976], [-1.7216944, 51.361378], [-1.7209843, 51.3616783], [-1.7202898, 51.36199], [-1.7195977, 51.3623222], [-1.7189339, 51.3626518], [-1.7163641, 51.3640085], [-1.7157756, 51.3643123], [-1.7152145, 51.3645839], [-1.7146135, 51.3648595], [-1.7140162, 51.3651129], [-1.7127515, 51.3656021], [-1.7120913, 51.365824], [-1.7114037, 51.3660451], [-1.7103322, 51.3663462], [-1.7091959, 51.3666347], [-1.7080957, 51.3668825], [-1.7069675, 51.3671255], [-1.7047183, 51.3675814], [-1.702382, 51.3680207], [-1.7015132, 51.3681736], [-1.698732, 51.3686276], [-1.6972884, 51.3688416], [-1.6957754, 51.3690506], [-1.6945903, 51.3691996], [-1.6933862, 51.3693353], [-1.6921943, 51.3694467], [-1.6909807, 51.369543], [-1.690174, 51.3696011], [-1.6884975, 51.3696824], [-1.6872437, 51.369724], [-1.686005, 51.3697494], [-1.6833095, 51.3697544], [-1.6806073, 51.3697476], [-1.6762713, 51.3697431], [-1.6740938, 51.3697344]]}}, {"id": "133867362", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 133867362, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5988977, 51.3795657], [-1.5983593, 51.3801972], [-1.5978134, 51.3808249], [-1.5972444, 51.3814482], [-1.5970625, 51.3816301], [-1.5966302, 51.3820529], [-1.5959383, 51.3826473], [-1.5954545, 51.3830156], [-1.5949796, 51.3833544], [-1.5942702, 51.3838142], [-1.5939275, 51.3840135], [-1.5935606, 51.3842269], [-1.5928435, 51.3846381], [-1.5920845, 51.3850645], [-1.5913708, 51.3854908], [-1.5906899, 51.3859328], [-1.5900366, 51.3864084], [-1.5897233, 51.3866547], [-1.5894253, 51.386905], [-1.5887733, 51.387491], [-1.5881431, 51.3880893], [-1.5868925, 51.3892857], [-1.5843432, 51.3916388], [-1.583314, 51.3925759], [-1.5823492, 51.3934573], [-1.5813969, 51.3942897], [-1.5808393, 51.3947338], [-1.580268, 51.395159], [-1.5787812, 51.3962685], [-1.5780667, 51.3968474], [-1.5774042, 51.3974375], [-1.5773599, 51.3974804], [-1.5767698, 51.3980518], [-1.5761693, 51.3986855], [-1.5750593, 51.3999794], [-1.5740372, 51.4011276], [-1.5734757, 51.401698], [-1.5728909, 51.402258], [-1.5721805, 51.4028891], [-1.5714308, 51.4035147], [-1.5706693, 51.4041313], [-1.5698809, 51.4047441], [-1.5686657, 51.4056669]]}}, {"id": "133869224", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869224, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3930882, 51.4022604], [-1.3965846, 51.4025493], [-1.3991398, 51.4027451], [-1.4016939, 51.4029454], [-1.4032895, 51.4030709], [-1.4048957, 51.4031945], [-1.4077414, 51.4034029]]}}, {"id": "133869225", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869225, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4080941, 51.4034601], [-1.4077347, 51.4034386]]}}, {"id": "133869226", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869226, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4164311, 51.4036619], [-1.4166134, 51.4036582]]}}, {"id": "133869227", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869227, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4166164, 51.4036949], [-1.4164319, 51.4036986]]}}, {"id": "133869228", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869228, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4077414, 51.4034029], [-1.4080996, 51.4034244]]}}, {"id": "133869229", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869229, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4164319, 51.4036986], [-1.4139707, 51.4037255], [-1.4133413, 51.4037239], [-1.412648, 51.4037092], [-1.4112426, 51.4036475], [-1.4080941, 51.4034601]]}}, {"id": "133869230", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133869230, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4080996, 51.4034244], [-1.4112463, 51.4036206], [-1.4126503, 51.403672], [-1.4133417, 51.4036969], [-1.4139653, 51.4036912], [-1.4164311, 51.4036619]]}}, {"id": "133870208", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133870208, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3928447, 51.402273], [-1.3918566, 51.4021494], [-1.3908278, 51.40197], [-1.3898425, 51.4018064], [-1.3887877, 51.401587], [-1.3876979, 51.4013383], [-1.386626, 51.4010536], [-1.3855533, 51.4007198], [-1.3840698, 51.4002109], [-1.3825769, 51.3996793], [-1.3813724, 51.3992875], [-1.38076, 51.3990879], [-1.3801516, 51.398908], [-1.3791329, 51.3986424], [-1.377798, 51.3983136]]}}, {"id": "133870209", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133870209, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3779176, 51.3983007], [-1.3791598, 51.3986008], [-1.3801809, 51.398867], [-1.380792, 51.3990477], [-1.3814057, 51.3992476], [-1.3826114, 51.3996399], [-1.384105, 51.4001717], [-1.3855867, 51.40068], [-1.3866562, 51.4010128], [-1.3877244, 51.4012965], [-1.3888115, 51.4015446], [-1.3898641, 51.4017636], [-1.3908393, 51.4019379], [-1.3918729, 51.4021056], [-1.3928153, 51.4022327]]}}, {"id": "133870212", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133870212, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3928153, 51.4022327], [-1.3930882, 51.4022604]]}}, {"id": "133870213", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133870213, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3931309, 51.4023009], [-1.3928447, 51.402273]]}}, {"id": "133870214", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 133870214, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4077347, 51.4034386], [-1.4048888, 51.4032302], [-1.4032824, 51.4031066], [-1.4016867, 51.4029811], [-1.3991327, 51.4027807], [-1.3965773, 51.402585], [-1.3931309, 51.4023009]]}}, {"id": "135787611", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 135787611, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.838008, 51.5422952], [-1.8387882, 51.542081]]}}, {"id": "135787616", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 135787616, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8124715, 51.5525452], [-1.8138811, 51.5517832], [-1.81532, 51.5510461], [-1.8182563, 51.5496203], [-1.81974, 51.5489317], [-1.8212338, 51.5482559], [-1.8227429, 51.547606], [-1.824281, 51.5469661], [-1.825937, 51.5463052], [-1.8276133, 51.5456688], [-1.8293113, 51.5450591], [-1.8310106, 51.5444653], [-1.8318698, 51.5441683], [-1.8327405, 51.5438837], [-1.8344846, 51.5433338], [-1.8362446, 51.542804], [-1.838008, 51.5422952]]}}, {"id": "138750823", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 138750823, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825509, 51.5666285], [-1.7823782, 51.5666852]]}}, {"id": "138750826", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 138750826, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7972871, 51.5608264], [-1.796733, 51.5610829], [-1.7960871, 51.5613724], [-1.7948641, 51.5619154], [-1.7935638, 51.5624762], [-1.7922514, 51.5630312], [-1.7913334, 51.5634104], [-1.7909642, 51.5635589], [-1.7905565, 51.5637205], [-1.7898378, 51.5640053], [-1.7890386, 51.5643134], [-1.7888452, 51.5643875]]}}, {"id": "138750850", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Golden Valley Line", "osmid": 138750850, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7890188, 51.5643634], [-1.7895262, 51.5642079], [-1.7898571, 51.5641258], [-1.7903014, 51.5640519], [-1.790471, 51.5640327], [-1.7906899, 51.564008], [-1.7911379, 51.5639826], [-1.7915133, 51.5639826], [-1.7919186, 51.5640022], [-1.7923554, 51.5640542], [-1.7928368, 51.5641443], [-1.7932423, 51.5642543], [-1.7937718, 51.5644451], [-1.7942181, 51.5646445], [-1.7945802, 51.5648729], [-1.7951253, 51.565237]]}}, {"id": "138750852", "type": "Feature", "properties": {"electrified": "no", "osmid": 138750852, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7762373, 51.5684378], [-1.7774003, 51.5681094], [-1.7776457, 51.568032], [-1.7778818, 51.5679465], [-1.7782387, 51.5678251], [-1.7786272, 51.5677027], [-1.7797369, 51.5673595], [-1.7806737, 51.5670672], [-1.7810214, 51.5669609], [-1.7814117, 51.5668546], [-1.7817891, 51.5667621], [-1.7820765, 51.5666955]]}}, {"id": "138750856", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750856, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7773576, 51.5683613], [-1.7778366, 51.5682598], [-1.7782028, 51.5681823], [-1.7786335, 51.5680912], [-1.7787408, 51.5680684], [-1.7791083, 51.5679886], [-1.7795446, 51.5678939], [-1.7796721, 51.5678662], [-1.7798911, 51.5678203]]}}, {"id": "138750858", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "name": "Parcel's Spur", "osmid": 138750858, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7831453, 51.5663397], [-1.7829311, 51.5664091], [-1.7824907, 51.5665578]]}}, {"id": "138750865", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 138750865, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7833233, 51.5664906], [-1.7830734, 51.5665506], [-1.7827576, 51.5666395], [-1.7825928, 51.5666926]]}}, {"id": "138750866", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750866, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7791083, 51.5679886], [-1.7824548, 51.5669719]]}}, {"id": "138750867", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750867, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7809519, 51.5671869], [-1.7803317, 51.56743]]}}, {"id": "138750868", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 138750868, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7909642, 51.5635589], [-1.7917366, 51.5631923]]}}, {"id": "138750869", "type": "Feature", "properties": {"osmid": 138750869, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7802842, 51.5677378], [-1.782518, 51.5670563]]}}, {"id": "138750871", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 138750871, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821106, 51.5668511], [-1.7813507, 51.5670607]]}}, {"id": "138750873", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750873, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7798298, 51.5674549], [-1.7806798, 51.5672377]]}}, {"id": "138750874", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 138750874, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.78209, 51.5668163], [-1.7813327, 51.5670266]]}}, {"id": "138750875", "type": "Feature", "properties": {"osmid": 138750875, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7798911, 51.5678203], [-1.7824957, 51.5670285]]}}, {"id": "138750876", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 138750876, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7785778, 51.5679195], [-1.7791469, 51.567709]]}}, {"id": "138750877", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 138750877, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7888452, 51.5643875], [-1.7881409, 51.5647025]]}}, {"id": "138750879", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750879, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7795446, 51.5678939], [-1.7824734, 51.567002]]}}, {"id": "138750880", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750880, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7786335, 51.5680912], [-1.7824325, 51.5669465]]}}, {"id": "138750882", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750882, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7814701, 51.5670669], [-1.7818857, 51.5669609], [-1.7820883, 51.5669008], [-1.7822484, 51.5668496], [-1.7824497, 51.5667807]]}}, {"id": "138750885", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138750885, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7782028, 51.5681823], [-1.7791052, 51.5679113], [-1.7824176, 51.5669141]]}}, {"id": "138750886", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "osmid": 138750886, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7887637, 51.564466], [-1.7884015, 51.5646347], [-1.7881101, 51.5648014]]}}, {"id": "138750888", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "35 mph", "osmid": 138750888, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7802596, 51.5674108], [-1.7799961, 51.567473], [-1.7795442, 51.5675878]]}}, {"id": "138750890", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "osmid": 138750890, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7878505, 51.5649514], [-1.7876664, 51.565037], [-1.7875205, 51.5651023], [-1.7873431, 51.565171], [-1.7869277, 51.565323], [-1.7864098, 51.5655117]]}}, {"id": "138750891", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "75 mph", "osmid": 138750891, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7973135, 51.5608604], [-1.7967739, 51.5611121], [-1.7955266, 51.5616726], [-1.7941455, 51.562277], [-1.7927718, 51.5628617], [-1.791649, 51.563332], [-1.7904203, 51.5638254]]}}, {"id": "138758254", "type": "Feature", "properties": {"electrified": "no", "osmid": 138758254, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7904506, 51.564476], [-1.7899586, 51.56443], [-1.7898175, 51.5644233], [-1.7896504, 51.5644246], [-1.7895311, 51.5644367], [-1.7893665, 51.5644556], [-1.7891839, 51.5644853], [-1.7889994, 51.5645249], [-1.7888212, 51.5645794], [-1.7886223, 51.5646576], [-1.7883498, 51.5647957]]}}, {"id": "138826172", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 138826172, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7754526, 51.5687662], [-1.7742615, 51.5690898], [-1.7730576, 51.5694059], [-1.7706234, 51.5700193], [-1.769282, 51.570337], [-1.767836, 51.5706599], [-1.76598, 51.5710836], [-1.7649893, 51.5713014], [-1.7642852, 51.5714714], [-1.7634676, 51.571654]]}}, {"id": "138826180", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 138826180, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7763057, 51.5685274], [-1.7757619, 51.5686775], [-1.7754526, 51.5687662]]}}, {"id": "138826187", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "name": "Up Swindon Reception", "osmid": 138826187, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7763314, 51.5685691], [-1.7757917, 51.5687184], [-1.7754905, 51.5688056]]}}, {"id": "138826192", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Great Western Main Line", "osmid": 138826192, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7762373, 51.5684378], [-1.7756933, 51.5685845], [-1.7755854, 51.5686144], [-1.7753763, 51.5686723]]}}, {"id": "138826199", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "name": "Great Western Main Line", "osmid": 138826199, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7762579, 51.5684665], [-1.7757171, 51.5686162], [-1.7754048, 51.5687056]]}}, {"id": "138826207", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "name": "Cocklebury Through Sidings", "osmid": 138826207, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7763578, 51.568606], [-1.7758186, 51.5687553], [-1.7755101, 51.5688437]]}}, {"id": "138826229", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "osmid": 138826229, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7642852, 51.5714714], [-1.7640477, 51.571554], [-1.7637928, 51.571623], [-1.7634845, 51.5717013]]}}, {"id": "138826234", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "osmid": 138826234, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7754905, 51.5688056], [-1.7747178, 51.5690183], [-1.774615, 51.5690453], [-1.7737605, 51.56927], [-1.7724739, 51.5696012], [-1.7707009, 51.5700396], [-1.7691585, 51.570407], [-1.7678892, 51.5706997], [-1.7673382, 51.570824], [-1.7671045, 51.5708767], [-1.7666491, 51.5709767]]}}, {"id": "138826238", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138826238, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7673382, 51.570824], [-1.7679393, 51.5707347], [-1.7682572, 51.5706844], [-1.7686038, 51.570595], [-1.768845, 51.570532], [-1.7689012, 51.5705141], [-1.7690409, 51.5704698], [-1.7694616, 51.5703685], [-1.7708112, 51.570044], [-1.772554, 51.5696122], [-1.7735723, 51.569352], [-1.7737639, 51.5693031], [-1.7745011, 51.5691123], [-1.775117, 51.568947], [-1.7753136, 51.5688943], [-1.7755101, 51.5688437]]}}, {"id": "138826249", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 138826249, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.775117, 51.568947], [-1.774615, 51.5690453]]}}, {"id": "138826253", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "osmid": 138826253, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7754048, 51.5687056], [-1.7752328, 51.5687516], [-1.7746062, 51.5689194], [-1.7740229, 51.5690706], [-1.7733825, 51.5692386], [-1.772746, 51.569406], [-1.7719099, 51.569618], [-1.7711561, 51.5698071], [-1.7704314, 51.5699817], [-1.7696795, 51.570163], [-1.7689868, 51.570328], [-1.7682728, 51.57049], [-1.767489, 51.5706712], [-1.7667517, 51.5708368], [-1.76612, 51.5709753], [-1.7658525, 51.5710365], [-1.7657411, 51.571062], [-1.7652988, 51.5711602], [-1.7646708, 51.5713381]]}}, {"id": "138911808", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "75 mph", "name": "Great Western Main Line", "osmid": 138911808, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8068529, 51.5559042], [-1.8064211, 51.5561863], [-1.8059371, 51.5564526], [-1.8051923, 51.5568696], [-1.8036928, 51.5576901], [-1.8021644, 51.558493], [-1.8006085, 51.5592729], [-1.7990427, 51.5600412], [-1.7982726, 51.5604102], [-1.7975012, 51.5607753]]}}, {"id": "138911811", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138911811, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8081148, 51.5551302], [-1.8073765, 51.5555878]]}}, {"id": "138911814", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "75 mph", "name": "Great Western Main Line", "osmid": 138911814, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7975012, 51.5607753], [-1.7973135, 51.5608604]]}}, {"id": "138911816", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 138911816, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7974609, 51.5607435], [-1.7972871, 51.5608264]]}}, {"id": "138911818", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138911818, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8083485, 51.5549876], [-1.8081148, 51.5551302]]}}, {"id": "138912026", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138912026, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8125193, 51.5525789], [-1.8123362, 51.5526792]]}}, {"id": "138912028", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138912028, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8123362, 51.5526792], [-1.810315, 51.5538284], [-1.8083485, 51.5549876]]}}, {"id": "138912833", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138912833, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8381116, 51.5423104], [-1.8362724, 51.5428406], [-1.8345134, 51.5433701], [-1.8327703, 51.5439196], [-1.8319008, 51.5442039], [-1.8310424, 51.5445006], [-1.8293435, 51.5450942], [-1.8276465, 51.5457036], [-1.8259715, 51.5463395], [-1.8243167, 51.5469999], [-1.8227795, 51.5476394], [-1.8212715, 51.5482889], [-1.8197785, 51.5489642], [-1.8182957, 51.5496524], [-1.8153607, 51.5510776], [-1.8139231, 51.551814], [-1.8125193, 51.5525789]]}}, {"id": "138913143", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 138913143, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0403249, 51.5100262], [-2.0393867, 51.510555], [-2.0366764, 51.5120634], [-2.0343187, 51.5132326], [-2.0306164, 51.5149176], [-2.0288074, 51.5156662], [-2.0273623, 51.5162433], [-2.0236769, 51.5176256], [-2.0219915, 51.5181958], [-2.0205088, 51.5186801], [-2.0170229, 51.5197259], [-2.0140067, 51.5205368], [-2.0102676, 51.5214508], [-2.009646, 51.521597], [-2.0029897, 51.5228871], [-2.0003519, 51.5233555], [-1.9975221, 51.523871], [-1.9934615, 51.5245978], [-1.9906472, 51.5251106], [-1.987795, 51.5256248], [-1.9848624, 51.5261501], [-1.9844307, 51.5262282]]}}, {"id": "140507843", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 140507843, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7826462, 51.5666296], [-1.7825687, 51.5666592]]}}, {"id": "140575939", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 140575939, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0384007, 51.5563489], [-2.0387492, 51.5563437]]}}, {"id": "140575940", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 140575940, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9759055, 51.5573498], [-1.9790936, 51.5570599], [-1.9806829, 51.5569186], [-1.9815706, 51.5568346], [-1.982226, 51.5567762], [-1.982628, 51.5567393], [-1.983158, 51.5566943], [-1.9869955, 51.5563349], [-1.9884678, 51.5561998], [-1.989647, 51.5561035], [-1.990566, 51.5560318], [-1.9912072, 51.5559862], [-1.9928535, 51.5558741], [-1.9943736, 51.5557912], [-1.9956829, 51.5557359], [-1.997903, 51.5556632], [-1.9993275, 51.5556315], [-2.0003245, 51.5556064], [-2.0020141, 51.5556024], [-2.0029851, 51.5556208], [-2.0039079, 51.5556226], [-2.0053187, 51.5556505], [-2.0065955, 51.5556925], [-2.0088806, 51.5557878], [-2.0216856, 51.5564132], [-2.0224982, 51.556442], [-2.0246707, 51.5564834], [-2.0280476, 51.556511], [-2.0311593, 51.5564785], [-2.0328664, 51.5564523], [-2.0384007, 51.5563489]]}}, {"id": "140575941", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 140575941, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0387492, 51.5563437], [-2.0432306, 51.5562547], [-2.0480002, 51.5561601], [-2.0503571, 51.5561414]]}}, {"id": "140575943", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 140575943, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0503571, 51.5561414], [-2.0507364, 51.5561366]]}}, {"id": "142320537", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 142320537, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.826261, 51.5793529], [-1.8277145, 51.5801214], [-1.8288939, 51.5807458], [-1.8297357, 51.5811907], [-1.8303268, 51.5815069]]}}, {"id": "142320541", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Golden Valley Line", "osmid": 142320541, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.826123, 51.57928], [-1.826261, 51.5793529]]}}, {"id": "143616060", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Golden Valley Line", "osmid": 143616060, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7906775, 51.5640418], [-1.7911496, 51.5640152], [-1.791847, 51.5640352], [-1.7923834, 51.5640952], [-1.7925915, 51.5641316], [-1.7928055, 51.5641785], [-1.7931192, 51.5642607], [-1.7933874, 51.5643467], [-1.7936319, 51.5644361], [-1.7939001, 51.5645522], [-1.7941645, 51.5646762], [-1.79454, 51.564908], [-1.7950831, 51.5652592]]}}, {"id": "145509933", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 145509933, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7823782, 51.5666852], [-1.7823059, 51.5667089], [-1.7816762, 51.5669149], [-1.7813327, 51.5670266]]}}, {"id": "145509934", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 145509934, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7762814, 51.5684993], [-1.7774603, 51.5681643], [-1.7786538, 51.5678122], [-1.7798298, 51.5674549], [-1.7809798, 51.5670923], [-1.7816459, 51.5668791], [-1.7821653, 51.5667053], [-1.7822819, 51.5666663], [-1.7823514, 51.5666419]]}}, {"id": "145509942", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "name": "Down Swindon Goods", "osmid": 145509942, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7762579, 51.5684665], [-1.7775105, 51.5681085], [-1.7788192, 51.5677261], [-1.7794783, 51.5675256], [-1.7797003, 51.567458], [-1.7805497, 51.5671911], [-1.7811873, 51.5669866], [-1.7815714, 51.5668619], [-1.7818881, 51.566759], [-1.7820765, 51.5666955], [-1.7822765, 51.5666281], [-1.7823244, 51.5666123]]}}, {"id": "145509943", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 145509943, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824004, 51.5667128], [-1.7823151, 51.5667407], [-1.78209, 51.5668163]]}}, {"id": "145509944", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 145509944, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824242, 51.5667482], [-1.7821106, 51.5668511]]}}, {"id": "145509945", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 145509945, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825687, 51.5666592], [-1.7824004, 51.5667128]]}}, {"id": "145509946", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 145509946, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824497, 51.5667807], [-1.7826149, 51.5667298]]}}, {"id": "145509947", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "25 mph", "osmid": 145509947, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825928, 51.5666926], [-1.7824242, 51.5667482]]}}, {"id": "145509948", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "osmid": 145509948, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7824907, 51.5665578], [-1.7823244, 51.5666123]]}}, {"id": "145509949", "type": "Feature", "properties": {"electrified": "no", "osmid": 145509949, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7826149, 51.5667298], [-1.7829613, 51.5666354], [-1.7833149, 51.5665488], [-1.7840812, 51.5663732], [-1.7845346, 51.5662604], [-1.7848751, 51.5661632], [-1.7853101, 51.5660243], [-1.7856455, 51.5659149], [-1.7861426, 51.565774], [-1.7865774, 51.5656143], [-1.7869334, 51.5654891], [-1.7871385, 51.5654172], [-1.7873001, 51.5653518], [-1.7875486, 51.5652325], [-1.7878471, 51.5650856], [-1.7880827, 51.5649606], [-1.7882059, 51.5648865], [-1.7883498, 51.5647957], [-1.788516, 51.5646884], [-1.788721, 51.5645773], [-1.7889352, 51.5644849], [-1.7890825, 51.5644269], [-1.7894045, 51.5643354], [-1.7898159, 51.5642431]]}}, {"id": "169011412", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169011412, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7174471, 51.5818749], [-1.7157884, 51.582203], [-1.7140411, 51.5825234], [-1.7128877, 51.5827229], [-1.7120825, 51.5828579], [-1.7108697, 51.5830513], [-1.7097089, 51.5832355], [-1.7085727, 51.5834058]]}}, {"id": "169011413", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169011413, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7270266, 51.5797409], [-1.7278947, 51.5795918]]}}, {"id": "169011414", "type": "Feature", "properties": {"osmid": 169011414, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7285363, 51.5795097], [-1.7287316, 51.5794637], [-1.7289995, 51.5793966], [-1.7291608, 51.5793616], [-1.7293747, 51.5793296]]}}, {"id": "169013516", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169013516, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7085727, 51.5834058], [-1.7083628, 51.5834365]]}}, {"id": "169013517", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169013517, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7083628, 51.5834365], [-1.7069623, 51.5836345], [-1.7058336, 51.583788], [-1.7049592, 51.5838983], [-1.7040853, 51.5840076]]}}, {"id": "169013518", "type": "Feature", "properties": {"osmid": 169013518, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7316162, 51.5850656], [-1.7317442, 51.5848999], [-1.7318619, 51.5847717], [-1.7320939, 51.5845364], [-1.7322487, 51.5843852], [-1.732355, 51.584269], [-1.7324485, 51.5841649], [-1.7325388, 51.5840287], [-1.7325666, 51.5839696], [-1.7326193, 51.5838574], [-1.732658, 51.5837333], [-1.7326602, 51.5835121], [-1.7326789, 51.5833199], [-1.7326696, 51.5831503], [-1.732687, 51.5827927], [-1.7327012, 51.5822604], [-1.7327038, 51.581966], [-1.7327131, 51.581628], [-1.7327396, 51.5815416], [-1.732765, 51.5813835]]}}, {"id": "169013519", "type": "Feature", "properties": {"osmid": 169013519, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7310884, 51.585595], [-1.7307912, 51.5858092]]}}, {"id": "169013520", "type": "Feature", "properties": {"osmid": 169013520, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7305221, 51.5860786], [-1.7307912, 51.5858092], [-1.7311007, 51.5854908], [-1.7314278, 51.5851723], [-1.7315809, 51.5850161], [-1.7316438, 51.584919], [-1.7317711, 51.5847737], [-1.7320064, 51.5845314], [-1.7322449, 51.5842961], [-1.7323707, 51.5841469], [-1.7324158, 51.5840788], [-1.7324883, 51.5839606], [-1.7325463, 51.5838384], [-1.7325818, 51.5837142], [-1.7326172, 51.583553], [-1.732616, 51.583459], [-1.7326159, 51.5831757], [-1.7326414, 51.5826908], [-1.7326543, 51.5825586], [-1.732664, 51.5824394], [-1.7327012, 51.5822604]]}}, {"id": "169013521", "type": "Feature", "properties": {"osmid": 169013521, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7327546, 51.5821958], [-1.7327945, 51.5823543], [-1.7328187, 51.5824684], [-1.7328251, 51.5826807], [-1.7328138, 51.5829682]]}}, {"id": "169015247", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015247, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6863107, 51.5854066], [-1.6857303, 51.5854433], [-1.6844514, 51.5855138], [-1.6830419, 51.5855925], [-1.681807, 51.5856588], [-1.6804728, 51.5857296], [-1.6792397, 51.5858004], [-1.6774884, 51.5858951], [-1.6766504, 51.5859351], [-1.6748016, 51.5860356], [-1.6733958, 51.5861144]]}}, {"id": "169015248", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015248, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6011476, 51.6000481], [-1.6006856, 51.6002437], [-1.5987618, 51.6010486], [-1.5970419, 51.6018089], [-1.5950627, 51.6027087], [-1.5936892, 51.6033625], [-1.5925097, 51.6039075], [-1.5914683, 51.6043702]]}}, {"id": "169015249", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015249, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6870597, 51.5853771], [-1.6863107, 51.5854066]]}}, {"id": "169015250", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015250, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6013763, 51.5999617], [-1.6011476, 51.6000481]]}}, {"id": "169015251", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015251, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6733958, 51.5861144], [-1.6720579, 51.5861817], [-1.6705271, 51.5862514], [-1.6690937, 51.5863039], [-1.6678128, 51.5863405], [-1.6664935, 51.5863714], [-1.6654686, 51.5863914], [-1.6640789, 51.5864281], [-1.6630541, 51.5864614], [-1.6622439, 51.5864964], [-1.6615088, 51.5865281], [-1.6608381, 51.5865698], [-1.6599957, 51.5866231], [-1.6591264, 51.5866798], [-1.6582464, 51.5867514], [-1.6575838, 51.5868098], [-1.6564302, 51.5869198], [-1.6556119, 51.5870132], [-1.6546568, 51.5871115], [-1.6536642, 51.5872315], [-1.6526152, 51.5873632], [-1.6515876, 51.5874982], [-1.6502865, 51.5876716], [-1.6494655, 51.5877849], [-1.6486741, 51.5879033], [-1.6477727, 51.5880483], [-1.6470811, 51.5881661], [-1.646882, 51.5882], [-1.64579, 51.588395], [-1.6449262, 51.5885584], [-1.6441562, 51.5887117], [-1.643507, 51.5888417], [-1.6426592, 51.5890184], [-1.6416558, 51.5892284], [-1.6406068, 51.5894668], [-1.639751, 51.5896601], [-1.6386558, 51.5899141], [-1.637252, 51.5902323], [-1.6362314, 51.5904633], [-1.635353, 51.5906472], [-1.6342129, 51.5908794], [-1.6332891, 51.591062], [-1.6325644, 51.5912058], [-1.6316159, 51.5913944], [-1.6309064, 51.5915299], [-1.6298004, 51.591748], [-1.6282624, 51.5920505], [-1.6272724, 51.5922472], [-1.6261886, 51.5924705], [-1.6250135, 51.5927172], [-1.6237955, 51.5929905], [-1.6228967, 51.5931938], [-1.6216143, 51.5935022], [-1.6207397, 51.5937222], [-1.6198946, 51.5939405], [-1.6189503, 51.5941922], [-1.6180435, 51.5944438], [-1.6173111, 51.5946455], [-1.6163479, 51.5949188], [-1.6157845, 51.5950872], [-1.6148268, 51.5953805], [-1.6138663, 51.5956905], [-1.6125544, 51.5961254], [-1.6119293, 51.5963288], [-1.6110386, 51.5966154], [-1.6099306, 51.5969754], [-1.6087528, 51.5973604], [-1.6074892, 51.597772], [-1.6059251, 51.5983019], [-1.604412, 51.5988286], [-1.6034328, 51.5991835], [-1.6027457, 51.5994399], [-1.6026333, 51.5994818], [-1.6017131, 51.5998384], [-1.6013763, 51.5999617]]}}, {"id": "169015252", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169015252, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6755344, 51.5859602], [-1.6766504, 51.5859351]]}}, {"id": "169015253", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169015253, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6774884, 51.5858951], [-1.6785808, 51.5857969]]}}, {"id": "169024547", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Great Western Main Line", "osmid": 169024547, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7755854, 51.5686144], [-1.775363, 51.5686574]]}}, {"id": "169024548", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024548, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7736912, 51.5690826], [-1.7734145, 51.5691531], [-1.7727261, 51.5693352], [-1.7719664, 51.5695279], [-1.7711148, 51.5697395], [-1.7700882, 51.5699928], [-1.7692171, 51.5701943], [-1.7682921, 51.5704032], [-1.7677625, 51.5705288], [-1.767568, 51.5705812]]}}, {"id": "169024550", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024550, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7672568, 51.5706759], [-1.7677193, 51.5705745], [-1.7685504, 51.5703864], [-1.7692096, 51.5702319], [-1.7700406, 51.5700324], [-1.7709614, 51.5698188], [-1.7718497, 51.5695924], [-1.7726894, 51.5693795], [-1.7730784, 51.5692666], [-1.7734145, 51.5691531]]}}, {"id": "169024551", "type": "Feature", "properties": {"osmid": 169024551, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7735244, 51.5690494], [-1.7733561, 51.5690913], [-1.7728731, 51.5692156], [-1.7722917, 51.5693667], [-1.7715784, 51.5695488], [-1.7709041, 51.5697194], [-1.770046, 51.5699269], [-1.7692701, 51.5701143], [-1.7686217, 51.5702601], [-1.7682067, 51.5703609]]}}, {"id": "169024552", "type": "Feature", "properties": {"osmid": 169024552, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7684758, 51.5702688], [-1.7686509, 51.5702191], [-1.7689178, 51.5701553], [-1.7694624, 51.5700358], [-1.7705064, 51.5697832], [-1.7714023, 51.5695656], [-1.772175, 51.5693667], [-1.772792, 51.5692015], [-1.7731411, 51.5691155], [-1.7733399, 51.5690759]]}}, {"id": "169024553", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024553, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.775363, 51.5686574], [-1.7748961, 51.5687575], [-1.7743677, 51.5688609], [-1.774144, 51.5689281], [-1.7738814, 51.5689919], [-1.7735366, 51.5690477], [-1.7735244, 51.5690494], [-1.7733399, 51.5690759], [-1.7729725, 51.5691316], [-1.7729611, 51.5691334], [-1.7725986, 51.5691907], [-1.772243, 51.5692445], [-1.7719102, 51.5693197]]}}, {"id": "169024554", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024554, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7712615, 51.5690821], [-1.7710046, 51.5691477], [-1.7702503, 51.5693305], [-1.7695381, 51.5695118], [-1.7691717, 51.5696381], [-1.7689556, 51.5697375], [-1.7686336, 51.5699041], [-1.7684585, 51.5700049]]}}, {"id": "169024555", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024555, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7678825, 51.5703622], [-1.7681591, 51.5702044], [-1.7684585, 51.5700049], [-1.7686411, 51.5698665], [-1.7688324, 51.569759], [-1.7691166, 51.5696206], [-1.7693879, 51.5695239], [-1.7697121, 51.5694292], [-1.7703194, 51.5692808], [-1.7709495, 51.5691229], [-1.7712477, 51.5690547]]}}, {"id": "169024556", "type": "Feature", "properties": {"osmid": 169024556, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7678771, 51.570471], [-1.7681235, 51.5704099], [-1.7685082, 51.5703199], [-1.7691642, 51.5701701], [-1.7698893, 51.5700035], [-1.7706415, 51.5698168], [-1.7713547, 51.5696475], [-1.7724505, 51.5693667], [-1.7733108, 51.5691457], [-1.7736912, 51.5690826], [-1.7739743, 51.56901], [-1.7742819, 51.5689328], [-1.7742953, 51.5689294], [-1.7745946, 51.5688697], [-1.7748767, 51.5688146], [-1.7752328, 51.5687516]]}}, {"id": "169024557", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024557, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7652988, 51.5711602], [-1.7651337, 51.5711969], [-1.7644506, 51.5713487], [-1.7641028, 51.5714282], [-1.7635321, 51.5715594], [-1.7627687, 51.5717347], [-1.7620633, 51.5718955], [-1.7614006, 51.5720442], [-1.7607379, 51.5721947], [-1.7601324, 51.572329], [-1.7594154, 51.5724892], [-1.7588051, 51.5726247], [-1.7580416, 51.5727981], [-1.7572064, 51.57298], [-1.7564798, 51.5731425], [-1.7559367, 51.5732661]]}}, {"id": "169024558", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024558, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7742819, 51.5689328], [-1.7738814, 51.5689919]]}}, {"id": "169024559", "type": "Feature", "properties": {"osmid": 169024559, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7550005, 51.5735852], [-1.7548856, 51.5736158]]}}, {"id": "169024560", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024560, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7669996, 51.570733], [-1.7672568, 51.5706759], [-1.767568, 51.5705812], [-1.7678771, 51.570471], [-1.7682067, 51.5703609], [-1.7684758, 51.5702688], [-1.7687697, 51.5701654], [-1.769082, 51.5700667], [-1.7691028, 51.5700597], [-1.7694549, 51.569941], [-1.7697413, 51.5698604], [-1.7704134, 51.5697012], [-1.7713028, 51.5694776], [-1.7719102, 51.5693197], [-1.7721944, 51.5692284], [-1.7723889, 51.569176], [-1.7726969, 51.5691256], [-1.7731314, 51.5690631], [-1.7734296, 51.56901], [-1.7739192, 51.5689207], [-1.7742542, 51.5688562], [-1.7746281, 51.5687655], [-1.7749999, 51.5686728], [-1.7753586, 51.5685801]]}}, {"id": "169024561", "type": "Feature", "properties": {"osmid": 169024561, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7639834, 51.5714188], [-1.76434, 51.5713241], [-1.7647971, 51.5712186], [-1.7654239, 51.5710863], [-1.7665565, 51.5708391], [-1.7669996, 51.570733], [-1.7672903, 51.5706443], [-1.7675118, 51.570557], [-1.7677344, 51.5704529], [-1.7678825, 51.5703622], [-1.7680262, 51.5702514]]}}, {"id": "169024562", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024562, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7748767, 51.5688146], [-1.7751479, 51.5687373], [-1.7753763, 51.5686723]]}}, {"id": "169024563", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "osmid": 169024563, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7666491, 51.5709767], [-1.7663414, 51.5710252], [-1.76598, 51.5710836]]}}, {"id": "169024564", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 169024564, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821653, 51.5667053], [-1.7818233, 51.5667951], [-1.7815714, 51.5668619]]}}, {"id": "169024567", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024567, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7665565, 51.5708391], [-1.766291, 51.5709058], [-1.7658525, 51.5710365]]}}, {"id": "169024568", "type": "Feature", "properties": {"electrified": "no", "osmid": 169024568, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7666491, 51.5709767], [-1.7656938, 51.571191], [-1.7650786, 51.5713306]]}}, {"id": "169024574", "type": "Feature", "properties": {"osmid": 169024574, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7691028, 51.5700597], [-1.7693868, 51.56998], [-1.7697845, 51.5698887], [-1.770648, 51.5696757], [-1.7716487, 51.5694225], [-1.7722484, 51.5692687], [-1.7725986, 51.5691907]]}}, {"id": "169024576", "type": "Feature", "properties": {"osmid": 169024576, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7729611, 51.5691334], [-1.7727445, 51.5691773], [-1.7724278, 51.5692586], [-1.771974, 51.5693768], [-1.7708998, 51.5696502], [-1.7698039, 51.5699155], [-1.7691155, 51.5700767], [-1.7687697, 51.5701654]]}}, {"id": "169026308", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169026308, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8388818, 51.5421006], [-1.8381116, 51.5423104]]}}, {"id": "169030372", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169030372, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9078936, 51.5355551], [-1.9088025, 51.5357382]]}}, {"id": "169030373", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169030373, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9102904, 51.5359521], [-1.9095435, 51.5358673]]}}, {"id": "169030722", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "name": "Goods Loop", "osmid": 169030722, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9115987, 51.5367714], [-1.9112512, 51.5366751], [-1.9109033, 51.5365778], [-1.9104828, 51.5364526], [-1.9097087, 51.5361954], [-1.9089473, 51.5359555], [-1.908468, 51.5358278], [-1.9079539, 51.5357009], [-1.9075012, 51.5356027], [-1.9069479, 51.5354888], [-1.9063513, 51.5353785], [-1.9056709, 51.5352629], [-1.9049765, 51.5351438], [-1.9043268, 51.5350413], [-1.9037986, 51.5349587], [-1.9033208, 51.5348866], [-1.9027522, 51.5348101], [-1.9024881, 51.5347684], [-1.9019641, 51.5346814]]}}, {"id": "169030724", "type": "Feature", "properties": {"electrified": "no", "osmid": 169030724, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9093301, 51.535689], [-1.9101975, 51.5358402], [-1.91065, 51.5359361], [-1.9108805, 51.5360058]]}}, {"id": "169033322", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169033322, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9504994, 51.5336545], [-1.9493288, 51.5340114], [-1.9486302, 51.534227], [-1.9477612, 51.5344599], [-1.9470905, 51.5346372], [-1.9461796, 51.5348736], [-1.945263, 51.5351135], [-1.9445002, 51.5352768], [-1.9438379, 51.5354263], [-1.9431337, 51.5355689], [-1.9424323, 51.5357079], [-1.9418204, 51.5358383], [-1.9411916, 51.535953], [-1.9404595, 51.5360799], [-1.9398475, 51.5361807], [-1.9391853, 51.5362832], [-1.9383861, 51.5364049], [-1.937626, 51.5365162], [-1.9368492, 51.5366118], [-1.9358488, 51.5367334], [-1.9348847, 51.5368534], [-1.9342085, 51.5369124], [-1.9334261, 51.5369907], [-1.9324033, 51.5370654], [-1.9315343, 51.5371367], [-1.9304556, 51.5371992], [-1.9294189, 51.5372479], [-1.9285806, 51.5372844], [-1.9277032, 51.5373087], [-1.9264988, 51.5373226], [-1.9253196, 51.5373383], [-1.9240118, 51.5373226], [-1.9226957, 51.5372775], [-1.9213544, 51.5372357], [-1.9202813, 51.5371784], [-1.9191189, 51.5371036], [-1.9181911, 51.5370324], [-1.917255, 51.5369663], [-1.9162463, 51.5368424], [-1.9156463, 51.5367803], [-1.9148302, 51.5366734], [-1.9139075, 51.5365554]]}}, {"id": "169033328", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "name": "Great Western Main Line", "osmid": 169033328, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9217337, 51.5438871], [-1.9224353, 51.5445803]]}}, {"id": "169033332", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169033332, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9506409, 51.5336095], [-1.9504994, 51.5336545]]}}, {"id": "169033333", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 169033333, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9233751, 51.5453836], [-1.9227937, 51.5449024]]}}, {"id": "169033334", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "osmid": 169033334, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9237658, 51.5457953], [-1.9235425, 51.5455848]]}}, {"id": "169033340", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 169033340, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9235425, 51.5455848], [-1.9227937, 51.5449024], [-1.9224353, 51.5445803], [-1.9218977, 51.5440835], [-1.9209705, 51.5432374], [-1.9202169, 51.5425386], [-1.919434, 51.5418118], [-1.9188993, 51.5413207], [-1.9184165, 51.5408688], [-1.9179856, 51.5404928], [-1.9175682, 51.5401448], [-1.9171328, 51.5398038], [-1.9166567, 51.5394488], [-1.9162055, 51.5391471]]}}, {"id": "169702847", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 169702847, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8303268, 51.5815069], [-1.830941, 51.5818232]]}}, {"id": "169702850", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 169702850, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.830941, 51.5818232], [-1.8319485, 51.5823459], [-1.8333732, 51.583087], [-1.8345145, 51.5836769], [-1.8369523, 51.5849448]]}}, {"id": "177633116", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 177633116, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4653428, 51.2201499], [-1.46468, 51.2201752], [-1.4638213, 51.2201892], [-1.4629159, 51.2201874], [-1.4618869, 51.22015], [-1.4607613, 51.2200978], [-1.4600708, 51.2200739], [-1.459154, 51.2200549], [-1.4581294, 51.2200842], [-1.4572846, 51.2201231], [-1.4564049, 51.2202005], [-1.4554634, 51.2203067], [-1.4545622, 51.2204296], [-1.4535982, 51.2205889], [-1.452363, 51.2208527]]}}, {"id": "177633119", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 177633119, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.452363, 51.2208527], [-1.4520926, 51.2209144]]}}, {"id": "180808981", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 180808981, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4147775, 51.2305996], [-1.4026111, 51.2337367], [-1.3992654, 51.2346009]]}}, {"id": "191707126", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 191707126, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7621413, 51.3453968], [-1.7623579, 51.3452936]]}}, {"id": "191707127", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 191707127, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7623907, 51.3453214], [-1.7621777, 51.3454234]]}}, {"id": "191707128", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 191707128, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7573802, 51.3480156], [-1.7598413, 51.3466683], [-1.7610821, 51.3459765], [-1.761718, 51.3456038], [-1.7621413, 51.3453968]]}}, {"id": "191707129", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 191707129, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7621777, 51.3454234], [-1.7617465, 51.3456279], [-1.7611104, 51.3459968], [-1.7598699, 51.3466885], [-1.7574086, 51.3480359]]}}, {"id": "192995124", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 192995124, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8940222, 51.6047429], [-1.8938941, 51.6046948]]}}, {"id": "204383387", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204383387, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.059912, 51.5559566], [-2.0583325, 51.5560272], [-2.0570021, 51.5560555], [-2.0557818, 51.5560785], [-2.0546772, 51.5560999], [-2.0538371, 51.5561089], [-2.0519354, 51.5561389], [-2.050656, 51.5561656]]}}, {"id": "204383390", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "osmid": 204383390, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0618543, 51.555844], [-2.0615861, 51.5558667], [-2.0601348, 51.5559466], [-2.059912, 51.5559566]]}}, {"id": "204411242", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 204411242, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.732618, 51.5785464], [-1.7317525, 51.5787347], [-1.7305034, 51.5790179], [-1.7295385, 51.579224], [-1.7287174, 51.5794131], [-1.7278947, 51.5795918]]}}, {"id": "204525402", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204525402, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0384118, 51.5563921], [-2.0373791, 51.5564074], [-2.0357214, 51.5564224], [-2.0336615, 51.5564708], [-2.0324976, 51.5564904], [-2.0311671, 51.5565125], [-2.0292546, 51.5565325], [-2.0284287, 51.5565421], [-2.0271224, 51.5565438], [-2.0261567, 51.5565258], [-2.0244159, 51.5565141], [-2.023386, 51.5564891], [-2.0222273, 51.5564558], [-2.0215827, 51.5564379], [-2.0204008, 51.5563887], [-2.0202049, 51.556379], [-2.0179679, 51.5562757], [-2.0165973, 51.5562106], [-2.0151759, 51.5561402], [-2.0134351, 51.5560502], [-2.0119384, 51.5559751], [-2.0105061, 51.5559001], [-2.0087304, 51.5558087], [-2.0069494, 51.555737], [-2.0053159, 51.555682], [-2.0039642, 51.5556526], [-2.0029904, 51.5556539], [-2.002025, 51.5556369], [-2.0013088, 51.5556332], [-2.0001179, 51.5556414], [-1.9985768, 51.5556858], [-1.9974076, 51.5557089], [-1.9966087, 51.5557408], [-1.9952951, 51.5557857], [-1.9936973, 51.5558624], [-1.9919482, 51.5559739], [-1.9902084, 51.5560912], [-1.9882519, 51.5562505], [-1.9868871, 51.5563809], [-1.9853685, 51.5565242], [-1.9839711, 51.556656], [-1.9826621, 51.556766], [-1.9817165, 51.5568515], [-1.9807197, 51.5569427], [-1.9792431, 51.5570846], [-1.9777292, 51.5572265], [-1.9759055, 51.5573815]]}}, {"id": "204525403", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204525403, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0387417, 51.556382], [-2.0384118, 51.5563921]]}}, {"id": "204525784", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204525784, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.050412, 51.5561703], [-2.0492775, 51.5561869], [-2.0480141, 51.5562186], [-2.0459299, 51.5562523], [-2.0435347, 51.5562973], [-2.0424887, 51.5563073], [-2.0410243, 51.5563404], [-2.0394765, 51.5563657], [-2.0387417, 51.556382]]}}, {"id": "204525785", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204525785, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.050656, 51.5561656], [-2.050412, 51.5561703]]}}, {"id": "204525947", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "South Wales Main Line", "osmid": 204525947, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0794254, 51.5522114], [-2.0783793, 51.55256], [-2.0771589, 51.5529686], [-2.07576, 51.5533917], [-2.0739109, 51.5538888], [-2.0722853, 51.5542728], [-2.0710461, 51.5545446], [-2.0703462, 51.5546894], [-2.0694799, 51.5548611], [-2.0683645, 51.5550597], [-2.0669505, 51.5552797], [-2.0655585, 51.5554715], [-2.0640965, 51.5556369], [-2.0625303, 51.5557867], [-2.0618543, 51.555844]]}}, {"id": "211166489", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211166489, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8082813, 51.5549659], [-1.8080329, 51.5551176]]}}, {"id": "211252830", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252830, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0801104, 51.4832139], [-2.0780988, 51.4848285], [-2.0749501, 51.4874756], [-2.0741524, 51.488174], [-2.0733937, 51.4887509], [-2.0729232, 51.4891168], [-2.072171, 51.4896734], [-2.070823, 51.49061], [-2.0698999, 51.4912578], [-2.0687749, 51.4919917], [-2.0676937, 51.492648]]}}, {"id": "211252833", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252833, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.043191, 51.5082742], [-2.0405356, 51.5099032]]}}, {"id": "211252835", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252835, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0676937, 51.492648], [-2.066914, 51.4931591]]}}, {"id": "211252836", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252836, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0433313, 51.5081844], [-2.043191, 51.5082742]]}}, {"id": "211252837", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252837, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0505715, 51.5035472], [-2.0433313, 51.5081844]]}}, {"id": "211252838", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252838, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.05077, 51.5034289], [-2.0505715, 51.5035472]]}}, {"id": "211252839", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252839, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0405356, 51.5099032], [-2.0403249, 51.5100262]]}}, {"id": "211252840", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211252840, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.066914, 51.4931591], [-2.0590944, 51.498108]]}}, {"id": "211254769", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 211254769, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7813327, 51.5670266], [-1.7810131, 51.5671306], [-1.7806798, 51.5672377], [-1.7804414, 51.5673143], [-1.7798588, 51.5674911], [-1.7795442, 51.5675878], [-1.7792722, 51.5676714], [-1.7791469, 51.567709], [-1.778682, 51.5678486], [-1.7774812, 51.5681957], [-1.7763057, 51.5685274]]}}, {"id": "211254770", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "osmid": 211254770, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.78209, 51.5668163], [-1.7815493, 51.5669978], [-1.7813507, 51.5670607], [-1.7809519, 51.5671869], [-1.7807314, 51.5672567], [-1.7802596, 51.5674108], [-1.7800324, 51.5674823], [-1.7796681, 51.5675906], [-1.7785778, 51.5679195], [-1.7784617, 51.5679546], [-1.777629, 51.5682018], [-1.7767088, 51.5684641], [-1.7763314, 51.5685691]]}}, {"id": "211297275", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 211297275, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9064184, 51.5353454], [-1.9049289, 51.5350903], [-1.90385, 51.5349256], [-1.9030715, 51.5348113], [-1.9019641, 51.5346814], [-1.9013129, 51.5346134], [-1.9005661, 51.5345397], [-1.8996749, 51.5344721], [-1.8986198, 51.5344069], [-1.8976437, 51.5343529], [-1.8969106, 51.534332], [-1.8959167, 51.5343037], [-1.8945257, 51.534289], [-1.8933935, 51.5342976], [-1.8920973, 51.5343234], [-1.8909354, 51.534359], [-1.8897341, 51.5344217], [-1.8884082, 51.5345213], [-1.8872958, 51.5346196], [-1.8860826, 51.5347314], [-1.8849741, 51.5348679], [-1.8837075, 51.5350424], [-1.8825713, 51.5352194], [-1.8816723, 51.5353681], [-1.8809807, 51.5354726], [-1.8803563, 51.5355721], [-1.8798307, 51.5356594], [-1.8793632, 51.5357279], [-1.8791174, 51.5357639], [-1.8782935, 51.5358757], [-1.8775466, 51.5359667], [-1.8757623, 51.536167], [-1.8741124, 51.5363501], [-1.8728399, 51.5364866], [-1.8713224, 51.5366598], [-1.8691924, 51.5368885], [-1.8679199, 51.5370359], [-1.8666652, 51.5371699], [-1.8651556, 51.5373383], [-1.8639483, 51.5374686], [-1.8628398, 51.5375878], [-1.8616681, 51.5377254], [-1.8604806, 51.5378754], [-1.8595262, 51.5379921], [-1.8585857, 51.5381175], [-1.8572375, 51.538289], [-1.8568372, 51.5383466], [-1.8561529, 51.5384469], [-1.8555701, 51.538537], [-1.8547284, 51.5386683], [-1.8535575, 51.5388577], [-1.8512005, 51.5392687], [-1.8502569, 51.5394528], [-1.8494977, 51.5395981], [-1.8489959, 51.5396968], [-1.8483161, 51.5398396], [-1.8473146, 51.540049], [-1.8464976, 51.540217], [-1.8457727, 51.5403798], [-1.8450007, 51.5405532], [-1.8442351, 51.5407212], [-1.8433966, 51.5409186], [-1.8420069, 51.5412627], [-1.8412414, 51.5414588], [-1.8401863, 51.5417376], [-1.8388818, 51.5421006]]}}, {"id": "222708244", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 222708244, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9712926, 51.5574423], [-1.9714591, 51.5574493]]}}, {"id": "222708245", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 222708245, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9714572, 51.5574842], [-1.9712926, 51.5574772]]}}, {"id": "222708246", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 222708246, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9238613, 51.5458306], [-1.9248194, 51.5467087], [-1.9252865, 51.547138], [-1.9258455, 51.5475879], [-1.9263717, 51.5479938], [-1.9269041, 51.548374], [-1.9274117, 51.5487192], [-1.9279916, 51.5490882], [-1.9285443, 51.5494094], [-1.9290926, 51.5497027], [-1.9296748, 51.5500036], [-1.9301958, 51.5502596], [-1.9306922, 51.5504813], [-1.9311727, 51.5507001], [-1.9316916, 51.5509036], [-1.9322289, 51.5511058], [-1.932849, 51.5513272], [-1.9334243, 51.5515265], [-1.9340877, 51.5517299], [-1.9347728, 51.551917], [-1.9357346, 51.552169], [-1.9366529, 51.5523794], [-1.9371425, 51.552479], [-1.9380021, 51.5526305], [-1.9385818, 51.5527233], [-1.9393219, 51.5528283], [-1.9401161, 51.5529237], [-1.9409057, 51.5529981], [-1.941648, 51.5530626], [-1.9424873, 51.5531117], [-1.9434091, 51.5531678], [-1.9450074, 51.5532506], [-1.9466115, 51.5533474], [-1.9474959, 51.5534091], [-1.9482419, 51.5534602], [-1.9490391, 51.5535269], [-1.9498513, 51.5536027], [-1.9508936, 51.5537121], [-1.9518412, 51.5538271], [-1.952667, 51.553938], [-1.9534277, 51.5540386], [-1.9542395, 51.5541736], [-1.9550946, 51.5543153], [-1.9560331, 51.5544851], [-1.9572627, 51.5547207], [-1.9585128, 51.5549888], [-1.9599499, 51.5553345], [-1.9618584, 51.5558189]]}}, {"id": "222708247", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 222708247, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9618347, 51.5558534], [-1.9607897, 51.5555858], [-1.9598558, 51.5553484], [-1.9591291, 51.5551702], [-1.9584751, 51.5550149], [-1.957514, 51.5548115], [-1.9567334, 51.5546502], [-1.9559573, 51.5545015], [-1.9552737, 51.5543822], [-1.954466, 51.5542462], [-1.9536989, 51.5541269], [-1.9529747, 51.5540147], [-1.9522865, 51.5539179], [-1.9514382, 51.5538099], [-1.9507185, 51.5537271], [-1.9497867, 51.5536289], [-1.9489452, 51.5535518], [-1.9479412, 51.5534732], [-1.9469869, 51.5534115], [-1.9460077, 51.553354], [-1.9449315, 51.553288], [-1.9436906, 51.5532193], [-1.9426589, 51.553156], [-1.9418245, 51.5531044], [-1.9410955, 51.5530518], [-1.9404589, 51.5529913], [-1.9397873, 51.5529189], [-1.9392162, 51.5528515], [-1.9384759, 51.5527453], [-1.9376894, 51.5526094], [-1.9367961, 51.5524388], [-1.9360957, 51.552294], [-1.9352901, 51.5520946], [-1.9344637, 51.5518724], [-1.9335256, 51.5515907], [-1.9325876, 51.5512693], [-1.9320746, 51.5510913], [-1.9312412, 51.5507614], [-1.9306605, 51.5505114], [-1.9300926, 51.5502505], [-1.9294656, 51.5499469], [-1.9288865, 51.5496394], [-1.928368, 51.5493487], [-1.9278432, 51.5490352], [-1.9274938, 51.548814], [-1.9270248, 51.5485114], [-1.9266451, 51.5482495], [-1.9261553, 51.5478894], [-1.9257405, 51.547568], [-1.9252938, 51.547187], [-1.9246621, 51.5466245], [-1.9241674, 51.5461741], [-1.9237658, 51.5457953]]}}, {"id": "227343490", "type": "Feature", "properties": {"osmid": 227343490, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7435656, 51.5431047], [-1.7435166, 51.5432288], [-1.7434851, 51.5432702], [-1.7434011, 51.543305], [-1.7433205, 51.5433203], [-1.743205, 51.5433355], [-1.7430299, 51.5433355], [-1.7425118, 51.543329], [-1.7424032, 51.5433072], [-1.7423489, 51.543276], [-1.7423122, 51.5432549], [-1.7422562, 51.543207], [-1.7422107, 51.5431613], [-1.7421861, 51.5431286], [-1.7421651, 51.5430568], [-1.7421651, 51.5429893], [-1.7422107, 51.5429283], [-1.7423647, 51.5428325], [-1.7425748, 51.5427563], [-1.7427919, 51.5427193], [-1.7429669, 51.5426975], [-1.7430579, 51.5426866], [-1.7431525, 51.5426518], [-1.743233, 51.5426409], [-1.7434081, 51.5426387], [-1.7435026, 51.5426496], [-1.7436111, 51.5426975], [-1.7436286, 51.5427345], [-1.7435866, 51.5429588], [-1.7435656, 51.5431047]]}}, {"id": "227343491", "type": "Feature", "properties": {"name": "Coate Water Minature Railway", "osmid": 227343491, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7432159, 51.5431115], [-1.743086, 51.5431025], [-1.7429984, 51.5430764], [-1.7428899, 51.5430067], [-1.7428339, 51.5429305], [-1.7427358, 51.5429065], [-1.7426518, 51.5428826], [-1.7425888, 51.5428782], [-1.7424697, 51.5428869], [-1.7423682, 51.5429392], [-1.7423087, 51.5429697], [-1.7422807, 51.5430263], [-1.7422737, 51.5430786], [-1.7423122, 51.5431918], [-1.7424207, 51.5432397], [-1.7424942, 51.5432702], [-1.7426133, 51.5432876], [-1.7427288, 51.543292], [-1.7428549, 51.5432811], [-1.7429529, 51.543268], [-1.7430334, 51.5432419], [-1.743086, 51.5432266], [-1.7431875, 51.5431809], [-1.7432159, 51.5431115]]}}, {"id": "239355403", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 239355403, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3992466, 51.234571], [-1.4148003, 51.2305571]]}}, {"id": "239355406", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 239355406, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3885714, 51.2373486], [-1.3888504, 51.2372777]]}}, {"id": "239355407", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "maxspeed": "85 mph", "osmid": 239355407, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3841861, 51.2384825], [-1.3859564, 51.2380191]]}}, {"id": "239355409", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 239355409, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4148003, 51.2305571], [-1.4497822, 51.2214587], [-1.4520747, 51.2208862]]}}, {"id": "239355412", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 239355412, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3888504, 51.2372777], [-1.3992466, 51.234571]]}}, {"id": "239355413", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 239355413, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3859564, 51.2380191], [-1.3885714, 51.2373486]]}}, {"id": "240283840", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240283840, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.452349, 51.2208222], [-1.4535802, 51.22056], [-1.4545461, 51.2203991], [-1.4554417, 51.2202775], [-1.4563912, 51.2201717], [-1.4572283, 51.2200997], [-1.4581374, 51.2200514], [-1.4591513, 51.2200258], [-1.4600241, 51.2200449], [-1.4607645, 51.2200629], [-1.4618947, 51.2201185], [-1.462919, 51.2201473], [-1.4639678, 51.2201574], [-1.4647516, 51.2201457], [-1.4653388, 51.2201222]]}}, {"id": "240283841", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240283841, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4520747, 51.2208862], [-1.452349, 51.2208222]]}}, {"id": "240285078", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285078, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4901269, 51.2126952], [-1.4903784, 51.2125886]]}}, {"id": "240285081", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285081, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4864884, 51.2143032], [-1.4867205, 51.2142002]]}}, {"id": "240285084", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285084, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4653388, 51.2201222], [-1.4655108, 51.2201142]]}}, {"id": "240285088", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240285088, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4867205, 51.2142002], [-1.4899181, 51.2127874], [-1.4901269, 51.2126952]]}}, {"id": "240285090", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285090, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4762296, 51.2183451], [-1.4764659, 51.2182796]]}}, {"id": "240285093", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285093, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4655059, 51.2201437], [-1.4653428, 51.2201499]]}}, {"id": "240285096", "type": "Feature", "properties": {"electrified": "no", "osmid": 240285096, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4951681, 51.2105649], [-1.4958411, 51.2102303]]}}, {"id": "240285097", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240285097, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4762263, 51.2183757], [-1.4746459, 51.2187883], [-1.4732591, 51.2191208], [-1.4723152, 51.219314], [-1.4714677, 51.2194668], [-1.4705117, 51.2196294], [-1.4695714, 51.2197692], [-1.4685114, 51.2199002], [-1.4675191, 51.2200045], [-1.4665149, 51.2200907], [-1.4655059, 51.2201437]]}}, {"id": "240285098", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240285098, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4655108, 51.2201142], [-1.4664939, 51.2200587], [-1.4675118, 51.2199659], [-1.4685032, 51.2198666], [-1.4695734, 51.2197354], [-1.4705021, 51.2195997], [-1.4714653, 51.2194351], [-1.4723049, 51.2192839], [-1.4732408, 51.2190894], [-1.474645, 51.2187554], [-1.4762296, 51.2183451]]}}, {"id": "240285100", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240285100, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4764659, 51.2182796], [-1.4774287, 51.2180094], [-1.4782944, 51.2177322], [-1.4791413, 51.2174552], [-1.4798673, 51.2171919], [-1.4804666, 51.2169537]]}}, {"id": "240285102", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 240285102, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4806823, 51.2168621], [-1.4814779, 51.2165352], [-1.482287, 51.2161723], [-1.4864884, 51.2143032]]}}, {"id": "240285104", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "85 mph", "osmid": 240285104, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4804666, 51.2169537], [-1.4806823, 51.2168621]]}}, {"id": "240285763", "type": "Feature", "properties": {"electrified": "no", "osmid": 240285763, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4909759, 51.2124397], [-1.4925101, 51.2117988], [-1.4927112, 51.2117332], [-1.4929661, 51.2116544], [-1.4950794, 51.2107407], [-1.4957663, 51.210442]]}}, {"id": "240285764", "type": "Feature", "properties": {"electrified": "no", "osmid": 240285764, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4931857, 51.2115944], [-1.4945066, 51.2110319], [-1.4947615, 51.2109204], [-1.4954145, 51.2106348], [-1.4959208, 51.210425]]}}, {"id": "240285767", "type": "Feature", "properties": {"electrified": "no", "osmid": 240285767, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4945066, 51.2110319], [-1.4939894, 51.2112983]]}}, {"id": "240287753", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 240287753, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4958411, 51.2102303], [-1.4967048, 51.2098842], [-1.4976838, 51.2095484], [-1.5000763, 51.2087534], [-1.5010556, 51.2084586], [-1.5034633, 51.2077858], [-1.5045201, 51.2075222], [-1.5059819, 51.2071586], [-1.507331, 51.2068635], [-1.5088545, 51.2065458], [-1.510378, 51.2062587], [-1.5118774, 51.2060016], [-1.5138122, 51.2057107]]}}, {"id": "240287754", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 240287754, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5138122, 51.2057107], [-1.5146839, 51.2055964], [-1.5155036, 51.2054951], [-1.5166513, 51.2053607], [-1.5176853, 51.205262], [-1.5201339, 51.2050721], [-1.5212363, 51.2049531], [-1.5221985, 51.2048336], [-1.5232182, 51.2046824], [-1.5242295, 51.2045172], [-1.5251579, 51.2043525], [-1.5262464, 51.2041346], [-1.5273858, 51.2038821], [-1.5283335, 51.2036558], [-1.529336, 51.2034145], [-1.5300816, 51.2032044], [-1.530846, 51.2029758]]}}, {"id": "240289103", "type": "Feature", "properties": {"electrified": "no", "osmid": 240289103, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4960012, 51.2103487], [-1.4963285, 51.2102536]]}}, {"id": "240289104", "type": "Feature", "properties": {"electrified": "no", "osmid": 240289104, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4960012, 51.2103487], [-1.4957663, 51.210442], [-1.4953398, 51.21058], [-1.4950955, 51.210652], [-1.4946761, 51.2107815]]}}, {"id": "240289105", "type": "Feature", "properties": {"electrified": "no", "osmid": 240289105, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5138578, 51.2057763], [-1.511923, 51.206077], [-1.510429, 51.2063357], [-1.5089189, 51.20662], [-1.5074115, 51.2069308], [-1.5060114, 51.2072368], [-1.5046917, 51.2075489], [-1.5035062, 51.2078466], [-1.5029081, 51.2080255], [-1.5023743, 51.2081994], [-1.5018361, 51.2083521], [-1.5014516, 51.208476], [-1.5005889, 51.2087274], [-1.4992022, 51.2091725], [-1.4978957, 51.2096167], [-1.4972377, 51.2098535], [-1.4966514, 51.2100829], [-1.4960012, 51.2103487]]}}, {"id": "240667814", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 240667814, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5490344, 51.2090089], [-1.5491464, 51.2090359]]}}, {"id": "240667815", "type": "Feature", "properties": {"electrified": "no", "osmid": 240667815, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5491464, 51.2090359], [-1.5513919, 51.2095773], [-1.554477, 51.2103248], [-1.555727, 51.2106848], [-1.5575665, 51.211315], [-1.5585754, 51.2117218], [-1.5597395, 51.2122485]]}}, {"id": "240672994", "type": "Feature", "properties": {"osmid": 240672994, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6284978, 51.2572041], [-1.6280577, 51.2569322], [-1.6278645, 51.2567925], [-1.6273471, 51.2564025], [-1.6270789, 51.2562279], [-1.6268319, 51.2561026], [-1.6265798, 51.2560196], [-1.6262532, 51.2559391]]}}, {"id": "240672995", "type": "Feature", "properties": {"osmid": 240672995, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6288841, 51.2572603], [-1.6279855, 51.2566761], [-1.6275966, 51.256431], [-1.6273952, 51.2563317], [-1.6271637, 51.2561877], [-1.6269167, 51.2560989], [-1.6265798, 51.2560196]]}}, {"id": "240674255", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674255, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6264859, 51.2556917], [-1.6267222, 51.2557629], [-1.6269448, 51.2558116], [-1.6273364, 51.2558721], [-1.6278619, 51.2559364], [-1.6283983, 51.25597], [-1.6287765, 51.2559717], [-1.6293175, 51.2559646], [-1.6297421, 51.2559234], [-1.6300586, 51.2559191], [-1.6302805, 51.255918], [-1.630517, 51.2558977], [-1.6308096, 51.2558586]]}}, {"id": "240674256", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674256, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6269582, 51.2556807], [-1.6274354, 51.2557551], [-1.6280791, 51.2558324], [-1.6287953, 51.2558978], [-1.6293129, 51.2559286], [-1.6297421, 51.2559234]]}}, {"id": "240674257", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674257, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6258388, 51.2557756], [-1.6251206, 51.2554578]]}}, {"id": "240674258", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674258, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6269663, 51.2557394], [-1.6280174, 51.2558693], [-1.6285002, 51.2559146], [-1.628865, 51.2559354], [-1.6293129, 51.2559286]]}}, {"id": "240674260", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674260, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6281167, 51.2557232], [-1.6288167, 51.2557887], [-1.6291896, 51.2558391], [-1.6295999, 51.2558879], [-1.6297963, 51.2559013], [-1.6300586, 51.2559191]]}}, {"id": "240674261", "type": "Feature", "properties": {"electrified": "no", "osmid": 240674261, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6336072, 51.2549331], [-1.6342187, 51.2545849], [-1.637206, 51.2532682]]}}, {"id": "241001514", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "maxspeed": "90 mph", "osmid": 241001514, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5397428, 51.1992132], [-1.5399382, 51.1991046], [-1.5406468, 51.1987406]]}}, {"id": "241001515", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241001515, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5311223, 51.2028901], [-1.5321198, 51.2025757], [-1.5330294, 51.2022532], [-1.5337911, 51.2019725], [-1.5346441, 51.2016381], [-1.5353924, 51.2013272], [-1.5360924, 51.201028], [-1.5368408, 51.2006919], [-1.5376642, 51.2002902], [-1.5384848, 51.1998702], [-1.5397428, 51.1992132]]}}, {"id": "241001516", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241001516, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.530846, 51.2029758], [-1.5311223, 51.2028901]]}}, {"id": "241001517", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241001517, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5406468, 51.1987406], [-1.5473019, 51.1952511], [-1.5480578, 51.1948395], [-1.5488222, 51.1944058], [-1.5501368, 51.1935659], [-1.5508741, 51.19307], [-1.5515881, 51.192579], [-1.5522855, 51.1920545], [-1.5530172, 51.1914784], [-1.5536239, 51.1909804], [-1.55477, 51.1899475], [-1.5553775, 51.1894323], [-1.5560567, 51.1888877], [-1.5567347, 51.1883744], [-1.5574165, 51.1878754], [-1.5580925, 51.1874081], [-1.558873, 51.1868903], [-1.5597281, 51.1863587], [-1.560581, 51.1858597], [-1.5615895, 51.1853018]]}}, {"id": "241004045", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241004045, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5617966, 51.185199], [-1.5629642, 51.1846013], [-1.564084, 51.1840707], [-1.5650925, 51.1836243], [-1.5661793, 51.1831966], [-1.5766104, 51.1791943]]}}, {"id": "241004046", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241004046, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5800914, 51.178137], [-1.5803811, 51.1780596]]}}, {"id": "241004047", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "West of England Main Line", "osmid": 241004047, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6040219, 51.1733813], [-1.6198312, 51.1702999]]}}, {"id": "241004048", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241004048, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5768411, 51.1791143], [-1.5781119, 51.1787006], [-1.5790566, 51.1784164], [-1.5800914, 51.178137]]}}, {"id": "241004049", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241004049, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5975338, 51.1746444], [-1.6037191, 51.1734384]]}}, {"id": "241004050", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241004050, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5766104, 51.1791943], [-1.5768411, 51.1791143]]}}, {"id": "241004052", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241004052, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5971504, 51.1747187], [-1.5975338, 51.1746444]]}}, {"id": "241004053", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 241004053, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5803811, 51.1780596], [-1.5820438, 51.1776745], [-1.5971504, 51.1747187]]}}, {"id": "241004055", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241004055, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5615895, 51.1853018], [-1.5617966, 51.185199]]}}, {"id": "241004056", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "osmid": 241004056, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6037191, 51.1734384], [-1.6040219, 51.1733813]]}}, {"id": "242086407", "type": "Feature", "properties": {"electrified": "no", "osmid": 242086407, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4950525, 51.2108803], [-1.4942337, 51.2112361], [-1.4940041, 51.2113165], [-1.4936891, 51.2114292]]}}, {"id": "242086408", "type": "Feature", "properties": {"electrified": "no", "osmid": 242086408, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4920556, 51.2129834], [-1.4925867, 51.2122828], [-1.4927235, 51.2121097], [-1.4928871, 51.2119501], [-1.4930561, 51.2117972]]}}, {"id": "242086409", "type": "Feature", "properties": {"electrified": "no", "osmid": 242086409, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4920208, 51.212965], [-1.4927181, 51.2120358], [-1.4928308, 51.2119249], [-1.492981, 51.2118039], [-1.493217, 51.2116695]]}}, {"id": "242086410", "type": "Feature", "properties": {"electrified": "no", "osmid": 242086410, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4922192, 51.2130002], [-1.492458, 51.212686], [-1.4926162, 51.2124727], [-1.4927342, 51.2122794], [-1.492812, 51.2121215], [-1.4929113, 51.2119568], [-1.4930561, 51.2117972], [-1.493217, 51.2116695], [-1.4934262, 51.2115485], [-1.4936891, 51.2114292], [-1.4939894, 51.2112983], [-1.495269, 51.2107426], [-1.4956177, 51.2105796], [-1.4959208, 51.210425], [-1.4963285, 51.2102536], [-1.4972296, 51.2098932], [-1.4979001, 51.2096506], [-1.4992144, 51.209207], [-1.5005814, 51.2087738], [-1.5017009, 51.2084398], [-1.5019504, 51.2083565]]}}, {"id": "242086411", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242086411, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4958484, 51.2102807], [-1.4951681, 51.2105649], [-1.4946761, 51.2107815], [-1.4927973, 51.2115801]]}}, {"id": "242086412", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "osmid": 242086412, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4927396, 51.211536], [-1.493494, 51.2112024], [-1.4946934, 51.2106719], [-1.4953449, 51.2104169], [-1.4958411, 51.2102303]]}}, {"id": "248747287", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 248747287, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8373439, 51.5851514], [-1.8381593, 51.5855747], [-1.8423382, 51.5875246], [-1.8430141, 51.5878146], [-1.8435613, 51.5880412], [-1.8443131, 51.5883742], [-1.844835, 51.5885794], [-1.8456696, 51.588893], [-1.8465462, 51.5892201], [-1.8481327, 51.5897902], [-1.8488136, 51.5900218], [-1.8495555, 51.5902774], [-1.8502642, 51.5905189], [-1.851328, 51.5908594], [-1.8521217, 51.5911012], [-1.8526737, 51.5912541], [-1.8534704, 51.5914714], [-1.8540007, 51.5916212], [-1.854419, 51.591742], [-1.8549479, 51.5918855], [-1.8558412, 51.5921163], [-1.8569361, 51.5923946], [-1.8579156, 51.5926265], [-1.8587163, 51.5928179], [-1.8598181, 51.5930796]]}}, {"id": "248747297", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 248747297, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8369523, 51.5849448], [-1.8373439, 51.5851514]]}}, {"id": "251477507", "type": "Feature", "properties": {"electrified": "no", "osmid": 251477507, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4950794, 51.2107407], [-1.4947615, 51.2109204]]}}, {"id": "251478759", "type": "Feature", "properties": {"electrified": "no", "osmid": 251478759, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6251206, 51.2554578], [-1.625711, 51.2556411], [-1.6261318, 51.2557671], [-1.6265693, 51.2558674], [-1.6271315, 51.2559729], [-1.6276269, 51.2560419], [-1.6280945, 51.2560807], [-1.6286558, 51.2561014], [-1.6292378, 51.2560759], [-1.6298091, 51.2560293], [-1.6302671, 51.2559742], [-1.6308096, 51.2558586], [-1.6313776, 51.2556793], [-1.6326684, 51.2551722], [-1.6336462, 51.2547318], [-1.6342154, 51.2544298], [-1.6349751, 51.2540297], [-1.6352531, 51.2538781], [-1.6354706, 51.2537317], [-1.6356369, 51.2535957], [-1.6357923, 51.2534346], [-1.6359046, 51.2532572], [-1.6359883, 51.2530826], [-1.636058, 51.2528055], [-1.6360446, 51.2525659], [-1.6359639, 51.2523395], [-1.6354849, 51.2517135]]}}, {"id": "278059728", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 278059728, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7238329, 51.5804504], [-1.7264186, 51.5798876], [-1.7270266, 51.5797409]]}}, {"id": "278059736", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 278059736, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7278947, 51.5795918], [-1.7263905, 51.5799329], [-1.7238526, 51.5804843]]}}, {"id": "308765592", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765592, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9844307, 51.5262282], [-1.9841727, 51.5262749]]}}, {"id": "308765593", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765593, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9841727, 51.5262749], [-1.9824971, 51.5265781], [-1.9799866, 51.5270311], [-1.9772125, 51.5275327], [-1.9760125, 51.527752]]}}, {"id": "308765594", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765594, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.984415, 51.5262], [-1.9910378, 51.5250003], [-1.9989553, 51.5235845], [-2.0029783, 51.522831], [-2.0096188, 51.5215631], [-2.0102577, 51.5214058], [-2.0139795, 51.5204985], [-2.01578, 51.5200143], [-2.0169865, 51.5196876], [-2.0187709, 51.5191762], [-2.0204793, 51.5186375], [-2.0219643, 51.5181589], [-2.0236313, 51.5175873], [-2.0252936, 51.5169927], [-2.0273339, 51.5162177], [-2.0287643, 51.5156483], [-2.0305696, 51.514875], [-2.0327638, 51.5138892], [-2.0342696, 51.5131886], [-2.0345886, 51.5130303], [-2.0366204, 51.5120222], [-2.0393307, 51.5105247], [-2.0402864, 51.509986]]}}, {"id": "308765595", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765595, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9841632, 51.5262457], [-1.984415, 51.5262]]}}, {"id": "308765596", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765596, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9760125, 51.527752], [-1.9756787, 51.527813]]}}, {"id": "308765597", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765597, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9756787, 51.527813], [-1.9739203, 51.5281344], [-1.9709899, 51.528661], [-1.9690244, 51.5290153], [-1.9674051, 51.5293099], [-1.9656384, 51.5296309], [-1.9642539, 51.529881], [-1.9633873, 51.5300311], [-1.9624469, 51.5302047], [-1.9613212, 51.5304173], [-1.9603206, 51.5306271], [-1.9595836, 51.5307967], [-1.9585025, 51.5310745], [-1.9577565, 51.5312593], [-1.9567782, 51.5315483], [-1.9559049, 51.5318235], [-1.9549735, 51.5321389], [-1.9539863, 51.5324626], [-1.9529678, 51.5328308], [-1.9520186, 51.5331504], [-1.9513478, 51.5333788], [-1.9506409, 51.5336095]]}}, {"id": "308765598", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765598, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9756637, 51.5277836], [-1.9760069, 51.5277215]]}}, {"id": "308765599", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 308765599, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9760069, 51.5277215], [-1.9831875, 51.5264224], [-1.9841632, 51.5262457]]}}, {"id": "310184612", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Great Western Main Line", "osmid": 310184612, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7881409, 51.5647025], [-1.7879529, 51.564777], [-1.7866686, 51.5652505], [-1.78534, 51.5657249], [-1.7841477, 51.566133], [-1.783756, 51.5662657], [-1.7833722, 51.5663969], [-1.7829719, 51.5665294], [-1.7826462, 51.5666296]]}}, {"id": "310184613", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 310184613, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7821106, 51.5668511], [-1.7816069, 51.567021], [-1.7814701, 51.5670669], [-1.7811775, 51.5671654], [-1.7803317, 51.56743], [-1.7800622, 51.5675363], [-1.7798912, 51.5675998], [-1.7794451, 51.5677316], [-1.7783297, 51.5680736], [-1.777707, 51.5682607], [-1.7773576, 51.5683613], [-1.777233, 51.5683901], [-1.7767367, 51.5684988], [-1.7763578, 51.568606]]}}, {"id": "310184614", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 310184614, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7519616, 51.5741901], [-1.7539806, 51.5737397], [-1.75607, 51.5732723], [-1.7634457, 51.5716136]]}}, {"id": "310184615", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "40 mph", "osmid": 310184615, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7634845, 51.5717013], [-1.762709, 51.5718759], [-1.7613868, 51.5721663], [-1.7601276, 51.5724473], [-1.7588245, 51.5727377], [-1.7568131, 51.5731857], [-1.7556005, 51.5734582], [-1.7550005, 51.5735852], [-1.7544948, 51.5736796], [-1.7539977, 51.5737693]]}}, {"id": "310184616", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 310184616, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7634676, 51.571654], [-1.7560872, 51.5733019], [-1.7539977, 51.5737693], [-1.7519787, 51.5742197], [-1.7503256, 51.5745904], [-1.7412595, 51.5766175], [-1.7394422, 51.5770185], [-1.7345821, 51.5781056], [-1.732618, 51.5785464]]}}, {"id": "310184617", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "osmid": 310184617, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7881101, 51.5648014], [-1.787965, 51.5648833], [-1.7878505, 51.5649514], [-1.7876543, 51.5650678], [-1.7872693, 51.5652618], [-1.7870066, 51.5653721], [-1.7866769, 51.5654969], [-1.7861138, 51.5656998], [-1.7855375, 51.565905], [-1.7850311, 51.566075], [-1.784746, 51.5661667], [-1.7844821, 51.5662331], [-1.7842368, 51.5662986], [-1.7836086, 51.5664272], [-1.7833233, 51.5664906]]}}, {"id": "310184618", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "name": "Great Western Main Line", "osmid": 310184618, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7905565, 51.5637205], [-1.7899422, 51.5640091]]}}, {"id": "310185106", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "osmid": 310185106, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7904203, 51.5638254], [-1.7899422, 51.5640091], [-1.7895072, 51.5641762]]}}, {"id": "310185107", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 310185107, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7903437, 51.5637601], [-1.7917366, 51.5631923], [-1.7922044, 51.5630022], [-1.7927232, 51.5627809]]}}, {"id": "310185108", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 310185108, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.8073765, 51.5555878], [-1.8068529, 51.5559042], [-1.8066649, 51.5560133], [-1.8059035, 51.5564291], [-1.8051587, 51.5568461], [-1.8036598, 51.5576663], [-1.8021198, 51.5584612], [-1.80057, 51.5592438], [-1.7990069, 51.5600132], [-1.798237, 51.5603807], [-1.7974609, 51.5607435]]}}, {"id": "310311428", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "70 mph", "name": "South Wales Main Line", "osmid": 310311428, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9063935, 51.5353062], [-1.9074663, 51.5355193], [-1.9080922, 51.535654], [-1.9086539, 51.53578], [-1.9090688, 51.5358904], [-1.9094633, 51.5360009], [-1.9100413, 51.5361763], [-1.9102587, 51.5362502]]}}, {"id": "310311429", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "70 mph", "name": "South Wales Main Line", "osmid": 310311429, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9102315, 51.5362777], [-1.9100008, 51.5362024], [-1.9095872, 51.5360807], [-1.9092267, 51.5359755], [-1.908693, 51.5358295], [-1.9081676, 51.5357061], [-1.9077122, 51.5356062], [-1.9071756, 51.5354967], [-1.9064184, 51.5353454]]}}, {"id": "310311430", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "South Wales Main Line", "osmid": 310311430, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9102587, 51.5362502], [-1.910663, 51.5363875], [-1.9112275, 51.5365908], [-1.9115547, 51.5367207], [-1.9123201, 51.5370219], [-1.9130527, 51.5373457], [-1.9136586, 51.5376363], [-1.9143278, 51.5379761], [-1.9148266, 51.5382499], [-1.9152234, 51.5384723], [-1.9156475, 51.5387336], [-1.9162785, 51.5391445]]}}, {"id": "310311431", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "South Wales Main Line", "osmid": 310311431, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9162055, 51.5391471], [-1.915651, 51.53878], [-1.9153338, 51.5385827], [-1.9150055, 51.5383941], [-1.9146799, 51.5382073], [-1.9143432, 51.5380239], [-1.9140023, 51.5378484], [-1.9136404, 51.5376641], [-1.9132408, 51.5374764], [-1.9127853, 51.5372652], [-1.9123592, 51.5370714], [-1.9116606, 51.5367951], [-1.9115987, 51.5367714], [-1.9112303, 51.5366308], [-1.9108195, 51.5364787], [-1.9103892, 51.5363292], [-1.9102315, 51.5362777]]}}, {"id": "310596751", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 310596751, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4472721, 51.4025339], [-1.4463819, 51.4026021], [-1.4459215, 51.4026278], [-1.4453636, 51.4026548], [-1.4445482, 51.4026905]]}}, {"id": "310605274", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Paddington to Penzance Line", "osmid": 310605274, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.474064, 51.4088688], [-1.4749058, 51.4090622], [-1.4769192, 51.4094715], [-1.4781058, 51.4096551], [-1.4792974, 51.4098137], [-1.4797436, 51.4098716]]}}, {"id": "310605275", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Penzance to Paddington Line", "osmid": 310605275, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5099616, 51.4143671], [-1.5094866, 51.414228], [-1.5085632, 51.4139363], [-1.5076764, 51.4136374], [-1.506937, 51.4133861], [-1.5058552, 51.4130207], [-1.5049483, 51.4127198], [-1.5045118, 51.4125835], [-1.5040231, 51.4124355], [-1.5035853, 51.4123136], [-1.5030847, 51.4121811], [-1.502599, 51.412063], [-1.5021312, 51.4119506], [-1.5013026, 51.4117777], [-1.5008049, 51.4116847], [-1.5002457, 51.4115878], [-1.4995916, 51.4114862], [-1.4989037, 51.4113915], [-1.4979694, 51.4112875], [-1.4970342, 51.4112054], [-1.4961476, 51.411144], [-1.4952442, 51.4111049], [-1.4941233, 51.4110808], [-1.4930005, 51.4110686], [-1.4918751, 51.4110474], [-1.4907577, 51.4110245], [-1.4895586, 51.410976], [-1.4883555, 51.4108984], [-1.4871581, 51.4108001], [-1.4859493, 51.4106825], [-1.4848862, 51.4105663], [-1.4838139, 51.4104325], [-1.4827357, 51.4102913], [-1.4816646, 51.4101532], [-1.4811018, 51.4100823], [-1.4798662, 51.4099266]]}}, {"id": "310894341", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 310894341, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7951253, 51.565237], [-1.7964704, 51.5660585], [-1.797311, 51.566552], [-1.798656, 51.5672778], [-1.7995806, 51.5677422], [-1.8008061, 51.568303]]}}, {"id": "371747206", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 371747206, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0588792, 51.4981828], [-2.0590576, 51.4980701]]}}, {"id": "371747208", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 371747208, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0589268, 51.498214], [-2.0546525, 51.5009189], [-2.05077, 51.5034289]]}}, {"id": "371747209", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 371747209, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0590944, 51.498108], [-2.0589268, 51.498214]]}}, {"id": "371747210", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 371747210, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0590576, 51.4980701], [-2.0668754, 51.4931309]]}}, {"id": "386441725", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 386441725, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8977447, 51.3311005], [-1.9005335, 51.3308329], [-1.9042879, 51.3305852], [-1.9076485, 51.330401], [-1.9135492, 51.3302129], [-1.9194167, 51.3300657]]}}, {"id": "386441726", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 386441726, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9194185, 51.3301106], [-1.9135525, 51.3302578], [-1.9076535, 51.3304458], [-1.9042948, 51.3306299], [-1.9005428, 51.3308775], [-1.8977616, 51.3311389]]}}, {"id": "391463894", "type": "Feature", "properties": {"osmid": 391463894, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7623427, 51.5744194], [-1.76223, 51.5745728], [-1.7621737, 51.5746645], [-1.7620154, 51.5749229], [-1.7618894, 51.5751296], [-1.7618625, 51.5751829], [-1.7618411, 51.5752379], [-1.7617928, 51.5753629], [-1.7617606, 51.5754713], [-1.7615943, 51.576028], [-1.761479, 51.5765281], [-1.7613261, 51.5771749], [-1.7611947, 51.5777099], [-1.7611598, 51.57784]]}}, {"id": "391469073", "type": "Feature", "properties": {"osmid": 391469073, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7621737, 51.5746645], [-1.7620557, 51.5749445], [-1.7619913, 51.5751262], [-1.7618411, 51.5755763], [-1.7617284, 51.575933], [-1.761605, 51.5764664], [-1.7613261, 51.5776066], [-1.761135, 51.5784439], [-1.7611183, 51.5785747]]}}, {"id": "391469074", "type": "Feature", "properties": {"osmid": 391469074, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7585983, 51.5760681], [-1.7594003, 51.5760497], [-1.7599769, 51.5760397], [-1.7600574, 51.5760347], [-1.7601674, 51.5760214], [-1.7604168, 51.5759814], [-1.7605992, 51.575948], [-1.7606246, 51.5759422], [-1.7607306, 51.575918], [-1.7607977, 51.5758997], [-1.7608835, 51.5758697], [-1.761133, 51.575763], [-1.761318, 51.5756863], [-1.7614173, 51.5756397], [-1.7614855, 51.5756033], [-1.7615299, 51.5755796], [-1.7615809, 51.5755446], [-1.7616211, 51.5755146], [-1.7616587, 51.5754796], [-1.7616882, 51.5754463], [-1.7617257, 51.5753929], [-1.7618411, 51.5752379]]}}, {"id": "391469075", "type": "Feature", "properties": {"osmid": 391469075, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7614855, 51.5756033], [-1.7614267, 51.5756588], [-1.7613931, 51.5756897], [-1.7613583, 51.575713], [-1.7613154, 51.5757397], [-1.7611813, 51.5757997], [-1.7609399, 51.5758997], [-1.7608728, 51.5759264], [-1.7608031, 51.575948], [-1.7607226, 51.5759697], [-1.7606582, 51.5759864], [-1.7606294, 51.5759903], [-1.7605965, 51.5759947], [-1.7605322, 51.5760014], [-1.7604624, 51.5760047], [-1.7591267, 51.5760214], [-1.7585902, 51.5760297], [-1.7585285, 51.5760331], [-1.7584427, 51.5760414], [-1.7583488, 51.5760531], [-1.7582308, 51.5760747], [-1.7581209, 51.5760997], [-1.7580404, 51.5761247], [-1.7579787, 51.5761481], [-1.7579143, 51.5761814], [-1.75785, 51.5762231], [-1.7577802, 51.5762764], [-1.7577239, 51.5763298], [-1.7576676, 51.5763898], [-1.7576193, 51.5764498], [-1.7575817, 51.5765098], [-1.7575603, 51.5765548], [-1.7575442, 51.5766048], [-1.7575281, 51.5766681], [-1.7575174, 51.5767448], [-1.7575147, 51.5768498], [-1.75752, 51.5770315], [-1.7575314, 51.5772866], [-1.7575386, 51.5774466], [-1.7575663, 51.5780655], [-1.757571, 51.57817], [-1.7575751, 51.5784174], [-1.7575978, 51.5793168], [-1.7576113, 51.5797488]]}}, {"id": "391471877", "type": "Feature", "properties": {"osmid": 391471877, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7620154, 51.5749229], [-1.7617955, 51.575538]]}}, {"id": "391471878", "type": "Feature", "properties": {"osmid": 391471878, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7617928, 51.5753629], [-1.7616731, 51.5756122], [-1.7615031, 51.5759664]]}}, {"id": "394209764", "type": "Feature", "properties": {"osmid": 394209764, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7423489, 51.543276], [-1.7424042, 51.5434688], [-1.7425335, 51.5438869], [-1.7426557, 51.5442786]]}}, {"id": "450433562", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "20 mph", "osmid": 450433562, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7833233, 51.5664906], [-1.7830453, 51.5665368], [-1.7826462, 51.5666296]]}}, {"id": "450433563", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Great Western Main Line", "osmid": 450433563, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7895072, 51.5641762], [-1.7890188, 51.5643634]]}}, {"id": "450433564", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Great Western Main Line", "osmid": 450433564, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7890188, 51.5643634], [-1.7887637, 51.564466], [-1.7882774, 51.5646483], [-1.7881409, 51.5647025]]}}, {"id": "460363304", "type": "Feature", "properties": {"osmid": 460363304, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825989, 51.5672209], [-1.7795901, 51.5681023]]}}, {"id": "460363305", "type": "Feature", "properties": {"osmid": 460363305, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825739, 51.5671908], [-1.7795651, 51.5680722]]}}, {"id": "460363306", "type": "Feature", "properties": {"osmid": 460363306, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825491, 51.5671622], [-1.7795404, 51.5680436]]}}, {"id": "462068120", "type": "Feature", "properties": {"electrified": "no", "osmid": 462068120, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7883498, 51.5647957], [-1.7878209, 51.5650606], [-1.7873274, 51.5652982], [-1.7870525, 51.5654165], [-1.7868728, 51.5654782], [-1.7862277, 51.5656933], [-1.7858508, 51.5658234], [-1.7856455, 51.5659149]]}}, {"id": "462072073", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 462072073, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7825129, 51.5665864], [-1.7833114, 51.5663205], [-1.7840862, 51.5660627], [-1.7853111, 51.5656208], [-1.7879199, 51.5646916], [-1.7884986, 51.5644754], [-1.7894398, 51.5641156], [-1.7903437, 51.5637601]]}}, {"id": "498669203", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "name": "Woodborough Up Goods Loop", "osmid": 498669203, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8617614, 51.3354012], [-1.8612543, 51.3354319], [-1.8608097, 51.3354525], [-1.860375, 51.3354504], [-1.8598185, 51.3354546], [-1.8593476, 51.3354546], [-1.8587285, 51.3354381], [-1.8582444, 51.3354258], [-1.8577274, 51.3354052], [-1.8572795, 51.3353887], [-1.8566341, 51.3353661], [-1.8556363, 51.3353291], [-1.8548987, 51.3353003], [-1.8542796, 51.3352776], [-1.8533806, 51.3352447], [-1.8527878, 51.3352262], [-1.8519942, 51.3351974], [-1.8513751, 51.3351748], [-1.8510689, 51.3351624], [-1.8507659, 51.3351418], [-1.8501697, 51.3350926]]}}, {"id": "498669204", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 498669204, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8548855, 51.3353435], [-1.853486, 51.33529], [-1.8529163, 51.3352673], [-1.8523038, 51.3352447], [-1.8519679, 51.3352303], [-1.8517209, 51.3352118], [-1.8515332, 51.3351974], [-1.8513751, 51.3351748]]}}, {"id": "498669205", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 498669205, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8548822, 51.3353784], [-1.854273, 51.3353517], [-1.853677, 51.3353291], [-1.8528932, 51.3353003], [-1.8524684, 51.33529], [-1.8523268, 51.3352756], [-1.8521325, 51.335255], [-1.8519679, 51.3352303]]}}, {"id": "498669206", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "name": "Woodborough Down Goods Loop", "osmid": 498669206, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8501336, 51.3350566], [-1.8505749, 51.3350534], [-1.850891, 51.3350472], [-1.8511281, 51.3350472], [-1.8514739, 51.3350595], [-1.8522412, 51.3350863], [-1.8530447, 51.3351192], [-1.8538219, 51.335146], [-1.8548427, 51.335183], [-1.8553663, 51.3352036], [-1.8562455, 51.3352282], [-1.8568284, 51.3352509], [-1.8574903, 51.3352735], [-1.8581851, 51.3352961], [-1.8588306, 51.3353147], [-1.859476, 51.3353208], [-1.8599107, 51.3353249], [-1.8607076, 51.3353249], [-1.8608657, 51.335327], [-1.8611555, 51.3353291], [-1.8613662, 51.3353414], [-1.8619886, 51.3353642]]}}, {"id": "498669209", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 498669209, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8490671, 51.3349679], [-1.8498824, 51.3350006], [-1.8504578, 51.3350198], [-1.8511281, 51.3350472]]}}, {"id": "501502185", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 501502185, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9759055, 51.5573815], [-1.9751811, 51.5574278], [-1.9743753, 51.5574698], [-1.9734599, 51.5575046], [-1.9726681, 51.5575147], [-1.9718645, 51.5574973], [-1.9714572, 51.5574842]]}}, {"id": "501502186", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 501502186, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9714591, 51.5574493], [-1.9715854, 51.5574551], [-1.9722676, 51.5574708], [-1.9729968, 51.5574715], [-1.9737049, 51.5574592], [-1.9742336, 51.557449], [-1.9752267, 51.5573906], [-1.9759055, 51.5573498]]}}, {"id": "507938085", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507938085, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8869098, 51.6014979], [-1.8868207, 51.6014477]]}}, {"id": "507938090", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507938090, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8939258, 51.6046631], [-1.8940438, 51.6047064]]}}, {"id": "507938106", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507938106, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8867876, 51.6014708], [-1.8868781, 51.6015254]]}}, {"id": "507938114", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507938114, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8868781, 51.6015254], [-1.887559, 51.6018971], [-1.8880948, 51.602185], [-1.8887472, 51.6025193], [-1.8892928, 51.6027829], [-1.8898035, 51.6030208], [-1.8904863, 51.6033336]]}}, {"id": "507943360", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943360, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9477507, 51.6129627], [-1.9473745, 51.6128211], [-1.9449283, 51.6120049], [-1.9442363, 51.6117884], [-1.9437213, 51.6116385], [-1.9425417, 51.6112979], [-1.9411088, 51.6109256], [-1.9405295, 51.610779], [-1.9399077, 51.6106416], [-1.9392104, 51.6104817], [-1.9365121, 51.6099087], [-1.9343228, 51.6095098], [-1.9318713, 51.6091034], [-1.9294412, 51.6087602], [-1.9272799, 51.6084929], [-1.9264479, 51.6083971], [-1.9231219, 51.6081239], [-1.9189162, 51.607934], [-1.9143618, 51.607874], [-1.9125289, 51.6078739], [-1.911015, 51.6078266], [-1.9089545, 51.6077208], [-1.9076354, 51.6076134], [-1.9063479, 51.6074834], [-1.9047333, 51.6072702], [-1.9039018, 51.6071469], [-1.90197, 51.6068146], [-1.900806, 51.6065747], [-1.8998302, 51.6063707], [-1.8979419, 51.6058976], [-1.8958283, 51.6052845], [-1.8940438, 51.6047064]]}}, {"id": "509482513", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482513, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7039309, 51.5839798], [-1.704074, 51.5839639]]}}, {"id": "509482515", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482515, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6871245, 51.5853366], [-1.6885037, 51.5852521], [-1.6892992, 51.5852124], [-1.6910295, 51.5851182], [-1.6918633, 51.5850722], [-1.6923875, 51.5850425], [-1.693322, 51.5849844], [-1.6944571, 51.5849051], [-1.6956272, 51.584818], [-1.6964332, 51.584755], [-1.6973927, 51.5846714], [-1.698043, 51.5846093]]}}, {"id": "509482517", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482517, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7238526, 51.5804843], [-1.722466, 51.5808027], [-1.7210689, 51.5811112], [-1.7192505, 51.5815014], [-1.7174471, 51.5818749]]}}, {"id": "509482533", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482533, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.703944, 51.5840234], [-1.7034235, 51.5840854], [-1.7027263, 51.5841671], [-1.7017846, 51.5842736], [-1.7010941, 51.584348], [-1.7002406, 51.584438], [-1.699586, 51.5845052], [-1.6981694, 51.5846406]]}}, {"id": "509482534", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482534, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7040853, 51.5840076], [-1.703944, 51.5840234]]}}, {"id": "509482535", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482535, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6981555, 51.5845986], [-1.6994181, 51.584478], [-1.7008979, 51.5843271], [-1.7024129, 51.5841605], [-1.7032581, 51.5840614], [-1.7039309, 51.5839798]]}}, {"id": "509482541", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482541, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.698043, 51.5846093], [-1.6981555, 51.5845986]]}}, {"id": "509482547", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482547, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6981694, 51.5846406], [-1.6980503, 51.5846511]]}}, {"id": "509482554", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509482554, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6980503, 51.5846511], [-1.6975086, 51.584699], [-1.6965186, 51.5847868], [-1.6958397, 51.5848416], [-1.6949113, 51.5849109], [-1.6939779, 51.5849771], [-1.6930861, 51.585036], [-1.6922109, 51.5850928], [-1.6911511, 51.5851538], [-1.6902543, 51.5851962], [-1.6891561, 51.5852583], [-1.6882078, 51.5853099], [-1.6870597, 51.5853771]]}}, {"id": "511407670", "type": "Feature", "properties": {"name": "Coate Water Minature Railway", "osmid": 511407670, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7432159, 51.5431115], [-1.7432225, 51.5430786], [-1.7431945, 51.5430132], [-1.743177, 51.5429653], [-1.7430895, 51.542924], [-1.7429809, 51.5429022], [-1.7428969, 51.5428978], [-1.7428374, 51.5428826], [-1.7427463, 51.542863], [-1.7426763, 51.5428325], [-1.7426658, 51.542789], [-1.7427008, 51.5427606], [-1.7427919, 51.5427193]]}}, {"id": "511407673", "type": "Feature", "properties": {"name": "Coate Water Minature Railway", "osmid": 511407673, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7435866, 51.5429588], [-1.7434921, 51.5430481], [-1.7434011, 51.5430829], [-1.7432925, 51.5431178], [-1.7432295, 51.5431156], [-1.7432159, 51.5431115]]}}, {"id": "514642845", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 514642845, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8020955, 51.5689018], [-1.8023781, 51.5690178], [-1.8029241, 51.5692326], [-1.8035201, 51.5694602], [-1.8040425, 51.5696552], [-1.8045836, 51.5698569], [-1.8071767, 51.5708697], [-1.8076667, 51.5710588], [-1.8082727, 51.5712954], [-1.8092759, 51.5716935], [-1.8098324, 51.5719121], [-1.8099516, 51.5719588]]}}, {"id": "514642846", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 514642846, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8007743, 51.5683271], [-1.8011331, 51.568491]]}}, {"id": "549230040", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "osmid": 549230040, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8939258, 51.6046631], [-1.8924081, 51.6041155], [-1.8913996, 51.6037032], [-1.890961, 51.6035266], [-1.8904943, 51.6033209], [-1.8898117, 51.6030044], [-1.889298, 51.6027662], [-1.8887536, 51.6025021], [-1.8881071, 51.6021706], [-1.887564, 51.6018799], [-1.8869098, 51.6014979]]}}, {"id": "549230041", "type": "Feature", "properties": {"maxspeed": "100 mph", "osmid": 549230041, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8598181, 51.5930796], [-1.8600486, 51.5931285], [-1.8610463, 51.5933376], [-1.8620951, 51.59356], [-1.863179, 51.5937725], [-1.8633128, 51.5938008], [-1.8647813, 51.5940949], [-1.8660124, 51.5943298], [-1.8664228, 51.5944065], [-1.8686676, 51.5948387], [-1.8693625, 51.5949738], [-1.8724082, 51.595612], [-1.8740011, 51.5959952], [-1.8746518, 51.5961735], [-1.876182, 51.5966159], [-1.8779054, 51.5971965], [-1.8785759, 51.5974415], [-1.8797319, 51.597863], [-1.8810959, 51.5984245], [-1.881816, 51.5987519], [-1.883188, 51.5994133], [-1.883998, 51.5998473], [-1.8844097, 51.6000639], [-1.8848939, 51.6003371], [-1.8856717, 51.6007878], [-1.8868207, 51.6014477]]}}, {"id": "549230042", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 549230042, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8867876, 51.6014708], [-1.8856647, 51.6008104], [-1.884877, 51.6003527], [-1.8843921, 51.6000798], [-1.8839874, 51.5998601], [-1.8831757, 51.5994341], [-1.8817936, 51.5987674], [-1.8810859, 51.5984455], [-1.8785477, 51.5974526], [-1.8761395, 51.596622], [-1.8739905, 51.5960107], [-1.8734837, 51.5958819], [-1.8723977, 51.5956297], [-1.8708965, 51.5953018], [-1.8693617, 51.5949983], [-1.868654, 51.5948607], [-1.8670084, 51.5945392], [-1.8660077, 51.5943536], [-1.8651933, 51.5942026], [-1.8642609, 51.5940113], [-1.8631608, 51.5937926], [-1.8622188, 51.5936062], [-1.8612096, 51.593394], [-1.8607105, 51.5932868], [-1.8602428, 51.5931957], [-1.8598062, 51.5931073]]}}, {"id": "549443013", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 549443013, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6004232, 51.3777651], [-1.6001986, 51.3779633]]}}, {"id": "549443014", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 549443014, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6020828, 51.3759647], [-1.6009462, 51.3772621], [-1.6008872, 51.3773223], [-1.6007692, 51.3773915]]}}, {"id": "550335333", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 550335333, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8011331, 51.568491], [-1.8017592, 51.5687544]]}}, {"id": "550335337", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 550335337, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8011703, 51.5684631], [-1.8017981, 51.5687337]]}}, {"id": "550335341", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 550335341, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8017981, 51.5687337], [-1.801969, 51.5688076], [-1.8021281, 51.5688716]]}}, {"id": "550335345", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 550335345, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8017592, 51.5687544], [-1.8020955, 51.5689018]]}}, {"id": "553149120", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 553149120, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4927973, 51.2115801], [-1.4920576, 51.2119046], [-1.4910868, 51.212325], [-1.4904142, 51.2126121]]}}, {"id": "553149122", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "85 mph", "osmid": 553149122, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4903784, 51.2125886], [-1.4921909, 51.2117787], [-1.4927396, 51.211536]]}}, {"id": "630721829", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance Line", "osmid": 630721829, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5156491, 51.415336], [-1.5163353, 51.4153802], [-1.5166992, 51.415394], [-1.5170596, 51.4153962], [-1.5173552, 51.4153951], [-1.5175996, 51.4153882], [-1.5181631, 51.4153639], [-1.5186398, 51.4153242]]}}, {"id": "630721830", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance Line", "osmid": 630721830, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5186398, 51.4153242], [-1.5187063, 51.4153187], [-1.5188285, 51.4153055]]}}, {"id": "630721831", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Penzance to Paddington Line", "osmid": 630721831, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.518847, 51.4153399], [-1.518715, 51.4153542], [-1.5186549, 51.4153592]]}}, {"id": "630721832", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Penzance to Paddington Line", "osmid": 630721832, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5186549, 51.4153592], [-1.5181689, 51.4153997], [-1.5176029, 51.4154241], [-1.5173567, 51.415431], [-1.5170595, 51.4154321], [-1.5166972, 51.4154299], [-1.5163306, 51.415416], [-1.5156432, 51.4153717]]}}, {"id": "630722190", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 630722190, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5129051, 51.4150274], [-1.5125897, 51.4149721], [-1.5123298, 51.4149255], [-1.5120109, 51.4148622], [-1.5114178, 51.4147307]]}}, {"id": "630722191", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Paddington to Penzance line", "osmid": 630722191, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5114392, 51.4146933], [-1.5120334, 51.4148195], [-1.5123509, 51.4148825], [-1.5126219, 51.4149244], [-1.5129296, 51.4149826]]}}, {"id": "661386063", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 661386063, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9139075, 51.5365554], [-1.9130934, 51.5364423], [-1.9121706, 51.536301], [-1.9112854, 51.5361609], [-1.9104496, 51.536022], [-1.9095435, 51.5358673], [-1.9088025, 51.5357382], [-1.9074663, 51.5355193], [-1.9064184, 51.5353454]]}}, {"id": "661386065", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 661386065, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9139352, 51.5365233], [-1.9156482, 51.5367385], [-1.9162013, 51.536804], [-1.9170608, 51.5369048], [-1.9178606, 51.5369714], [-1.9188569, 51.5370535], [-1.9198212, 51.5371125], [-1.9208842, 51.5371764], [-1.9217102, 51.537212], [-1.9222171, 51.5372341], [-1.9232079, 51.5372649], [-1.924267, 51.5372895], [-1.9253202, 51.5373005], [-1.9258271, 51.5373032], [-1.926974, 51.5372833], [-1.9280865, 51.5372673], [-1.9289559, 51.5372366], [-1.9297972, 51.5372009], [-1.93157, 51.5370965], [-1.9332772, 51.5369687], [-1.9348066, 51.5368249], [-1.9360002, 51.5366838], [-1.9376954, 51.5364709], [-1.9385608, 51.5363529], [-1.9393986, 51.5362165], [-1.9404063, 51.536053], [-1.9413816, 51.5358877], [-1.9420948, 51.535743], [-1.9432694, 51.5355], [-1.9443898, 51.5352664], [-1.9454232, 51.535028], [-1.946207, 51.5348327], [-1.9472766, 51.5345622], [-1.9482902, 51.5342905], [-1.9493236, 51.5339746], [-1.9504729, 51.5336256]]}}, {"id": "703359740", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "85 mph", "name": "Great Western Main Line", "osmid": 703359740, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7888452, 51.5643875], [-1.7885352, 51.5645062], [-1.787991, 51.5647105], [-1.7875139, 51.5648894], [-1.7866872, 51.5651942], [-1.7858328, 51.5654973], [-1.7848325, 51.5658519], [-1.7839558, 51.5661534], [-1.7835814, 51.5662866], [-1.7831963, 51.5664149], [-1.7826625, 51.5665889], [-1.7825509, 51.5666285]]}}, {"id": "781605604", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Penzance to Paddington Line", "osmid": 781605604, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4797382, 51.4099105], [-1.479284, 51.4098533], [-1.4780912, 51.4096945], [-1.4769013, 51.4095104], [-1.474889, 51.4090966], [-1.4741573, 51.4089255]]}}, {"id": "781605605", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Penzance to Paddington Line", "osmid": 781605605, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4798662, 51.4099266], [-1.4797382, 51.4099105]]}}, {"id": "781605606", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Paddington to Penzance Line", "osmid": 781605606, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4798714, 51.4098882], [-1.4816776, 51.4101228], [-1.4827514, 51.4102572], [-1.483827, 51.4103929], [-1.4848956, 51.410533], [-1.485957, 51.4106509], [-1.4871644, 51.4107683], [-1.488366, 51.4108665], [-1.4895641, 51.410944], [-1.4907552, 51.4109933], [-1.4918767, 51.4110189], [-1.4930019, 51.4110282], [-1.4941277, 51.411045], [-1.4952506, 51.4110709], [-1.4961504, 51.4111138], [-1.4970423, 51.4111699], [-1.4979829, 51.4112595], [-1.4989118, 51.4113619], [-1.4996003, 51.4114551], [-1.5002547, 51.4115551], [-1.5008216, 51.4116532], [-1.5013181, 51.4117484], [-1.5021499, 51.4119235], [-1.5026238, 51.4120335], [-1.5031046, 51.4121528], [-1.50361, 51.412283], [-1.5040447, 51.4124099], [-1.5045347, 51.4125528], [-1.5049711, 51.412695], [-1.5058815, 51.4129952], [-1.5069607, 51.4133625], [-1.50748, 51.4135377], [-1.5076897, 51.4136101], [-1.5085843, 51.4139114], [-1.5095045, 51.4141998], [-1.5099849, 51.4143384]]}}, {"id": "781605607", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Paddington to Penzance Line", "osmid": 781605607, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4797436, 51.4098716], [-1.4798714, 51.4098882]]}}, {"id": "781621038", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 781621038, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5256932, 51.4140162], [-1.5248636, 51.4141529], [-1.5241017, 51.414284], [-1.5233596, 51.4144384], [-1.5224381, 51.4146474]]}}, {"id": "781621039", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 781621039, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5258216, 51.4139985], [-1.5256932, 51.4140162]]}}, {"id": "781621040", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 781621040, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5258382, 51.4139594], [-1.5263945, 51.4138825], [-1.5268547, 51.4138234]]}}, {"id": "781621041", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 781621041, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5257024, 51.4139782], [-1.5258382, 51.4139594]]}}, {"id": "782065502", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 782065502, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0021846, 51.2947703], [-2.0013097, 51.2952234], [-2.0001622, 51.2959876], [-1.9997836, 51.2962431], [-1.9994051, 51.2965192], [-1.9986653, 51.2970858]]}}, {"id": "782065503", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 782065503, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9986044, 51.297065], [-1.9993665, 51.2964991], [-1.999746, 51.2962222], [-2.0001254, 51.2959662], [-2.0012752, 51.2952004], [-2.0021585, 51.294743]]}}, {"id": "782065504", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065504, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.978792, 51.3092012], [-1.978976, 51.3090329], [-1.979366, 51.3087377], [-1.9796986, 51.3084905], [-1.9804413, 51.3080054], [-1.9812173, 51.3075735], [-1.9819995, 51.307171], [-1.9826104, 51.3068851], [-1.9832053, 51.3066217], [-1.9844409, 51.3061368]]}}, {"id": "782065505", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065505, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9844712, 51.3061673], [-1.9832373, 51.3066516], [-1.9826442, 51.3069141], [-1.982035, 51.3071993], [-1.9812547, 51.3076008], [-1.9804813, 51.3080313], [-1.9797414, 51.3085145], [-1.9794102, 51.3087607], [-1.979022, 51.3090545], [-1.9788261, 51.3092331]]}}, {"id": "782065506", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 782065506, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9665332, 51.3206174], [-1.9666854, 51.3205043], [-1.9672173, 51.3201095], [-1.9676448, 51.3197237], [-1.9685282, 51.3189252], [-1.9694571, 51.3180399], [-1.9704945, 51.3170907], [-1.971521, 51.3160655], [-1.9736165, 51.3140908], [-1.9756622, 51.3121034], [-1.9777546, 51.31015]]}}, {"id": "782065507", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 782065507, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9777946, 51.3101732], [-1.9757223, 51.3121281], [-1.9736767, 51.3141154], [-1.9715814, 51.3160898], [-1.9705547, 51.3171153], [-1.9695168, 51.3180649], [-1.9685878, 51.3189503], [-1.9677039, 51.3197493], [-1.9672745, 51.3201368], [-1.9667685, 51.3205059], [-1.9665964, 51.3206341]]}}, {"id": "782065508", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "25 mph", "osmid": 782065508, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8498516, 51.335048], [-1.848847, 51.3350457]]}}, {"id": "782065509", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 782065509, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7851279, 51.3374832], [-1.7870925, 51.3371715], [-1.7890589, 51.3368928]]}}, {"id": "782065510", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 782065510, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7890763, 51.3369327], [-1.7871053, 51.3372086], [-1.7851574, 51.3375247]]}}, {"id": "782065511", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065511, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6509355, 51.3621446], [-1.6518602, 51.3627891], [-1.6527869, 51.3634324], [-1.6537036, 51.3640805], [-1.6544448, 51.3645847], [-1.6551819, 51.3650388], [-1.6559913, 51.3654892], [-1.656439, 51.3657102], [-1.6568687, 51.3659107], [-1.6578388, 51.3662973], [-1.6581084, 51.3664101], [-1.658312, 51.3664966], [-1.6588177, 51.3666635], [-1.6598032, 51.3669592], [-1.6608041, 51.3671978], [-1.661709, 51.3674034], [-1.6626096, 51.3676147], [-1.6643932, 51.3680286], [-1.6654958, 51.3683086], [-1.6665975, 51.3686018], [-1.6676946, 51.3688918], [-1.668802, 51.3691574], [-1.6695791, 51.369313], [-1.6703493, 51.369443], [-1.6711335, 51.3695447], [-1.6719548, 51.3696226], [-1.6724918, 51.3696586], [-1.6730393, 51.369681], [-1.6740948, 51.369703]]}}, {"id": "782065512", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065512, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6740938, 51.3697344], [-1.6730368, 51.3697124], [-1.6724875, 51.3696899], [-1.6719483, 51.3696538], [-1.6711246, 51.3695757], [-1.6703376, 51.3694736], [-1.6695648, 51.3693432], [-1.6687853, 51.3691871], [-1.6676757, 51.368921], [-1.6665778, 51.3686307], [-1.6654764, 51.3683376], [-1.6643749, 51.3680579], [-1.662592, 51.3676442], [-1.6616915, 51.3674329], [-1.6607865, 51.3672273], [-1.6597833, 51.3669881], [-1.658795, 51.3666916], [-1.658286, 51.3665236], [-1.6580802, 51.3664362], [-1.6578112, 51.3663236], [-1.65684, 51.3659366], [-1.6564083, 51.3657351], [-1.6559589, 51.3655133], [-1.6551474, 51.3650617], [-1.6544085, 51.3646065], [-1.6536662, 51.3641015], [-1.6527493, 51.3634533], [-1.6518227, 51.3628101], [-1.6508981, 51.3621657]]}}, {"id": "782065513", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 782065513, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.649989, 51.3615156], [-1.6504546, 51.3618137], [-1.6509355, 51.3621446]]}}, {"id": "782065514", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 782065514, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6508981, 51.3621657], [-1.6504179, 51.3618353], [-1.6499545, 51.3615385]]}}, {"id": "782065515", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 782065515, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6438446, 51.3594852], [-1.6433803, 51.3594341], [-1.6428152, 51.3593807], [-1.6417828, 51.3593106], [-1.6397349, 51.3591799], [-1.6393619, 51.3591491], [-1.6389694, 51.359105], [-1.6382334, 51.3590192], [-1.6367665, 51.3587591], [-1.635534, 51.3585138], [-1.6342989, 51.3582691], [-1.6334317, 51.3581016]]}}, {"id": "782065516", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "80 mph", "name": "Reading to Taunton line", "osmid": 782065516, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6334477, 51.3580671], [-1.6336616, 51.3581084], [-1.6343161, 51.3582348], [-1.6355514, 51.3584796], [-1.6367831, 51.3587247], [-1.6382466, 51.3589842], [-1.6389798, 51.3590697], [-1.6393708, 51.3591136], [-1.6397416, 51.3591442], [-1.6417888, 51.3592749], [-1.6428226, 51.3593451], [-1.64339, 51.3593987], [-1.643856, 51.3594546]]}}, {"id": "782065517", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 782065517, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6229752, 51.3602975], [-1.6221328, 51.3609394], [-1.6208774, 51.361837], [-1.619619, 51.3626801], [-1.6169999, 51.3643132], [-1.6117201, 51.3675488], [-1.6115067, 51.3676793], [-1.6102951, 51.3684205], [-1.6088991, 51.3693023], [-1.6082404, 51.369762], [-1.6075995, 51.3702282], [-1.6069884, 51.3707138], [-1.6064054, 51.371209], [-1.6060401, 51.3715318], [-1.6057083, 51.3718382], [-1.6053721, 51.372168], [-1.605059, 51.3724879], [-1.6044518, 51.3731381], [-1.6038756, 51.3737966], [-1.6020634, 51.3759044], [-1.6015843, 51.3764615], [-1.6007692, 51.3773915], [-1.6004232, 51.3777651], [-1.5988977, 51.3795657]]}}, {"id": "782065518", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 782065518, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5988532, 51.3795509], [-1.6001986, 51.3779633], [-1.6015336, 51.3764445], [-1.6020129, 51.3758871], [-1.603825, 51.3737795], [-1.6044017, 51.3731204], [-1.6050096, 51.3724695], [-1.6053233, 51.372149], [-1.6056602, 51.3718185], [-1.6059928, 51.3715114], [-1.6063587, 51.371188], [-1.6069426, 51.3706921], [-1.607555, 51.3702054], [-1.6081971, 51.3697383], [-1.6088572, 51.3692777], [-1.6102545, 51.368395], [-1.611466, 51.3676539], [-1.6116798, 51.3675231], [-1.6169594, 51.3642877], [-1.6195776, 51.3626551], [-1.6208347, 51.3618129], [-1.6221044, 51.3609086], [-1.6229215, 51.3602774]]}}, {"id": "782065519", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065519, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5443955, 51.4115262], [-1.545078, 51.4114889], [-1.5457374, 51.4114765], [-1.5464097, 51.4114756], [-1.5470667, 51.4114811], [-1.5497096, 51.4115044], [-1.550271, 51.4114882], [-1.550803, 51.4114581], [-1.551345, 51.4114157], [-1.5518972, 51.4113566], [-1.5526019, 51.4112644], [-1.5532814, 51.4111564], [-1.5539667, 51.4110387], [-1.5546704, 51.4109092], [-1.5552179, 51.4107971], [-1.5557301, 51.4106839], [-1.5562635, 51.4105547], [-1.5567971, 51.4104254], [-1.558525, 51.4099392], [-1.5602469, 51.409426], [-1.5626515, 51.4086651], [-1.5635604, 51.408366], [-1.5644329, 51.4080442], [-1.5650527, 51.4077836], [-1.566279, 51.4072191], [-1.5673432, 51.4065648], [-1.5686272, 51.4056466]]}}, {"id": "782065520", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 782065520, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5686657, 51.4056669], [-1.5673799, 51.4065863], [-1.5663118, 51.4072431], [-1.5650817, 51.4078093], [-1.5644598, 51.4080708], [-1.563585, 51.4083934], [-1.5626747, 51.408693], [-1.5602692, 51.4094542], [-1.5585462, 51.4099677], [-1.5568166, 51.4104544], [-1.5562817, 51.410584], [-1.5557476, 51.4107134], [-1.5552342, 51.4108268], [-1.5546854, 51.4109392], [-1.5539805, 51.4110689], [-1.5532943, 51.4111868], [-1.5526133, 51.411295], [-1.5519066, 51.4113875], [-1.5513524, 51.4114468], [-1.5508084, 51.4114893], [-1.5502744, 51.4115196], [-1.5497104, 51.4115358], [-1.547066, 51.4115125], [-1.5464094, 51.411507], [-1.5457382, 51.4115079], [-1.545081, 51.4115304], [-1.5447056, 51.4115501], [-1.5443344, 51.4115724]]}}, {"id": "782065521", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 782065521, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5208002, 51.41498], [-1.5224184, 51.4146136]]}}, {"id": "782065522", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Reading to Taunton line", "osmid": 782065522, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5224381, 51.4146474], [-1.5208199, 51.4150138]]}}, {"id": "808881774", "type": "Feature", "properties": {"osmid": 808881774, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7798911, 51.5678203], [-1.7802842, 51.5677378], [-1.7805588, 51.5676802], [-1.7825329, 51.5670932]]}}, {"id": "808881775", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 808881775, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7950831, 51.5652592], [-1.7952667, 51.5653807], [-1.7962565, 51.5660093], [-1.7972221, 51.5665895], [-1.7985203, 51.5672831], [-1.8007743, 51.5683271]]}}, {"id": "822777936", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Golden Valley Line", "osmid": 822777936, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7892313, 51.5643334], [-1.789443, 51.5642653], [-1.789671, 51.564204], [-1.7897345, 51.5641906], [-1.789888, 51.5641583], [-1.7901166, 51.5641113], [-1.7903278, 51.5640826], [-1.7906775, 51.5640418]]}}, {"id": "822777937", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 822777937, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8045836, 51.5698569], [-1.8067391, 51.5706699]]}}, {"id": "822777938", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "osmid": 822777938, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.806974, 51.5707616], [-1.8098324, 51.5719121]]}}, {"id": "822777939", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777939, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8099516, 51.5719588], [-1.8115679, 51.5725936], [-1.8159292, 51.5743206], [-1.8192712, 51.5758642], [-1.8212185, 51.576811], [-1.823037, 51.5777378]]}}, {"id": "822777940", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777940, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8181478, 51.5752836], [-1.8185505, 51.5754675], [-1.8195311, 51.5759196], [-1.8204933, 51.5763871], [-1.8217792, 51.5770143], [-1.8230507, 51.5776811]]}}, {"id": "822777941", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777941, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8598062, 51.5931073], [-1.858696, 51.5928446], [-1.8579072, 51.5926522], [-1.8569228, 51.5924174], [-1.8558258, 51.5921375], [-1.8549353, 51.5919092], [-1.8544123, 51.5917607], [-1.8539778, 51.5916425], [-1.853444, 51.5914907], [-1.8526635, 51.5912809], [-1.8521264, 51.5911316], [-1.8504921, 51.5906375], [-1.8475631, 51.5896277], [-1.8458894, 51.5890277], [-1.8443767, 51.5884412], [-1.8432233, 51.5879512], [-1.8413351, 51.587128], [-1.84023, 51.5866247], [-1.8380145, 51.5855581], [-1.8357829, 51.5844714], [-1.8342916, 51.5836281], [-1.8320653, 51.5824715], [-1.8313304, 51.5820981], [-1.8292222, 51.5809847], [-1.8274251, 51.580038], [-1.8264273, 51.5795146], [-1.8253223, 51.5789246], [-1.8231288, 51.5777855]]}}, {"id": "822777942", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777942, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.823037, 51.5777378], [-1.8231288, 51.5777855]]}}, {"id": "822777945", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777945, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9124759, 51.6079024], [-1.9118151, 51.6078916], [-1.9110274, 51.6078666], [-1.9104112, 51.607835], [-1.9098578, 51.6078098], [-1.9089456, 51.6077552], [-1.9084413, 51.6077149], [-1.9076248, 51.6076453], [-1.9070702, 51.6075921], [-1.9063441, 51.6075155], [-1.9057064, 51.6074407], [-1.9051518, 51.6073641], [-1.9047162, 51.6073085], [-1.9038845, 51.6071878], [-1.9029644, 51.6070369], [-1.901965, 51.6068544], [-1.9013033, 51.6067279], [-1.9007731, 51.6066122], [-1.900253, 51.6065033], [-1.8998177, 51.6064072], [-1.899117, 51.6062454], [-1.8985945, 51.6061139], [-1.8979328, 51.6059409], [-1.8974344, 51.6058044], [-1.8969575, 51.6056713], [-1.8965405, 51.6055494], [-1.8957947, 51.6053235], [-1.8948409, 51.605014], [-1.8942612, 51.6048234], [-1.8940222, 51.6047429]]}}, {"id": "840172805", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 840172805, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.962001, 51.5558568], [-1.9629676, 51.5561071], [-1.9642303, 51.5564322], [-1.9648676, 51.5565807], [-1.9654836, 51.5567107], [-1.9664108, 51.5568981], [-1.9672309, 51.5570343], [-1.9679833, 51.5571389], [-1.9690458, 51.5572626], [-1.9700982, 51.5573599], [-1.9708591, 51.5574101], [-1.9712926, 51.5574423]]}}, {"id": "840172806", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 840172806, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9618584, 51.5558189], [-1.962001, 51.5558568]]}}, {"id": "840172807", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 840172807, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9619765, 51.5558908], [-1.9618347, 51.5558534]]}}, {"id": "840172808", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "South Wales Main Line", "osmid": 840172808, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9712926, 51.5574772], [-1.9711728, 51.5574727], [-1.9702691, 51.5574075], [-1.9695285, 51.5573525], [-1.9685735, 51.557254], [-1.9677397, 51.5571368], [-1.9669292, 51.5570252], [-1.9659836, 51.55685], [-1.9650636, 51.5566661], [-1.964507, 51.5565401], [-1.963778, 51.5563533], [-1.9619765, 51.5558908]]}}, {"id": "897053557", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053557, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0079312, 51.2924507], [-2.0084792, 51.292294], [-2.0100036, 51.2919305], [-2.0109821, 51.2917317], [-2.0119991, 51.2915465], [-2.0134552, 51.2913029], [-2.0143893, 51.2911775], [-2.0152784, 51.2910687], [-2.0161594, 51.2909853], [-2.0170588, 51.2909141], [-2.0177365, 51.290868], [-2.0185414, 51.290834], [-2.0192538, 51.2908034], [-2.0199227, 51.2908], [-2.0212958, 51.2908391], [-2.0226622, 51.2909219], [-2.0234149, 51.2909882], [-2.0241903, 51.2910712], [-2.0255552, 51.2912439], [-2.0269572, 51.291473], [-2.0281675, 51.2917109], [-2.0307385, 51.2922469], [-2.0333036, 51.2927782], [-2.0384317, 51.2938505], [-2.0400419, 51.2941502], [-2.0416405, 51.2944142], [-2.0432607, 51.2946497], [-2.0448955, 51.2948433], [-2.0465938, 51.2950068], [-2.0483005, 51.2951389], [-2.0500094, 51.2952133], [-2.0516961, 51.2952622], [-2.0534013, 51.2952526], [-2.0550799, 51.2952009], [-2.0567998, 51.2951299], [-2.0573478, 51.2950864]]}}, {"id": "897053558", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053558, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0705356, 51.2929124], [-2.070654, 51.2928837]]}}, {"id": "897053559", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053559, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0573609, 51.2951216], [-2.0568053, 51.2951657], [-2.0550832, 51.2952368], [-2.053403, 51.2952885], [-2.051695, 51.2952981], [-2.0500061, 51.2952492], [-2.048295, 51.2951747], [-2.0465859, 51.2950424], [-2.0448858, 51.2948787], [-2.0432488, 51.2946849], [-2.0416267, 51.2944491], [-2.0400264, 51.2941848], [-2.0384144, 51.2938848], [-2.0332855, 51.2928123], [-2.0307204, 51.292281], [-2.0281498, 51.2917451], [-2.0269413, 51.2915075], [-2.0255422, 51.2912789], [-2.0241798, 51.2911065], [-2.023406, 51.2910237], [-2.0226554, 51.2909576], [-2.0212917, 51.2908749], [-2.0199216, 51.2908359], [-2.019256, 51.2908393], [-2.0185453, 51.2908698], [-2.0177415, 51.2909038], [-2.0170655, 51.2909498], [-2.0161673, 51.2910209], [-2.0152882, 51.2911041], [-2.0144008, 51.2912127], [-2.0134687, 51.2913378], [-2.0120146, 51.2915811], [-2.010999, 51.291766], [-2.0100227, 51.2919644], [-2.0085014, 51.2923272], [-2.0079479, 51.2924789]]}}, {"id": "897053560", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053560, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0706776, 51.292912], [-2.0705699, 51.2929381]]}}, {"id": "897053561", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053561, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0705699, 51.2929381], [-2.069089, 51.2932966], [-2.0671748, 51.2937373], [-2.0661752, 51.293934], [-2.0651673, 51.2941165], [-2.0635432, 51.2943965], [-2.0618517, 51.294653], [-2.0601568, 51.2948746], [-2.0593059, 51.2949547]]}}, {"id": "897053562", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053562, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0593059, 51.2949547], [-2.059109, 51.2949732]]}}, {"id": "897053563", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053563, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0592968, 51.2949192], [-2.0601466, 51.2948392], [-2.061839, 51.294618], [-2.0635288, 51.2943617], [-2.0651517, 51.2940819], [-2.0661586, 51.2938996], [-2.0671568, 51.2937032], [-2.0690744, 51.2932662], [-2.0705356, 51.2929124]]}}, {"id": "897053564", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053564, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0590963, 51.2949381], [-2.0592968, 51.2949192]]}}, {"id": "897053565", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053565, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.059109, 51.2949732], [-2.0584549, 51.2950348], [-2.0576427, 51.2950992]]}}, {"id": "897053566", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053566, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0576234, 51.2950646], [-2.058447, 51.2949992], [-2.0590963, 51.2949381]]}}, {"id": "897053567", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053567, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0573478, 51.2950864], [-2.0576234, 51.2950646]]}}, {"id": "897053568", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053568, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0576427, 51.2950992], [-2.0573609, 51.2951216]]}}, {"id": "897053576", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053576, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0028603, 51.294424], [-2.0026247, 51.2945424], [-2.0021846, 51.2947703]]}}, {"id": "897053577", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053577, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0043338, 51.293741], [-2.0028603, 51.294424]]}}, {"id": "897053578", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053578, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0021585, 51.294743], [-2.0025931, 51.294518], [-2.0028205, 51.294399]]}}, {"id": "897053579", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "110 mph", "name": "Reading to Taunton line", "osmid": 897053579, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0028205, 51.294399], [-2.0043054, 51.2937151]]}}, {"id": "897053580", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053580, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9950567, 51.3003262], [-1.9960297, 51.2994371], [-1.9965656, 51.2989352]]}}, {"id": "897053581", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053581, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9965656, 51.2989352], [-1.9966455, 51.2988604]]}}, {"id": "897053582", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053582, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9966205, 51.2989567], [-1.9960833, 51.2994598], [-1.99511, 51.300349]]}}, {"id": "897053583", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053583, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9967004, 51.2988819], [-1.9966205, 51.2989567]]}}, {"id": "897053584", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 897053584, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9787409, 51.3093107], [-1.9777946, 51.3101732]]}}, {"id": "897053585", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 897053585, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9788261, 51.3092331], [-1.9787409, 51.3093107]]}}, {"id": "897053586", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 897053586, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9777546, 51.31015], [-1.978707, 51.3092789]]}}, {"id": "897053587", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Reading to Taunton line", "osmid": 897053587, "railway": "rail", "ref": "SWY", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.978707, 51.3092789], [-1.978792, 51.3092012]]}}, {"id": "897053592", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053592, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7843372, 51.3376346], [-1.7851279, 51.3374832]]}}, {"id": "897053593", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053593, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7841394, 51.3376781], [-1.7843372, 51.3376346]]}}, {"id": "897053594", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053594, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7851574, 51.3375247], [-1.7843434, 51.3376852]]}}, {"id": "897053595", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053595, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7843434, 51.3376852], [-1.7841667, 51.3377181]]}}, {"id": "897053598", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053598, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7623579, 51.3452936], [-1.7628642, 51.3450675], [-1.7635639, 51.3448068], [-1.7637764, 51.3447237]]}}, {"id": "897053599", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053599, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7637764, 51.3447237], [-1.7638205, 51.3447065], [-1.7638645, 51.3446893]]}}, {"id": "897053600", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053600, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7675327, 51.34335], [-1.768748, 51.3429062]]}}, {"id": "897053601", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053601, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7670179, 51.343533], [-1.7675327, 51.34335]]}}, {"id": "897053602", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053602, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7637853, 51.344752], [-1.7635878, 51.3448292], [-1.7628907, 51.3450955], [-1.7623907, 51.3453214]]}}, {"id": "897053603", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053603, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7638734, 51.3447176], [-1.7638293, 51.3447348], [-1.7637853, 51.344752]]}}, {"id": "897053604", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053604, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7687718, 51.3429346], [-1.7675539, 51.3433735]]}}, {"id": "897053605", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053605, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7675539, 51.3433735], [-1.767025, 51.3435616]]}}, {"id": "897053606", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053606, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7695267, 51.3426625], [-1.7689093, 51.342885]]}}, {"id": "897053607", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053607, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7689093, 51.342885], [-1.7687718, 51.3429346]]}}, {"id": "897053608", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053608, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.768885, 51.3428561], [-1.76949, 51.3426352]]}}, {"id": "897053609", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Reading to Taunton line", "osmid": 897053609, "railway": "rail", "ref": "BHL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.768748, 51.3429062], [-1.768885, 51.3428561]]}}, {"id": "2495434", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 2495434, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5257349, 51.8816048], [-1.5263344, 51.8815495], [-1.5268783, 51.8814935], [-1.5275191, 51.8814172], [-1.5283281, 51.8813002], [-1.5291361, 51.8811675], [-1.5298006, 51.8810411], [-1.5303452, 51.8809287], [-1.5312701, 51.8807208], [-1.5321156, 51.8805041], [-1.5327296, 51.8803271], [-1.5334417, 51.8801055], [-1.53469, 51.8796737], [-1.5360058, 51.8791432], [-1.5365778, 51.8788881], [-1.5375276, 51.8784306], [-1.5382168, 51.8780589], [-1.5388931, 51.8776778], [-1.5395006, 51.8773269], [-1.5402671, 51.8769063], [-1.5413631, 51.8762893], [-1.5425439, 51.8756735], [-1.5437414, 51.875076], [-1.5449528, 51.8744896], [-1.5460583, 51.8739759], [-1.546896, 51.8736036], [-1.5475566, 51.8733188], [-1.5486579, 51.8728765], [-1.5495484, 51.8725457], [-1.5504457, 51.8722231], [-1.5522557, 51.8715905], [-1.553123, 51.8712832], [-1.5540129, 51.8709691], [-1.5549118, 51.8706505], [-1.5599357, 51.868881]]}}, {"id": "2495496", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 2495496, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7019189, 51.9960372], [-1.7020078, 51.9965699], [-1.7020695, 51.9971029], [-1.7021518, 51.9979968], [-1.7021848, 51.9984219], [-1.7022297, 51.998848], [-1.7022887, 51.9993404], [-1.7024333, 52.0000795], [-1.7024976, 52.0003623], [-1.7026795, 52.0009622], [-1.7027825, 52.0012605], [-1.7028962, 52.0015763], [-1.7030964, 52.0020665], [-1.7032953, 52.0025068], [-1.7035117, 52.0029454], [-1.7037262, 52.0033653], [-1.7039763, 52.0038772], [-1.7042719, 52.0044579], [-1.7044594, 52.004865], [-1.7046273, 52.0052517], [-1.7049607, 52.0060874], [-1.7053795, 52.0073895], [-1.7057795, 52.008661], [-1.7059721, 52.0092959], [-1.7061845, 52.0099279], [-1.7065246, 52.0108717], [-1.7068982, 52.0118191], [-1.7071656, 52.0124086], [-1.7074662, 52.0130819], [-1.7077819, 52.0137085], [-1.708145, 52.0144063], [-1.7084332, 52.014932], [-1.7087372, 52.0154414]]}}, {"id": "2605652", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 2605652, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3940874, 51.8326359], [-1.3936463, 51.8325422], [-1.3932359, 51.8324552], [-1.3928266, 51.8323623]]}}, {"id": "2607114", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 2607114, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3876845, 51.6207371], [-1.3884349, 51.620715], [-1.3909561, 51.6206202], [-1.3926523, 51.6205608], [-1.3943439, 51.6204775], [-1.4006311, 51.6201865], [-1.4032993, 51.6200342], [-1.4056147, 51.6198746]]}}, {"id": "4033547", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 4033547, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9768318, 51.6240571], [-1.9759599, 51.6237322], [-1.9729968, 51.6226173]]}}, {"id": "4035823", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 4035823, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0234488, 51.6778839], [-2.023899, 51.6793263], [-2.0243493, 51.6807579], [-2.0246439, 51.6816345]]}}, {"id": "23390909", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Cuckoo Bridge", "osmid": 23390909, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.570661, 51.6104711], [-1.5711341, 51.610389]]}}, {"id": "23390911", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 23390911, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5241847, 51.6114662], [-1.52498, 51.6114854], [-1.5262194, 51.6115094], [-1.5272704, 51.6115335], [-1.5287263, 51.6115755], [-1.5296841, 51.6116058], [-1.5307725, 51.6116453], [-1.5321961, 51.6116986], [-1.5335559, 51.6117519], [-1.535694, 51.6118491], [-1.5378162, 51.6119301], [-1.538969, 51.6119644], [-1.5401322, 51.6119996], [-1.5412719, 51.6120288], [-1.54259, 51.6120574], [-1.5437202, 51.612077], [-1.5449222, 51.6120942], [-1.5472495, 51.6121123], [-1.5491457, 51.6121114], [-1.5500708, 51.6121105], [-1.5514832, 51.6120994], [-1.5531796, 51.6120813], [-1.5546155, 51.6120504], [-1.555193, 51.612034], [-1.5562261, 51.6120056], [-1.5571815, 51.611966], [-1.5581163, 51.6119205], [-1.5590704, 51.611862], [-1.5602918, 51.6117734], [-1.5620435, 51.6116221], [-1.56465, 51.6113504], [-1.5654847, 51.6112601], [-1.5663446, 51.6111491], [-1.5680264, 51.6109131], [-1.5688234, 51.6107895], [-1.5694784, 51.6106846], [-1.570661, 51.6104711]]}}, {"id": "23585482", "type": "Feature", "properties": {"electrified": "no", "name": "Golden Valley Line", "osmid": 23585482, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.926447, 51.6084445], [-1.9272736, 51.6085319]]}}, {"id": "23585483", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 23585483, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9477245, 51.6129917], [-1.9473556, 51.6128557], [-1.9466584, 51.6126098], [-1.9460579, 51.6124075], [-1.9454062, 51.6121898], [-1.9449212, 51.6120369], [-1.9442183, 51.6118204], [-1.9436948, 51.611665], [-1.9425208, 51.6113322], [-1.9410958, 51.6109645], [-1.9405164, 51.6108157], [-1.9399272, 51.6106816], [-1.9391937, 51.610515], [-1.9383377, 51.6103228], [-1.9373545, 51.6101169], [-1.9364564, 51.6099389], [-1.9351512, 51.6096957], [-1.9343176, 51.6095427], [-1.9333248, 51.6093732], [-1.9318566, 51.6091392], [-1.9308167, 51.6089811], [-1.929443, 51.6087933], [-1.9290414, 51.608745], [-1.9282646, 51.6086486], [-1.9272736, 51.6085319]]}}, {"id": "25689002", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 25689002, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0223481, 51.6772895], [-2.0224412, 51.6771567], [-2.0225695, 51.6769696], [-2.0226208, 51.6768658], [-2.0226876, 51.6767389], [-2.0227503, 51.6765835], [-2.0227882, 51.6764114], [-2.0227717, 51.6761625], [-2.0227303, 51.6758073]]}}, {"id": "35730993", "type": "Feature", "properties": {"bridge": "yes", "osmid": 35730993, "railway": "rail", "ref": "HCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0500894, 51.9482019], [-2.050148, 51.9480396]]}}, {"id": "35730994", "type": "Feature", "properties": {"name": "Gloucestershire Warwickshire Railway", "osmid": 35730994, "railway": "rail", "ref": "HCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.050148, 51.9480396], [-2.0504937, 51.9470337], [-2.0505452, 51.9468988], [-2.0507801, 51.9462409], [-2.0509896, 51.9456609], [-2.0510748, 51.9453035], [-2.0513716, 51.9440592], [-2.0514022, 51.9439311], [-2.0515116, 51.9428984], [-2.0516192, 51.9418821], [-2.0516355, 51.9416558], [-2.0517319, 51.9403124], [-2.0517949, 51.9394355], [-2.0519308, 51.9375436], [-2.0519951, 51.9362598], [-2.0522166, 51.9353732], [-2.0524761, 51.9343343], [-2.0530107, 51.9332939], [-2.0531034, 51.9331134], [-2.0538893, 51.9321969], [-2.0546002, 51.9313678], [-2.0557113, 51.9303541], [-2.057414, 51.9292249], [-2.0585418, 51.9286013], [-2.0598146, 51.9280192], [-2.0604103, 51.9277375], [-2.063899, 51.9261529], [-2.0647177, 51.9257787], [-2.0651269, 51.9255633], [-2.0658536, 51.9252258], [-2.0678139, 51.9243306]]}}, {"id": "37622785", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 37622785, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3897894, 51.8316032], [-1.3894163, 51.8314979], [-1.388931, 51.8313579], [-1.3884257, 51.8312086], [-1.3877964, 51.8310173], [-1.3871808, 51.8308182]]}}, {"id": "37622788", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 37622788, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3926332, 51.832317], [-1.3919726, 51.8321643], [-1.3912623, 51.8319896], [-1.3907066, 51.8318485], [-1.3901644, 51.831705]]}}, {"id": "37622797", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 37622797, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3717533, 51.8242957], [-1.3711828, 51.8240658], [-1.3706168, 51.8238367], [-1.3700563, 51.8236057], [-1.3694963, 51.8233706], [-1.3691577, 51.8232261], [-1.3688198, 51.8230769], [-1.3681541, 51.8227734]]}}, {"id": "37622801", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 37622801, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3870001, 51.8307599], [-1.3857608, 51.830337], [-1.3851236, 51.8301064], [-1.3845898, 51.82991], [-1.3834941, 51.8294765], [-1.3824159, 51.8290331], [-1.3813639, 51.828573], [-1.3804069, 51.8281355], [-1.3794722, 51.8276888], [-1.3775959, 51.8267906], [-1.3768114, 51.8264165], [-1.3760296, 51.8260576], [-1.3749464, 51.8255923], [-1.3748827, 51.8255674], [-1.374508, 51.8254183], [-1.3735829, 51.8250426], [-1.3732494, 51.8249079], [-1.3726801, 51.8246752], [-1.3721985, 51.8244771], [-1.3717533, 51.8242957]]}}, {"id": "37623800", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 37623800, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7298433, 52.0290049], [-1.7311161, 52.029589], [-1.7323266, 52.0301649], [-1.7329118, 52.0304547], [-1.7335178, 52.0307549]]}}, {"id": "42458902", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 42458902, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4320192, 51.838721], [-1.4289541, 51.8381905], [-1.4261765, 51.8377094], [-1.4227936, 51.8371202]]}}, {"id": "42458909", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 42458909, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4325984, 51.8388184], [-1.4320192, 51.838721]]}}, {"id": "56223082", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 56223082, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.408672, 51.8346876], [-1.4076082, 51.8345173], [-1.4070801, 51.8344408], [-1.4065543, 51.8343635], [-1.4041424, 51.834056], [-1.399861, 51.8335814], [-1.398163, 51.8333485]]}}, {"id": "56223083", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 56223083, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4091292, 51.8347589], [-1.408672, 51.8346876]]}}, {"id": "58297580", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 58297580, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4386585, 51.8402246], [-1.4376378, 51.839916], [-1.437251, 51.8398073], [-1.4366101, 51.8396359], [-1.4359698, 51.8394755], [-1.4353707, 51.8393416], [-1.4347597, 51.8392151], [-1.4337891, 51.8390349], [-1.4325984, 51.8388184]]}}, {"id": "58297581", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 58297581, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4608219, 51.8485261], [-1.4594623, 51.8479494], [-1.4581076, 51.847369], [-1.4558274, 51.8464089], [-1.4551559, 51.8461388]]}}, {"id": "58732002", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 58732002, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.398163, 51.8333485], [-1.3972968, 51.833216], [-1.3962963, 51.8330519], [-1.3957036, 51.8329458], [-1.3951269, 51.8328414], [-1.3940874, 51.8326359]]}}, {"id": "60704746", "type": "Feature", "properties": {"osmid": 60704746, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6530518, 51.7720272], [-1.6532504, 51.7722173], [-1.6534096, 51.7724132], [-1.6535549, 51.7726063], [-1.653964, 51.7728365], [-1.6543168, 51.7730983], [-1.6545127, 51.773465], [-1.6545322, 51.7734904], [-1.6547203, 51.7737242], [-1.6548144, 51.7739565], [-1.6549314, 51.7743042], [-1.6550422, 51.774433], [-1.6551862, 51.7744862], [-1.6556466, 51.7745631], [-1.6561372, 51.7745585], [-1.656447, 51.7745554], [-1.6567576, 51.7745201], [-1.6570122, 51.7744545], [-1.6571705, 51.7744218], [-1.6575541, 51.7743282], [-1.657874, 51.7741939], [-1.6578885, 51.7739605], [-1.6578247, 51.7738899], [-1.6577141, 51.7737676], [-1.6575124, 51.773584], [-1.6574373, 51.7733499], [-1.6575604, 51.773006], [-1.6577274, 51.7726696], [-1.6572763, 51.7721617], [-1.6571647, 51.771815], [-1.657053, 51.7717007], [-1.6567605, 51.7715902], [-1.6566492, 51.7715478], [-1.6564552, 51.771466], [-1.6562392, 51.7713767], [-1.6558669, 51.7713136], [-1.6555598, 51.7712593], [-1.6552758, 51.7712098], [-1.6550511, 51.771167], [-1.6547112, 51.7711075], [-1.6544391, 51.771052], [-1.654142, 51.7709824], [-1.6538871, 51.7709096], [-1.653505, 51.7707884], [-1.6533426, 51.7707968], [-1.6531958, 51.7708203], [-1.6530602, 51.7708976], [-1.6527468, 51.7711194], [-1.6525229, 51.7713334], [-1.6524966, 51.7713963], [-1.6524534, 51.7714994], [-1.652482, 51.7716354], [-1.6525873, 51.7717739], [-1.652762, 51.7718524], [-1.6529146, 51.7719164], [-1.6530518, 51.7720272]]}}, {"id": "62001850", "type": "Feature", "properties": {"osmid": 62001850, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8475316, 51.6133373], [-1.8475638, 51.6140502], [-1.8475531, 51.6143566], [-1.8475631, 51.6144644], [-1.8475819, 51.6145377], [-1.8476007, 51.6146093]]}}, {"id": "69488828", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 69488828, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.524001, 51.6114621], [-1.5241847, 51.6114662]]}}, {"id": "85984914", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984914, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0274576, 51.6870496], [-2.0277191, 51.6874037]]}}, {"id": "85984915", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984915, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0248011, 51.6820928], [-2.0253676, 51.6834406], [-2.0256501, 51.6840107], [-2.025898, 51.6844913], [-2.026475, 51.6855172], [-2.027118, 51.6865419], [-2.0274576, 51.6870496]]}}, {"id": "85984916", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984916, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0246439, 51.6816345], [-2.0248011, 51.6820928]]}}, {"id": "85984917", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984917, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0226255, 51.6752925], [-2.0227618, 51.6757251]]}}, {"id": "85984918", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984918, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0227618, 51.6757251], [-2.0231454, 51.6769153], [-2.0234488, 51.6778839]]}}, {"id": "85984919", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 85984919, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0277191, 51.6874037], [-2.0278842, 51.6876176], [-2.028633, 51.6885733], [-2.0294597, 51.6895421], [-2.0298297, 51.6899303], [-2.0304739, 51.6905994], [-2.031122, 51.6912359], [-2.0318114, 51.6918814], [-2.0325133, 51.6924907], [-2.0333399, 51.6931828], [-2.0341808, 51.6938441], [-2.0349898, 51.694441], [-2.0357838, 51.6950008], [-2.037395, 51.6960614], [-2.0390811, 51.6971284], [-2.0424324, 51.6992664], [-2.0427079, 51.6994461]]}}, {"id": "85987209", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987209, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0065896, 51.6493814], [-2.0057928, 51.6483887], [-2.0034976, 51.6455796]]}}, {"id": "85987239", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987239, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0066502, 51.6494528], [-2.0065896, 51.6493814]]}}, {"id": "85987241", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987241, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0066502, 51.6494528], [-2.0082989, 51.6514721]]}}, {"id": "85987245", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987245, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.009347, 51.6527578], [-2.0098952, 51.6534265], [-2.0102517, 51.6538621], [-2.0107663, 51.6545131]]}}, {"id": "85987247", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987247, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.009347, 51.6527578], [-2.008779, 51.6520661], [-2.0082989, 51.6514721]]}}, {"id": "85987266", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987266, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.010962, 51.6547497], [-2.0115953, 51.6554986], [-2.012115, 51.6561327], [-2.0125211, 51.6566268], [-2.01301, 51.6572209]]}}, {"id": "85987267", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987267, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.010962, 51.6547497], [-2.0107663, 51.6545131]]}}, {"id": "85987328", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987328, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0208191, 51.6698327], [-2.0205413, 51.6691299], [-2.0202423, 51.6684059], [-2.0199953, 51.6678477], [-2.0197703, 51.6673588], [-2.0196381, 51.6670845], [-2.019544, 51.666891], [-2.0192102, 51.6662189], [-2.0186543, 51.6651932], [-2.0183444, 51.6646467], [-2.0180207, 51.6640882], [-2.0173666, 51.663016], [-2.0168799, 51.6622761], [-2.0165805, 51.6618353], [-2.0163003, 51.6614315], [-2.016022, 51.661035], [-2.0157118, 51.66061], [-2.0154004, 51.660198], [-2.0149717, 51.6596384], [-2.0147117, 51.6593124], [-2.0145242, 51.6590774], [-2.0136182, 51.6579647], [-2.01301, 51.6572209]]}}, {"id": "85987341", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85987341, "railway": "rail", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0219036, 51.6731807], [-2.0208191, 51.6698327]]}}, {"id": "85995665", "type": "Feature", "properties": {"electrified": "no", "name": "Golden Valley Line", "osmid": 85995665, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9768318, 51.6240571], [-1.9777823, 51.6244176]]}}, {"id": "85995668", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85995668, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9810172, 51.6257127], [-1.9800774, 51.6253175], [-1.9796939, 51.6251618], [-1.9792494, 51.6249842], [-1.978833, 51.6248233], [-1.978287, 51.6246137], [-1.9777823, 51.6244176]]}}, {"id": "85995671", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85995671, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.988679, 51.6298585], [-1.9880753, 51.6294556], [-1.9877646, 51.6292557], [-1.9871185, 51.6288547], [-1.9867643, 51.6286394], [-1.9864081, 51.6284231], [-1.9861336, 51.6282655], [-1.9852373, 51.6277621], [-1.9846272, 51.6274305], [-1.9840751, 51.6271498], [-1.9833447, 51.6267883], [-1.9822951, 51.6262826], [-1.981632, 51.6259815], [-1.9810172, 51.6257127]]}}, {"id": "85995676", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85995676, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9940047, 51.6342174], [-1.9936108, 51.6338267], [-1.9933584, 51.6335848], [-1.9930124, 51.6332645], [-1.9927004, 51.6329826]]}}, {"id": "85995863", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85995863, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9908625, 51.6314381], [-1.9912902, 51.6317805], [-1.9916804, 51.6320992], [-1.9920499, 51.632412], [-1.9924232, 51.6327365], [-1.9927004, 51.6329826]]}}, {"id": "85995870", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85995870, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.988679, 51.6298585], [-1.9890092, 51.6300812], [-1.9893882, 51.63034], [-1.9896837, 51.6305516], [-1.9900285, 51.6308068], [-1.9904453, 51.6311208], [-1.9908625, 51.6314381]]}}, {"id": "85997339", "type": "Feature", "properties": {"electrified": "no", "name": "Golden Valley Line", "osmid": 85997339, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9537636, 51.6152846], [-1.9544261, 51.6155356]]}}, {"id": "85997341", "type": "Feature", "properties": {"electrified": "no", "name": "Golden Valley Line", "osmid": 85997341, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9642095, 51.6192757], [-1.9621077, 51.6184625], [-1.9610307, 51.6180483], [-1.9601231, 51.6177022], [-1.9593454, 51.6174045], [-1.9577325, 51.6168006], [-1.9575505, 51.6167301], [-1.9572701, 51.6166277], [-1.9568325, 51.6164583], [-1.956016, 51.6161443], [-1.9552904, 51.6158642], [-1.9544261, 51.6155356]]}}, {"id": "85997342", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85997342, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9662745, 51.6200683], [-1.964991, 51.6195742], [-1.9642095, 51.6192757]]}}, {"id": "85997343", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85997343, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9662745, 51.6200683], [-1.9666522, 51.6202099]]}}, {"id": "85997345", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 85997345, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.971033, 51.6218729], [-1.9703711, 51.6216069], [-1.9699568, 51.6214532], [-1.9679384, 51.6206931], [-1.9666522, 51.6202099]]}}, {"id": "111416388", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 111416388, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4227936, 51.8371202], [-1.4223951, 51.8370521]]}}, {"id": "111416402", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 111416402, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4223951, 51.8370521], [-1.4216144, 51.8369203], [-1.4208285, 51.8367827], [-1.4192661, 51.8365115], [-1.4161404, 51.8359682]]}}, {"id": "120690085", "type": "Feature", "properties": {"osmid": 120690085, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6802914, 51.997672], [-1.6807271, 51.997167]]}}, {"id": "120690087", "type": "Feature", "properties": {"osmid": 120690087, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6803543, 51.9976892], [-1.6805757, 51.9974209], [-1.6806386, 51.9973162], [-1.6807271, 51.997167], [-1.6809601, 51.9968902]]}}, {"id": "126145183", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126145183, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3681541, 51.8227734], [-1.3678878, 51.8226443]]}}, {"id": "126145186", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126145186, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3678878, 51.8226443], [-1.3667456, 51.8220582]]}}, {"id": "126146428", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146428, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3665357, 51.8219558], [-1.3664943, 51.8219344], [-1.365669, 51.8214679]]}}, {"id": "126146432", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146432, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.365669, 51.8214679], [-1.3654177, 51.8213169]]}}, {"id": "126146438", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146438, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3654177, 51.8213169], [-1.3648743, 51.8209904], [-1.3642133, 51.8205508], [-1.3635333, 51.8200748], [-1.3629868, 51.8196566]]}}, {"id": "126146439", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146439, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3901644, 51.831705], [-1.3897894, 51.8316032]]}}, {"id": "126146441", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146441, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3871808, 51.8308182], [-1.3870001, 51.8307599]]}}, {"id": "126146446", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126146446, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3667456, 51.8220582], [-1.3665357, 51.8219558]]}}, {"id": "126147330", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147330, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4161404, 51.8359682], [-1.4157272, 51.8358996]]}}, {"id": "126147331", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147331, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4912129, 51.8732652], [-1.4919439, 51.873766], [-1.4925654, 51.8741895], [-1.4931938, 51.8746107], [-1.493765, 51.8749836], [-1.4944204, 51.8753813], [-1.4950683, 51.8757409], [-1.4956794, 51.8760475], [-1.4961071, 51.8762495], [-1.4968627, 51.8765762], [-1.4975531, 51.8768514], [-1.498121, 51.8770539], [-1.4989773, 51.8773398], [-1.4999664, 51.8776476], [-1.5007338, 51.8778723], [-1.5018895, 51.8782139], [-1.5030549, 51.878551], [-1.5041211, 51.8788646], [-1.5051965, 51.8791785], [-1.5061422, 51.8794533], [-1.5068242, 51.8796469], [-1.5081324, 51.8799823], [-1.5091142, 51.8802045], [-1.5099905, 51.8803829], [-1.5109179, 51.8805464], [-1.5117687, 51.8806808], [-1.5127038, 51.8808078], [-1.5136699, 51.8809298], [-1.5149958, 51.8810898], [-1.5163427, 51.8812552], [-1.5179535, 51.8814519], [-1.5185635, 51.8815221], [-1.5191884, 51.8815823], [-1.5196605, 51.8816231], [-1.5201491, 51.8816599], [-1.5206378, 51.881687], [-1.5209748, 51.8817059], [-1.5213152, 51.881716], [-1.5218934, 51.8817315], [-1.5225449, 51.8817374], [-1.5232014, 51.8817354], [-1.5239796, 51.8817115], [-1.5247755, 51.8816714], [-1.5256122, 51.8816143]]}}, {"id": "126147333", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147333, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4877895, 51.8708737], [-1.4880106, 51.8710392]]}}, {"id": "126147334", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147334, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.45452, 51.8458839], [-1.45346, 51.8454836], [-1.4521882, 51.8450314], [-1.4509249, 51.8446006], [-1.4485368, 51.8438055], [-1.4474623, 51.8434456]]}}, {"id": "126147336", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147336, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4472965, 51.8433901], [-1.4467079, 51.8431884], [-1.4462887, 51.8430429], [-1.4458716, 51.8428905], [-1.4453807, 51.8427189], [-1.4450337, 51.8425915], [-1.4438076, 51.8421282], [-1.4425875, 51.8416566], [-1.4402969, 51.8407849], [-1.4394048, 51.8404693], [-1.4386585, 51.8402246]]}}, {"id": "126147337", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147337, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4656109, 51.8505853], [-1.4641344, 51.8499375], [-1.4635138, 51.8496717], [-1.46289, 51.8494099], [-1.4616722, 51.8488873]]}}, {"id": "126147338", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147338, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4659034, 51.8507194], [-1.4666507, 51.8510874], [-1.4672206, 51.8513849], [-1.4677823, 51.8516892], [-1.468205, 51.8519308], [-1.468661, 51.8521984], [-1.4691398, 51.8525032], [-1.4696045, 51.8528179], [-1.4703038, 51.8533241], [-1.4709801, 51.8538383], [-1.4717683, 51.8544507], [-1.4725708, 51.8550657]]}}, {"id": "126147339", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147339, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5256122, 51.8816143], [-1.5257349, 51.8816048]]}}, {"id": "126147340", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147340, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4727654, 51.8552193], [-1.4725708, 51.8550657]]}}, {"id": "126147342", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147342, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4157272, 51.8358996], [-1.4144683, 51.8356806], [-1.4131849, 51.835456], [-1.4106047, 51.8350093], [-1.409867, 51.8348834], [-1.4091292, 51.8347589]]}}, {"id": "126147343", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147343, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4616722, 51.8488873], [-1.4613315, 51.8487475]]}}, {"id": "126147345", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147345, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4613315, 51.8487475], [-1.4608219, 51.8485261]]}}, {"id": "126147346", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147346, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4474623, 51.8434456], [-1.4472965, 51.8433901]]}}, {"id": "126147347", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147347, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4659034, 51.8507194], [-1.4656109, 51.8505853]]}}, {"id": "126147348", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147348, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4551559, 51.8461388], [-1.45452, 51.8458839]]}}, {"id": "126147349", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 126147349, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4864051, 51.8697833], [-1.4866036, 51.8699519], [-1.4870563, 51.8703164], [-1.4873352, 51.870531], [-1.4877895, 51.8708737]]}}, {"id": "126147678", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 126147678, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5633986, 51.8676618], [-1.5639687, 51.8674576], [-1.5646573, 51.8672188], [-1.5655038, 51.8669168], [-1.5668817, 51.8664332], [-1.5686296, 51.8658167], [-1.5703492, 51.8652158]]}}, {"id": "126147679", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 126147679, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5703492, 51.8652158], [-1.5705881, 51.8651333]]}}, {"id": "126148787", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 126148787, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5975049, 51.868879], [-1.5976121, 51.8689709]]}}, {"id": "126148790", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126148790, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6365321, 51.9144058], [-1.6365659, 51.914459]]}}, {"id": "126148791", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126148791, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5990424, 51.8703395], [-1.5992661, 51.8706055], [-1.5995417, 51.8709329], [-1.5997862, 51.8712457], [-1.6003549, 51.8719943], [-1.6007102, 51.872468], [-1.6011879, 51.8731004], [-1.6015179, 51.8735258], [-1.6020712, 51.8742353], [-1.6031172, 51.8754507], [-1.603175, 51.8755127]]}}, {"id": "126148794", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126148794, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.603175, 51.8755127], [-1.6032402, 51.875586]]}}, {"id": "126148797", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 126148797, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5705881, 51.8651333], [-1.5710892, 51.8649645], [-1.5715969, 51.8648079], [-1.5720684, 51.8646727], [-1.5725389, 51.8645496], [-1.5731935, 51.8643933], [-1.5735233, 51.8643215], [-1.5738487, 51.8642533], [-1.5743672, 51.8641557], [-1.5746599, 51.864102], [-1.5749483, 51.8640533], [-1.5754723, 51.863969], [-1.5760428, 51.8638866], [-1.5765025, 51.8638279], [-1.5769071, 51.8637796], [-1.5776155, 51.8637112], [-1.5782522, 51.8636629], [-1.5785487, 51.863646], [-1.57903, 51.8636182], [-1.5794616, 51.8636029], [-1.5799891, 51.8635885], [-1.5803983, 51.863583], [-1.5808243, 51.8635865], [-1.5812443, 51.8635908], [-1.5817845, 51.8636063], [-1.5821585, 51.8636227], [-1.5824913, 51.8636403], [-1.5828279, 51.8636602], [-1.5834872, 51.8637118], [-1.5837147, 51.863734], [-1.5840016, 51.8637637], [-1.5842127, 51.8637869], [-1.5851829, 51.8639237], [-1.5852948, 51.8639405], [-1.586254, 51.8640853], [-1.5865715, 51.8641439], [-1.5873777, 51.8643072], [-1.5880649, 51.8644542], [-1.5887998, 51.8646292], [-1.589543, 51.8648334], [-1.5899624, 51.8649634], [-1.5904038, 51.8651115], [-1.5908775, 51.8652787], [-1.5913286, 51.8654398], [-1.5919054, 51.8656519], [-1.5924463, 51.8658738], [-1.5931216, 51.8661745], [-1.593548, 51.8663787], [-1.5939406, 51.866571], [-1.5946985, 51.8669692], [-1.5950258, 51.867149], [-1.5953492, 51.8673428], [-1.5960842, 51.8678134], [-1.5969105, 51.8683925], [-1.5975049, 51.868879]]}}, {"id": "126148800", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126148800, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6314187, 51.9066838], [-1.6315445, 51.9068827], [-1.6319859, 51.9075443], [-1.6325763, 51.9084392], [-1.6329828, 51.9090555], [-1.6332226, 51.9094116], [-1.6334555, 51.9097693], [-1.633797, 51.910284], [-1.634314, 51.9110682], [-1.6347606, 51.9117351], [-1.6350891, 51.9122326], [-1.6354254, 51.9127413], [-1.6358189, 51.9133407], [-1.6365321, 51.9144058]]}}, {"id": "126227000", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227000, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6880536, 51.9696445], [-1.6884346, 51.970354], [-1.6886122, 51.9706753], [-1.6887838, 51.9709985], [-1.6900606, 51.97334], [-1.6906661, 51.974454], [-1.6912575, 51.9755518], [-1.691861, 51.9766464], [-1.6919781, 51.9768694]]}}, {"id": "126227003", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227003, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6507446, 51.9302394], [-1.6514307, 51.9307505], [-1.6520914, 51.9312484], [-1.6537541, 51.9324936]]}}, {"id": "126227005", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227005, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6503563, 51.9299353], [-1.6506599, 51.930169]]}}, {"id": "126227008", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227008, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6538794, 51.9325876], [-1.6547187, 51.933205], [-1.6556685, 51.9338475], [-1.6566495, 51.9344734], [-1.6572317, 51.9348226], [-1.6578242, 51.9351696], [-1.6590937, 51.9358832], [-1.6603518, 51.9365722], [-1.6615126, 51.9372219], [-1.6624902, 51.9377838], [-1.6637071, 51.9385261], [-1.6644192, 51.9389762], [-1.6655687, 51.9397886], [-1.6663137, 51.9403285], [-1.6668897, 51.9407867], [-1.6676334, 51.9413776], [-1.6683479, 51.9419871], [-1.6687293, 51.9423263], [-1.6700073, 51.9435089], [-1.6707372, 51.9441932], [-1.6713018, 51.9447301]]}}, {"id": "126227010", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227010, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6880219, 51.9695886], [-1.6880536, 51.9696445]]}}, {"id": "126227012", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227012, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6713018, 51.9447301], [-1.6714388, 51.9448597]]}}, {"id": "126227018", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227018, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6506599, 51.930169], [-1.6507446, 51.9302394]]}}, {"id": "126227019", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227019, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6919781, 51.9768694], [-1.6920106, 51.976929]]}}, {"id": "126227020", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227020, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6537541, 51.9324936], [-1.6538794, 51.9325876]]}}, {"id": "126227023", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 126227023, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6714388, 51.9448597], [-1.6721186, 51.9455253], [-1.6730151, 51.9464311], [-1.6745743, 51.9481015], [-1.6753432, 51.9489644], [-1.6758361, 51.9494946], [-1.6776902, 51.9518274], [-1.6781923, 51.9525164], [-1.6784998, 51.9528967], [-1.6793807, 51.9541402], [-1.6801706, 51.9553401], [-1.6807697, 51.9563386], [-1.6814521, 51.9575106], [-1.6827088, 51.9598394], [-1.6832682, 51.9608704], [-1.684246, 51.9626338], [-1.6852213, 51.9644247], [-1.6857775, 51.9654377], [-1.6863747, 51.9665549], [-1.6867706, 51.967298], [-1.6871283, 51.9679738], [-1.6872213, 51.9681138], [-1.6872495, 51.9681668], [-1.6877723, 51.9691292], [-1.6880219, 51.9695886]]}}, {"id": "134816214", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Cotswold Line", "osmid": 134816214, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7251916, 52.0268668], [-1.7253912, 52.0269553]]}}, {"id": "134816216", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 134816216, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7087372, 52.0154414], [-1.7088091, 52.0155708]]}}, {"id": "134816224", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 134816224, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7150889, 52.0226469], [-1.7162117, 52.0229862], [-1.7171993, 52.023295], [-1.7176974, 52.0234678], [-1.7188789, 52.0239577], [-1.7198371, 52.0243982], [-1.7222921, 52.0255261], [-1.7251916, 52.0268668]]}}, {"id": "134925518", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 134925518, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6502311, 51.9298368], [-1.6503563, 51.9299353]]}}, {"id": "134925521", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 134925521, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6365659, 51.914459], [-1.6369794, 51.9150999], [-1.6375612, 51.9159581], [-1.6380238, 51.9166608], [-1.6384644, 51.9173334], [-1.6388377, 51.9178857], [-1.6392467, 51.9184981], [-1.6398436, 51.9193821], [-1.6401396, 51.9197989], [-1.6404308, 51.9201971], [-1.6409283, 51.9208476], [-1.6413804, 51.921406], [-1.6421624, 51.9223257], [-1.6429909, 51.9232253], [-1.6433689, 51.9236221], [-1.6437807, 51.9240412], [-1.6441604, 51.9244223], [-1.6445299, 51.9248003], [-1.6451501, 51.9254151], [-1.6457523, 51.9260033], [-1.6463975, 51.9266134], [-1.6470397, 51.9271938], [-1.6477144, 51.9277924], [-1.6481788, 51.9281884], [-1.6494737, 51.929246], [-1.6502311, 51.9298368]]}}, {"id": "135750348", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 135750348, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0431506, 51.6997344], [-2.0446314, 51.7006833]]}}, {"id": "135750351", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 135750351, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0427079, 51.6994461], [-2.0431506, 51.6997344]]}}, {"id": "142248149", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 142248149, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.630683, 51.9055757], [-1.6307621, 51.905697]]}}, {"id": "142248150", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 142248150, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6032402, 51.875586], [-1.6038111, 51.8761825], [-1.6044424, 51.876833], [-1.605759, 51.8780827], [-1.6066705, 51.8789019], [-1.6079799, 51.8799709], [-1.6085931, 51.8804375], [-1.6095029, 51.8811176], [-1.6111031, 51.8822097], [-1.6117633, 51.8826506], [-1.612236, 51.8829536], [-1.6127583, 51.8832885], [-1.6136029, 51.883843], [-1.6142258, 51.884244], [-1.6148374, 51.8846461], [-1.6159056, 51.8853705], [-1.616502, 51.8858037], [-1.6168229, 51.8860448], [-1.6171272, 51.8862861], [-1.6175298, 51.8866107], [-1.6179326, 51.8869521], [-1.6182598, 51.8872351], [-1.6185788, 51.8875238], [-1.6191678, 51.8880821], [-1.6193414, 51.8882524], [-1.6195118, 51.8884262], [-1.6198423, 51.888772], [-1.6200666, 51.8890149], [-1.6205102, 51.8895168], [-1.620932, 51.8900285], [-1.6213684, 51.8905941], [-1.6218793, 51.8913199], [-1.6220994, 51.8916555], [-1.6224428, 51.8922009], [-1.6229736, 51.8930977], [-1.6234282, 51.8938702], [-1.6237614, 51.8944321], [-1.6239721, 51.8948041], [-1.6244592, 51.8956226], [-1.6248467, 51.8962734], [-1.6256573, 51.8976438], [-1.625969, 51.8981828], [-1.6262987, 51.8987391], [-1.626553, 51.899168], [-1.626808, 51.899604], [-1.6271071, 51.9001051], [-1.6274142, 51.9006033], [-1.6280458, 51.9015928], [-1.6285798, 51.902397], [-1.6289614, 51.9029887], [-1.6296414, 51.9040058], [-1.6302116, 51.9048696], [-1.630683, 51.9055757]]}}, {"id": "145980180", "type": "Feature", "properties": {"osmid": 145980180, "railway": "rail", "ref": "HCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.044702, 51.9620738], [-2.0450791, 51.9613622], [-2.0458008, 51.9596028], [-2.0464162, 51.9580494], [-2.0469583, 51.9567808], [-2.0471249, 51.9563087], [-2.0485015, 51.9524063], [-2.0487879, 51.9515943], [-2.0492728, 51.9503436], [-2.0500894, 51.9482019]]}}, {"id": "149118708", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 149118708, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7253912, 52.0269553], [-1.7274643, 52.0278995], [-1.7298433, 52.0290049]]}}, {"id": "149118711", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Cotswold Line", "osmid": 149118711, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7104688, 52.018566], [-1.7105962, 52.0189301], [-1.71077, 52.0193802], [-1.7109581, 52.0197917], [-1.7110711, 52.0199861], [-1.7111627, 52.020134], [-1.711297, 52.0203163], [-1.711429, 52.0204895], [-1.711642, 52.0207194], [-1.7119254, 52.0210018], [-1.7121412, 52.0211839], [-1.7123761, 52.0213552], [-1.7128348, 52.0216652], [-1.7131005, 52.0218184], [-1.7133505, 52.0219534], [-1.7139157, 52.0222255], [-1.7141998, 52.0223401], [-1.7144895, 52.0224523], [-1.7150889, 52.0226469]]}}, {"id": "165773512", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 165773512, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3928266, 51.8323623], [-1.3926332, 51.832317]]}}, {"id": "169015710", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Cuckoo Bridge", "osmid": 169015710, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5711835, 51.6104288], [-1.5706907, 51.6105184]]}}, {"id": "169015711", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169015711, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5706907, 51.6105184], [-1.5702332, 51.6106005], [-1.5692617, 51.6107616], [-1.5683895, 51.6108973], [-1.5675143, 51.6110274], [-1.5667056, 51.6111402], [-1.5658599, 51.6112501], [-1.5653537, 51.6113134], [-1.564666, 51.6113858], [-1.5639472, 51.6114655], [-1.5631606, 51.6115507], [-1.5624773, 51.6116167], [-1.5616862, 51.6116919], [-1.5611476, 51.6117386], [-1.5602075, 51.6118119], [-1.5596097, 51.6118578], [-1.5590224, 51.6118972], [-1.5584217, 51.6119357], [-1.557734, 51.6119714], [-1.5571613, 51.6120007], [-1.5565651, 51.6120255], [-1.5559895, 51.6120484], [-1.5554508, 51.6120667], [-1.5548841, 51.6120814], [-1.5543484, 51.612097], [-1.5537728, 51.6121116], [-1.5531087, 51.6121263], [-1.5524106, 51.6121318], [-1.551593, 51.6121409], [-1.5497541, 51.6121584], [-1.5488066, 51.6121584], [-1.5475596, 51.6121574], [-1.54637, 51.612151], [-1.5454595, 51.6121446], [-1.5444884, 51.6121272], [-1.5432177, 51.612108], [-1.5423395, 51.612085], [-1.5410408, 51.6120557], [-1.5398616, 51.6120282], [-1.5387562, 51.6119943], [-1.537484, 51.6119531], [-1.5361573, 51.6119017], [-1.5345693, 51.6118348], [-1.5333101, 51.6117815], [-1.5323396, 51.6117452], [-1.5310059, 51.6116869], [-1.5291421, 51.6116247], [-1.5276519, 51.6115806], [-1.5266563, 51.611565], [-1.5254144, 51.6115326], [-1.5241759, 51.6115069]]}}, {"id": "169017686", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169017686, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5241759, 51.6115069], [-1.5239839, 51.6115014]]}}, {"id": "169017687", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "name": "Great Western Main Line", "osmid": 169017687, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.4070822, 51.6197877], [-1.4083202, 51.6196657], [-1.409666, 51.6195613], [-1.4112734, 51.6194467], [-1.4131566, 51.6192958], [-1.4149463, 51.6191464], [-1.4166191, 51.6189956], [-1.4167606, 51.6189829], [-1.4182032, 51.6188534], [-1.4200303, 51.6186793], [-1.4216844, 51.6185125], [-1.4236601, 51.6183198], [-1.4244782, 51.6182336], [-1.4261401, 51.6180705], [-1.4276461, 51.6179219], [-1.4292931, 51.6177588], [-1.431049, 51.6175837], [-1.4323179, 51.6174551], [-1.4335428, 51.6173311], [-1.4337064, 51.6173145], [-1.4350308, 51.6171818], [-1.4364364, 51.6170452], [-1.4381901, 51.6168808], [-1.4394547, 51.6167561], [-1.4408667, 51.6166301], [-1.4424859, 51.6164828], [-1.4434963, 51.6163847], [-1.4446285, 51.6162892], [-1.4460661, 51.6161645], [-1.4472516, 51.6160597], [-1.4487384, 51.615935], [-1.4504131, 51.6157944], [-1.4521007, 51.6156631], [-1.4534913, 51.6155517], [-1.4549866, 51.6154323], [-1.4566485, 51.615301], [-1.4581097, 51.6151816], [-1.4592461, 51.6150888], [-1.460233, 51.6150132], [-1.4613844, 51.6149203], [-1.462948, 51.6147957], [-1.4641784, 51.6146962], [-1.4655135, 51.6145874], [-1.4665432, 51.6145065], [-1.4684208, 51.6143606], [-1.46982, 51.6142425], [-1.4713025, 51.6141232], [-1.4727401, 51.6140117], [-1.4741286, 51.613903], [-1.4755171, 51.6137862], [-1.4768629, 51.6136761], [-1.4785333, 51.6135355], [-1.4800158, 51.6134069], [-1.4820003, 51.6132384], [-1.483423, 51.6131084], [-1.4851447, 51.6129585], [-1.4868664, 51.61281], [-1.4886159, 51.612668], [-1.4896605, 51.6125818], [-1.4907606, 51.6125022], [-1.4914948, 51.6124722]]}}, {"id": "169017688", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "name": "Great Western Main Line", "osmid": 169017688, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.4913477, 51.6125275], [-1.4903697, 51.6126282], [-1.4893337, 51.6127184], [-1.487958, 51.6128272], [-1.4862512, 51.6129678], [-1.4846833, 51.6131044], [-1.4830342, 51.6132464], [-1.4814235, 51.6133936], [-1.4799218, 51.6135223], [-1.4786295, 51.613635], [-1.4775165, 51.6137265], [-1.4762391, 51.6138353], [-1.4746712, 51.6139666], [-1.4732848, 51.6140754], [-1.4719775, 51.6141762], [-1.4702729, 51.6143115], [-1.4688737, 51.6144243], [-1.4677266, 51.6145158], [-1.4666671, 51.614602], [-1.465678, 51.6146829], [-1.464501, 51.6147784], [-1.4630356, 51.6148925], [-1.4616898, 51.6149999], [-1.4599831, 51.6151339], [-1.458193, 51.6152811], [-1.4569796, 51.6153819], [-1.4556638, 51.6154841], [-1.4542603, 51.6155968], [-1.4529487, 51.6156989], [-1.4517888, 51.6157931], [-1.4505648, 51.6158953], [-1.4494626, 51.6159868], [-1.4479972, 51.6161075], [-1.4463587, 51.6162467], [-1.4449019, 51.6163701], [-1.4435219, 51.6164974], [-1.4417724, 51.61665], [-1.440008, 51.6168171], [-1.43847, 51.6169603], [-1.4371114, 51.6170877], [-1.4356289, 51.6172322], [-1.4343216, 51.6173596], [-1.4335752, 51.6174349], [-1.4332172, 51.617471], [-1.4318565, 51.6176063], [-1.4304915, 51.6177455], [-1.4291777, 51.6178715], [-1.427879, 51.6180055], [-1.4265054, 51.6181408], [-1.4253583, 51.6182562], [-1.4236601, 51.6184273], [-1.4217569, 51.6186198], [-1.4200163, 51.6188084], [-1.4182803, 51.6189752], [-1.4167543, 51.6191094], [-1.4166121, 51.6191247], [-1.414764, 51.6193016], [-1.4127757, 51.6194656], [-1.4112337, 51.6195802], [-1.4091426, 51.6197122], [-1.40768, 51.6198123], [-1.4058904, 51.6199327], [-1.4048203, 51.6200066], [-1.4041099, 51.6200242]]}}, {"id": "169017689", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 169017689, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5239839, 51.6115014], [-1.5230216, 51.6114899], [-1.5217577, 51.6114811], [-1.5206043, 51.6114731], [-1.5196558, 51.6114679], [-1.5187715, 51.6114665], [-1.5176734, 51.6114678], [-1.5166097, 51.6114665], [-1.5157252, 51.6114771], [-1.5147235, 51.6114891], [-1.5131662, 51.6115156], [-1.5116731, 51.6115474], [-1.5102492, 51.6115853]]}}, {"id": "169017690", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 169017690, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5497541, 51.6121584], [-1.5514832, 51.6120994]]}}, {"id": "169017691", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 169017691, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5472495, 51.6121123], [-1.5488066, 51.6121584]]}}, {"id": "169019543", "type": "Feature", "properties": {"electrified": "no", "osmid": 169019543, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4070982, 51.6198124], [-1.4056147, 51.6198746]]}}, {"id": "192992619", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 192992619, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0034976, 51.6455796], [-2.0030513, 51.645039], [-2.0026996, 51.6445982], [-2.0023358, 51.6441596], [-2.0018633, 51.6435776], [-2.0015991, 51.6432552], [-2.00126, 51.6428397], [-2.0006834, 51.6421911], [-1.9985778, 51.639594], [-1.9978001, 51.6386555], [-1.9971878, 51.6378969], [-1.9967377, 51.6373276], [-1.9963949, 51.6369059], [-1.9957264, 51.6361412], [-1.9952433, 51.635581], [-1.9947482, 51.6350111], [-1.9941135, 51.6343258]]}}, {"id": "192992621", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Golden Valley Line", "osmid": 192992621, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9940047, 51.6342174], [-1.9941135, 51.6343258]]}}, {"id": "192993174", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 192993174, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9711686, 51.6219279], [-1.971033, 51.6218729]]}}, {"id": "192993175", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 192993175, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9729968, 51.6226173], [-1.9719259, 51.6222134], [-1.9711686, 51.6219279]]}}, {"id": "192995125", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 192995125, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.926447, 51.6084445], [-1.9251641, 51.6083267], [-1.9239971, 51.6082302], [-1.9231144, 51.6081666], [-1.9219965, 51.6080961], [-1.9206802, 51.6080281], [-1.918922, 51.6079694], [-1.9174329, 51.6079341], [-1.9166254, 51.6079244], [-1.915869, 51.6079123], [-1.9143738, 51.6079116], [-1.9138031, 51.6079099], [-1.9128211, 51.6079081], [-1.9125774, 51.6079041]]}}, {"id": "192998543", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 192998543, "railway": "rail", "tunnel": "yes", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0208515, 51.6698284], [-2.0214297, 51.6715913], [-2.0219397, 51.6731743]]}}, {"id": "192998545", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 192998545, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0219397, 51.6731743], [-2.0220127, 51.6733804], [-2.0223091, 51.6742529]]}}, {"id": "200627178", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 200627178, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.045179, 51.70103], [-2.0455638, 51.7012906], [-2.0467258, 51.7021218], [-2.0478086, 51.7029661], [-2.0487981, 51.7038103], [-2.0492525, 51.7042222], [-2.0495191, 51.7044593], [-2.0505251, 51.7054133], [-2.0508502, 51.705737]]}}, {"id": "200627194", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 200627194, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0446314, 51.7006833], [-2.045179, 51.70103]]}}, {"id": "311343856", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343856, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3876087, 51.6207394], [-1.3876845, 51.6207371]]}}, {"id": "311343859", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343859, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3850167, 51.6208484], [-1.3849076, 51.6208507]]}}, {"id": "311343862", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343862, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.387686, 51.6207715], [-1.387605, 51.620774]]}}, {"id": "311343863", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343863, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3849233, 51.6208199], [-1.3850184, 51.6208143]]}}, {"id": "311343864", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343864, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3850184, 51.6208143], [-1.3867295, 51.6207653], [-1.3876087, 51.6207394]]}}, {"id": "311343865", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343865, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3742146, 51.6209591], [-1.3777203, 51.6209278], [-1.3795357, 51.6209118], [-1.3813021, 51.6208857], [-1.3849233, 51.6208199]]}}, {"id": "311343866", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343866, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3849076, 51.6208507], [-1.3839491, 51.6208711], [-1.3823346, 51.6209059], [-1.3809328, 51.6209321], [-1.3793488, 51.6209524], [-1.3777693, 51.6209741], [-1.3762156, 51.6209886], [-1.3742251, 51.6210093]]}}, {"id": "311343867", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 311343867, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.387605, 51.620774], [-1.3871383, 51.6207885], [-1.3855823, 51.6208364], [-1.3850167, 51.6208484]]}}, {"id": "342968963", "type": "Feature", "properties": {"name": "Toddington Narrow Gauge Railway", "osmid": 342968963, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9297118, 51.9886183], [-1.9296595, 51.9885125], [-1.9296389, 51.9884344], [-1.9296273, 51.988321], [-1.9296269, 51.9882284], [-1.9296498, 51.9881411]]}}, {"id": "342968965", "type": "Feature", "properties": {"name": "Toddington Narrow Gauge Railway", "osmid": 342968965, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9297302, 51.9888709], [-1.9297207, 51.9887603], [-1.9297118, 51.9886183], [-1.9296498, 51.9881411], [-1.9296281, 51.9878465], [-1.9296009, 51.987633], [-1.9295476, 51.9873315], [-1.9294525, 51.9867583], [-1.929425, 51.9866157], [-1.9294114, 51.986449], [-1.9293417, 51.9861761], [-1.9292084, 51.9853741], [-1.9291981, 51.9853097], [-1.9291469, 51.9849793], [-1.929032, 51.9843743], [-1.9289806, 51.9841666], [-1.9289859, 51.9838923], [-1.929002, 51.9833216], [-1.9290503, 51.9829879], [-1.9291153, 51.9826845], [-1.9292039, 51.9823515], [-1.929193, 51.9822282]]}}, {"id": "342968966", "type": "Feature", "properties": {"osmid": 342968966, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9292701, 51.9863421], [-1.9291467, 51.9861835], [-1.9290838, 51.9860748], [-1.9290613, 51.9860026], [-1.9290448, 51.9858763], [-1.9290454, 51.9858185], [-1.9290624, 51.9856781]]}}, {"id": "342968970", "type": "Feature", "properties": {"osmid": 342968970, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9290613, 51.9860026], [-1.9290808, 51.9858651], [-1.9290887, 51.985799], [-1.9291, 51.9856795]]}}, {"id": "342968975", "type": "Feature", "properties": {"osmid": 342968975, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.929425, 51.9866157], [-1.9293667, 51.9864891], [-1.9292701, 51.9863421], [-1.9292138, 51.9862314], [-1.9291748, 51.9860913]]}}, {"id": "342968989", "type": "Feature", "properties": {"osmid": 342968989, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9290838, 51.9860748], [-1.9290314, 51.9859572], [-1.92901, 51.9858663], [-1.92901, 51.9858036], [-1.9290199, 51.9856765]]}}, {"id": "342969185", "type": "Feature", "properties": {"osmid": 342969185, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9291153, 51.9826845], [-1.9291146, 51.9826088], [-1.9291199, 51.9824981], [-1.9291568, 51.9823322], [-1.929193, 51.9822282], [-1.929219, 51.9820277]]}}, {"id": "342970450", "type": "Feature", "properties": {"osmid": 342970450, "railway": "narrow_gauge", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9292084, 51.9853741], [-1.9291897, 51.9854996], [-1.9291881, 51.9856894], [-1.9292034, 51.9858164], [-1.9293229, 51.9862712], [-1.9294114, 51.986449]]}}, {"id": "366677515", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 366677515, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4827159, 51.8661552], [-1.4824623, 51.8658424], [-1.4822263, 51.8655161], [-1.4820197, 51.8652378], [-1.48175, 51.8648537], [-1.4814538, 51.8644039], [-1.4810179, 51.8637117], [-1.4803232, 51.8625852], [-1.4799678, 51.8620212], [-1.4796146, 51.8614615], [-1.4793678, 51.8611092], [-1.4791256, 51.8607722], [-1.4788698, 51.860445], [-1.4781146, 51.8595923], [-1.4775625, 51.8590271], [-1.4769477, 51.8584829], [-1.4763247, 51.8579759], [-1.4755824, 51.8573962], [-1.4743151, 51.8564201], [-1.4727654, 51.8552193]]}}, {"id": "366677516", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Cotswold Line", "osmid": 366677516, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4879763, 51.8710637], [-1.4877548, 51.870895]]}}, {"id": "366677517", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 366677517, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5257407, 51.88163], [-1.525616, 51.8816417]]}}, {"id": "366677518", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366677518, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5706214, 51.865166], [-1.5703819, 51.8652492]]}}, {"id": "366677519", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 366677519, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5599666, 51.8689055], [-1.5574548, 51.8697928], [-1.5549367, 51.8706783], [-1.5531497, 51.8713068], [-1.5522806, 51.8716175], [-1.5504706, 51.8722502], [-1.5495819, 51.8725688], [-1.5486861, 51.8729061], [-1.5481322, 51.8731236], [-1.5475875, 51.8733464], [-1.5469236, 51.8736283], [-1.5460895, 51.8739996], [-1.5449809, 51.8745144], [-1.5437749, 51.8751008], [-1.542578, 51.8756956], [-1.5413919, 51.8763131], [-1.540284, 51.876921], [-1.5395374, 51.8773442], [-1.5389196, 51.8777014], [-1.5382475, 51.8780815], [-1.537554, 51.8784501], [-1.5366033, 51.8789144], [-1.5360291, 51.8791696], [-1.5347203, 51.8797044], [-1.5334611, 51.8801339], [-1.5327544, 51.880353], [-1.5321448, 51.880527], [-1.5312945, 51.8807476], [-1.5303601, 51.8809553], [-1.529759, 51.88108], [-1.5291458, 51.8811986], [-1.5283388, 51.88133], [-1.5275259, 51.8814483], [-1.5268944, 51.8815213], [-1.5263443, 51.8815725], [-1.5257407, 51.88163]]}}, {"id": "366677521", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366677521, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5703819, 51.8652492], [-1.5686589, 51.8658564], [-1.566915, 51.8664725], [-1.5655357, 51.8669516], [-1.5646798, 51.8672453], [-1.563993, 51.8674864], [-1.563416, 51.8676899]]}}, {"id": "366677522", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366677522, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5190269, 51.8815989], [-1.5185849, 51.8815552], [-1.5179346, 51.8814805], [-1.516808, 51.8813458], [-1.5158541, 51.8812274], [-1.5149831, 51.8811193], [-1.5136689, 51.8809592], [-1.5126933, 51.880838], [-1.5117591, 51.8807091], [-1.5109034, 51.8805744], [-1.5104431, 51.8804956], [-1.509979, 51.8804074], [-1.5097524, 51.8803672], [-1.5095311, 51.8803225], [-1.5090885, 51.8802311], [-1.5081069, 51.8800099], [-1.5074484, 51.8798465], [-1.5067996, 51.879674], [-1.5061274, 51.8794797], [-1.5051786, 51.8792069], [-1.5041091, 51.8788928], [-1.50303, 51.8785784], [-1.5018694, 51.8782387], [-1.5007127, 51.8778989], [-1.4999369, 51.8776699], [-1.4989432, 51.8773661], [-1.4985153, 51.877227], [-1.4980933, 51.8770822], [-1.4975302, 51.8768767], [-1.4968297, 51.8766006], [-1.4960696, 51.8762665], [-1.4956283, 51.876062], [-1.4950221, 51.8757555], [-1.4943933, 51.8754096], [-1.4937223, 51.8750031], [-1.4931536, 51.8746289], [-1.4925264, 51.8742079], [-1.4919074, 51.8737868], [-1.4911741, 51.8732848]]}}, {"id": "366677524", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366677524, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.597458, 51.8689003], [-1.5968654, 51.8684152], [-1.5960414, 51.8678378], [-1.595308, 51.8673682], [-1.5949861, 51.8671753], [-1.5946603, 51.8669963], [-1.5939036, 51.8665988], [-1.5935121, 51.866407], [-1.5930867, 51.8662033], [-1.5924123, 51.8659029], [-1.5918782, 51.8656785], [-1.5913028, 51.8654669], [-1.5908521, 51.865306], [-1.590379, 51.865139], [-1.5899388, 51.8649913], [-1.5895212, 51.8648618], [-1.5887803, 51.8646583], [-1.5880474, 51.8644837], [-1.5873614, 51.864337], [-1.5865562, 51.8641739], [-1.5862407, 51.8641157], [-1.5852827, 51.863971], [-1.5851718, 51.8639544], [-1.5841906, 51.8638161], [-1.583979, 51.8637906], [-1.5836938, 51.8637642], [-1.5834852, 51.8637454], [-1.5828212, 51.8636941], [-1.5824886, 51.8636709], [-1.5821542, 51.863654], [-1.581763, 51.8636362], [-1.5812428, 51.8636213], [-1.5808229, 51.8636171], [-1.580403, 51.8636136], [-1.5799942, 51.8636207], [-1.5794638, 51.8636351], [-1.5790299, 51.8636496], [-1.5785565, 51.8636781], [-1.5782782, 51.863692], [-1.5776241, 51.8637449], [-1.5769184, 51.863813], [-1.5765039, 51.8638602], [-1.576054, 51.863917], [-1.5754872, 51.8639978], [-1.5749631, 51.864082], [-1.5746773, 51.864131], [-1.5743819, 51.864185], [-1.5738659, 51.8642857], [-1.5735387, 51.864355], [-1.5732189, 51.8644258], [-1.5725471, 51.864585], [-1.5720982, 51.8647052], [-1.5716269, 51.8648435], [-1.5711093, 51.865003], [-1.5706214, 51.865166]]}}, {"id": "366677525", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 366677525, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4880106, 51.8710392], [-1.4886582, 51.8715057], [-1.489321, 51.8719702], [-1.4898035, 51.8723044], [-1.4904916, 51.8727708], [-1.4912129, 51.8732652]]}}, {"id": "366677526", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 366677526, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4911741, 51.8732848], [-1.4904566, 51.8727936], [-1.4897588, 51.8723164], [-1.4894856, 51.8721296], [-1.4892771, 51.8719855], [-1.4879763, 51.8710637]]}}, {"id": "366677528", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 366677528, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4863542, 51.8697982], [-1.4861014, 51.8695833], [-1.4857534, 51.8692761], [-1.4855857, 51.8691225], [-1.4854182, 51.8689673], [-1.4849943, 51.8685536], [-1.4845692, 51.8681317]]}}, {"id": "366678954", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366678954, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6031246, 51.8755307], [-1.603069, 51.8754697], [-1.6020287, 51.8742515], [-1.6014657, 51.8735416], [-1.6011388, 51.8731109], [-1.6006593, 51.8724793], [-1.6003021, 51.8720094], [-1.5997337, 51.8712611], [-1.5994897, 51.870949], [-1.5992147, 51.8706223], [-1.5989914, 51.8703539]]}}, {"id": "366678955", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366678955, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5975648, 51.8689919], [-1.597458, 51.8689003]]}}, {"id": "366678956", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366678956, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6031895, 51.8756036], [-1.6031246, 51.8755307]]}}, {"id": "366686334", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366686334, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7061306, 52.0099321], [-1.7059211, 52.0092992], [-1.7057252, 52.0086644], [-1.7053334, 52.0073954], [-1.7049054, 52.0060942], [-1.7045792, 52.0052605], [-1.704421, 52.0048737], [-1.7042231, 52.0044672], [-1.7039275, 52.0038865], [-1.7036774, 52.0033745], [-1.7034629, 52.0029546], [-1.7032462, 52.0025156], [-1.703047, 52.0020745], [-1.7028466, 52.0015836], [-1.7027326, 52.0012672], [-1.7026294, 52.0009684], [-1.7024472, 52.0003674], [-1.7023827, 52.0000836], [-1.7022379, 51.9993435], [-1.7021787, 51.9988501], [-1.7021365, 51.9984228], [-1.7020981, 51.9979965], [-1.7020547, 51.9975161], [-1.7020198, 51.9971023], [-1.7019542, 51.9965723], [-1.7018708, 51.9960431]]}}, {"id": "366686339", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686339, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6364823, 51.9144193], [-1.6357758, 51.9133495], [-1.6353754, 51.912753], [-1.6350393, 51.9122463], [-1.6347122, 51.9117505], [-1.634268, 51.9110791], [-1.6337491, 51.9102963], [-1.633409, 51.909779], [-1.633177, 51.9094248], [-1.6329383, 51.9090691], [-1.6325305, 51.9084511], [-1.6319361, 51.9075559], [-1.6315004, 51.9068934], [-1.6313753, 51.9066953]]}}, {"id": "366686340", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686340, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6712543, 51.9447489], [-1.670683, 51.9442143], [-1.6699588, 51.9435287], [-1.668689, 51.9423487], [-1.6683054, 51.9420051], [-1.667589, 51.9413987], [-1.666853, 51.9408028], [-1.6662631, 51.9403527], [-1.6655266, 51.9398099], [-1.6643661, 51.9390031], [-1.6636621, 51.9385448], [-1.6624465, 51.9378078], [-1.6614682, 51.9372506], [-1.6603122, 51.9366078], [-1.6590527, 51.9359132], [-1.6577778, 51.9351965], [-1.6566023, 51.9344998], [-1.6556353, 51.9338756], [-1.6546811, 51.9332261], [-1.6538273, 51.9326159]]}}, {"id": "366686342", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366686342, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7087601, 52.0155765], [-1.7086812, 52.0154504]]}}, {"id": "366686344", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366686344, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7334893, 52.0307835], [-1.7328809, 52.0304798], [-1.732295, 52.0301896], [-1.7310852, 52.029614], [-1.7298127, 52.02903]]}}, {"id": "366686345", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686345, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6919568, 51.9769397], [-1.691923, 51.97688]]}}, {"id": "366686346", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686346, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6538273, 51.9326159], [-1.6537017, 51.9325199]]}}, {"id": "366686347", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686347, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6879972, 51.9696566], [-1.687967, 51.969601]]}}, {"id": "366686350", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686350, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6713867, 51.9448786], [-1.6712543, 51.9447489]]}}, {"id": "366686352", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686352, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.650621, 51.9301924], [-1.6503126, 51.9299567]]}}, {"id": "366686354", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686354, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6503126, 51.9299567], [-1.6501793, 51.9298548]]}}, {"id": "366686355", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Cotswold Line", "osmid": 366686355, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7253538, 52.0269795], [-1.7251651, 52.0268896]]}}, {"id": "366686358", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686358, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6507057, 51.9302587], [-1.650621, 51.9301924]]}}, {"id": "366686360", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686360, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6307171, 51.9057079], [-1.6306367, 51.9055869]]}}, {"id": "366686361", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686361, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6365192, 51.9144742], [-1.6364823, 51.9144193]]}}, {"id": "366686363", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Cotswold Line", "osmid": 366686363, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7150702, 52.0226763], [-1.714468, 52.0224779], [-1.7141716, 52.0223673], [-1.7138859, 52.0222517], [-1.7133101, 52.0219802], [-1.7130514, 52.0218458], [-1.7127984, 52.0216873], [-1.7123237, 52.021378], [-1.7120969, 52.021207], [-1.7118839, 52.0210202], [-1.7115887, 52.0207404], [-1.7113792, 52.0205051], [-1.7112505, 52.0203292], [-1.7111154, 52.0201459], [-1.7110192, 52.0200036], [-1.7109095, 52.0198014], [-1.7107206, 52.0193883], [-1.7105465, 52.0189331], [-1.7104138, 52.0185726]]}}, {"id": "366686364", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686364, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6501793, 51.9298548], [-1.649428, 51.9292662], [-1.6481364, 51.9282087], [-1.64767, 51.9278105], [-1.6469978, 51.9272117], [-1.6463564, 51.9266317], [-1.6460261, 51.9263278], [-1.6457052, 51.9260218], [-1.6451055, 51.9254376], [-1.6444869, 51.9248172], [-1.6441107, 51.9244392], [-1.6437304, 51.9240575], [-1.6433198, 51.9236416], [-1.6429387, 51.923241], [-1.6421181, 51.9223414], [-1.6413324, 51.9214204], [-1.640881, 51.9208603], [-1.6403818, 51.920212], [-1.6400904, 51.9198092], [-1.639798, 51.9193902], [-1.639197, 51.9185094], [-1.6387914, 51.9178962], [-1.6384205, 51.9173435], [-1.6379766, 51.9166727], [-1.6375148, 51.9159696], [-1.6369321, 51.9151116], [-1.6365192, 51.9144742]]}}, {"id": "366686365", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686365, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.687967, 51.969601], [-1.6877174, 51.9691405], [-1.6871922, 51.9681766], [-1.6871599, 51.9681302], [-1.6870799, 51.9679837], [-1.6867222, 51.9673077], [-1.6863263, 51.9665647], [-1.6857292, 51.9654476], [-1.685173, 51.9644347], [-1.6841977, 51.9626439], [-1.6832199, 51.9608804], [-1.6826605, 51.9598493], [-1.6814039, 51.9575209], [-1.6807219, 51.9563494], [-1.6801231, 51.9553515], [-1.6793337, 51.9541524], [-1.6784536, 51.95291], [-1.6781463, 51.9525298], [-1.677644, 51.9518407], [-1.6757911, 51.9495093], [-1.6752987, 51.9489798], [-1.6745299, 51.9481169], [-1.6729713, 51.9464471], [-1.6720755, 51.9455421], [-1.6713867, 51.9448786]]}}, {"id": "366686368", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686368, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6537017, 51.9325199], [-1.6520412, 51.9312749], [-1.6507057, 51.9302587]]}}, {"id": "366686369", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366686369, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7298127, 52.02903], [-1.7274282, 52.0279304], [-1.7263877, 52.0274564], [-1.7253538, 52.0269795]]}}, {"id": "366686372", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686372, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6306367, 51.9055869], [-1.6301684, 51.9048788], [-1.6295954, 51.9040167], [-1.6289212, 51.9029987]]}}, {"id": "366686373", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686373, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6289212, 51.9029987], [-1.6285028, 51.9023663], [-1.6282325, 51.9019583], [-1.6279984, 51.901606], [-1.6273686, 51.9006141], [-1.6270602, 51.9001142], [-1.6267602, 51.8996158], [-1.6265037, 51.8991778], [-1.6262519, 51.8987496], [-1.6259238, 51.8981927], [-1.6256067, 51.8976545], [-1.6248053, 51.8962896], [-1.6244165, 51.8956315], [-1.6239174, 51.8948164], [-1.6237161, 51.894442], [-1.6233856, 51.8938775], [-1.6229325, 51.8931069], [-1.6224092, 51.8922109], [-1.6220552, 51.8916696], [-1.6218336, 51.891332], [-1.6213166, 51.8906055], [-1.6208838, 51.8900419], [-1.620466, 51.8895317], [-1.6200212, 51.8890275], [-1.6197995, 51.8887864], [-1.6194662, 51.8884416], [-1.6192959, 51.8882702], [-1.6191239, 51.8880983], [-1.6185372, 51.8875406], [-1.6182176, 51.887255], [-1.6178927, 51.8869714], [-1.6174879, 51.8866326], [-1.6170881, 51.8863066], [-1.6167813, 51.886068], [-1.616463, 51.885824], [-1.6158717, 51.8853966], [-1.6147988, 51.88467], [-1.6141856, 51.8842676], [-1.6135607, 51.883866], [-1.6127157, 51.8833104], [-1.6124602, 51.8831434], [-1.6122005, 51.8829813], [-1.6117208, 51.8826752], [-1.6110603, 51.8822332], [-1.6094588, 51.881141], [-1.6085481, 51.8804603], [-1.6079341, 51.8799931], [-1.6066234, 51.878923], [-1.6057161, 51.8781028], [-1.6043876, 51.8768472], [-1.6037582, 51.8762023], [-1.6031895, 51.8756036]]}}, {"id": "366686376", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 366686376, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.691923, 51.97688], [-1.6918086, 51.976663], [-1.6912065, 51.9755658], [-1.690611, 51.9744632], [-1.6900002, 51.9733521], [-1.6887288, 51.9710102], [-1.6883794, 51.9703638], [-1.6879972, 51.9696566]]}}, {"id": "366686377", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 366686377, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7086812, 52.0154504], [-1.7083861, 52.0149404], [-1.708099, 52.0144142], [-1.7077331, 52.0137176], [-1.7074159, 52.013089], [-1.7071164, 52.012417], [-1.7068514, 52.0118259], [-1.7064737, 52.01088], [-1.7061306, 52.0099321]]}}, {"id": "366686379", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 366686379, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7251651, 52.0268896], [-1.7222616, 52.0255513], [-1.7198066, 52.0244234], [-1.7188493, 52.0239833], [-1.7176706, 52.0234946], [-1.7171748, 52.0233226], [-1.7165612, 52.0231289], [-1.7150702, 52.0226763]]}}, {"id": "374055431", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055431, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0426659, 51.6994708], [-2.0423906, 51.6992913], [-2.0390396, 51.6971534], [-2.0373532, 51.6960863], [-2.0357409, 51.695025], [-2.0349459, 51.6944644], [-2.0341359, 51.6938668], [-2.0332939, 51.6932046], [-2.0324664, 51.6925118], [-2.0317636, 51.6919017], [-2.0310733, 51.6912554], [-2.0304245, 51.6906182], [-2.029781, 51.6899532], [-2.0294091, 51.6895597], [-2.0285813, 51.6885895], [-2.027832, 51.6876332], [-2.0276666, 51.6874189]]}}, {"id": "374055433", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055433, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0431087, 51.6997593], [-2.0426659, 51.6994708]]}}, {"id": "374055434", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 374055434, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0225686, 51.6752993], [-2.022705, 51.675732]]}}, {"id": "374055437", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055437, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0247447, 51.6821011], [-2.0245871, 51.6816419]]}}, {"id": "374055438", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 374055438, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0219036, 51.6731807], [-2.0222467, 51.6742686]]}}, {"id": "374055439", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055439, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0223091, 51.6742529], [-2.0224268, 51.6746397], [-2.0226255, 51.6752925]]}}, {"id": "374055442", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055442, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0431087, 51.6997593], [-2.0445899, 51.7007084]]}}, {"id": "374055444", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 374055444, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0222467, 51.6742686], [-2.0225686, 51.6752993]]}}, {"id": "374055447", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055447, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0276666, 51.6874189], [-2.0274041, 51.6870634]]}}, {"id": "374055448", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055448, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0451369, 51.7010547], [-2.0445899, 51.7007084]]}}, {"id": "374055453", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055453, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0749288, 51.7149585], [-2.0704187, 51.7135258], [-2.0677769, 51.7126748], [-2.0672616, 51.7125148], [-2.0666979, 51.7123523], [-2.0655512, 51.712062], [-2.0647729, 51.7118786], [-2.0639171, 51.7117166], [-2.0610407, 51.7112285], [-2.0596135, 51.7108881], [-2.0587335, 51.7106527], [-2.0576061, 51.7102563], [-2.0567443, 51.7099217], [-2.0561829, 51.7096796], [-2.0554329, 51.7093157], [-2.0548149, 51.7089903], [-2.0543317, 51.7086951], [-2.0537281, 51.7083122], [-2.0532318, 51.7079623], [-2.0526394, 51.7074975], [-2.0522905, 51.7071887], [-2.0510437, 51.7059977], [-2.0504762, 51.7054326], [-2.049471, 51.7044794], [-2.0492048, 51.7042426], [-2.0487507, 51.703831], [-2.0477624, 51.7029879], [-2.0466812, 51.7021448], [-2.0455205, 51.7013145], [-2.0451369, 51.7010547]]}}, {"id": "374055458", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055458, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0245871, 51.6816419], [-2.0242924, 51.680765], [-2.0238421, 51.6793332], [-2.0233919, 51.6778908]]}}, {"id": "374055460", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 374055460, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0227303, 51.6758073], [-2.022705, 51.675732]]}}, {"id": "374055467", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 374055467, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0247447, 51.6821011], [-2.0253118, 51.6834504], [-2.0255948, 51.6840214], [-2.025843, 51.6845027], [-2.0264206, 51.6855296], [-2.0270643, 51.6865553], [-2.0274041, 51.6870634]]}}, {"id": "391284982", "type": "Feature", "properties": {"osmid": 391284982, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8474022, 51.6138332], [-1.8474478, 51.6139515], [-1.8474612, 51.6139931], [-1.8474692, 51.6140381], [-1.8474746, 51.614078], [-1.8474746, 51.614128], [-1.8474853, 51.6142096]]}}, {"id": "391284984", "type": "Feature", "properties": {"osmid": 391284984, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8473512, 51.6138449], [-1.8474853, 51.6142096], [-1.8476007, 51.6146093], [-1.8476704, 51.6148525]]}}, {"id": "391284986", "type": "Feature", "properties": {"osmid": 391284986, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8475531, 51.6143566], [-1.8475148, 51.6140414], [-1.8475095, 51.6139731], [-1.8475068, 51.6138982], [-1.84748, 51.6133452]]}}, {"id": "391284988", "type": "Feature", "properties": {"osmid": 391284988, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8444075, 51.6081154], [-1.8443176, 51.6079568], [-1.8442357, 51.6078131]]}}, {"id": "421640881", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 421640881, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3740792, 51.6209613], [-1.3742146, 51.6209591]]}}, {"id": "421640882", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 421640882, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3168438, 51.6214036], [-1.3197075, 51.6214558], [-1.3217308, 51.6214674], [-1.3238362, 51.6214586], [-1.325927, 51.6214543], [-1.3280632, 51.6214212], [-1.3301699, 51.6214137], [-1.3324085, 51.6213862], [-1.3346488, 51.6213644], [-1.3369828, 51.6213412], [-1.3392688, 51.6213237], [-1.3414524, 51.6213006], [-1.342679, 51.6212875], [-1.3444555, 51.6212745], [-1.3457699, 51.6212536], [-1.3482536, 51.6212324], [-1.349576, 51.6212193], [-1.3510224, 51.6212007], [-1.3537115, 51.6211744], [-1.3556787, 51.6211599], [-1.3575516, 51.6211387], [-1.3616295, 51.6210931], [-1.3657603, 51.6210511], [-1.3683023, 51.621038], [-1.370099, 51.6210177], [-1.3710826, 51.6209974], [-1.3720662, 51.6209872], [-1.3740792, 51.6209613]]}}, {"id": "421640883", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 421640883, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.374088, 51.621012], [-1.3710498, 51.6210437], [-1.3689215, 51.6210698], [-1.367022, 51.62108], [-1.3648934, 51.621109], [-1.3631085, 51.6211279], [-1.3613772, 51.6211423], [-1.3595874, 51.6211525], [-1.3573165, 51.6211786], [-1.3553071, 51.6212062], [-1.3529567, 51.6212191], [-1.3512558, 51.6212409], [-1.3496765, 51.6212627], [-1.348027, 51.6212713], [-1.3463353, 51.6212931], [-1.3445948, 51.6213046], [-1.3430434, 51.6213294], [-1.3414149, 51.6213481], [-1.3395809, 51.621367], [-1.3377141, 51.6213873], [-1.3358683, 51.6213976], [-1.3339594, 51.6214207], [-1.332074, 51.6214424], [-1.3302049, 51.6214642], [-1.3281933, 51.6214729], [-1.3280133, 51.6214694], [-1.3263918, 51.6214859], [-1.3242704, 51.6215048], [-1.3238676, 51.6215062], [-1.3221793, 51.6215121], [-1.3199831, 51.6214974], [-1.3177379, 51.6214742], [-1.3166654, 51.6214394]]}}, {"id": "421640884", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 421640884, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3742251, 51.6210093], [-1.374088, 51.621012]]}}, {"id": "462067611", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley line", "osmid": 462067611, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0061879, 51.6487608], [-2.0066379, 51.6493653]]}}, {"id": "462079956", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osmid": 462079956, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.4080519, 51.6197503], [-1.4090665, 51.6196439]]}}, {"id": "470073743", "type": "Feature", "properties": {"maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 470073743, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.994162, 51.6343041], [-1.994279, 51.6344175], [-1.9954182, 51.6357015], [-1.9972374, 51.63787], [-1.9978724, 51.6386516], [-1.9985966, 51.6395352], [-1.9997722, 51.6409396], [-2.000753, 51.6421923], [-2.0014302, 51.6429746], [-2.0024061, 51.6441255], [-2.0035863, 51.6455768], [-2.0039691, 51.6460567], [-2.0046377, 51.6468551], [-2.0056355, 51.6480733], [-2.0061879, 51.6487608]]}}, {"id": "503483953", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 503483953, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7335178, 52.0307549], [-1.7344929, 52.0312735], [-1.7354168, 52.031794], [-1.7365191, 52.0324331], [-1.737222, 52.0328688], [-1.737963, 52.0333384], [-1.7386079, 52.0337634], [-1.7392722, 52.034204], [-1.7393017, 52.0342262], [-1.7398383, 52.034593], [-1.7404447, 52.0350197], [-1.7414024, 52.0357301], [-1.7420532, 52.0362472], [-1.7426902, 52.0367681], [-1.7432213, 52.0372136], [-1.7435706, 52.0375145], [-1.7442384, 52.0381104], [-1.7446311, 52.0384718], [-1.7450364, 52.0388665], [-1.7458291, 52.0396544], [-1.7465724, 52.0404402], [-1.7472693, 52.041226], [-1.7476605, 52.0416927]]}}, {"id": "507943355", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943355, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0109916, 51.6547292], [-2.0112438, 51.6550379], [-2.0115979, 51.6554556], [-2.0122336, 51.656226], [-2.0126949, 51.6567868], [-2.013124, 51.6572843], [-2.0139314, 51.6582776], [-2.0146405, 51.6591515], [-2.0147557, 51.6592983], [-2.0149884, 51.6595947], [-2.0152768, 51.6599372], [-2.0155845, 51.6603504], [-2.0160336, 51.6609385], [-2.0163586, 51.6614082], [-2.0167182, 51.6619359], [-2.0171086, 51.6625174], [-2.0175739, 51.6632558], [-2.0180844, 51.664072], [-2.0184508, 51.6647195]]}}, {"id": "507943364", "type": "Feature", "properties": {"maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943364, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9666461, 51.6201757], [-1.9710566, 51.6218387]]}}, {"id": "507943365", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943365, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9711903, 51.6218917], [-1.9720191, 51.6222132], [-1.9730341, 51.6225876]]}}, {"id": "507943366", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943366, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0108141, 51.6545005], [-2.0109916, 51.6547292]]}}, {"id": "507943367", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943367, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9710566, 51.6218387], [-1.9711903, 51.6218917]]}}, {"id": "507943368", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943368, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9662818, 51.6200415], [-1.9666461, 51.6201757]]}}, {"id": "507943371", "type": "Feature", "properties": {"maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943371, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9768541, 51.6240123], [-1.9783628, 51.6245842], [-1.9801268, 51.6253013], [-1.9809484, 51.6256232], [-1.9824934, 51.6263159], [-1.984387, 51.627235], [-1.9867098, 51.6285437], [-1.9892043, 51.6301355], [-1.9913554, 51.6317571], [-1.9928682, 51.633049], [-1.9940545, 51.6341998]]}}, {"id": "507943372", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Golden Valley Line", "osmid": 507943372, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.994162, 51.6343041], [-1.9940545, 51.6341998]]}}, {"id": "507943373", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943373, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0066379, 51.6493653], [-2.0067026, 51.6494389]]}}, {"id": "507943374", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley line", "osmid": 507943374, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0067026, 51.6494389], [-2.0072655, 51.6501374], [-2.0079152, 51.6509342], [-2.0082076, 51.6513053], [-2.0086394, 51.6518329], [-2.0089291, 51.6522006], [-2.0095057, 51.6528946], [-2.0098518, 51.6533106], [-2.0102702, 51.6538315], [-2.0108141, 51.6545005]]}}, {"id": "507943375", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 507943375, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9730341, 51.6225876], [-1.9753319, 51.6234352], [-1.9768541, 51.6240123]]}}, {"id": "509447308", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447308, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5845881, 51.6070252], [-1.5844374, 51.6070749]]}}, {"id": "509447309", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447309, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5844374, 51.6070749], [-1.5837284, 51.6073034], [-1.5829019, 51.6075686], [-1.5819541, 51.6078653], [-1.5810454, 51.608128], [-1.5798292, 51.6084698], [-1.5788501, 51.6087361], [-1.5779263, 51.6089713]]}}, {"id": "509447310", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447310, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5778872, 51.6089346], [-1.5789947, 51.6086606], [-1.579936, 51.6084056], [-1.5808374, 51.608154], [-1.5815806, 51.6079374], [-1.5825089, 51.6076525], [-1.5834774, 51.6073492], [-1.5844004, 51.6070421]]}}, {"id": "509447311", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447311, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5914683, 51.6043702], [-1.5913099, 51.6044434]]}}, {"id": "509447312", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447312, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5844004, 51.6070421], [-1.5845468, 51.6069934]]}}, {"id": "509447314", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447314, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5912707, 51.6043898], [-1.5914302, 51.6043139]]}}, {"id": "509447315", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447315, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5845468, 51.6069934], [-1.5853876, 51.6067122], [-1.5860418, 51.6064822], [-1.5868233, 51.6061982], [-1.5881702, 51.6056963], [-1.5896499, 51.6051084], [-1.5905757, 51.6047207], [-1.5912707, 51.6043898]]}}, {"id": "509447316", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447316, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5913099, 51.6044434], [-1.5906081, 51.604748], [-1.5896916, 51.6051336], [-1.5882052, 51.6057186], [-1.5868657, 51.6062246], [-1.5860764, 51.6065141], [-1.5854145, 51.6067439], [-1.5845881, 51.6070252]]}}, {"id": "509447318", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447318, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5711341, 51.610389], [-1.5723194, 51.6101863], [-1.5734577, 51.609959], [-1.5743303, 51.609774], [-1.5763336, 51.609326], [-1.577694, 51.6089871]]}}, {"id": "509447319", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447319, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.577694, 51.6089871], [-1.5778872, 51.6089346]]}}, {"id": "509447320", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447320, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.57773, 51.6090226], [-1.5772011, 51.6091557], [-1.5762435, 51.6093856], [-1.5753994, 51.6095777], [-1.5745789, 51.6097553], [-1.573725, 51.6099389], [-1.5728496, 51.6101177], [-1.5719997, 51.6102807], [-1.5711835, 51.6104288]]}}, {"id": "509447321", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509447321, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5779263, 51.6089713], [-1.57773, 51.6090226]]}}, {"id": "509593715", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509593715, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5100989, 51.611548], [-1.5102598, 51.6115435]]}}, {"id": "509593720", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509593720, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5102492, 51.6115853], [-1.5100988, 51.6115856]]}}, {"id": "509593722", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509593722, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5102598, 51.6115435], [-1.5110144, 51.6115225], [-1.5130432, 51.6114771], [-1.5166091, 51.6114305], [-1.5179187, 51.6114278], [-1.5194528, 51.6114291], [-1.5213204, 51.6114419], [-1.524001, 51.6114621]]}}, {"id": "509593725", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 509593725, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5100988, 51.6115856], [-1.5084902, 51.6116322], [-1.5074905, 51.6116642], [-1.5060422, 51.6117171], [-1.5044422, 51.6117742], [-1.5029042, 51.6118392], [-1.501552, 51.6118989], [-1.4999991, 51.6119718], [-1.4980744, 51.6120846], [-1.4965278, 51.6121668], [-1.4949962, 51.6122597], [-1.4935499, 51.6123537], [-1.4922684, 51.6124533], [-1.4913477, 51.6125275], [-1.4900489, 51.6126284], [-1.4892778, 51.6126908], [-1.4883507, 51.6127637], [-1.4874364, 51.6128419], [-1.4864303, 51.6129215], [-1.4844206, 51.6130956], [-1.4824511, 51.6132681], [-1.4808447, 51.6134113], [-1.4791059, 51.6135599], [-1.4771491, 51.6137324], [-1.474966, 51.6139074], [-1.4732079, 51.6140519], [-1.4713368, 51.6141978], [-1.4696962, 51.6143279], [-1.4675366, 51.6145043], [-1.465898, 51.6146342], [-1.463982, 51.6147868], [-1.4621001, 51.6149406], [-1.4601904, 51.6150879], [-1.458507, 51.6152258], [-1.4565952, 51.615377], [-1.4547794, 51.6155242], [-1.4531752, 51.6156529], [-1.4514833, 51.6157881], [-1.449674, 51.6159381], [-1.4479822, 51.6160773], [-1.4463011, 51.6162165], [-1.4447609, 51.6163518], [-1.4432784, 51.6164858], [-1.4419861, 51.6166012], [-1.4406381, 51.6167192], [-1.4389912, 51.6168718], [-1.437419, 51.617023], [-1.435631, 51.6171981], [-1.4339563, 51.6173624], [-1.4335646, 51.6174021], [-1.4322687, 51.6175335], [-1.4309059, 51.6176728], [-1.4292504, 51.6178346], [-1.4278854, 51.6179752], [-1.4263901, 51.6181211], [-1.4249204, 51.6182696], [-1.4236601, 51.618397], [-1.4220138, 51.6185606], [-1.4201448, 51.6187564], [-1.4181284, 51.6189478], [-1.4167575, 51.6190743], [-1.4163364, 51.6191132], [-1.4147195, 51.6192598], [-1.4129743, 51.6194105], [-1.4113598, 51.6195338], [-1.4099744, 51.6196252], [-1.4080519, 51.6197503], [-1.4070982, 51.6198124], [-1.4056169, 51.6199183], [-1.4041099, 51.6200242]]}}, {"id": "519286887", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 519286887, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7476148, 52.0417067], [-1.7472242, 52.0412407], [-1.7465279, 52.0404556], [-1.7458043, 52.0396942], [-1.7457802, 52.0396701], [-1.7449931, 52.0388831], [-1.7445883, 52.038489], [-1.7441958, 52.0381278], [-1.7435316, 52.0375318], [-1.7431904, 52.0372351], [-1.7426473, 52.0367838], [-1.7420109, 52.0362645], [-1.7413624, 52.0357496], [-1.7404058, 52.03504], [-1.7398003, 52.0346139], [-1.7392539, 52.0342426], [-1.7392232, 52.03422], [-1.7378904, 52.0333371], [-1.7371761, 52.032884], [-1.7365001, 52.0324623], [-1.7354069, 52.0318264], [-1.7344744, 52.0313015], [-1.7334893, 52.0307835]]}}, {"id": "578279066", "type": "Feature", "properties": {"osmid": 578279066, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6869915, 51.9969885], [-1.6861948, 51.9970959], [-1.6852695, 51.997337], [-1.6845962, 51.9976425], [-1.6841376, 51.9978506], [-1.6838586, 51.9980091], [-1.6835851, 51.9982139], [-1.6833597, 51.9984104]]}}, {"id": "593727870", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 593727870, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.4056147, 51.6198746], [-1.4070822, 51.6197877], [-1.4090665, 51.6196439], [-1.4093459, 51.6196237], [-1.4115818, 51.6194743], [-1.4127243, 51.6193829], [-1.4139112, 51.6192915], [-1.4151612, 51.6191827], [-1.4164172, 51.6190608], [-1.4167606, 51.6190278], [-1.4187593, 51.618836], [-1.4209764, 51.6186219], [-1.4226377, 51.6184632], [-1.4243217, 51.6182867], [-1.4276247, 51.6179552], [-1.4325069, 51.6174696], [-1.4335561, 51.6173671], [-1.4400829, 51.6167291], [-1.4420192, 51.6165553], [-1.4444437, 51.6163364], [-1.4467123, 51.6161401], [-1.450055, 51.6158628], [-1.451901, 51.615709], [-1.4540778, 51.6155366], [-1.4571837, 51.6152859], [-1.4600031, 51.6150621], [-1.4618661, 51.6149132], [-1.4647585, 51.6146824], [-1.4687028, 51.614368], [-1.4722907, 51.6140762], [-1.4755526, 51.6138168], [-1.4787783, 51.6135458], [-1.4802418, 51.6134197], [-1.4811838, 51.6133375], [-1.4828308, 51.6131929], [-1.4859773, 51.6129157], [-1.4914948, 51.6124722], [-1.4924932, 51.612392], [-1.4938644, 51.6122923], [-1.4951897, 51.6122055], [-1.497112, 51.6120953], [-1.4996917, 51.6119567], [-1.5013468, 51.6118711], [-1.5030269, 51.6117998], [-1.5048013, 51.6117289], [-1.5062182, 51.611665], [-1.5085516, 51.6115912], [-1.5100989, 51.611548]]}}, {"id": "593727871", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Great Western Main Line", "osmid": 593727871, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.4041099, 51.6200242], [-1.4025819, 51.6201126], [-1.400089, 51.6202504], [-1.3980236, 51.6203563], [-1.3959934, 51.6204535], [-1.3943539, 51.6205318], [-1.3922503, 51.6206159], [-1.3903112, 51.6206841], [-1.388636, 51.6207421], [-1.387686, 51.6207715]]}}, {"id": "634277008", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 634277008, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0227717, 51.6761625], [-2.0225841, 51.6756706]]}}, {"id": "703811238", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 703811238, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4845692, 51.8681317], [-1.4848736, 51.8684073], [-1.4849997, 51.8685246], [-1.4852339, 51.8687447], [-1.4854649, 51.8689545]]}}, {"id": "822777943", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777943, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9478624, 51.6130047], [-1.9502069, 51.613887], [-1.9529374, 51.614933], [-1.9575915, 51.61671], [-1.9642406, 51.6192538], [-1.9650131, 51.6195503], [-1.9662818, 51.6200415]]}}, {"id": "822777944", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777944, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9477507, 51.6129627], [-1.9478624, 51.6130047]]}}, {"id": "822777946", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777946, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9125774, 51.6079041], [-1.9124759, 51.6079024]]}}, {"id": "822777947", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Golden Valley Line", "osmid": 822777947, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9478367, 51.613033], [-1.9481833, 51.6131608], [-1.9490701, 51.6134965], [-1.9501765, 51.61392], [-1.9519476, 51.6145966], [-1.952909, 51.6149561], [-1.9537636, 51.6152846]]}}, {"id": "822777948", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Golden Valley Line", "osmid": 822777948, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9477245, 51.6129917], [-1.9478367, 51.613033]]}}, {"id": "822777949", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 822777949, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0184508, 51.6647195], [-2.0186645, 51.6650972], [-2.0192809, 51.6662405], [-2.0195787, 51.6668617], [-2.0198458, 51.6674271], [-2.0202691, 51.6683994], [-2.0205722, 51.669123], [-2.0208515, 51.6698284]]}}, {"id": "822777950", "type": "Feature", "properties": {"maxspeed": "25 mph", "osmid": 822777950, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0224268, 51.6746397], [-2.0225686, 51.6752993]]}}, {"id": "822777951", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 822777951, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0227303, 51.6758073], [-2.0230886, 51.6769222], [-2.0233919, 51.6778908]]}}, {"id": "822777952", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Golden Valley Line", "osmid": 822777952, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0508502, 51.705737], [-2.0510926, 51.7059784], [-2.0523385, 51.7071686], [-2.0526859, 51.707476], [-2.0532763, 51.7079393], [-2.0537706, 51.7082878], [-2.0543728, 51.7086697], [-2.0548541, 51.7089638], [-2.0554695, 51.7092879], [-2.0562173, 51.7096507], [-2.0567763, 51.7098917], [-2.0576358, 51.7102254], [-2.0587594, 51.7106205], [-2.0596354, 51.7108549], [-2.0610588, 51.7111943], [-2.0626626, 51.7114665]]}}, {"id": "822778758", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Golden Valley Line", "osmid": 822778758, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0626626, 51.7114665], [-2.0639332, 51.7116821], [-2.0647917, 51.7118446], [-2.0655725, 51.7120286], [-2.0667211, 51.7123194], [-2.0672868, 51.7124825], [-2.0678032, 51.7126428], [-2.0700457, 51.7133652], [-2.0704453, 51.7134939], [-2.074956, 51.7149268]]}}, {"id": "859095200", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 859095200, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.525616, 51.8816417], [-1.524774, 51.8817022], [-1.5239722, 51.8817431], [-1.5231933, 51.881764], [-1.5225417, 51.8817691], [-1.5219444, 51.881763], [-1.5212905, 51.8817494], [-1.5209533, 51.8817373], [-1.5206354, 51.8817187], [-1.5201509, 51.8816948], [-1.5195814, 51.8816512], [-1.5190269, 51.8815989]]}}, {"id": "859095201", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 859095201, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5611717, 51.8684807], [-1.5599666, 51.8689055]]}}, {"id": "859095202", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Cotswold Line", "osmid": 859095202, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5599357, 51.868881], [-1.5611985, 51.868436]]}}, {"id": "859095203", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859095203, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4845692, 51.8681317], [-1.4841432, 51.8677227], [-1.4837578, 51.867338], [-1.483393, 51.8669454], [-1.4830685, 51.8665844], [-1.4827159, 51.8661552]]}}, {"id": "859604923", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859604923, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5989914, 51.8703539], [-1.598684, 51.8700276], [-1.5983926, 51.8697322], [-1.5980998, 51.869453], [-1.5975648, 51.8689919]]}}, {"id": "859604924", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859604924, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5976121, 51.8689709], [-1.5981479, 51.8694327], [-1.5984419, 51.869713], [-1.5987342, 51.8700094], [-1.5988212, 51.8700984], [-1.5990424, 51.8703395]]}}, {"id": "859604926", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859604926, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.563416, 51.8676899], [-1.561986, 51.8681938], [-1.5611717, 51.8684807]]}}, {"id": "859604927", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859604927, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5611985, 51.868436], [-1.5619532, 51.8681733], [-1.5633986, 51.8676618]]}}, {"id": "859604939", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 859604939, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4854649, 51.8689545], [-1.4858016, 51.8692587], [-1.4861446, 51.8695669], [-1.4864051, 51.8697833]]}}, {"id": "859604940", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 859604940, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4877548, 51.870895], [-1.4872997, 51.8705526], [-1.4870175, 51.8703359], [-1.4865601, 51.8699684], [-1.4863542, 51.8697982]]}}, {"id": "860241029", "type": "Feature", "properties": {"name": "Gloucestershire Warwickshire Railway", "osmid": 860241029, "railway": "rail", "ref": "HCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0647177, 51.9257787], [-2.0651502, 51.9255858], [-2.0658866, 51.925251], [-2.067833, 51.9243554], [-2.0696728, 51.9235233], [-2.0698307, 51.923442], [-2.0700957, 51.9232945]]}}, {"id": "860267464", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "name": "Cotswold Line", "osmid": 860267464, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6996855, 51.9910195], [-1.699303, 51.9904428]]}}, {"id": "860267465", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 860267465, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6980234, 51.9881202], [-1.6975205, 51.9871896], [-1.6974012, 51.9869686], [-1.6967437, 51.9857513], [-1.6962937, 51.984926], [-1.6960054, 51.9843849], [-1.6954957, 51.9834665], [-1.6947054, 51.982005], [-1.6924885, 51.9779269], [-1.6919568, 51.9769397]]}}, {"id": "860267466", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 860267466, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6920106, 51.976929], [-1.6925489, 51.9779169], [-1.6947631, 51.9819925], [-1.6955548, 51.9834532], [-1.6960538, 51.9843751], [-1.696166, 51.9845754], [-1.6963461, 51.9849161], [-1.6968002, 51.9857379], [-1.6975782, 51.987178], [-1.6980918, 51.9881095]]}}, {"id": "860267468", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 860267468, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6992424, 51.9902197], [-1.6991512, 51.9899429], [-1.6991271, 51.9898785], [-1.6969049, 51.9857961]]}}, {"id": "860267469", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 860267469, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6313753, 51.9066953], [-1.6307171, 51.9057079]]}}, {"id": "860267470", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Cotswold Line", "osmid": 860267470, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6307621, 51.905697], [-1.6314187, 51.9066838]]}}, {"id": "860497511", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 860497511, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7088091, 52.0155708], [-1.7090008, 52.0158963], [-1.7096826, 52.0169349], [-1.7099623, 52.0174328], [-1.71012, 52.0177296], [-1.7103299, 52.0181933], [-1.7104688, 52.018566]]}}, {"id": "860497512", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 860497512, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7104138, 52.0185726], [-1.7102803, 52.0182008], [-1.7100711, 52.0177387], [-1.7099139, 52.0174428], [-1.7096348, 52.0169459], [-1.7089535, 52.0159081], [-1.7087601, 52.0155765]]}}, {"id": "860497513", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 860497513, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7009845, 51.9934341], [-1.7010801, 51.9936119], [-1.7012872, 51.9940451], [-1.7014509, 51.9944321], [-1.7016162, 51.994882], [-1.7017537, 51.9953322], [-1.701849, 51.9956985], [-1.7019189, 51.9960372]]}}, {"id": "860497514", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Cotswold Line", "osmid": 860497514, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6980918, 51.9881095], [-1.6987018, 51.9892372], [-1.6990118, 51.9898099], [-1.6992424, 51.9902197], [-1.6996855, 51.9910195], [-1.7002983, 51.9921758], [-1.7008212, 51.9931311], [-1.7008873, 51.9932582], [-1.7009845, 51.9934341]]}}, {"id": "860497515", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Cotswold Line", "osmid": 860497515, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7018708, 51.9960431], [-1.7017958, 51.9956741], [-1.7017062, 51.9953365], [-1.7015652, 51.994887], [-1.7014013, 51.9944396], [-1.7012381, 51.9940537], [-1.7010194, 51.9936174], [-1.7002365, 51.9921883], [-1.7000826, 51.9919036], [-1.6995338, 51.9908946], [-1.699303, 51.9904428], [-1.699194, 51.9902295], [-1.6986415, 51.9892473], [-1.6980234, 51.9881202]]}}, {"id": "2495556", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "75 mph", "name": "Cotswold Line", "osmid": 2495556, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7690092, 52.0697231], [-1.7696688, 52.0713685], [-1.7699599, 52.0720181], [-1.7702497, 52.0726005], [-1.7704782, 52.0729751], [-1.7708546, 52.0735193], [-1.7712207, 52.0739888], [-1.7714871, 52.074291], [-1.771766, 52.0745908]]}}, {"id": "3233125", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 3233125, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5390227, 52.2847721], [-1.5384295, 52.2847586], [-1.5371673, 52.2847198], [-1.5364689, 52.2846936], [-1.535812, 52.2846639]]}}, {"id": "3550871", "type": "Feature", "properties": {"electrified": "no", "name": "Blisworth Stratford-on-Avon and Broom Line", "osmid": 3550871, "railway": "rail", "ref": "SJT1", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3836088, 52.1751032], [-1.3842602, 52.1751984], [-1.3848362, 52.1752749], [-1.3859586, 52.1753997], [-1.386908, 52.1754774], [-1.388071, 52.1755665], [-1.3897916, 52.1756617], [-1.3907376, 52.1757081], [-1.3914662, 52.1757354], [-1.3937771, 52.175786], [-1.3957715, 52.1758241], [-1.3996904, 52.1759018], [-1.4038477, 52.1759854], [-1.4054494, 52.1760118], [-1.4064523, 52.1760285], [-1.4095446, 52.1760905], [-1.4125468, 52.1761587], [-1.4133404, 52.1761693], [-1.4146859, 52.1761789], [-1.4181675, 52.1761672], [-1.4190002, 52.1761497], [-1.4193195, 52.176138], [-1.4198235, 52.176119], [-1.4207566, 52.1760698], [-1.4214704, 52.1760209], [-1.4225248, 52.1759477], [-1.4237635, 52.1758463], [-1.4249771, 52.1757151], [-1.4259026, 52.1756185], [-1.4277058, 52.1753827], [-1.4294166, 52.175116], [-1.4296177, 52.1750847], [-1.4307042, 52.1748967], [-1.4320158, 52.1746408], [-1.4354056, 52.1739153], [-1.4358649, 52.1738039], [-1.4369586, 52.1735417], [-1.4374188, 52.1734357], [-1.4379926, 52.1733092], [-1.4385818, 52.1731799], [-1.4390407, 52.1730784], [-1.4394229, 52.1729883], [-1.4397696, 52.1729026], [-1.4401057, 52.1728146], [-1.440443, 52.1727246], [-1.4407358, 52.1726447], [-1.4410935, 52.1725438], [-1.4421566, 52.1722331]]}}, {"id": "3550914", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Chiltern Main Line", "osmid": 3550914, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3630159, 52.1666797], [-1.3589182, 52.1653635], [-1.3562544, 52.1645023], [-1.3556665, 52.1643092], [-1.3552562, 52.1641724], [-1.3548449, 52.1640293], [-1.3544464, 52.1638876], [-1.3540649, 52.1637454], [-1.3536423, 52.1635827], [-1.3533271, 52.1634537], [-1.352951, 52.163297], [-1.3526252, 52.1631575], [-1.3522174, 52.1629693], [-1.3519477, 52.162844], [-1.3516606, 52.1627046], [-1.351329, 52.1625404], [-1.3510322, 52.1623813], [-1.3506824, 52.1621952], [-1.3503373, 52.1619993], [-1.3500132, 52.161807], [-1.3498184, 52.1616861], [-1.3495861, 52.1615439], [-1.3492662, 52.1613314], [-1.3489606, 52.1611256], [-1.3487361, 52.1609625], [-1.3485028, 52.1607978], [-1.3482127, 52.1605826], [-1.3479515, 52.1603765], [-1.347702, 52.1601758], [-1.3474081, 52.1599277], [-1.3471408, 52.1596964], [-1.3468943, 52.1594734], [-1.3466063, 52.1591977], [-1.3463056, 52.1588996], [-1.3460354, 52.1586171], [-1.3457792, 52.1583354], [-1.3455477, 52.1580666], [-1.3453335, 52.1578053], [-1.3451672, 52.1575848], [-1.3449975, 52.1573628], [-1.3448449, 52.1571475], [-1.3446798, 52.1569141], [-1.3445203, 52.1566641], [-1.3444125, 52.1564897], [-1.3442566, 52.1562315], [-1.3440888, 52.1559352], [-1.3439715, 52.1557034], [-1.3439027, 52.1555662], [-1.3438131, 52.1553856], [-1.3436654, 52.1550598], [-1.3435325, 52.1547326], [-1.3434176, 52.1544287], [-1.3433172, 52.1541338], [-1.3432053, 52.1537534], [-1.3431181, 52.1534262], [-1.3430442, 52.1531084], [-1.3429543, 52.1526849], [-1.3428237, 52.152055], [-1.3424615, 52.1502652], [-1.342363, 52.1498072], [-1.3422246, 52.1491141], [-1.3421415, 52.1487617], [-1.3420815, 52.1485155], [-1.3420066, 52.1482238], [-1.3419253, 52.1479428], [-1.3418729, 52.1477535], [-1.341811, 52.1475596], [-1.3417409, 52.1473529], [-1.3416216, 52.1470294], [-1.3415347, 52.1468125], [-1.3414196, 52.1465406], [-1.3413038, 52.146272], [-1.3411944, 52.146047], [-1.341019, 52.145693], [-1.3408964, 52.1454674]]}}, {"id": "3550915", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Chiltern Main Line", "osmid": 3550915, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.4229029, 52.2252795], [-1.4225201, 52.224696], [-1.4220512, 52.2240374], [-1.4215812, 52.223415]]}}, {"id": "4000464", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "30 mph", "osmid": 4000464, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5415775, 52.2847629], [-1.5409656, 52.2847715], [-1.5405917, 52.2847903], [-1.5402165, 52.2847918], [-1.5390227, 52.2847721]]}}, {"id": "4000465", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 4000465, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6098375, 52.2857699], [-1.6092832, 52.2857407], [-1.6086307, 52.2857183], [-1.6081789, 52.2857158]]}}, {"id": "4000476", "type": "Feature", "properties": {"electrified": "no", "name": "Leamington to Stratford Line", "osmid": 4000476, "railway": "rail", "ref": "HSA", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7555599, 52.2370759], [-1.7553819, 52.2375511], [-1.7552625, 52.2378512], [-1.7551598, 52.2380679], [-1.7549524, 52.2385253], [-1.7547553, 52.2389262], [-1.7546631, 52.2391303], [-1.7545924, 52.239278], [-1.7542422, 52.2399473], [-1.753962, 52.2404243], [-1.7538408, 52.2406072], [-1.7537791, 52.2407003], [-1.7536197, 52.2409358], [-1.7534307, 52.2412027], [-1.7532782, 52.2414118], [-1.7528948, 52.2419048], [-1.7526472, 52.2422068], [-1.7524318, 52.2424616], [-1.7522301, 52.242694], [-1.7520093, 52.242936], [-1.7517174, 52.2432389], [-1.7515612, 52.2433919], [-1.7514693, 52.2434819], [-1.7512668, 52.2436754], [-1.7511152, 52.2438159], [-1.750945, 52.2439704], [-1.7506221, 52.2442517], [-1.7503015, 52.2445201], [-1.7498208, 52.2449172], [-1.7494139, 52.2452432], [-1.7490957, 52.2454876], [-1.7489244, 52.2456112]]}}, {"id": "4000477", "type": "Feature", "properties": {"electrified": "no", "name": "Leamington to Stratford Line", "osmid": 4000477, "railway": "rail", "ref": "HSA", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6805153, 52.2897188], [-1.680356, 52.2901637], [-1.6802642, 52.2904617], [-1.6801442, 52.2909146], [-1.6800649, 52.2913144], [-1.6800005, 52.2917112], [-1.6799935, 52.2917723], [-1.6799873, 52.2920453], [-1.6799928, 52.2921795], [-1.6799876, 52.2923217], [-1.6799639, 52.292558], [-1.679931, 52.2928022], [-1.6798663, 52.2930296], [-1.6798139, 52.2931476], [-1.6797635, 52.293255], [-1.6796693, 52.2934141], [-1.6795627, 52.2935623], [-1.67947, 52.2936831], [-1.6792819, 52.2938691], [-1.6791548, 52.2939823], [-1.6790166, 52.2940937], [-1.6788651, 52.2942021], [-1.6786512, 52.2943494], [-1.6784637, 52.2944634], [-1.678249, 52.2945798], [-1.6780289, 52.2946869], [-1.6777749, 52.2947926], [-1.6775392, 52.2948835], [-1.6773309, 52.2949515], [-1.6772215, 52.2949842]]}}, {"id": "4000488", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4000488, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6680827, 52.2953633], [-1.6676924, 52.2954082], [-1.6673871, 52.2954497], [-1.6666656, 52.2955639], [-1.6661649, 52.2956552], [-1.6653213, 52.2958227], [-1.6646763, 52.2959811], [-1.6641537, 52.2961164], [-1.6629556, 52.2964581], [-1.6622832, 52.2966582], [-1.661389, 52.2969151], [-1.6607383, 52.2970884]]}}, {"id": "4000489", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 4000489, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7220829, 52.3237562], [-1.7219318, 52.3234507], [-1.7215959, 52.3228114], [-1.7213561, 52.3224204], [-1.7212125, 52.3221924], [-1.720885, 52.3217054], [-1.7206557, 52.3213871], [-1.7203072, 52.3209252], [-1.7199421, 52.320482], [-1.7196242, 52.320121], [-1.7194556, 52.3199353], [-1.7192658, 52.3197327], [-1.7188414, 52.3193042], [-1.7183798, 52.3188489], [-1.7173644, 52.3179076], [-1.7170885, 52.3176554], [-1.7166925, 52.3172952]]}}, {"id": "4000490", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 4000490, "railway": "rail", "ref": "HSA", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7163221, 52.1944695], [-1.7162727, 52.1950932], [-1.716247, 52.1953853], [-1.7162405, 52.1955155], [-1.7162427, 52.1956864], [-1.7162536, 52.1958882], [-1.7162785, 52.1960763], [-1.7163092, 52.1962159], [-1.7163282, 52.1963023], [-1.7163709, 52.1964514], [-1.7164274, 52.1966225], [-1.7165109, 52.1968261], [-1.716586, 52.1969808], [-1.7166815, 52.197147], [-1.7167472, 52.1972488], [-1.7168202, 52.1973603], [-1.7169275, 52.1974969]]}}, {"id": "4000619", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Rugby\u2013Birmingham\u2013Stafford Line (West Coast Main Line)", "osmid": 4000619, "railway": "rail", "ref": "RBS1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.411427, 52.3815925], [-1.4135881, 52.3816538], [-1.4161659, 52.381728], [-1.4192187, 52.3818309], [-1.4210874, 52.3819227], [-1.4226602, 52.3820199], [-1.4242288, 52.3821496], [-1.4259532, 52.3823154], [-1.4277138, 52.3825097], [-1.4292971, 52.3827203], [-1.4309738, 52.3829589], [-1.4330192, 52.3832962], [-1.4345111, 52.3835684], [-1.4366717, 52.3840152], [-1.4380821, 52.3843341], [-1.4397035, 52.3847221], [-1.4407642, 52.3850042], [-1.442128, 52.3853779], [-1.4426845, 52.3855397], [-1.4434673, 52.3857692], [-1.4446621, 52.3861317], [-1.4459858, 52.3865579], [-1.4471129, 52.3869428], [-1.4483425, 52.3873983], [-1.4508519, 52.3883409], [-1.4528508, 52.3890607], [-1.4543625, 52.3895773], [-1.456818, 52.3903453], [-1.4589769, 52.3909549]]}}, {"id": "4000621", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "name": "Coventry to Nuneaton Line", "osmid": 4000621, "railway": "rail", "ref": "CNN", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5206023, 52.4016078], [-1.5208067, 52.4016395], [-1.5210907, 52.4016921], [-1.5213286, 52.4017529], [-1.5215893, 52.4018252], [-1.5219929, 52.4019448], [-1.5225298, 52.4021156], [-1.5230465, 52.4022954], [-1.5235642, 52.4024978], [-1.5239331, 52.4026587], [-1.5241547, 52.4027717], [-1.5243655, 52.4028845], [-1.5246366, 52.4030419], [-1.524892, 52.4032111], [-1.5251986, 52.4034354], [-1.5254564, 52.4036416], [-1.5256597, 52.4038143]]}}, {"id": "4000630", "type": "Feature", "properties": {"electrified": "no", "name": "Leamington Spa and Coventry Line", "osmid": 4000630, "railway": "rail", "ref": "LSC1", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.547134, 52.2860402], [-1.5467158, 52.2859258], [-1.5454807, 52.2855992], [-1.5440842, 52.2852305], [-1.5434756, 52.2850673], [-1.5430777, 52.2849647], [-1.5427022, 52.2848864], [-1.5423849, 52.2848384], [-1.542071, 52.284801], [-1.5419031, 52.2847833], [-1.5415775, 52.2847629]]}}, {"id": "4000638", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 4000638, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7535668, 52.3724972], [-1.7527829, 52.3718817]]}}, {"id": "4000639", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4000639, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8024238, 52.4350847], [-1.802099, 52.4343758], [-1.8018272, 52.4337445], [-1.8016796, 52.4333778], [-1.8014878, 52.4328885], [-1.8013146, 52.4323914], [-1.8012043, 52.4320572], [-1.8011389, 52.4318461], [-1.8010469, 52.4315488], [-1.8008669, 52.4308752], [-1.8005328, 52.4293909], [-1.8004772, 52.4290555], [-1.8002519, 52.4279373], [-1.8001992, 52.4276566], [-1.8001097, 52.4272472], [-1.8000482, 52.4270038], [-1.7999708, 52.4267127], [-1.7999005, 52.426461], [-1.7997761, 52.4260383], [-1.7996769, 52.4257603], [-1.799531, 52.4253614], [-1.7994085, 52.4250389], [-1.799228, 52.4246032], [-1.7990753, 52.4242736], [-1.7989194, 52.4239456], [-1.7987958, 52.4237001], [-1.7986334, 52.4233888], [-1.7984934, 52.4231492], [-1.7983288, 52.4228715], [-1.7981677, 52.422615], [-1.7978327, 52.4221032], [-1.7976131, 52.4217898], [-1.7972807, 52.4213384], [-1.7969532, 52.420932], [-1.7967449, 52.4206837], [-1.7960598, 52.4199168], [-1.7958016, 52.4196444], [-1.7954593, 52.4193034], [-1.7949661, 52.4188343], [-1.7946941, 52.4185883], [-1.7943689, 52.4183057], [-1.7940318, 52.418028], [-1.7935526, 52.4176468], [-1.7932566, 52.4174109], [-1.7929711, 52.4172084], [-1.7922321, 52.416672], [-1.7910978, 52.4159845], [-1.7896919, 52.4151872]]}}, {"id": "4000640", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4000640, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8210121, 52.4502911], [-1.8199977, 52.4499239], [-1.8191543, 52.4496015], [-1.8186049, 52.449357], [-1.8183328, 52.4492288], [-1.8180639, 52.4490859], [-1.8172411, 52.4486474]]}}, {"id": "4000653", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "15 mph", "osmid": 4000653, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8622129, 52.4648846], [-1.8624222, 52.4649538], [-1.8625058, 52.4649802], [-1.862598, 52.4650103], [-1.8627019, 52.4650472], [-1.862788, 52.4650805], [-1.8632314, 52.4652578], [-1.8644652, 52.4657551], [-1.8658623, 52.4663295], [-1.8663427, 52.4665191], [-1.8672251, 52.4668804], [-1.868999, 52.4675982], [-1.8701826, 52.4680757], [-1.8704884, 52.4682002], [-1.8709694, 52.4684315]]}}, {"id": "4000697", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "Rugby\u2013Birmingham\u2013Stafford Line (West Coast Main Line)", "osmid": 4000697, "railway": "rail", "ref": "RBS1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6143865, 52.3941274], [-1.6139876, 52.3941516], [-1.6135078, 52.3941821], [-1.6128866, 52.3942244], [-1.6117915, 52.3942968], [-1.6113167, 52.3943255], [-1.6106365, 52.3943701], [-1.610198, 52.3944001], [-1.6096592, 52.3944332], [-1.6088696, 52.3944775], [-1.6071078, 52.3945833], [-1.6063469, 52.3946288], [-1.6050933, 52.3947083], [-1.6035485, 52.3948051], [-1.6027483, 52.3948566], [-1.6017014, 52.3949231], [-1.5998876, 52.3950378], [-1.5987035, 52.3951127], [-1.5978216, 52.3951705], [-1.5968808, 52.3952321], [-1.5963496, 52.395269], [-1.5960625, 52.3952856], [-1.5955558, 52.3953171], [-1.5951101, 52.3953446], [-1.5946876, 52.395371], [-1.5941275, 52.3954061], [-1.5917696, 52.3955563], [-1.591218, 52.3955916], [-1.5902795, 52.3956528], [-1.5898332, 52.3956806], [-1.5891647, 52.3957242], [-1.5886787, 52.3957547], [-1.5880805, 52.3957914], [-1.587473, 52.3958307], [-1.5868834, 52.3958678], [-1.584592, 52.3960151], [-1.5843168, 52.3960315], [-1.5832322, 52.3961015], [-1.5830073, 52.396114], [-1.5825314, 52.3961442], [-1.5822714, 52.396159], [-1.5814129, 52.3962147], [-1.579713, 52.3963225], [-1.5791637, 52.3963566], [-1.578644, 52.3963922], [-1.5780236, 52.3964304], [-1.5763275, 52.3965382], [-1.5760968, 52.396552], [-1.5758927, 52.3965633], [-1.5755932, 52.3965781]]}}, {"id": "4000706", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "125 mph", "name": "Rugby\u2013Birmingham\u2013Stafford Line (West Coast Main Line)", "osmid": 4000706, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3742354, 52.3805479], [-1.3730118, 52.3805125], [-1.370688, 52.3804578], [-1.3692069, 52.3804139], [-1.3656637, 52.3803087], [-1.3616326, 52.3801983], [-1.3553694, 52.3800262], [-1.3512805, 52.3798992], [-1.3463073, 52.3797595], [-1.3403411, 52.3795756], [-1.3364984, 52.3794725]]}}, {"id": "4016111", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 4016111, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0676095, 52.1297805], [-2.0660799, 52.1295322], [-2.0660024, 52.1295206], [-2.0637471, 52.1291844], [-2.0591566, 52.1285582], [-2.056545, 52.128114], [-2.0548132, 52.1277687], [-2.0529632, 52.1273592], [-2.0511238, 52.1269143]]}}, {"id": "4016112", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 4016112, "railway": "rail", "ref": "OWW", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9090251, 52.1015815], [-1.9121193, 52.101404], [-1.912496, 52.1013827], [-1.9132862, 52.1013376], [-1.9140777, 52.1012934], [-1.9164048, 52.1011534], [-1.9175738, 52.101056], [-1.918369, 52.1009723], [-1.9191754, 52.1008724], [-1.9198697, 52.100778], [-1.9206356, 52.1006514], [-1.9212958, 52.1005407], [-1.9220711, 52.1003933], [-1.9234642, 52.1000912], [-1.9249714, 52.0996971]]}}, {"id": "4016142", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "80 mph", "name": "Lickey Incline", "osmid": 4016142, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0417733, 52.3260705], [-2.041126, 52.3265055], [-2.0405903, 52.3268729], [-2.040021, 52.3272624], [-2.0396152, 52.3275333], [-2.039243, 52.3277822], [-2.0385338, 52.3282723], [-2.0380719, 52.3285881]]}}, {"id": "4110694", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "50 mph", "name": "Birmingham and Gloucester Line", "osmid": 4110694, "railway": "rail", "ref": "BAG1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9291537, 52.4567629], [-1.9284911, 52.4573791], [-1.9281531, 52.4577751], [-1.927919, 52.4581231], [-1.9277851, 52.4583702], [-1.9276978, 52.4585663], [-1.9276095, 52.4588074], [-1.9275394, 52.4590807], [-1.9274801, 52.4595076], [-1.9274335, 52.4601517], [-1.9273813, 52.460495], [-1.927218, 52.461232], [-1.9270767, 52.4618184], [-1.9269105, 52.4624062], [-1.926799, 52.462689], [-1.9267183, 52.4628847], [-1.9266357, 52.4630315], [-1.9265346, 52.4631886], [-1.9264165, 52.4633403], [-1.9262429, 52.4635418], [-1.9260455, 52.4637275], [-1.925592, 52.4641132], [-1.925112, 52.4644151], [-1.9248492, 52.4645624], [-1.9245717, 52.4646931], [-1.9241652, 52.464854], [-1.9237184, 52.4650017], [-1.9230706, 52.465165], [-1.9224694, 52.4653298]]}}, {"id": "4313354", "type": "Feature", "properties": {"osmid": 4313354, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.872863, 52.0424791], [-1.8725179, 52.0427077], [-1.8721342, 52.0429767], [-1.8709129, 52.0438466], [-1.8701256, 52.0444095], [-1.8676765, 52.0463155], [-1.8676608, 52.0463274]]}}, {"id": "4706063", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4706063, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8053238, 52.4396381], [-1.8058932, 52.4404106], [-1.8061729, 52.4407399], [-1.8064706, 52.4410841], [-1.8067197, 52.4413621], [-1.8072055, 52.4418618], [-1.8076969, 52.4423302], [-1.8082964, 52.4428779], [-1.8088866, 52.4433987], [-1.809405, 52.4438255], [-1.8100041, 52.444289]]}}, {"id": "4706064", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 4706064, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8026356, 52.4355417], [-1.8024238, 52.4350847]]}}, {"id": "4706067", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 4706067, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.803788, 52.4373802], [-1.8039308, 52.4375893]]}}, {"id": "4754988", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4754988, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8039308, 52.4375893], [-1.8041843, 52.4379646], [-1.8044867, 52.4384106], [-1.8046505, 52.4386561], [-1.8048042, 52.4388721], [-1.8052101, 52.439484]]}}, {"id": "4754991", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 4754991, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8052101, 52.439484], [-1.8053238, 52.4396381]]}}, {"id": "4841547", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4841547, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7831327, 52.4106018], [-1.7817361, 52.4093856], [-1.7812769, 52.4089626], [-1.7808098, 52.4084732], [-1.7804021, 52.4080149]]}}, {"id": "4841548", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 4841548, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7804021, 52.4080149], [-1.7803082, 52.4078945]]}}, {"id": "4854313", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 4854313, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8101796, 52.4444246], [-1.8107775, 52.4448533], [-1.8113616, 52.4452531], [-1.8125598, 52.4460031], [-1.8137887, 52.4467232], [-1.8150595, 52.4474217], [-1.8161536, 52.4479936], [-1.8166715, 52.4482558]]}}, {"id": "4900772", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Chiltern Main Line", "osmid": 4900772, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3768471, 52.1728742], [-1.3758962, 52.1722314], [-1.3749631, 52.1715843], [-1.3745291, 52.1713031], [-1.3741857, 52.1710787], [-1.3738483, 52.170863], [-1.3735266, 52.1706693], [-1.3729558, 52.1703459], [-1.3726251, 52.1701665], [-1.3722735, 52.1699878], [-1.3719701, 52.1698362], [-1.3715381, 52.1696273], [-1.3711205, 52.1694372], [-1.3707081, 52.1692619], [-1.3703528, 52.169112], [-1.3700244, 52.1689816], [-1.3694336, 52.1687645], [-1.3690286, 52.1686213], [-1.3686549, 52.1684922], [-1.366318, 52.1677421], [-1.3650555, 52.1673349], [-1.3639387, 52.1669775], [-1.3635842, 52.1668641], [-1.3630159, 52.1666797]]}}, {"id": "4900773", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Chiltern Main Line", "osmid": 4900773, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.378666, 52.1740929], [-1.3775727, 52.1733611], [-1.3774639, 52.1732815]]}}, {"id": "4900775", "type": "Feature", "properties": {"electrified": "no", "osmid": 4900775, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3635842, 52.1668641], [-1.3643619, 52.1670743]]}}, {"id": "4900777", "type": "Feature", "properties": {"electrified": "no", "osmid": 4900777, "railway": "rail", "ref": "SJT1", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.3752263, 52.1715204], [-1.3755386, 52.1717016], [-1.3757232, 52.1717889], [-1.3760216, 52.171976], [-1.377023, 52.1726658], [-1.3772559, 52.1728187], [-1.3774148, 52.1729182], [-1.3775138, 52.1729788]]}}, {"id": "8048186", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 8048186, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8455973, 52.4369951], [-1.8449495, 52.4374987], [-1.8445494, 52.4378111], [-1.8442693, 52.4380336], [-1.8432532, 52.438828], [-1.8430555, 52.4389785], [-1.8429197, 52.439084], [-1.8425509, 52.4393825], [-1.8421287, 52.4397079], [-1.8420042, 52.4398047], [-1.8417645, 52.4399929], [-1.8415605, 52.4401551], [-1.8410911, 52.4405155], [-1.8407099, 52.44081], [-1.840194, 52.4412127], [-1.8399085, 52.4414355], [-1.839303, 52.4419174], [-1.8383894, 52.4426209], [-1.8382114, 52.4427789], [-1.8378875, 52.4430337]]}}, {"id": "8048187", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 8048187, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8502427, 52.4134961], [-1.8503151, 52.4136236]]}}, {"id": "10364524", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 10364524, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8100041, 52.444289], [-1.8101796, 52.4444246]]}}, {"id": "10476419", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "Chiltern Line", "osmid": 10476419, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8757556, 52.4708529], [-1.8763537, 52.4712374]]}}, {"id": "10476452", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "30 mph", "name": "Birmingham and Gloucester Line", "osmid": 10476452, "railway": "rail", "ref": "BAG1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9137227, 52.4701895], [-1.9130923, 52.471101], [-1.9129557, 52.4713273]]}}, {"id": "11019456", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Chiltern Line", "osmid": 11019456, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8763537, 52.4712374], [-1.8768187, 52.4715457], [-1.8770638, 52.4717137], [-1.8777102, 52.4721859], [-1.87803, 52.4724332]]}}, {"id": "12614437", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 12614437, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7537541, 52.372658], [-1.7535668, 52.3724972]]}}, {"id": "12614438", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line, Up Dorridge", "osmid": 12614438, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7692802, 52.387868], [-1.7687392, 52.387154], [-1.7679828, 52.3862205], [-1.7673117, 52.3854334], [-1.7668818, 52.3849397], [-1.7666476, 52.3846864], [-1.7659993, 52.3839987], [-1.7658034, 52.3838012], [-1.7653374, 52.3833537], [-1.7649808, 52.3830272], [-1.7643483, 52.3824705], [-1.763185, 52.3814758], [-1.7625021, 52.3808775], [-1.7621248, 52.3805591], [-1.7610852, 52.3796627], [-1.7602696, 52.3789688], [-1.7599808, 52.3787229], [-1.7593332, 52.3781792], [-1.7588763, 52.3777823], [-1.758507, 52.3774606], [-1.7582032, 52.3771889], [-1.7579477, 52.3769528], [-1.7575169, 52.376521], [-1.7571896, 52.3761707], [-1.7569317, 52.3758868], [-1.756327, 52.3752215], [-1.7558947, 52.3747471], [-1.7557315, 52.3745624], [-1.7555205, 52.3743416], [-1.7552659, 52.374073], [-1.7550059, 52.3738124], [-1.7543697, 52.3732061], [-1.7542164, 52.3730697], [-1.7537541, 52.372658]]}}, {"id": "12627368", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 12627368, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8319487, 52.337787], [-1.8321306, 52.3378293]]}}, {"id": "12627370", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 12627370, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8321306, 52.3378293], [-1.8324934, 52.3379149], [-1.8329193, 52.3380177], [-1.8334701, 52.3381508], [-1.8339943, 52.3382791], [-1.8344015, 52.3383783], [-1.8353438, 52.3386055], [-1.8356919, 52.3386907], [-1.8361467, 52.3387997], [-1.836537, 52.338893], [-1.8367661, 52.3389479], [-1.837004, 52.3390067], [-1.8373411, 52.3390906], [-1.8376071, 52.3391595], [-1.8378344, 52.339221], [-1.8381098, 52.3393013], [-1.8384364, 52.3394018], [-1.8386687, 52.3394815], [-1.8389317, 52.3395746], [-1.8391918, 52.3396715], [-1.8394289, 52.3397639], [-1.8396449, 52.3398559], [-1.83983, 52.339935], [-1.8400289, 52.3400253], [-1.8402399, 52.340128], [-1.8404102, 52.3402198], [-1.8405865, 52.3403132], [-1.8408064, 52.3404349], [-1.8410373, 52.34057], [-1.8412213, 52.340682], [-1.8413852, 52.3407865], [-1.8415426, 52.3408896], [-1.8416636, 52.3409706], [-1.8418426, 52.3410913], [-1.8419894, 52.3411948], [-1.8421319, 52.3413042], [-1.8422793, 52.3414184], [-1.842401, 52.3415193], [-1.8425219, 52.3416229], [-1.8426171, 52.3417066], [-1.8426983, 52.3417818], [-1.8427663, 52.3418487]]}}, {"id": "13468977", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 13468977, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7835155, 52.4109237], [-1.7831327, 52.4106018]]}}, {"id": "13468978", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 13468978, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7844959, 52.4117706], [-1.7835155, 52.4109237]]}}, {"id": "13864099", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 13864099, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.851557, 52.4158028], [-1.8517632, 52.4161681]]}}, {"id": "13864101", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 13864101, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8503151, 52.4136236], [-1.851557, 52.4158028]]}}, {"id": "14478625", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 14478625, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7839089, 52.2930096], [-1.783917, 52.2931533]]}}, {"id": "14478626", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 14478626, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.783917, 52.2931533], [-1.7839452, 52.2934627], [-1.783958, 52.2935935], [-1.7840003, 52.2939011], [-1.7840339, 52.2941078], [-1.7840627, 52.2942731], [-1.7840982, 52.2944404], [-1.7841382, 52.2946154], [-1.7841633, 52.2947193], [-1.7841868, 52.2948051], [-1.7842342, 52.2949873], [-1.7842934, 52.2951911], [-1.784359, 52.2954039], [-1.7844409, 52.2956401], [-1.7845183, 52.295848], [-1.7846005, 52.2960603], [-1.7846714, 52.2962328], [-1.7847701, 52.2964523], [-1.7849324, 52.2967936], [-1.7850216, 52.2969765], [-1.7850985, 52.2971178], [-1.7851919, 52.297284], [-1.785294, 52.2974576], [-1.7853991, 52.2976306], [-1.7854816, 52.297763], [-1.7855627, 52.2978868], [-1.7856459, 52.2980124], [-1.7857418, 52.2981506], [-1.785808, 52.2982498], [-1.7858918, 52.2983671], [-1.7859604, 52.298468], [-1.7860734, 52.2986284], [-1.7861888, 52.2987875], [-1.786578, 52.2993439], [-1.7868095, 52.2996676], [-1.7870383, 52.2999886], [-1.7872016, 52.3002227], [-1.7873659, 52.3004559], [-1.7875728, 52.3007462], [-1.7877494, 52.3009996], [-1.787884, 52.301193], [-1.787992, 52.3013416], [-1.7881923, 52.301628], [-1.7884291, 52.3019647], [-1.7887722, 52.3024465], [-1.7889249, 52.3026603], [-1.7890704, 52.3028695], [-1.7893623, 52.3032756], [-1.7895036, 52.303474], [-1.7896513, 52.3036833], [-1.7897772, 52.3038607], [-1.7898724, 52.3039974], [-1.7899991, 52.3041713], [-1.7900963, 52.3043005], [-1.7902014, 52.3044396], [-1.7903148, 52.3045848], [-1.7904711, 52.3047822], [-1.7905819, 52.3049218], [-1.7907625, 52.3051418], [-1.7909319, 52.3053415], [-1.7910687, 52.3054989], [-1.7911866, 52.3056332], [-1.791315, 52.305775], [-1.7914544, 52.3059255], [-1.7915993, 52.3060834], [-1.7916784, 52.3061668], [-1.7919942, 52.3065001]]}}, {"id": "15905118", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "15 mph", "name": "Cross-City Line", "osmid": 15905118, "railway": "rail", "ref": "BEA", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9917919, 52.3619343], [-1.9919467, 52.3617169], [-1.9920496, 52.3615491], [-1.9920983, 52.3614666], [-1.9921462, 52.3613817], [-1.9922167, 52.3612561], [-1.992263, 52.3611579], [-1.9923084, 52.3610502], [-1.9923381, 52.3609645], [-1.9923646, 52.3608538], [-1.99238, 52.3607055], [-1.9923746, 52.3605965], [-1.9923597, 52.3605039], [-1.9923391, 52.3603944], [-1.992308, 52.3602706], [-1.9922828, 52.3601983], [-1.9922603, 52.3601352], [-1.9922115, 52.360021], [-1.9921601, 52.3599212], [-1.9921048, 52.3598391], [-1.9920577, 52.359769], [-1.9919867, 52.3596787], [-1.9919069, 52.3595812], [-1.9918157, 52.3594902], [-1.991717, 52.3593979], [-1.9916281, 52.3593233], [-1.9915114, 52.3592337], [-1.9914261, 52.3591738], [-1.9913072, 52.3590984], [-1.9912275, 52.359052]]}}, {"id": "16774696", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 16774696, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.87555, 52.468819], [-1.8764411, 52.4682239]]}}, {"id": "17266093", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "10 mph", "name": "Lifford West Junction to East Junction Line", "osmid": 17266093, "railway": "rail", "ref": "LEL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9264388, 52.4195861], [-1.9264379, 52.4194464], [-1.9264319, 52.4193623], [-1.9264242, 52.4193078], [-1.9264093, 52.4192441], [-1.9263824, 52.4191555], [-1.9263495, 52.4190559], [-1.9263081, 52.4189711], [-1.9262474, 52.4188663], [-1.9261928, 52.4187891], [-1.9261334, 52.4187122], [-1.9260809, 52.4186478], [-1.9260188, 52.4185802], [-1.9259533, 52.4185145], [-1.9258943, 52.4184621], [-1.9258292, 52.4184072], [-1.9257588, 52.4183527], [-1.9256928, 52.4183043], [-1.9256236, 52.4182567], [-1.9255554, 52.4182137], [-1.9254768, 52.4181686], [-1.9253968, 52.4181261], [-1.9253249, 52.4180898], [-1.925198, 52.4180295], [-1.9250784, 52.4179785], [-1.9249267, 52.4179182], [-1.9247873, 52.4178749], [-1.9246162, 52.4178269], [-1.9244708, 52.4177914], [-1.924228, 52.4177414], [-1.9240978, 52.4177203], [-1.9239678, 52.4177054], [-1.9238088, 52.4176889], [-1.9236602, 52.4176776], [-1.9234488, 52.4176734], [-1.9233029, 52.4176742], [-1.923146, 52.4176802], [-1.9230314, 52.4176879], [-1.9229186, 52.4176983], [-1.9227734, 52.4177131], [-1.9226381, 52.4177355], [-1.922476, 52.4177621], [-1.9223382, 52.4177884], [-1.9221787, 52.4178266], [-1.922033, 52.4178686]]}}, {"id": "17505729", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 17505729, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.87555, 52.468819], [-1.8753669, 52.4689426]]}}, {"id": "18754131", "type": "Feature", "properties": {"bridge": "yes", "name": "Cotswold Line", "osmid": 18754131, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0511238, 52.1269143], [-2.0509765, 52.1268753]]}}, {"id": "18754133", "type": "Feature", "properties": {"electrified": "no", "name": "Cotswold Line", "osmid": 18754133, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-2.0509765, 52.1268753], [-2.0490376, 52.1263542], [-2.0471396, 52.1257927], [-2.043071, 52.1244197], [-2.0403765, 52.1234357]]}}, {"id": "19835563", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "West Coast Main Line", "osmid": 19835563, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7596286, 52.4690857], [-1.7590251, 52.4687933]]}}, {"id": "19835564", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "Rugby - Birmingham - Stafford Line", "osmid": 19835564, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7532669, 52.4660266], [-1.7523754, 52.4655961], [-1.7517456, 52.4652953], [-1.7509656, 52.4649181], [-1.7497265, 52.4643213], [-1.7479863, 52.4634793], [-1.7444276, 52.4617477], [-1.7407659, 52.4599849], [-1.7370798, 52.4581952], [-1.7365502, 52.4579299], [-1.7357588, 52.4575263], [-1.7350498, 52.4571543], [-1.7343478, 52.4567764], [-1.7335757, 52.4563489], [-1.7327508, 52.4558765], [-1.7323455, 52.4556421], [-1.7317387, 52.4552959], [-1.7305932, 52.4545908], [-1.7304421, 52.4544955], [-1.7294583, 52.4538666], [-1.7283932, 52.4531609], [-1.7282159, 52.4530203]]}}, {"id": "21588531", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Didcot and Chester Line", "osmid": 21588531, "railway": "rail", "ref": "DCL", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.869351, 52.4676391], [-1.8691016, 52.4675388], [-1.8681451, 52.4671541], [-1.8670283, 52.4666975], [-1.8657396, 52.4661738], [-1.8627992, 52.4649894], [-1.8612608, 52.4643769], [-1.8603188, 52.4639715], [-1.859227, 52.4634934], [-1.8585486, 52.4632073], [-1.85791, 52.4629669], [-1.8574239, 52.4627933], [-1.8569955, 52.4626476], [-1.8566506, 52.4625198], [-1.8563958, 52.4624258], [-1.8535751, 52.4612373], [-1.8524595, 52.460725]]}}, {"id": "21588533", "type": "Feature", "properties": {"electrified": "no", "osmid": 21588533, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.848551, 52.4584893], [-1.8483162, 52.4583141], [-1.8481659, 52.4581976], [-1.8479628, 52.4579809]]}}, {"id": "21818385", "type": "Feature", "properties": {"osmid": 21818385, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8475433, 52.4569343], [-1.8475399, 52.4567612], [-1.847534, 52.4565634], [-1.8475285, 52.4564927], [-1.8475016, 52.4564027]]}}, {"id": "22951651", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "River Blythe Viaduct", "osmid": 22951651, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6872089, 52.4191282], [-1.686455, 52.4186734]]}}, {"id": "22951652", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "West Coast Main Line", "osmid": 22951652, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.686455, 52.4186734], [-1.6846767, 52.4175813], [-1.6842987, 52.4173459]]}}, {"id": "23433980", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23433980, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8823448, 52.4627472], [-1.8824199, 52.4626018]]}}, {"id": "23433981", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23433981, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8824199, 52.4626018], [-1.8824927, 52.4624575], [-1.8826034, 52.4622365]]}}, {"id": "23434011", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23434011, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8812249, 52.4644706], [-1.8814733, 52.464141], [-1.8816404, 52.4639048], [-1.8818616, 52.4635664], [-1.8820011, 52.4633429], [-1.8821793, 52.4630411], [-1.8823448, 52.4627472]]}}, {"id": "23434012", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23434012, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8811349, 52.4645823], [-1.8812249, 52.4644706]]}}, {"id": "23437570", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23437570, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8834912, 52.4585129], [-1.883492, 52.4583065], [-1.8834912, 52.4581067], [-1.8834845, 52.4578701], [-1.8834611, 52.4575186], [-1.8834393, 52.457302], [-1.8833939, 52.4568673], [-1.8833613, 52.4565709]]}}, {"id": "23437771", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23437771, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8826878, 52.4620553], [-1.8827973, 52.4617881], [-1.8829192, 52.4614672], [-1.8829552, 52.4613567], [-1.8830991, 52.4609195]]}}, {"id": "23437772", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23437772, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8826034, 52.4622365], [-1.8826878, 52.4620553]]}}, {"id": "23528857", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23528857, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5713604, 52.2861597], [-1.5706612, 52.2860619]]}}, {"id": "23528858", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23528858, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5747789, 52.2864763], [-1.5742752, 52.2864445], [-1.5735067, 52.2863892], [-1.5730578, 52.286349], [-1.5721624, 52.2862567], [-1.5713604, 52.2861597]]}}, {"id": "23528859", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23528859, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5799844, 52.2866131], [-1.5797571, 52.2866081]]}}, {"id": "23528861", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23528861, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5908005, 52.2867988], [-1.5890322, 52.2867672], [-1.5851133, 52.2867007], [-1.5847916, 52.286697], [-1.5818494, 52.2866468], [-1.5799844, 52.2866131]]}}, {"id": "23528876", "type": "Feature", "properties": {"electrified": "no", "name": "Leamington Spa and Coventry Line", "osmid": 23528876, "railway": "rail", "ref": "LSC2", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5548801, 52.2934501], [-1.5557709, 52.2956958], [-1.5560319, 52.2962418], [-1.556337, 52.2969838], [-1.5566586, 52.2977755]]}}, {"id": "23528893", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "90 mph", "name": "Chiltern Main Line", "osmid": 23528893, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5238442, 52.2800373], [-1.5233364, 52.2795888], [-1.5228511, 52.2791565], [-1.5225431, 52.2788747], [-1.5222322, 52.2785687]]}}, {"id": "23714108", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23714108, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5626315, 52.2847103], [-1.5622822, 52.2846711], [-1.5620018, 52.2846401], [-1.5611485, 52.2845608], [-1.5605529, 52.2845203], [-1.5600057, 52.2844932], [-1.5595277, 52.2844783], [-1.5589209, 52.28447], [-1.5583685, 52.284472], [-1.5570092, 52.2845096], [-1.5531553, 52.2847095], [-1.5518598, 52.2847724], [-1.5507888, 52.284815], [-1.5500678, 52.2848389], [-1.5495971, 52.2848526]]}}, {"id": "23714117", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 23714117, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.601176, 52.2865241], [-1.6007916, 52.2865849], [-1.6003501, 52.2866478], [-1.5997299, 52.2867258], [-1.5991651, 52.2867834], [-1.5987356, 52.2868198], [-1.5981594, 52.2868555], [-1.5977493, 52.2868757], [-1.5973239, 52.2868885]]}}, {"id": "23736949", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23736949, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8831574, 52.4545016], [-1.8831493, 52.4542746]]}}, {"id": "23736950", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 23736950, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8831493, 52.4542746], [-1.8831387, 52.4538564], [-1.8831457, 52.4536617], [-1.8831485, 52.4534272], [-1.8831557, 52.4532045], [-1.8831707, 52.4529788], [-1.8831942, 52.452643], [-1.8832412, 52.4522646], [-1.8833028, 52.4518734], [-1.8833727, 52.4514985], [-1.8834132, 52.4513125], [-1.8835504, 52.4507326], [-1.8836177, 52.4504953], [-1.8837119, 52.4501807], [-1.8838292, 52.4498314], [-1.8839255, 52.449566], [-1.8840808, 52.449176], [-1.8841584, 52.4489929], [-1.8842529, 52.4487669], [-1.8844043, 52.4484402], [-1.8845097, 52.4482282], [-1.8847408, 52.4477836], [-1.8848391, 52.4476084], [-1.8851731, 52.4470371], [-1.8854073, 52.4466882]]}}, {"id": "24019081", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "110 mph", "name": "Trent Valley Line", "osmid": 24019081, "railway": "rail", "ref": "LEC2", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3723611, 52.4286601], [-1.3732, 52.4290069], [-1.3739839, 52.4293622], [-1.3749293, 52.4298478], [-1.3759473, 52.4304292], [-1.3770283, 52.4311314], [-1.3779622, 52.4318359], [-1.3786081, 52.43238], [-1.3792134, 52.432949], [-1.3800289, 52.4338331], [-1.3805946, 52.4345727], [-1.3826765, 52.4376564], [-1.3831938, 52.4383577], [-1.3837549, 52.4390535], [-1.3841362, 52.4394919], [-1.384799, 52.4401757], [-1.3854125, 52.4407682], [-1.3863676, 52.4416298], [-1.3873663, 52.4424524], [-1.3884012, 52.4432124], [-1.38963, 52.4440138], [-1.3918756, 52.4453864]]}}, {"id": "24019083", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "Trent Valley Line", "osmid": 24019083, "railway": "rail", "ref": "LEC2", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.3585859, 52.4239081], [-1.3588098, 52.423975]]}}, {"id": "24020635", "type": "Feature", "properties": {"electrified": "no", "name": "Leamington Spa and Coventry Line", "osmid": 24020635, "railway": "rail", "ref": "LSC2", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5645881, 52.3170101], [-1.5647595, 52.317446], [-1.5651003, 52.3181699], [-1.5654529, 52.3190832], [-1.5659055, 52.3201023], [-1.5667013, 52.3220189], [-1.566942, 52.3226529]]}}, {"id": "24020636", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Leamington Spa and Coventry Line", "osmid": 24020636, "railway": "rail", "ref": "LSC2", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5645161, 52.316846], [-1.5645881, 52.3170101]]}}, {"id": "24153402", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 24153402, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7693469, 52.3879629], [-1.7692802, 52.387868]]}}, {"id": "24153403", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 24153403, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7718298, 52.3915601], [-1.7716787, 52.3913143], [-1.771323, 52.390787], [-1.7708723, 52.3901043], [-1.7704158, 52.3894338], [-1.7699385, 52.3887526], [-1.7693469, 52.3879629]]}}, {"id": "24209030", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 24209030, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7785024, 52.4053341], [-1.7783616, 52.4050901]]}}, {"id": "24209031", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 24209031, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7803082, 52.4078945], [-1.7799744, 52.4074779], [-1.7797575, 52.4071896], [-1.7795464, 52.4069194], [-1.7791548, 52.4063603], [-1.7787485, 52.4057397], [-1.7785024, 52.4053341]]}}, {"id": "24215848", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 24215848, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7846072, 52.411861], [-1.7844959, 52.4117706]]}}, {"id": "24215849", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 24215849, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7872566, 52.4137843], [-1.7865461, 52.413298], [-1.785563, 52.4125851], [-1.7846072, 52.411861]]}}, {"id": "24269209", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "name": "Air Rail Link", "osmid": 24269209, "railway": "tram", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7326975, 52.4529607], [-1.7326564, 52.4529764], [-1.7320937, 52.4532018], [-1.7319869, 52.4532328], [-1.7319154, 52.4532448], [-1.7317426, 52.4532515], [-1.7315885, 52.4532414], [-1.7314664, 52.4532216], [-1.7313123, 52.4531817], [-1.7311771, 52.4531352], [-1.7310286, 52.453073], [-1.7306746, 52.4528854], [-1.7302259, 52.4526568], [-1.729793, 52.4524072], [-1.729407, 52.4521819], [-1.7290319, 52.4519542], [-1.728768, 52.4517719], [-1.7285604, 52.4516103], [-1.7279157, 52.4511014], [-1.7276655, 52.4509055], [-1.7273339, 52.4506333], [-1.7271091, 52.4504733], [-1.7270241, 52.4504343], [-1.7269165, 52.4504035], [-1.7268444, 52.4503889], [-1.7267777, 52.4503798], [-1.7266793, 52.450371], [-1.7265788, 52.4503794], [-1.7263522, 52.4504238], [-1.7262821, 52.4504381]]}}, {"id": "24368822", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "West Coast Main Line", "osmid": 24368822, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7282159, 52.4530203], [-1.7276419, 52.4526213]]}}, {"id": "24368824", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "100 mph", "name": "West Coast Main Line", "osmid": 24368824, "railway": "rail", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.7276419, 52.4526213], [-1.7270228, 52.4521854], [-1.7266975, 52.4519481], [-1.7263454, 52.4516943], [-1.7259553, 52.451406]]}}, {"id": "24393753", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 24393753, "railway": "rail", "ref": "36B", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7261819, 52.3347262], [-1.7261558, 52.3345025]]}}, {"id": "24393754", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 24393754, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7262917, 52.3373576], [-1.7263199, 52.3370297], [-1.726332, 52.3368073], [-1.7263409, 52.3364651], [-1.726336, 52.3361972], [-1.7263258, 52.3358585], [-1.7263133, 52.3356384], [-1.7262927, 52.3354451], [-1.726251, 52.3351951], [-1.7262268, 52.3349936], [-1.7262006, 52.3348597], [-1.7261819, 52.3347262]]}}, {"id": "24547567", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Camp Hill", "osmid": 24547567, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9026335, 52.4350082], [-1.9029711, 52.4348087], [-1.9032334, 52.4346486], [-1.9034184, 52.4345322], [-1.9036713, 52.4343662], [-1.9040449, 52.4341081], [-1.9042734, 52.4339466], [-1.9044572, 52.4338108], [-1.9048256, 52.4335277], [-1.9050809, 52.4333203], [-1.9052542, 52.4331799], [-1.905683, 52.4328015], [-1.9061151, 52.4323888], [-1.9062165, 52.4322866], [-1.9065349, 52.4319438], [-1.9066983, 52.4317638], [-1.9068983, 52.4315215], [-1.907108, 52.4312625], [-1.9072765, 52.4310435], [-1.9075252, 52.4307005], [-1.907675, 52.4304781], [-1.9078292, 52.4302276], [-1.9080306, 52.4298842], [-1.9081537, 52.4296429], [-1.9087367, 52.428499], [-1.9089767, 52.42802], [-1.9091732, 52.4276398], [-1.9093129, 52.4273853], [-1.9095189, 52.4270324], [-1.9096807, 52.4267771], [-1.9097712, 52.4266416], [-1.9100089, 52.4263048], [-1.910165, 52.426116], [-1.9103426, 52.4258869], [-1.9105242, 52.4256636], [-1.9106583, 52.4255058], [-1.9108643, 52.4252728], [-1.9110263, 52.4250914], [-1.9112785, 52.4248215], [-1.9116913, 52.4244061], [-1.9122663, 52.4238801], [-1.9126949, 52.4235141], [-1.9128762, 52.4233711], [-1.9130459, 52.4232381], [-1.9131884, 52.4231259], [-1.9135914, 52.4228274], [-1.9138735, 52.4226225], [-1.9140328, 52.4225122], [-1.9141982, 52.4224007], [-1.9144914, 52.4222036], [-1.9146415, 52.4221106], [-1.9148787, 52.4219607], [-1.91577, 52.4214272], [-1.9160232, 52.421277], [-1.9167708, 52.4208211], [-1.9172271, 52.4205419], [-1.9175811, 52.4203353], [-1.9181816, 52.4199831], [-1.9183708, 52.419869], [-1.9186951, 52.4196729], [-1.9187859, 52.419618]]}}, {"id": "24547568", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 24547568, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.9024358, 52.4351205], [-1.9026335, 52.4350082]]}}, {"id": "24682708", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 24682708, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7746186, 52.39688], [-1.7745306, 52.3967028]]}}, {"id": "24682709", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 24682709, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7783616, 52.4050901], [-1.7782496, 52.4049088], [-1.7781074, 52.40466], [-1.7778438, 52.4041632], [-1.7774279, 52.4032947], [-1.7760783, 52.4001239], [-1.7752993, 52.3983808], [-1.7746186, 52.39688]]}}, {"id": "24803186", "type": "Feature", "properties": {"bridge": "viaduct", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803186, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8267047, 52.3361045], [-1.8268821, 52.3361871], [-1.8270682, 52.3362737], [-1.8273509, 52.3363973]]}}, {"id": "24803187", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803187, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8273509, 52.3363973], [-1.8276273, 52.3365167], [-1.8278932, 52.336625], [-1.8281393, 52.336719], [-1.8283713, 52.3368031], [-1.8285807, 52.3368776], [-1.8287711, 52.3369413], [-1.8289518, 52.3370002], [-1.8291679, 52.3370684], [-1.8294102, 52.3371404], [-1.8296085, 52.3371987], [-1.8298081, 52.337254], [-1.8300815, 52.3373269], [-1.8304198, 52.3374128], [-1.8309749, 52.3375502], [-1.8313647, 52.3376436], [-1.8319487, 52.337787]]}}, {"id": "24803261", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803261, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8226042, 52.3329953], [-1.8226543, 52.3330524]]}}, {"id": "24803262", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803262, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8226543, 52.3330524], [-1.8227817, 52.333204], [-1.8229154, 52.3333561], [-1.8230133, 52.3334631], [-1.823139, 52.333593], [-1.8232791, 52.3337346], [-1.8234072, 52.3338591], [-1.8235601, 52.3340026], [-1.8236909, 52.3341215], [-1.8238056, 52.334221], [-1.8239179, 52.3343178], [-1.8240405, 52.3344198], [-1.8241581, 52.334514], [-1.8242756, 52.3346063], [-1.8244139, 52.3347111], [-1.8245515, 52.3348153], [-1.8249009, 52.3350611], [-1.8251043, 52.335198], [-1.8254178, 52.3353959], [-1.8256265, 52.3355216], [-1.8258542, 52.3356545], [-1.8260817, 52.3357822], [-1.8262343, 52.3358629], [-1.8264906, 52.3359968], [-1.8267047, 52.3361045]]}}, {"id": "24803263", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803263, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8210409, 52.3285388], [-1.8210433, 52.3286271]]}}, {"id": "24803264", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 24803264, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8210433, 52.3286271], [-1.8210529, 52.3288277], [-1.8210636, 52.3290875], [-1.8210811, 52.3293092], [-1.8210992, 52.3295263], [-1.8211233, 52.3297373], [-1.8211495, 52.329923], [-1.8211756, 52.3300602], [-1.8211957, 52.3301627], [-1.8212298, 52.3303085], [-1.8212649, 52.3304574], [-1.8212914, 52.3305531], [-1.8213304, 52.3306853], [-1.8213753, 52.3308266], [-1.8214112, 52.3309242], [-1.8214587, 52.3310485], [-1.8214989, 52.3311508], [-1.8215405, 52.3312511], [-1.8215893, 52.3313608], [-1.8216591, 52.3315141], [-1.8217211, 52.3316404], [-1.82178, 52.331756], [-1.821855, 52.3318942], [-1.8219471, 52.3320527], [-1.8220196, 52.3321746], [-1.8220741, 52.3322639], [-1.8221551, 52.332386], [-1.8222561, 52.3325315], [-1.822347, 52.3326587], [-1.8224341, 52.3327785], [-1.8225264, 52.3328956], [-1.8226042, 52.3329953]]}}, {"id": "24854092", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 24854092, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8832446, 52.4554109], [-1.8832343, 52.4553163]]}}, {"id": "24854093", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 24854093, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8832343, 52.4553163], [-1.8832113, 52.4550787], [-1.8831803, 52.4547691], [-1.8831574, 52.4545016]]}}, {"id": "24854095", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 24854095, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8833458, 52.4564373], [-1.8833055, 52.4559431], [-1.8832613, 52.4555749], [-1.8832446, 52.4554109]]}}, {"id": "24854096", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "St Andrews Junction to Kings Norton Line", "osmid": 24854096, "railway": "rail", "ref": "SKN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8833613, 52.4565709], [-1.8833458, 52.4564373]]}}, {"id": "24859036", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 24859036, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7262802, 52.3374855], [-1.7262917, 52.3373576]]}}, {"id": "24859037", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Line", "osmid": 24859037, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7257883, 52.3417839], [-1.7258271, 52.3415551], [-1.7258614, 52.341318], [-1.7258988, 52.3410333], [-1.7259286, 52.340781], [-1.7259531, 52.3405827], [-1.7259748, 52.3403582], [-1.7260439, 52.3397268], [-1.7261007, 52.3391592], [-1.7261286, 52.3389535], [-1.7261598, 52.3386581], [-1.7262802, 52.3374855]]}}, {"id": "24990386", "type": "Feature", "properties": {"bridge": "yes", "electrified": "contact_line", "frequency": "50", "maxspeed": "60 mph", "name": "Cross-City Line", "osmid": 24990386, "railway": "rail", "ref": "BAG1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9366764, 52.4430665], [-1.9367982, 52.443234]]}}, {"id": "24990387", "type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "maxspeed": "60 mph", "name": "Cross-City Line", "osmid": 24990387, "railway": "rail", "ref": "BAG1", "type": "way", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9376398, 52.4449742], [-1.9380033, 52.4461542], [-1.9380528, 52.4466594]]}}, {"id": "25018259", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25018259, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8451429, 52.4002487], [-1.8451237, 52.4003621]]}}, {"id": "25018260", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25018260, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8451237, 52.4003621], [-1.8451029, 52.4004905], [-1.8450806, 52.4006384], [-1.8450617, 52.4007863], [-1.845042, 52.4009744], [-1.845026, 52.4011452], [-1.8450115, 52.401371], [-1.8450022, 52.4015186], [-1.8449941, 52.4018296], [-1.8450007, 52.40203], [-1.8450137, 52.4023075], [-1.8450249, 52.4024647], [-1.8450311, 52.4025512], [-1.8450576, 52.4028683], [-1.8450868, 52.4030724], [-1.8451241, 52.4033166], [-1.8451675, 52.4035682], [-1.8452312, 52.4038583], [-1.8452889, 52.4040853], [-1.8453484, 52.4043079], [-1.8454071, 52.4045097], [-1.8454527, 52.4046393], [-1.8454767, 52.4047123], [-1.8455035, 52.4047906], [-1.8455512, 52.4049309], [-1.845674, 52.4052584], [-1.845737, 52.4054073], [-1.8458408, 52.4056498], [-1.8459319, 52.4058544], [-1.846049, 52.4060949], [-1.8461111, 52.4062182], [-1.846212, 52.4064091], [-1.8464263, 52.4067979], [-1.8464956, 52.4069137], [-1.8466753, 52.4072503]]}}, {"id": "25018886", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25018886, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.855934, 52.3886509], [-1.8558267, 52.3887276]]}}, {"id": "25018887", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25018887, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8558267, 52.3887276], [-1.8553375, 52.3890802], [-1.8544578, 52.3897126], [-1.8533454, 52.3905127], [-1.8530064, 52.3907598], [-1.8526771, 52.3909974], [-1.8523949, 52.3911981], [-1.8520348, 52.3914532], [-1.8514322, 52.3918816], [-1.8512253, 52.3920335], [-1.8510415, 52.392161], [-1.8508033, 52.3923565], [-1.8505924, 52.3925103], [-1.8503058, 52.3927198], [-1.8501959, 52.3928021], [-1.850129, 52.3928522], [-1.8499965, 52.3929553], [-1.8498636, 52.3930568], [-1.8497411, 52.3931552], [-1.8494994, 52.3933543], [-1.8492872, 52.3935353], [-1.849102, 52.3936997], [-1.8489421, 52.393845], [-1.8487873, 52.3939917], [-1.848642, 52.3941299], [-1.8484655, 52.3942983], [-1.8483504, 52.3944148], [-1.8482291, 52.3945415], [-1.8481234, 52.39465], [-1.8480023, 52.3947812], [-1.8478855, 52.39491], [-1.8477575, 52.395058], [-1.8476303, 52.3952046], [-1.8475162, 52.3953352]]}}, {"id": "25069728", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 25069728, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7221228, 52.3238346], [-1.7220829, 52.3237562]]}}, {"id": "25069729", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "100 mph", "name": "Chiltern Main Line", "osmid": 25069729, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.7225238, 52.3247758], [-1.7224179, 52.324494], [-1.7221228, 52.3238346]]}}, {"id": "25098687", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 25098687, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8049725, 52.314186], [-1.8051079, 52.3142331]]}}, {"id": "25098688", "type": "Feature", "properties": {"electrified": "no", "name": "Birmingham to Stratford Line", "osmid": 25098688, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8051079, 52.3142331], [-1.8057116, 52.3144391], [-1.8060224, 52.3145407], [-1.8063529, 52.3146515], [-1.806817, 52.314802], [-1.807224, 52.3149315], [-1.8075268, 52.3150254], [-1.8077885, 52.3151061], [-1.8082049, 52.3152367], [-1.8086373, 52.3153688], [-1.8089035, 52.3154508], [-1.8092884, 52.3155721], [-1.809767, 52.3157226], [-1.8100737, 52.3158177], [-1.8103853, 52.3159133], [-1.8107074, 52.3160128], [-1.8110547, 52.3161186], [-1.8113761, 52.3162165], [-1.8117337, 52.3163248], [-1.8120666, 52.3164248], [-1.8122402, 52.3164804], [-1.8126961, 52.3166192], [-1.8131324, 52.3167549], [-1.8134375, 52.3168505], [-1.8140704, 52.3170471], [-1.8143643, 52.3171419], [-1.8146514, 52.317236], [-1.8149774, 52.3173491], [-1.8152233, 52.3174401], [-1.81549, 52.3175434], [-1.8157357, 52.3176441], [-1.8160057, 52.317764], [-1.8161614, 52.3178381]]}}, {"id": "25113253", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25113253, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8548417, 52.4289122], [-1.8547169, 52.4291157], [-1.8545901, 52.4293079], [-1.8544737, 52.4294789], [-1.8542843, 52.4297323], [-1.8541585, 52.4298988], [-1.8540149, 52.4300787], [-1.8538595, 52.4302654], [-1.8537247, 52.4304183], [-1.8535433, 52.4306176], [-1.8532975, 52.4308688], [-1.8530796, 52.4310793], [-1.8529085, 52.4312349], [-1.8527558, 52.4313649], [-1.8525781, 52.4315211], [-1.852341, 52.4317187], [-1.8520033, 52.4319919], [-1.8516736, 52.4322497], [-1.8500525, 52.4335247], [-1.8499548, 52.4336004], [-1.8490791, 52.4342897], [-1.8487066, 52.4345815], [-1.848516, 52.4347211], [-1.8482158, 52.4349511], [-1.8479254, 52.4351729], [-1.8476616, 52.4353818], [-1.8473503, 52.4356246]]}}, {"id": "25113254", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "60 mph", "name": "Birmingham to Stratford Line", "osmid": 25113254, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.8549005, 52.4288118], [-1.8548417, 52.4289122]]}}, {"id": "25196464", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 25196464, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5973239, 52.2868885], [-1.5970239, 52.2868976]]}}, {"id": "25197183", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "osmid": 25197183, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5343777, 52.2845664], [-1.5342195, 52.2845479]]}}, {"id": "25201609", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Chiltern Main Line", "osmid": 25201609, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.6288665, 52.2929759], [-1.6285301, 52.2928294]]}}, {"id": "25201610", "type": "Feature", "properties": {"electrified": "no", "name": "Chiltern Main Line", "osmid": 25201610, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.635953, 52.2955792], [-1.6349714, 52.2952782], [-1.6343381, 52.2950841], [-1.6335493, 52.2948176], [-1.6330533, 52.2946475], [-1.6321962, 52.2943406], [-1.6313541, 52.2940274], [-1.6308289, 52.293822], [-1.6303896, 52.2936444], [-1.6294352, 52.2932386], [-1.6288665, 52.2929759]]}}, {"id": "25312861", "type": "Feature", "properties": {"bridge": "yes", "electrified": "no", "name": "Coventry to Nuneaton Line", "osmid": 25312861, "railway": "rail", "ref": "CNN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5257431, 52.4118363], [-1.5255996, 52.4119466]]}}, {"id": "25312863", "type": "Feature", "properties": {"electrified": "no", "name": "Coventry to Nuneaton Line", "osmid": 25312863, "railway": "rail", "ref": "CNN", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.5255996, 52.4119466], [-1.5253529, 52.4121304], [-1.5251049, 52.4123015], [-1.5246486, 52.412584], [-1.5240076, 52.4129466], [-1.5231095, 52.413446]]}}, {"id": "25332192", "type": "Feature", "properties": {"electrified": "no", "maxspeed": "70 mph", "name": "Chiltern Main Line", "osmid": 25332192, "railway": "rail", "type": "way"}, "geometry": {"type": "LineString", "coordinates": [[-1.591587, 52.286819
View raw

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

@kevin-blaugrana
Copy link

Hi,

What does this line correspond to: from osmnx.downloader import _osm_network_download

It doesn't correspond to any existing package, does it?

@anisotropi4
Copy link
Author

You're right. This was a previous internal osmnx module API call. I've rewritten the code here using the updated module. As it's broken I'll updated it this weekend.

@kevin-blaugrana
Copy link

You're right. This was a previous internal osmnx module API call. I've rewritten the code here using the updated module. As it's broken I'll updated it this weekend.

Sorry to bother you, but in your data folder (in the magpie repo), isn't the 'britain-simple.geojson' file a simple Polygon?
I can't figure out how you get all those lines in that geojson...

Could you explain to me the steps to follow? I'd like to do a similar job for France.

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