Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active June 29, 2020 07:31
Show Gist options
  • Save anisotropi4/757430340067ebfdd144bdd3ce92823c to your computer and use it in GitHub Desktop.
Save anisotropi4/757430340067ebfdd144bdd3ce92823c to your computer and use it in GitHub Desktop.
Fizzy Knitting: Location of electrified rail in the UK
Released license:MIT
height:780
border:no
Fizzy Knitting: Location of electrified rail in the UK
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/

Fizzy Knitting GB Rail Electrification data

Open Street Map contains lots of data about the railway in mainland Britain. These scripts extract the full Open Street Map dataset and then filter for point associated with rail.

Creating the datafiles and associate geojson format report

Once the dependencies to create the report are met run the script:

$ ./prepublish

This will download, update to a point in time and create a set of geometric point, lines, multilinestrings, multipolygons and other_relations geojson objects filtered to contain rail related data.

Dependencies

These are environment and project dependencies.

Environment dependencies

Install the required OSM update and GDAL dependencies for the ogr2ogr tool

$ sudo apt install osmctools gdal-bin

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 geopandas
#!/usr/bin/env python3
import json
from shapely.ops import transform
import geopandas as gp
def _set_precision(g, precision=5):
def _precision(precision):
return lambda x, y, z=None: tuple([round(x, precision),
round(y, precision),
round(z, precision)] if z
else
[round(x, precision),
round(y, precision)])
return transform(_precision(precision), g)
GDATA = gp.GeoDataFrame()
TAGS = []
for gtype in ['points', 'lines', 'multilinestrings', 'multipolygons', 'other_relations']:
GF1 = gp.read_file('great-britain-voltage-{}.json'.format(gtype))
if not GF1.empty:
GDATA = GDATA.append(GF1)
GDATA = GDATA.fillna('None').reset_index(drop=True)
GDATA['geometry'] = GDATA['geometry'].apply(_set_precision)
KEYS = ['osm_id', 'electrified', 'frequency', 'voltage', 'railway', 'geometry']
DATA = json.loads(GDATA[KEYS].to_json())
DATA = DATA['features']
for i in DATA:
i.pop('id', None)
i['properties'] = {k: v for k, v in i['properties'].items() if v != 'None'}
with open('output-all.json', 'w') as fout:
json.dump(DATA, fout)
KEYS = ['osm_id', 'electrified', 'frequency', 'voltage', 'railway']
KEYS += [i for i in set(GDATA.columns) - set(KEYS)]
for KEY in KEYS:
GDATA[KEY] = GDATA[KEY].replace({'None': '-'})
with open('tag-report.csv', 'w') as fout:
GDATA[KEYS].drop('geometry', axis=1).to_csv(fout, index=False)
none
1
1.983960E+00 5.133770E+01
5.807600E-02 5.010375E+01
-1.246112E+00 4.989032E+01
-2.027284E+00 4.977612E+01
-2.020900E+00 4.976352E+01
-2.031990E+00 4.976171E+01
-1.808598E+00 4.910263E+01
-1.835368E+00 4.900443E+01
-3.940324E+00 4.915592E+01
-7.024780E+00 4.970097E+01
-5.441616E+00 5.278017E+01
-5.206178E+00 5.377268E+01
-5.488813E+00 5.486510E+01
-6.208707E+00 5.533747E+01
-6.604158E+00 5.543057E+01
-7.148041E+00 5.566455E+01
-1.486751E+01 5.746894E+01
-1.499070E+01 5.768017E+01
-1.208287E+01 5.853333E+01
-1.637515E+00 6.113564E+01
-2.670263E-01 6.110300E+01
1.278458E-01 5.976591E+01
9.781600E-02 5.942198E+01
7.998970E-01 5.579959E+01
1.702395E+00 5.443427E+01
2.250000E+00 5.258000E+01
1.983960E+00 5.133770E+01
END
END
<!DOCTYPE html>
<html>
<head>
<title>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.
#
# Configuration file for OSM import
#
# put here the name of keys for ways that are assumed to be polygons if they are closed
# see http://wiki.openstreetmap.org/wiki/Map_Features
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism
# comment to avoid laundering of keys ( ':' turned into '_' )
attribute_name_laundering=yes
# uncomment to report all nodes, including the ones without any (significant) tag
#report_all_nodes=yes
# uncomment to report all ways, including the ones without any (significant) tag
#report_all_ways=yes
[points]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,barrier,highway,ref,address,is_in,place,man_made,railway,natural,train,rail,ref:tiploc,naptan:AtcoCode,ele,layer,location,bridge,tunnel,covered,voltage,electrified,frequency,boundary,building,chainage_start,chainage_end,distance_marker,elr,ELR,fuel:electricity
# keys that, alone, are not significant enough to report a node as a OGR point
unsignificant=created_by,converted_by,source,time,attribution
# keys that should NOT be reported in the "other_tags" field
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[lines]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,barrier,highway,ref,address,is_in,place,man_made,railway,natural,train,rail,ref:tiploc,naptan:AtcoCode,ele,layer,location,bridge,tunnel,covered,voltage,electrified,frequency,boundary,building,chainage_start,chainage_end,distance_marker,elr,ELR,fuel:electricity
# keys that should NOT be reported in the "other_tags" field
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#computed_attributes must appear before the keywords _type and _sql
computed_attributes=z_order
z_order_type=Integer
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)"
[multipolygons]
# common attributes
# note: for multipolygons, osm_id=yes instanciates a osm_id field for the id of relations
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set.
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,barrier,highway,ref,address,is_in,place,man_made,railway,natural,train,rail,ref:tiploc,naptan:AtcoCode,ele,layer,location,bridge,tunnel,covered,voltage,electrified,frequency,boundary,building,chainage_start,chainage_end,distance_marker,elr,ELR,fuel:electricity
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[multilinestrings]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,barrier,highway,ref,address,is_in,place,man_made,railway,natural,train,rail,ref:tiploc,naptan:AtcoCode,ele,layer,location,bridge,tunnel,covered,voltage,electrified,frequency,boundary,building,chainage_start,chainage_end,distance_marker,elr,ELR,fuel:electricity
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[other_relations]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,barrier,highway,ref,address,is_in,place,man_made,railway,natural,train,rail,ref:tiploc,naptan:AtcoCode,ele,layer,location,bridge,tunnel,covered,voltage,electrified,frequency,boundary,building,chainage_start,chainage_end,distance_marker,elr,ELR,fuel:electricity
# keys that should NOT be reported in the "other_tags" field
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
This file has been truncated, but you can view the full file.
[{"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "25325272", "railway": "switch", "voltage": "25000"}, "geometry": {"type": "Point", "coordinates": [0.06994, 51.54389]}}, {"type": "Feature", "properties": {"osm_id": "1531158616", "railway": "disused", "voltage": "630"}, "geometry": {"type": "Point", "coordinates": [-0.12319, 51.51723]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "1541211958", "railway": "switch", "voltage": "25000"}, "geometry": {"type": "Point", "coordinates": [0.07821, 51.54109]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "1541242359", "railway": "switch", "voltage": "25000"}, "geometry": {"type": "Point", "coordinates": [0.06835, 51.5442]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "1735704146", "railway": "switch", "voltage": "25000"}, "geometry": {"type": "Point", "coordinates": [0.06882, 51.54415]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3303248188", "railway": "buffer_stop", "voltage": "25000"}, "geometry": {"type": "Point", "coordinates": [0.0812, 51.53969]}}, {"type": "Feature", "properties": {"osm_id": "5883033872", "railway": "station", "voltage": "750"}, "geometry": {"type": "Point", "coordinates": [-0.0497, 51.39801]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "740", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.81789, 52.5701], [-1.81793, 52.56989], [-1.81804, 52.56952], [-1.81813, 52.56929], [-1.81821, 52.5691], [-1.81831, 52.56892], [-1.81841, 52.56873], [-1.81853, 52.56854], [-1.81868, 52.56835], [-1.81883, 52.56816], [-1.81916, 52.56778], [-1.81939, 52.56757], [-1.81963, 52.56736], [-1.81993, 52.56713], [-1.82027, 52.56689], [-1.82058, 52.5667], [-1.8209, 52.56652], [-1.82128, 52.56633], [-1.82166, 52.56615], [-1.82193, 52.56604], [-1.82218, 52.56595]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2148", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.87319, 52.50555], [-1.87271, 52.50511], [-1.87228, 52.50468], [-1.87203, 52.50443], [-1.87171, 52.50409]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3413", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32561, 55.88271], [-4.32542, 55.8827], [-4.32519, 55.88269], [-4.32456, 55.88265], [-4.32406, 55.8826], [-4.32365, 55.88254], [-4.32331, 55.88248]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3417", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.31389, 55.87767], [-4.31399, 55.87699], [-4.31404, 55.87662], [-4.31406, 55.87623], [-4.31402, 55.87594], [-4.31395, 55.87565], [-4.3138, 55.87535], [-4.31359, 55.87503], [-4.3133, 55.87468], [-4.31294, 55.87432], [-4.31227, 55.87363], [-4.31206, 55.87335], [-4.3118, 55.87292], [-4.31107, 55.87159], [-4.31058, 55.87094]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3471", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.49508, 51.96812], [-0.49519, 51.96374]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "30804", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.00486, 51.62793], [0.0062, 51.62927]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "101298", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.22496, 51.49354], [-0.22507, 51.49405], [-0.22517, 51.49456], [-0.22519, 51.4947]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "101486", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.20555, 51.51954], [-0.20514, 51.51988], [-0.20492, 51.52003], [-0.20464, 51.52023], [-0.2045, 51.52032], [-0.20433, 51.52043], [-0.20414, 51.52052], [-0.20387, 51.52063], [-0.20359, 51.52074], [-0.20335, 51.52082], [-0.20318, 51.52086], [-0.20294, 51.52091], [-0.20274, 51.52095], [-0.20254, 51.52097], [-0.20229, 51.52099], [-0.20211, 51.521], [-0.20189, 51.521], [-0.20169, 51.521], [-0.20148, 51.52099], [-0.20122, 51.52097], [-0.20102, 51.52095], [-0.20085, 51.52092]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "101511", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.21189, 51.52419], [-0.21079, 51.52396], [-0.20984, 51.52374], [-0.2089, 51.5235], [-0.2078, 51.5232], [-0.20717, 51.52303], [-0.20674, 51.5229], [-0.20546, 51.52253], [-0.20462, 51.5223]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "282898", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.18626, 51.61591], [-0.18687, 51.61384]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "361978", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.02985, 51.66194], [-0.03023, 51.65922]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "385495", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.89145, 51.46652], [-0.89264, 51.46619], [-0.89349, 51.46595], [-0.89441, 51.46569], [-0.89558, 51.46538], [-0.89635, 51.4652], [-0.89786, 51.46482], [-0.89856, 51.46465], [-0.89994, 51.46433], [-0.90131, 51.46403], [-0.90261, 51.46377], [-0.90502, 51.46327], [-0.90605, 51.46307], [-0.90692, 51.46291], [-0.90768, 51.46278], [-0.90836, 51.46266], [-0.90885, 51.46257], [-0.90997, 51.46237], [-0.91083, 51.46222], [-0.91158, 51.46208], [-0.91205, 51.462], [-0.9131, 51.46182], [-0.91415, 51.46164], [-0.91496, 51.46152], [-0.91578, 51.4614], [-0.91651, 51.4613], [-0.91692, 51.46124], [-0.9174, 51.46115], [-0.91829, 51.46099], [-0.91871, 51.4609], [-0.91976, 51.4607], [-0.92027, 51.46061], [-0.9208, 51.46051], [-0.92134, 51.46043], [-0.92185, 51.46035], [-0.9222, 51.46029], [-0.92317, 51.46015], [-0.92398, 51.46004]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "385522", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.87486, 51.47178], [-0.87736, 51.47095], [-0.87881, 51.47048], [-0.87991, 51.47011], [-0.88041, 51.46994]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "717746", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.51111, 52.16526], [-0.50762, 52.16207]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "928999", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.28446, 53.48027], [-2.2852, 53.48037], [-2.29869, 53.48211], [-2.30156, 53.48245], [-2.31463, 53.484], [-2.3164, 53.48416]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "929904", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.29196, 53.46193], [-2.29249, 53.46182], [-2.29278, 53.46175], [-2.29348, 53.46159], [-2.29417, 53.46141], [-2.29473, 53.46127], [-2.29533, 53.46109], [-2.29587, 53.46094], [-2.29646, 53.46076], [-2.29705, 53.46057], [-2.29772, 53.46034], [-2.29835, 53.46011], [-2.29892, 53.4599], [-2.29938, 53.45971], [-2.29983, 53.45952], [-2.30056, 53.4592], [-2.30124, 53.45888], [-2.30264, 53.45817], [-2.30301, 53.45797], [-2.3034, 53.45776], [-2.30406, 53.45743], [-2.30475, 53.4571], [-2.30578, 53.45664]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "929905", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.2794, 53.46058], [-2.27998, 53.46022]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "1025168", "railway": "rail", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-1.15283, 50.66351], [-1.15311, 50.66324], [-1.15342, 50.66293], [-1.15379, 50.6626], [-1.1543, 50.66216], [-1.15453, 50.66198], [-1.15495, 50.66168]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1522623", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28029, 51.78738], [-1.28052, 51.78858]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1522633", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27378, 51.76843], [-1.27404, 51.76935]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1522673", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29475, 51.79242], [-1.29498, 51.79272]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1523354", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29869, 51.8221], [-1.29888, 51.82277], [-1.29922, 51.82411], [-1.29962, 51.82565], [-1.29988, 51.8271], [-1.30001, 51.828], [-1.30012, 51.82911], [-1.30016, 51.83021], [-1.30014, 51.83191], [-1.29995, 51.83373], [-1.29914, 51.83889]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1523355", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29815, 51.87316], [-1.29787, 51.87439], [-1.29763, 51.87568], [-1.29753, 51.87636], [-1.29749, 51.8768], [-1.29742, 51.87797], [-1.29741, 51.87887], [-1.29742, 51.87971], [-1.2975, 51.88087], [-1.29754, 51.88146]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1523496", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29943, 51.90816], [-1.2992, 51.90891], [-1.29903, 51.90973], [-1.29895, 51.91057], [-1.29892, 51.91102], [-1.29894, 51.9115], [-1.29896, 51.91182], [-1.29897, 51.91207], [-1.29903, 51.9124], [-1.29909, 51.91275], [-1.29917, 51.9131], [-1.29926, 51.91347], [-1.2995, 51.91424], [-1.29971, 51.91506], [-1.29984, 51.91566], [-1.29988, 51.91607], [-1.2999, 51.91645], [-1.29989, 51.91676], [-1.29985, 51.91707], [-1.29979, 51.91746], [-1.2997, 51.91785], [-1.29958, 51.91823], [-1.29945, 51.91858]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "1672896", "railway": "rail", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-1.15267, 50.66369], [-1.15206, 50.66434]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "1679728", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.03241, 55.95846], [-4.02562, 55.96382], [-4.02357, 55.96531], [-4.02288, 55.96577], [-4.02252, 55.96601], [-4.02218, 55.96622], [-4.02165, 55.96653], [-4.02111, 55.96682], [-4.02005, 55.96736], [-4.01904, 55.96781], [-4.01788, 55.96827], [-4.01645, 55.96877], [-4.01497, 55.96923], [-4.01332, 55.96966], [-4.01188, 55.96998]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "1690061", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.93511, 56.12], [-3.93531, 56.12021], [-3.93565, 56.12063], [-3.93612, 56.12136], [-3.93621, 56.12155], [-3.93645, 56.12236], [-3.93653, 56.12286], [-3.93657, 56.12336], [-3.93655, 56.12374], [-3.93654, 56.1238]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1690062", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.42787, 56.37525], [-3.42819, 56.37575], [-3.4285, 56.37621], [-3.42892, 56.3768], [-3.4293, 56.37732], [-3.42974, 56.37794], [-3.43019, 56.37856], [-3.43052, 56.37902], [-3.43101, 56.3797], [-3.43157, 56.38046], [-3.43187, 56.38088], [-3.43237, 56.38155], [-3.43335, 56.38291]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1690063", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.42026, 56.38634], [-3.4202, 56.38627], [-3.41877, 56.3846], [-3.41811, 56.38396], [-3.41756, 56.3835], [-3.4167, 56.38289], [-3.41606, 56.38252], [-3.41535, 56.38217], [-3.41438, 56.38175], [-3.4135, 56.38145], [-3.41264, 56.38119], [-3.41184, 56.381], [-3.4109, 56.38081], [-3.41025, 56.38071], [-3.4093, 56.38058], [-3.4086, 56.38053], [-3.4077, 56.38049], [-3.40686, 56.38049], [-3.40597, 56.38052], [-3.405, 56.38059], [-3.40409, 56.38069], [-3.40291, 56.38087], [-3.40184, 56.38111], [-3.39862, 56.38204], [-3.39318, 56.38375], [-3.39247, 56.38395], [-3.38733, 56.3852], [-3.38593, 56.38548], [-3.38488, 56.38561], [-3.384, 56.38567], [-3.38389, 56.38568], [-3.38297, 56.38569], [-3.38208, 56.38565], [-3.3812, 56.38556], [-3.38019, 56.3854], [-3.37933, 56.38521], [-3.37842, 56.38492], [-3.3778, 56.38469], [-3.37685, 56.38427], [-3.37594, 56.38388], [-3.37515, 56.38357], [-3.37454, 56.38337], [-3.37368, 56.38314], [-3.37302, 56.383], [-3.37214, 56.38285], [-3.37106, 56.38274], [-3.36844, 56.38258], [-3.36775, 56.38253], [-3.36708, 56.38244], [-3.36646, 56.38235], [-3.36587, 56.38224], [-3.36515, 56.38207], [-3.36429, 56.38183], [-3.36319, 56.38145]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1880540", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.84963, 53.18861], [-2.85042, 53.18924], [-2.85122, 53.18981], [-2.85199, 53.19026], [-2.85287, 53.19073], [-2.8539, 53.19123], [-2.85484, 53.1916], [-2.85656, 53.19221], [-2.85834, 53.19274], [-2.86019, 53.19317], [-2.86167, 53.19346], [-2.87131, 53.19483]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1881266", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.87131, 53.19483], [-2.87167, 53.19489], [-2.87224, 53.19501], [-2.87254, 53.19506]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1958359", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40042, 51.84279], [-2.39986, 51.84302], [-2.39923, 51.84326], [-2.3986, 51.84347], [-2.39786, 51.84368], [-2.39708, 51.8439], [-2.3953, 51.84429], [-2.39392, 51.84461], [-2.39226, 51.84499], [-2.39068, 51.84535], [-2.38729, 51.84613], [-2.38271, 51.84717], [-2.37098, 51.84985], [-2.37023, 51.85002], [-2.36841, 51.85043], [-2.36481, 51.85125], [-2.36385, 51.85146], [-2.3557, 51.85333], [-2.35414, 51.85369], [-2.34768, 51.85516], [-2.34582, 51.85557], [-2.34143, 51.85657], [-2.33728, 51.85752], [-2.33493, 51.85806], [-2.33216, 51.85869], [-2.32938, 51.85931], [-2.32752, 51.8597], [-2.3253, 51.86017], [-2.32224, 51.86078], [-2.32063, 51.86111], [-2.31897, 51.86144], [-2.31579, 51.8621], [-2.31515, 51.86223], [-2.30699, 51.86389], [-2.30523, 51.86425], [-2.30054, 51.8652], [-2.29573, 51.86619], [-2.29311, 51.86674], [-2.29156, 51.86709], [-2.29025, 51.86742], [-2.28929, 51.86769], [-2.28844, 51.86791], [-2.28745, 51.8682], [-2.28633, 51.86855], [-2.28451, 51.86916], [-2.28374, 51.86943], [-2.28298, 51.86972], [-2.28045, 51.87067], [-2.27878, 51.87129], [-2.27816, 51.87153], [-2.27747, 51.87179], [-2.27696, 51.87196], [-2.27562, 51.87242], [-2.27455, 51.87275], [-2.2735, 51.87305], [-2.27262, 51.87327], [-2.27198, 51.87341], [-2.27142, 51.87351], [-2.27069, 51.87361], [-2.27011, 51.87366], [-2.26967, 51.8737], [-2.26935, 51.87371], [-2.26885, 51.87374]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1958474", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.22755, 51.85473], [-2.22711, 51.85519], [-2.22695, 51.85538], [-2.2268, 51.85557], [-2.22661, 51.85582], [-2.22642, 51.85616], [-2.22629, 51.85644], [-2.22621, 51.85667], [-2.22616, 51.85688], [-2.22611, 51.85716], [-2.22609, 51.85744], [-2.22609, 51.85783], [-2.22611, 51.85825], [-2.22614, 51.85849], [-2.22619, 51.85873], [-2.22625, 51.85895], [-2.22633, 51.85914], [-2.22643, 51.85937], [-2.22655, 51.85958], [-2.22671, 51.85982], [-2.22692, 51.8601], [-2.22716, 51.86041], [-2.22741, 51.86068], [-2.22788, 51.86113], [-2.22814, 51.86134], [-2.22849, 51.86158], [-2.22892, 51.86185], [-2.22924, 51.86201], [-2.23014, 51.8624], [-2.23049, 51.86254], [-2.23095, 51.86272]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1958476", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.21886, 51.86226], [-2.21852, 51.86248], [-2.21796, 51.86282], [-2.21743, 51.86313], [-2.21704, 51.86336]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "1958477", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.22924, 51.86201], [-2.2297, 51.86218]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2162114", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.45281, 52.69934], [-0.45189, 52.69864], [-0.45096, 52.69795], [-0.44943, 52.69687], [-0.44786, 52.69583], [-0.44591, 52.69463], [-0.4439, 52.69344], [-0.44278, 52.69281], [-0.44163, 52.69218], [-0.44047, 52.69157], [-0.43929, 52.69097], [-0.43776, 52.69023], [-0.43621, 52.68948], [-0.43316, 52.68805]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2307349", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.9185, 53.17977], [-2.9184, 53.17993], [-2.9182, 53.1802], [-2.91792, 53.1805], [-2.91767, 53.18074], [-2.91746, 53.18091], [-2.91711, 53.18115], [-2.91652, 53.18147], [-2.91594, 53.18174], [-2.91537, 53.18199], [-2.91469, 53.18226]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2370155", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.3379, 51.59378], [-0.33678, 51.59324]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2370157", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.49379, 51.7428], [-0.49335, 51.7427]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2370163", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.6191, 53.36595], [-2.61963, 53.36565], [-2.62009, 53.36539], [-2.62199, 53.36427], [-2.62302, 53.36366], [-2.62385, 53.36318], [-2.62434, 53.36289]]}}, {"type": "Feature", "properties": {"osm_id": "2444887", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83179, 53.2169], [-2.83135, 53.21724], [-2.83084, 53.21764], [-2.83038, 53.21798]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2480301", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.15844, 52.26828], [-2.15756, 52.26896], [-2.15703, 52.26934], [-2.15605, 52.27005]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2495434", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.52581, 51.88162], [-1.52615, 51.88159], [-1.52753, 51.88144], [-1.52913, 51.88119], [-1.53035, 51.88094], [-1.53128, 51.88074], [-1.53212, 51.8805], [-1.53273, 51.88033], [-1.53344, 51.88012], [-1.53469, 51.87967], [-1.53602, 51.87915], [-1.53659, 51.8789], [-1.53754, 51.87844], [-1.53823, 51.87807], [-1.53891, 51.87769], [-1.53955, 51.87734], [-1.54027, 51.87691], [-1.54138, 51.8763], [-1.54255, 51.87568], [-1.54498, 51.87452], [-1.54606, 51.87398], [-1.5469, 51.87361], [-1.54758, 51.87333], [-1.54867, 51.87289], [-1.55045, 51.87223], [-1.55228, 51.87161], [-1.55314, 51.87129], [-1.55492, 51.87066], [-1.55995, 51.86889]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2495496", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.69201, 51.97693], [-1.69256, 51.97791], [-1.69475, 51.98199], [-1.69557, 51.98346], [-1.69605, 51.98438], [-1.69634, 51.98492], [-1.6968, 51.98576], [-1.69758, 51.98718], [-1.69869, 51.98924], [-1.69924, 51.99022], [-1.69958, 51.99088], [-1.70029, 51.99218], [-1.70081, 51.99313], [-1.70107, 51.99361]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2495556", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.76904, 52.06972], [-1.76967, 52.07137], [-1.76996, 52.07202], [-1.77025, 52.0726], [-1.77048, 52.07298], [-1.77085, 52.07352], [-1.77121, 52.07399], [-1.77176, 52.07459]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2526598", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.18848, 51.36027], [-0.1884, 51.36029]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "2541791", "railway": "light_rail", "voltage": "1500"}, "geometry": {"type": "LineString", "coordinates": [[-1.6093, 54.99291], [-1.60904, 54.99262], [-1.60872, 54.99225], [-1.60835, 54.99182], [-1.60822, 54.99164], [-1.60806, 54.99142], [-1.60791, 54.99119], [-1.60773, 54.99092], [-1.60756, 54.99065], [-1.60741, 54.99041], [-1.60728, 54.99015], [-1.60702, 54.98962], [-1.60686, 54.9892], [-1.60672, 54.9888], [-1.60634, 54.98759], [-1.6057, 54.98549], [-1.6055, 54.98483]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2544436", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.61035, 51.48323], [-0.61093, 51.48335], [-0.61143, 51.48344], [-0.61191, 51.48347], [-0.61241, 51.48349], [-0.61324, 51.48352], [-0.61368, 51.48353], [-0.61412, 51.48357], [-0.61452, 51.48361]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544484", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08704, 51.38994], [-0.08692, 51.3897], [-0.08682, 51.3895], [-0.08668, 51.3892], [-0.08651, 51.38891], [-0.08642, 51.38872], [-0.08637, 51.38856], [-0.08633, 51.38837], [-0.08634, 51.38818], [-0.08636, 51.38802], [-0.0864, 51.38782], [-0.08651, 51.38762], [-0.0866, 51.38745], [-0.08675, 51.38726], [-0.08693, 51.38708]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544488", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13724, 51.42029], [-0.13702, 51.42001], [-0.13679, 51.41974], [-0.13651, 51.41943], [-0.13617, 51.41901], [-0.13583, 51.4186]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544489", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13879, 51.42529], [-0.13881, 51.42469], [-0.13876, 51.42406]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544491", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.16333, 51.44612], [-0.16284, 51.44581], [-0.16233, 51.44551]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544530", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03899, 51.47248], [-0.03874, 51.47195], [-0.03848, 51.47141], [-0.03816, 51.47065], [-0.0379, 51.46988], [-0.03772, 51.46924], [-0.03761, 51.4686], [-0.03752, 51.46795], [-0.03744, 51.46728], [-0.03739, 51.46659], [-0.03739, 51.46588], [-0.03742, 51.46528], [-0.03745, 51.46484], [-0.03747, 51.46464], [-0.03751, 51.46433], [-0.0376, 51.46386], [-0.03778, 51.46311], [-0.038, 51.46238], [-0.0382, 51.46181], [-0.03838, 51.46131], [-0.03855, 51.46084], [-0.03928, 51.45895], [-0.0396, 51.45819], [-0.03984, 51.4576], [-0.0401, 51.45695], [-0.04053, 51.45591], [-0.04084, 51.45532], [-0.04122, 51.45473], [-0.04165, 51.45407], [-0.04192, 51.45371], [-0.04224, 51.45332], [-0.0426, 51.45289], [-0.04298, 51.45248], [-0.04376, 51.45166], [-0.04457, 51.45084], [-0.04536, 51.45001], [-0.04581, 51.44953], [-0.04696, 51.44802], [-0.04814, 51.44652], [-0.04933, 51.44502], [-0.0499, 51.44427], [-0.05052, 51.44352], [-0.05094, 51.443], [-0.0513, 51.44253], [-0.05164, 51.44204], [-0.05197, 51.44153], [-0.05219, 51.44114], [-0.05242, 51.44071], [-0.05262, 51.4403]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544531", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.05269, 51.44014], [-0.05283, 51.43977], [-0.05299, 51.43924], [-0.05308, 51.4389], [-0.05321, 51.43837], [-0.05329, 51.43795], [-0.05338, 51.43737], [-0.05341, 51.43678], [-0.05341, 51.43632], [-0.05337, 51.43586], [-0.05334, 51.43555], [-0.05328, 51.43514], [-0.05314, 51.43451], [-0.05303, 51.43387], [-0.05292, 51.4331], [-0.0529, 51.43262], [-0.05291, 51.43212], [-0.05295, 51.43143], [-0.053, 51.43089], [-0.05311, 51.4303], [-0.05329, 51.4297], [-0.05346, 51.42922], [-0.05358, 51.42898], [-0.05389, 51.4283], [-0.05451, 51.42694], [-0.05456, 51.42683], [-0.05463, 51.42668], [-0.05486, 51.42616]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544533", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07234, 51.40126], [-0.07203, 51.4018], [-0.07135, 51.40297], [-0.07032, 51.40474], [-0.07007, 51.4052], [-0.06984, 51.40562], [-0.06932, 51.4065], [-0.06857, 51.40785], [-0.06824, 51.40847], [-0.06787, 51.40913], [-0.06718, 51.41032], [-0.06686, 51.41084], [-0.06651, 51.41138], [-0.06627, 51.4117], [-0.06604, 51.41198], [-0.0658, 51.41226], [-0.06472, 51.41338], [-0.06361, 51.41449], [-0.06129, 51.41682], [-0.06112, 51.417], [-0.06096, 51.41716], [-0.06064, 51.41748], [-0.06031, 51.41782], [-0.06006, 51.41806]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2544536", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07637, 51.39424], [-0.07674, 51.3937], [-0.07687, 51.39349], [-0.07713, 51.39314], [-0.07735, 51.39284], [-0.07756, 51.39254], [-0.07785, 51.39213], [-0.07811, 51.39179], [-0.07839, 51.39148], [-0.07862, 51.39125], [-0.07913, 51.39081], [-0.07942, 51.39058], [-0.0799, 51.39022], [-0.08028, 51.38996], [-0.08071, 51.38968]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2586338", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.12202, 51.59954], [-0.12162, 51.59922], [-0.12134, 51.59898], [-0.12101, 51.59872], [-0.12059, 51.59836], [-0.12019, 51.59796], [-0.12005, 51.59783], [-0.11969, 51.59741]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2605638", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.34776, 51.8105], [-1.34413, 51.80895], [-1.34237, 51.8083], [-1.341, 51.8078], [-1.33621, 51.80606], [-1.33123, 51.80425], [-1.32717, 51.80279], [-1.32417, 51.80186], [-1.32181, 51.80121], [-1.31917, 51.80054], [-1.31672, 51.79993], [-1.31508, 51.79951], [-1.31376, 51.79918], [-1.31306, 51.79901], [-1.31299, 51.799], [-1.31064, 51.79839], [-1.30647, 51.79726], [-1.30249, 51.79603], [-1.30041, 51.79538]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2605652", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.39409, 51.83263], [-1.39286, 51.83236]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2607114", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.38768, 51.62074], [-1.38843, 51.62071], [-1.39096, 51.62062], [-1.39265, 51.62056], [-1.39434, 51.62048], [-1.40063, 51.62019], [-1.4033, 51.62003], [-1.40561, 51.61987]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2607131", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.24305, 51.62658], [-1.24301, 51.62693], [-1.24298, 51.62727], [-1.24293, 51.62815], [-1.24292, 51.62882], [-1.24294, 51.62923], [-1.24296, 51.62959], [-1.243, 51.63008], [-1.24303, 51.63038], [-1.24307, 51.63068], [-1.24315, 51.6312], [-1.24316, 51.63127], [-1.24323, 51.63174], [-1.24326, 51.6319], [-1.24336, 51.6328], [-1.24339, 51.6332], [-1.24341, 51.6335], [-1.24341, 51.63358]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2607184", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.2384, 51.7057], [-1.23843, 51.70583]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2631563", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.35492, 51.50933], [-0.35563, 51.50921], [-0.35634, 51.50909], [-0.35729, 51.50893], [-0.35824, 51.50878], [-0.3592, 51.50863], [-0.36014, 51.50849], [-0.36204, 51.50822], [-0.36299, 51.50809], [-0.36394, 51.50795], [-0.36859, 51.50729], [-0.37007, 51.5071], [-0.37328, 51.50668]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2631782", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.76324, 51.5077], [-0.76381, 51.50751], [-0.76876, 51.50596], [-0.77114, 51.5052], [-0.77244, 51.50478], [-0.77325, 51.50452], [-0.77403, 51.50428], [-0.7774, 51.50321], [-0.78076, 51.5021], [-0.78408, 51.50099], [-0.78574, 51.50046], [-0.78667, 51.50016], [-0.7875, 51.49991], [-0.79015, 51.49907], [-0.79269, 51.49824], [-0.79532, 51.49738], [-0.79688, 51.49687], [-0.79796, 51.49651], [-0.8011, 51.49549], [-0.80421, 51.49449], [-0.8073, 51.49351], [-0.809, 51.49298], [-0.81027, 51.49257], [-0.8114, 51.49221], [-0.81536, 51.49092], [-0.8182, 51.48998], [-0.81959, 51.48953], [-0.82044, 51.48926], [-0.8212, 51.48901], [-0.82555, 51.48763], [-0.82785, 51.48695], [-0.82887, 51.48662], [-0.82994, 51.48627], [-0.83091, 51.48596], [-0.8373, 51.48385], [-0.84052, 51.48281], [-0.84241, 51.48221], [-0.84342, 51.48188]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2631885", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.03028, 51.47182], [-1.03106, 51.47221], [-1.03188, 51.47258], [-1.03245, 51.47286], [-1.03284, 51.47306], [-1.03342, 51.47334], [-1.03389, 51.47359], [-1.03438, 51.47382], [-1.03508, 51.47418], [-1.03607, 51.47466], [-1.03731, 51.47531], [-1.03794, 51.47566], [-1.03852, 51.47601], [-1.03908, 51.47635], [-1.03963, 51.4767], [-1.04022, 51.47707], [-1.04078, 51.47742], [-1.04145, 51.47782], [-1.04178, 51.47801], [-1.04211, 51.47818], [-1.04284, 51.47858], [-1.04358, 51.47894], [-1.04432, 51.4793], [-1.04482, 51.47951], [-1.04508, 51.47961], [-1.04528, 51.4797], [-1.04583, 51.47989], [-1.04727, 51.48051], [-1.04877, 51.48103], [-1.04952, 51.48128], [-1.05039, 51.48153], [-1.05107, 51.48171], [-1.05159, 51.48185], [-1.05235, 51.48203], [-1.05315, 51.48222], [-1.05373, 51.48234], [-1.05419, 51.48243], [-1.05461, 51.48253], [-1.05534, 51.48268], [-1.05591, 51.48279], [-1.05656, 51.4829]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2631954", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.08903, 51.48498], [-1.08966, 51.48508], [-1.08998, 51.48513], [-1.0905, 51.48523], [-1.09167, 51.48546], [-1.09257, 51.48566], [-1.09363, 51.48591], [-1.09445, 51.48616], [-1.09517, 51.48638], [-1.0961, 51.48667], [-1.09704, 51.487], [-1.09799, 51.48736], [-1.09892, 51.48773], [-1.09988, 51.48813], [-1.10085, 51.48856], [-1.1018, 51.48901], [-1.10242, 51.48935], [-1.10292, 51.48962], [-1.10347, 51.48992], [-1.10392, 51.49017], [-1.10466, 51.49061], [-1.10563, 51.49124], [-1.10619, 51.49164], [-1.10648, 51.49184], [-1.10685, 51.49211], [-1.10729, 51.49245], [-1.10774, 51.49278], [-1.10821, 51.49315], [-1.10874, 51.49359], [-1.10988, 51.49465], [-1.11041, 51.4952], [-1.11095, 51.49576], [-1.11146, 51.49632], [-1.11194, 51.49686], [-1.11256, 51.49758], [-1.11306, 51.49817], [-1.11398, 51.49909], [-1.11483, 51.49986], [-1.11575, 51.50062], [-1.11758, 51.50212], [-1.11823, 51.50264], [-1.11891, 51.50313], [-1.11955, 51.50365], [-1.12017, 51.50412], [-1.12126, 51.50497], [-1.12211, 51.50568], [-1.12293, 51.5064], [-1.12372, 51.50714], [-1.12447, 51.50786], [-1.12504, 51.50842], [-1.12569, 51.5091], [-1.12636, 51.50978], [-1.12709, 51.5106], [-1.12767, 51.5113]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2632033", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.13497, 51.547], [-1.13531, 51.54771], [-1.13559, 51.54833], [-1.13603, 51.54923], [-1.13673, 51.55049], [-1.13713, 51.55123], [-1.13761, 51.552], [-1.13823, 51.55295], [-1.13871, 51.55361], [-1.13907, 51.55407], [-1.13971, 51.55488], [-1.14017, 51.55545], [-1.14079, 51.55615], [-1.14121, 51.5566], [-1.14163, 51.55702], [-1.14212, 51.55751]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2660005", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.36955, 53.1115], [-1.36946, 53.11197], [-1.36929, 53.11284], [-1.36916, 53.1135], [-1.36906, 53.11402], [-1.36893, 53.11468], [-1.36889, 53.11489]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2660192", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.26457, 52.8708], [-1.26452, 52.87065], [-1.26437, 52.87023], [-1.26433, 52.87009], [-1.26429, 52.86996], [-1.26425, 52.86983], [-1.26398, 52.86862], [-1.26329, 52.86503], [-1.26326, 52.86486]]}}, {"type": "Feature", "properties": {"osm_id": "2660202", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53435, 52.86541], [-1.53379, 52.8656], [-1.53314, 52.86584], [-1.53248, 52.86605], [-1.53199, 52.86616], [-1.5315, 52.86626], [-1.53088, 52.86638], [-1.53023, 52.86648], [-1.52967, 52.86654], [-1.52911, 52.86658], [-1.52818, 52.86663], [-1.52739, 52.86663], [-1.52699, 52.86662], [-1.5266, 52.8666], [-1.52589, 52.86656], [-1.52517, 52.86652], [-1.52268, 52.86637], [-1.52182, 52.8663], [-1.52139, 52.86626], [-1.52097, 52.8662], [-1.51971, 52.86602], [-1.51847, 52.8658], [-1.50409, 52.86285], [-1.50354, 52.86274], [-1.50299, 52.86264], [-1.50255, 52.86257], [-1.50209, 52.86251], [-1.50135, 52.8624], [-1.50096, 52.86234], [-1.50056, 52.8623], [-1.49652, 52.86194], [-1.49484, 52.86174], [-1.49365, 52.86155], [-1.49247, 52.86133], [-1.49183, 52.86117], [-1.47889, 52.85796], [-1.47784, 52.85773], [-1.47575, 52.85735], [-1.47159, 52.85662], [-1.47042, 52.85645], [-1.46921, 52.85632], [-1.46771, 52.8562], [-1.46643, 52.85615], [-1.46495, 52.85614], [-1.4638, 52.85616], [-1.4627, 52.85622], [-1.46095, 52.85638], [-1.45896, 52.85662], [-1.45354, 52.85732], [-1.44946, 52.85783]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2660210", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.34051, 53.07361], [-1.34051, 53.07376], [-1.34056, 53.07437], [-1.34066, 53.07493], [-1.3408, 53.07551], [-1.34097, 53.07611], [-1.34121, 53.07674], [-1.34153, 53.07736], [-1.34204, 53.07811], [-1.34265, 53.07884], [-1.3434, 53.07959], [-1.3438, 53.07994], [-1.34424, 53.08029], [-1.34485, 53.08072]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2660403", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.42023, 53.2203], [-1.41991, 53.21949], [-1.41944, 53.21838], [-1.41911, 53.21763], [-1.41831, 53.21611], [-1.41765, 53.21504], [-1.41684, 53.21386]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2699712", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.3899, 51.31766], [-0.39029, 51.31746], [-0.39058, 51.31729], [-0.39086, 51.31711], [-0.39123, 51.31688], [-0.39161, 51.31663], [-0.39194, 51.31638], [-0.39223, 51.31615], [-0.39264, 51.31579], [-0.393, 51.31544], [-0.39323, 51.31519], [-0.39342, 51.31498], [-0.39368, 51.31465], [-0.39388, 51.31437], [-0.39399, 51.31421], [-0.39415, 51.31396], [-0.39487, 51.3128]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2795857", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.04792, 51.57221], [-0.04775, 51.57237], [-0.04759, 51.57253], [-0.04743, 51.5727], [-0.04722, 51.5729], [-0.04701, 51.57308], [-0.04679, 51.57327], [-0.04657, 51.57345], [-0.04635, 51.57362], [-0.04609, 51.57382], [-0.04591, 51.57396], [-0.04575, 51.57408], [-0.04543, 51.5743], [-0.04517, 51.57446], [-0.04485, 51.57468], [-0.04436, 51.57499], [-0.04385, 51.57529], [-0.04331, 51.5756], [-0.04221, 51.57619], [-0.04104, 51.5768]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "2796159", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.12052, 51.53048], [-0.12078, 51.53054], [-0.121, 51.53058], [-0.12122, 51.5306], [-0.12136, 51.53062], [-0.12146, 51.53062], [-0.12159, 51.53062], [-0.12173, 51.53062], [-0.12184, 51.5306], [-0.12205, 51.53057], [-0.12237, 51.53051], [-0.12263, 51.53044], [-0.12289, 51.53036]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2809985", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.26077, 51.74033], [-1.26272, 51.74234], [-1.26298, 51.74264]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2809987", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.23843, 51.70583], [-1.23882, 51.7073], [-1.2391, 51.70829], [-1.2394, 51.70938], [-1.23997, 51.71135], [-1.24063, 51.71361], [-1.24116, 51.71497], [-1.24136, 51.71544], [-1.24159, 51.71592], [-1.24188, 51.7165], [-1.2422, 51.7171], [-1.24326, 51.71879], [-1.24491, 51.72111], [-1.24533, 51.72166], [-1.2459, 51.72238], [-1.24666, 51.72328], [-1.24707, 51.72376], [-1.24732, 51.72406], [-1.24749, 51.72425], [-1.24821, 51.72511], [-1.24936, 51.72646], [-1.25035, 51.72762], [-1.25139, 51.72883], [-1.25169, 51.72919], [-1.252, 51.72956], [-1.25265, 51.73038], [-1.25297, 51.7308], [-1.25359, 51.73167], [-1.25398, 51.73223], [-1.25433, 51.73279], [-1.25476, 51.73346], [-1.2551, 51.73399], [-1.25554, 51.73463], [-1.25627, 51.73554], [-1.25703, 51.7364], [-1.25808, 51.73752], [-1.26077, 51.74033]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2817075", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.57937, 51.48291], [-0.57914, 51.48278], [-0.57888, 51.48262], [-0.57807, 51.48214], [-0.57663, 51.48132], [-0.57497, 51.48033], [-0.57396, 51.47973], [-0.57296, 51.47913], [-0.57196, 51.47851], [-0.57025, 51.47749], [-0.56887, 51.47668], [-0.56757, 51.47589], [-0.56624, 51.4751], [-0.56472, 51.47416], [-0.5633, 51.47322], [-0.56157, 51.47198], [-0.56015, 51.47095], [-0.55957, 51.47055], [-0.55904, 51.47017], [-0.55878, 51.46997], [-0.55841, 51.46966], [-0.54955, 51.46321], [-0.54879, 51.46266], [-0.54738, 51.46165], [-0.54458, 51.45973], [-0.54197, 51.45793], [-0.54121, 51.45742], [-0.54092, 51.45721]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2817452", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.28573, 54.03922], [-2.28576, 54.03953], [-2.28582, 54.04004]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2829919", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.77779, 52.03639], [-0.77713, 52.03588], [-0.77596, 52.03499], [-0.7746, 52.03395], [-0.7732, 52.03288], [-0.77243, 52.0323], [-0.77073, 52.03099], [-0.7683, 52.02916], [-0.76822, 52.02909], [-0.76749, 52.02854], [-0.76647, 52.02776], [-0.76555, 52.02705], [-0.76304, 52.02513], [-0.7618, 52.02419], [-0.76062, 52.02329], [-0.76, 52.02282], [-0.75756, 52.02096], [-0.75648, 52.02014], [-0.75639, 52.02007], [-0.75618, 52.01991], [-0.7556, 52.01946], [-0.75509, 52.01907], [-0.75471, 52.01878], [-0.75301, 52.01749], [-0.75206, 52.01677], [-0.75161, 52.01642], [-0.75112, 52.01605], [-0.75025, 52.01539], [-0.74977, 52.01502], [-0.74929, 52.01466], [-0.74881, 52.01428], [-0.74841, 52.01398], [-0.74761, 52.01333], [-0.74735, 52.01311], [-0.74691, 52.01272], [-0.74681, 52.01263]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2848078", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.66861, 54.51831], [-2.66848, 54.51729], [-2.66842, 54.51626], [-2.66845, 54.51498], [-2.66846, 54.51489], [-2.66868, 54.50853], [-2.6687, 54.50759], [-2.66878, 54.50665], [-2.66894, 54.50571], [-2.66916, 54.50477]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2902802", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.04723, 51.67266], [-0.04705, 51.67326], [-0.04685, 51.67387], [-0.04673, 51.67427], [-0.04656, 51.67479], [-0.04633, 51.67553], [-0.04619, 51.67597], [-0.04606, 51.67639], [-0.04586, 51.67705], [-0.04568, 51.67764], [-0.04556, 51.678], [-0.04546, 51.67834], [-0.04519, 51.6792], [-0.04491, 51.68007], [-0.04458, 51.68084], [-0.04423, 51.68167], [-0.04399, 51.6822], [-0.04383, 51.68255]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2936583", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.28259, 51.56332], [0.28411, 51.56361], [0.28562, 51.56388], [0.28642, 51.56402], [0.28721, 51.56415], [0.28787, 51.56424], [0.28856, 51.56434], [0.28916, 51.56441], [0.28942, 51.56444], [0.2898, 51.56449], [0.29058, 51.56457], [0.29168, 51.56468], [0.29235, 51.56474], [0.29641, 51.56501], [0.29702, 51.56505], [0.30033, 51.56527], [0.30322, 51.56545], [0.30878, 51.56581], [0.31432, 51.56617], [0.31642, 51.56631], [0.32068, 51.56659], [0.32496, 51.56687], [0.32984, 51.56718], [0.33473, 51.5675], [0.33718, 51.56766], [0.33963, 51.56781], [0.34026, 51.56785], [0.34093, 51.56787], [0.34204, 51.5679], [0.34316, 51.56792], [0.3442, 51.56791], [0.34498, 51.5679], [0.34573, 51.56788], [0.34648, 51.56786], [0.34722, 51.56782], [0.34822, 51.56776], [0.34923, 51.5677], [0.35123, 51.56758], [0.35524, 51.56733], [0.35811, 51.56717]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2950000", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.87941, 52.48138], [-1.8796, 52.48137], [-1.87981, 52.48135], [-1.88033, 52.48129], [-1.88063, 52.48125], [-1.8809, 52.48121], [-1.88122, 52.48115], [-1.88173, 52.48106], [-1.88192, 52.48103], [-1.88215, 52.481], [-1.88254, 52.48096]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2954154", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.5698, 53.2498], [-2.56938, 53.2496], [-2.56856, 53.24918], [-2.56777, 53.24878], [-2.56548, 53.24758], [-2.55882, 53.24425], [-2.55391, 53.24178], [-2.54693, 53.23829], [-2.54618, 53.23788], [-2.54495, 53.23716], [-2.54412, 53.23664], [-2.54329, 53.23607], [-2.54239, 53.23543], [-2.53787, 53.23211]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2954155", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.66963, 53.32521], [-2.6748, 53.32205], [-2.68797, 53.31393]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "2954186", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.83551, 53.35438], [-2.83065, 53.35452], [-2.8258, 53.35465], [-2.82103, 53.35479], [-2.81865, 53.35485], [-2.81627, 53.35492], [-2.81388, 53.355], [-2.81231, 53.35505], [-2.81071, 53.3551], [-2.80984, 53.35517], [-2.80893, 53.35525], [-2.80855, 53.35529], [-2.80557, 53.35567], [-2.80407, 53.35582], [-2.80254, 53.35595], [-2.80134, 53.35603], [-2.80012, 53.35609], [-2.79771, 53.35618], [-2.79567, 53.35625], [-2.79356, 53.35631], [-2.79081, 53.35638], [-2.7882, 53.35647], [-2.78559, 53.35652], [-2.78422, 53.35651], [-2.7829, 53.35649], [-2.78161, 53.35645], [-2.78028, 53.35638], [-2.77872, 53.35632], [-2.77715, 53.35628], [-2.77559, 53.35629], [-2.77401, 53.35631], [-2.77055, 53.35637]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2954519", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01316, 51.45843], [-0.01288, 51.45826], [-0.01259, 51.45811]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "2955708", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.34998, 51.38257], [-2.35033, 51.38199], [-2.35052, 51.38173]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "2956380", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.9636, 53.28677], [-2.95538, 53.28623], [-2.94544, 53.28553]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3006877", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.99635, 51.44275], [-0.99628, 51.44283], [-0.99612, 51.44304], [-0.99599, 51.44321], [-0.99585, 51.4434], [-0.99558, 51.44385], [-0.99536, 51.44432], [-0.99477, 51.44568], [-0.99437, 51.44658], [-0.99408, 51.44729], [-0.9936, 51.44846], [-0.99341, 51.44896], [-0.99316, 51.44977]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3027964", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.32018, 51.3986], [-2.31982, 51.39869], [-2.31947, 51.39879], [-2.31903, 51.39888], [-2.31881, 51.39891], [-2.31859, 51.39894], [-2.31838, 51.39895], [-2.31816, 51.39896], [-2.31795, 51.39896], [-2.31773, 51.39896], [-2.3175, 51.39895], [-2.31727, 51.39893], [-2.31703, 51.3989], [-2.3168, 51.39886], [-2.31657, 51.39882], [-2.31634, 51.39877], [-2.31614, 51.39872], [-2.31593, 51.39867], [-2.31557, 51.39856], [-2.3153, 51.39848], [-2.31506, 51.3984], [-2.31481, 51.39831], [-2.31458, 51.39822], [-2.31427, 51.39809], [-2.31408, 51.39799], [-2.31382, 51.39786], [-2.31337, 51.39757], [-2.31296, 51.39724], [-2.31264, 51.39693], [-2.3124, 51.39663], [-2.31224, 51.3964], [-2.31213, 51.3962], [-2.31203, 51.39598]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3059832", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.314, 53.46447], [-1.31538, 53.46341], [-1.31651, 53.46256]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3066307", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.1167, 51.03771], [-0.11724, 51.03834], [-0.11785, 51.03897], [-0.11841, 51.03953], [-0.11898, 51.04004], [-0.11956, 51.04053], [-0.12017, 51.04102], [-0.12072, 51.04144], [-0.1213, 51.04186], [-0.12191, 51.04229], [-0.12257, 51.04272], [-0.13021, 51.04747], [-0.13088, 51.04792], [-0.13136, 51.04826]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3086769", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28052, 51.78858], [-1.2806, 51.78931], [-1.28062, 51.79005], [-1.28069, 51.79154], [-1.28055, 51.79294], [-1.28049, 51.79332], [-1.28028, 51.79467], [-1.27975, 51.79645], [-1.27934, 51.79744], [-1.27917, 51.79782], [-1.27887, 51.79858], [-1.27813, 51.80001], [-1.27778, 51.80055], [-1.27715, 51.80154], [-1.27591, 51.8029], [-1.27548, 51.80339], [-1.27521, 51.80372], [-1.2747, 51.8042], [-1.27329, 51.80547], [-1.2727, 51.80601], [-1.27212, 51.80653], [-1.27066, 51.80762], [-1.27041, 51.8078], [-1.26897, 51.80884], [-1.26732, 51.80984], [-1.26475, 51.81121], [-1.26324, 51.81195], [-1.26155, 51.81284], [-1.2599, 51.81378], [-1.25983, 51.81382], [-1.25763, 51.815], [-1.25564, 51.81606], [-1.25408, 51.81689]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3088973", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.24038, 51.82415], [-1.23914, 51.82515], [-1.23813, 51.82585], [-1.2377, 51.82614], [-1.23663, 51.82681], [-1.2339, 51.82835]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3088986", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.23364, 51.82849], [-1.23069, 51.83023], [-1.22928, 51.83103], [-1.22589, 51.83299], [-1.22223, 51.83508], [-1.20971, 51.84226], [-1.20659, 51.84404], [-1.20509, 51.84491], [-1.20289, 51.84629], [-1.20055, 51.84792], [-1.19805, 51.84985], [-1.19204, 51.85508], [-1.19069, 51.85624], [-1.18625, 51.86014], [-1.18531, 51.86096], [-1.18419, 51.86198], [-1.18274, 51.8632], [-1.17918, 51.86633], [-1.1765, 51.86867], [-1.17466, 51.87028]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3143577", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14753, 51.48069], [-0.14752, 51.48101], [-0.14753, 51.48128], [-0.14752, 51.48161], [-0.14752, 51.48185], [-0.14752, 51.48193], [-0.14752, 51.48206], [-0.14752, 51.48239], [-0.14752, 51.48249], [-0.14752, 51.48253], [-0.14749, 51.48309]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3143578", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14657, 51.47494], [-0.14719, 51.47468], [-0.14762, 51.47452], [-0.14825, 51.47429], [-0.14883, 51.47404], [-0.14902, 51.47396], [-0.14992, 51.47358], [-0.15041, 51.47336], [-0.15195, 51.47268], [-0.15446, 51.4716], [-0.15525, 51.47126]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3188253", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.16342, 50.89377], [-0.16381, 50.89295], [-0.16408, 50.8923], [-0.16427, 50.89171], [-0.16626, 50.88489], [-0.16637, 50.88445], [-0.16648, 50.88398], [-0.16656, 50.88339], [-0.16661, 50.88277], [-0.16662, 50.88229], [-0.16661, 50.88179], [-0.16657, 50.88132], [-0.16651, 50.88086], [-0.16643, 50.88042], [-0.16634, 50.87998], [-0.16618, 50.87942], [-0.16604, 50.87898], [-0.16588, 50.87857], [-0.16569, 50.87813], [-0.16546, 50.87765], [-0.1652, 50.87716], [-0.16499, 50.8768], [-0.16444, 50.87599], [-0.1641, 50.87554], [-0.16375, 50.87513], [-0.16337, 50.8747], [-0.16098, 50.87208], [-0.16043, 50.87149], [-0.16001, 50.871], [-0.15964, 50.87054]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3188255", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15441, 50.91148], [-0.15362, 50.91287], [-0.15236, 50.9148], [-0.15173, 50.91576], [-0.14853, 50.92048]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3188294", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15451, 51.25099], [-0.15454, 51.25051], [-0.15461, 51.24984], [-0.1547, 51.24922], [-0.15486, 51.24856], [-0.15505, 51.24795], [-0.15527, 51.24739], [-0.15566, 51.2465], [-0.15614, 51.24553], [-0.157, 51.24382], [-0.15732, 51.24332], [-0.15762, 51.24287], [-0.15801, 51.24233], [-0.15837, 51.24189], [-0.15879, 51.24141], [-0.15923, 51.24095], [-0.15961, 51.24058], [-0.16002, 51.24021], [-0.16043, 51.23988], [-0.16089, 51.23952], [-0.16181, 51.23888]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3189065", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11406, 51.50347], [-0.11416, 51.50339], [-0.11465, 51.50303], [-0.11491, 51.50284], [-0.11503, 51.5027], [-0.11513, 51.50253], [-0.11521, 51.50241], [-0.11529, 51.50223], [-0.11534, 51.50197]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3189209", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.10967, 51.26712], [-1.11471, 51.26683], [-1.11564, 51.26677], [-1.11668, 51.26667], [-1.11769, 51.26657], [-1.11908, 51.26641], [-1.12056, 51.2662], [-1.12166, 51.26601], [-1.12277, 51.26581], [-1.12389, 51.2656], [-1.12486, 51.2654], [-1.12604, 51.26513], [-1.12763, 51.26474], [-1.12899, 51.26437], [-1.13019, 51.26402], [-1.13143, 51.26363], [-1.13257, 51.26324], [-1.13363, 51.26285], [-1.13495, 51.26233], [-1.13524, 51.2622]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3189239", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.25865, 51.19469], [-1.25772, 51.19842], [-1.25749, 51.19921], [-1.25733, 51.19971], [-1.257, 51.20054], [-1.25664, 51.20131], [-1.25604, 51.20254], [-1.25537, 51.20362], [-1.25466, 51.20469], [-1.25352, 51.20612], [-1.25243, 51.20734], [-1.25149, 51.20824], [-1.24907, 51.21043], [-1.24627, 51.213]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3189246", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.32611, 51.05057], [-1.32581, 51.05144], [-1.32285, 51.0595]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3218434", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.60132, 51.59993], [-1.60189, 51.59972], [-1.60244, 51.59951], [-1.60272, 51.59941], [-1.60347, 51.59912], [-1.60424, 51.59885], [-1.60497, 51.59858], [-1.60573, 51.59832], [-1.60712, 51.59785], [-1.6085, 51.5974], [-1.61082, 51.59664], [-1.61452, 51.59544], [-1.61527, 51.59521], [-1.61603, 51.59498], [-1.61748, 51.59456], [-1.61849, 51.59428], [-1.61951, 51.594], [-1.62037, 51.59378], [-1.62135, 51.59353], [-1.6222, 51.59332], [-1.62311, 51.59311], [-1.6244, 51.59282], [-1.62586, 51.5925], [-1.62739, 51.59219], [-1.62954, 51.59177], [-1.63175, 51.59133], [-1.6344, 51.59081], [-1.63572, 51.59053], [-1.63703, 51.59025], [-1.63763, 51.59012], [-1.63849, 51.58992], [-1.63968, 51.58964], [-1.64073, 51.5894], [-1.64177, 51.58917], [-1.64317, 51.58888], [-1.64381, 51.58874], [-1.64456, 51.5886], [-1.64587, 51.58835], [-1.647, 51.58814], [-1.64777, 51.58802], [-1.64855, 51.58789], [-1.64954, 51.58774], [-1.6507, 51.58758], [-1.65181, 51.58742], [-1.65288, 51.58728], [-1.65374, 51.58718], [-1.65481, 51.58705], [-1.65575, 51.58695], [-1.65667, 51.58685], [-1.6574, 51.58679], [-1.65821, 51.58671], [-1.65917, 51.58664], [-1.66011, 51.58657], [-1.66092, 51.58652], [-1.66186, 51.58647], [-1.66322, 51.58642], [-1.66489, 51.58637], [-1.66652, 51.58634], [-1.66844, 51.58629], [-1.67034, 51.58623], [-1.67339, 51.58608]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3218448", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.76345, 51.57161], [-1.76467, 51.57134], [-1.76497, 51.57127], [-1.76782, 51.57063], [-1.76926, 51.5703], [-1.7706, 51.56998], [-1.77303, 51.56937], [-1.77424, 51.56906], [-1.77543, 51.56874]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3218521", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.83879, 51.54208], [-1.83953, 51.54187], [-1.8402, 51.54169], [-1.84152, 51.54135], [-1.84288, 51.54101], [-1.84414, 51.54071], [-1.84563, 51.54038], [-1.84704, 51.54007], [-1.84847, 51.53977], [-1.84988, 51.53948], [-1.85162, 51.53916], [-1.85337, 51.53886], [-1.85512, 51.53857], [-1.85687, 51.53831], [-1.85857, 51.53809], [-1.86025, 51.53788], [-1.86196, 51.53766], [-1.86284, 51.53755], [-1.86389, 51.53744], [-1.87166, 51.53658], [-1.87548, 51.53616], [-1.8775, 51.53594], [-1.87876, 51.53578], [-1.87935, 51.53569], [-1.8799, 51.53562], [-1.88098, 51.53544], [-1.88203, 51.53527], [-1.8831, 51.5351], [-1.8842, 51.53494], [-1.8847, 51.53488], [-1.88525, 51.53481], [-1.88626, 51.53469]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3220053", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.90008, 51.43878], [-0.90086, 51.43891], [-0.9019, 51.43905], [-0.91217, 51.44027], [-0.91518, 51.44061], [-0.91592, 51.44071], [-0.91678, 51.44084], [-0.91759, 51.44099], [-0.91781, 51.44103], [-0.9185, 51.44116], [-0.91936, 51.44134], [-0.92016, 51.44154], [-0.92093, 51.44176], [-0.92156, 51.44195]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3220055", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.85477, 51.42043], [-0.85622, 51.42106], [-0.87687, 51.43027], [-0.87891, 51.43118], [-0.88368, 51.4333]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3220056", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.80485, 51.34708], [-0.80554, 51.34746], [-0.80618, 51.34784], [-0.80675, 51.3482], [-0.80736, 51.34863], [-0.80787, 51.34902], [-0.80828, 51.34936], [-0.80881, 51.34983], [-0.80926, 51.35027], [-0.8096, 51.35063], [-0.80999, 51.35106], [-0.81034, 51.35148], [-0.81078, 51.35205], [-0.81385, 51.35728], [-0.81925, 51.36643], [-0.82941, 51.38373], [-0.83063, 51.38596], [-0.83184, 51.38834], [-0.83516, 51.39536], [-0.83681, 51.39888]]}}, {"type": "Feature", "properties": {"osm_id": "3220524", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.74718, 53.22658], [-2.74621, 53.22684], [-2.74528, 53.22712], [-2.7448, 53.22728], [-2.74372, 53.22769], [-2.74311, 53.22797], [-2.74254, 53.22826], [-2.74204, 53.22856], [-2.74139, 53.22902], [-2.74059, 53.22964], [-2.73985, 53.23016], [-2.7391, 53.23059], [-2.73829, 53.23094], [-2.73751, 53.23121], [-2.73684, 53.23141], [-2.73623, 53.23154], [-2.73534, 53.23168]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3232091", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.10882, 51.98178], [-2.10881, 51.98062], [-2.10881, 51.97955], [-2.10882, 51.97825], [-2.10882, 51.97725], [-2.10882, 51.9761], [-2.10882, 51.97484], [-2.10882, 51.97377], [-2.10883, 51.9724], [-2.10883, 51.97116], [-2.10883, 51.96985], [-2.1088, 51.9689], [-2.10874, 51.96845], [-2.1086, 51.96764], [-2.10839, 51.9669], [-2.10813, 51.96616], [-2.10784, 51.96552], [-2.10742, 51.96472], [-2.10694, 51.96388], [-2.10611, 51.96244], [-2.10541, 51.96123], [-2.10476, 51.9601], [-2.10443, 51.95955], [-2.10386, 51.95857], [-2.10321, 51.95746], [-2.10259, 51.95636], [-2.10199, 51.95532], [-2.10135, 51.95421], [-2.1007, 51.95309], [-2.10009, 51.95203], [-2.09948, 51.95098], [-2.09926, 51.95059], [-2.09876, 51.94973], [-2.09809, 51.94857], [-2.09734, 51.94726], [-2.09665, 51.94607], [-2.09608, 51.94508], [-2.09546, 51.944], [-2.09504, 51.94329], [-2.09473, 51.94274], [-2.09431, 51.94202], [-2.0937, 51.94095], [-2.09324, 51.94017], [-2.09269, 51.9392], [-2.09239, 51.93864], [-2.09223, 51.93831], [-2.09202, 51.9378], [-2.0919, 51.93748], [-2.09183, 51.93726], [-2.09146, 51.9361], [-2.09132, 51.93565], [-2.091, 51.93464], [-2.09077, 51.93391], [-2.0905, 51.93304], [-2.0904, 51.93272], [-2.09021, 51.9321], [-2.08993, 51.9312], [-2.0898, 51.93082], [-2.08954, 51.92999], [-2.08927, 51.9291], [-2.08914, 51.92867], [-2.08902, 51.9282], [-2.08896, 51.92792], [-2.0889, 51.92756]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3233125", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53902, 52.28477], [-1.53843, 52.28476], [-1.53717, 52.28472], [-1.53647, 52.28468], [-1.53581, 52.28466]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3241788", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.88626, 51.53469], [-1.88717, 51.5346], [-1.88807, 51.53451], [-1.88912, 51.53443], [-1.8896, 51.5344], [-1.89004, 51.53437], [-1.89108, 51.53432], [-1.89173, 51.5343], [-1.89269, 51.53428], [-1.89371, 51.53425], [-1.89474, 51.53424], [-1.89609, 51.53426], [-1.89755, 51.53431], [-1.89893, 51.53438], [-1.89992, 51.53445], [-1.90083, 51.53453], [-1.90172, 51.53462], [-1.90266, 51.53473], [-1.90347, 51.53483], [-1.90522, 51.5351], [-1.90608, 51.53525], [-1.90639, 51.53531]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3241789", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.95062, 51.53358], [-1.95145, 51.53331], [-1.95233, 51.53301], [-1.95399, 51.53243], [-1.95564, 51.53187], [-1.95687, 51.53148], [-1.95768, 51.53124], [-1.9585, 51.53103], [-1.95951, 51.53078], [-1.9602, 51.53062], [-1.96095, 51.53046], [-1.9617, 51.53032], [-1.96425, 51.52984], [-1.96606, 51.52952], [-1.96748, 51.52926], [-1.97566, 51.52778]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3241797", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.2056, 51.42357], [-2.2469, 51.41888]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3359971", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.34842, 51.36303], [-0.34842, 51.36202], [-0.34839, 51.36153], [-0.34839, 51.36106]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3400384", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.47946, 51.51946], [-2.48046, 51.51935], [-2.48149, 51.51925]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3400783", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.40888, 51.5277], [-2.40957, 51.52743], [-2.41048, 51.52707], [-2.41196, 51.52649], [-2.41256, 51.52625], [-2.41314, 51.52603], [-2.41408, 51.52568], [-2.41454, 51.52552], [-2.41525, 51.52527], [-2.41639, 51.52488], [-2.41739, 51.52456], [-2.41834, 51.52426], [-2.41907, 51.52404], [-2.41987, 51.5238], [-2.42048, 51.52363], [-2.42109, 51.52346]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3401457", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.56161, 51.524], [-2.56174, 51.52437], [-2.56188, 51.52476], [-2.56202, 51.5251], [-2.56237, 51.52579]]}}, {"type": "Feature", "properties": {"osm_id": "3415850", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.49093, 51.59434], [-2.49142, 51.59435], [-2.49223, 51.59442]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3416733", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.56237, 51.52579], [-2.56273, 51.52647], [-2.56305, 51.527], [-2.56337, 51.52748], [-2.56369, 51.52794], [-2.56403, 51.5284], [-2.56429, 51.52872], [-2.56457, 51.52906], [-2.56491, 51.52941], [-2.56517, 51.52969], [-2.56557, 51.53008], [-2.56591, 51.53039], [-2.56631, 51.53074], [-2.56676, 51.5311], [-2.56739, 51.53162], [-2.56815, 51.53223], [-2.5686, 51.53259], [-2.56899, 51.53291], [-2.56979, 51.53354], [-2.57014, 51.53382], [-2.57061, 51.53418], [-2.57124, 51.53462], [-2.57196, 51.5351], [-2.57271, 51.53554], [-2.57325, 51.53584], [-2.57383, 51.53616]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3444754", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.54073, 51.44556], [-2.53961, 51.44507], [-2.53853, 51.44457], [-2.53771, 51.44417], [-2.53683, 51.44374]]}}, {"type": "Feature", "properties": {"osm_id": "3469197", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.88851, 53.28161], [-2.88323, 53.28125], [-2.88057, 53.28107], [-2.87791, 53.28089], [-2.87636, 53.28077], [-2.87568, 53.28073], [-2.86612, 53.28007]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3469285", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.17418, 55.81986], [-4.17308, 55.81949], [-4.17266, 55.81937], [-4.17262, 55.81935], [-4.17182, 55.81915], [-4.1714, 55.81904], [-4.1708, 55.81891], [-4.17019, 55.8188], [-4.16893, 55.81859], [-4.16768, 55.8184], [-4.16642, 55.81821], [-4.1644, 55.8179], [-4.16337, 55.81775], [-4.16234, 55.81762], [-4.16155, 55.81754], [-4.16114, 55.81751], [-4.16073, 55.81747], [-4.16003, 55.81743], [-4.15929, 55.81739], [-4.15772, 55.81737], [-4.15691, 55.81738], [-4.15613, 55.81741], [-4.15487, 55.81746], [-4.15419, 55.81752], [-4.15359, 55.81757], [-4.15244, 55.81768]]}}, {"type": "Feature", "properties": {"osm_id": "3475018", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47394, 51.58711], [-2.47668, 51.58883], [-2.47935, 51.59051], [-2.47984, 51.59082], [-2.48012, 51.591]]}}, {"type": "Feature", "properties": {"osm_id": "3475137", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.43212, 51.5415], [-2.43202, 51.54182], [-2.43185, 51.54217], [-2.43176, 51.54236], [-2.43172, 51.54244], [-2.4317, 51.54257], [-2.43168, 51.54272], [-2.43168, 51.54289], [-2.4317, 51.54307], [-2.43175, 51.5433], [-2.4318, 51.54344], [-2.43187, 51.54357], [-2.43194, 51.54371], [-2.43201, 51.54384], [-2.43211, 51.54398], [-2.43223, 51.54413], [-2.43235, 51.54427], [-2.43248, 51.54439], [-2.43259, 51.54448], [-2.43284, 51.54467], [-2.43315, 51.54485], [-2.43369, 51.54515]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3475138", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.43624, 51.52061], [-2.4357, 51.5207], [-2.43514, 51.5208], [-2.43496, 51.52084], [-2.43479, 51.52088], [-2.43459, 51.52093], [-2.4344, 51.52099]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3486533", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.57736, 50.81255], [-1.577, 50.81309], [-1.57676, 50.81344], [-1.57656, 50.81371], [-1.57634, 50.81399], [-1.57608, 50.8143], [-1.57582, 50.81461], [-1.57548, 50.81497], [-1.57506, 50.8154], [-1.57475, 50.81568], [-1.5744, 50.816], [-1.57423, 50.81614], [-1.5739, 50.81641], [-1.57342, 50.81676], [-1.5731, 50.81698]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3486535", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.61792, 50.7798], [-1.61691, 50.78076], [-1.61648, 50.78111], [-1.61601, 50.78146], [-1.61555, 50.7818], [-1.61497, 50.78216], [-1.61442, 50.78248], [-1.6139, 50.78276], [-1.61009, 50.78467]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3489588", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.45225, 50.88748], [-1.45199, 50.88738], [-1.45174, 50.8873], [-1.45147, 50.88723], [-1.45115, 50.88718], [-1.45086, 50.88716], [-1.45054, 50.88717], [-1.45017, 50.8872], [-1.44984, 50.88727], [-1.44955, 50.88735], [-1.4493, 50.88743], [-1.44912, 50.88749], [-1.44875, 50.88761], [-1.44855, 50.88768], [-1.44843, 50.88773], [-1.44422, 50.88952], [-1.44399, 50.88963], [-1.44382, 50.88972], [-1.44356, 50.88985]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3491845", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.7406, 52.51858], [-1.73942, 52.5186], [-1.7379, 52.5186], [-1.7345, 52.51857], [-1.7271, 52.51849], [-1.72528, 52.51849]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3491846", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.67805, 52.55386], [-1.67798, 52.55443], [-1.67792, 52.55506]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3494289", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.73493, 53.13254], [-2.73672, 53.1328], [-2.7392, 53.13323], [-2.74266, 53.13388], [-2.74697, 53.13487], [-2.74973, 53.13552], [-2.75192, 53.13617], [-2.75456, 53.13708], [-2.75729, 53.1382], [-2.76364, 53.14077], [-2.76408, 53.14095], [-2.76608, 53.1418], [-2.77307, 53.14469], [-2.78177, 53.14827], [-2.79196, 53.15246], [-2.79842, 53.15507], [-2.80352, 53.15715], [-2.82064, 53.16429], [-2.82369, 53.16562], [-2.82482, 53.1662], [-2.82621, 53.16691], [-2.82826, 53.16801], [-2.83014, 53.16916], [-2.83111, 53.16976]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3510929", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.05582, 51.09221], [1.05067, 51.09305]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3511973", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.50076, 51.34486], [0.50039, 51.34565], [0.5002, 51.34604], [0.5, 51.34643], [0.49959, 51.34721], [0.49938, 51.3476], [0.49916, 51.34798], [0.49899, 51.34828], [0.49881, 51.34858], [0.49863, 51.34888], [0.49845, 51.34916], [0.49808, 51.34974], [0.49769, 51.35032], [0.49729, 51.3509], [0.49688, 51.35147], [0.49642, 51.35209], [0.49595, 51.3527], [0.49544, 51.35332], [0.49492, 51.35395], [0.49437, 51.35457], [0.4941, 51.35488], [0.49383, 51.35518], [0.4927, 51.3564], [0.49147, 51.3577], [0.48912, 51.3602], [0.48729, 51.36216], [0.48679, 51.3627]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3511974", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.2833, 51.39999], [0.28064, 51.40082], [0.27993, 51.40105], [0.27908, 51.40127], [0.27857, 51.4014], [0.27756, 51.40164], [0.27633, 51.40186], [0.27535, 51.40201], [0.27448, 51.40212], [0.27318, 51.40225], [0.27209, 51.40231], [0.27096, 51.40236], [0.26983, 51.40236], [0.25707, 51.40182], [0.24609, 51.40138]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3511978", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09178, 51.44129], [-0.09216, 51.44184], [-0.09243, 51.44228], [-0.09274, 51.44279], [-0.09305, 51.44333], [-0.09334, 51.44384], [-0.0938, 51.44462], [-0.09423, 51.44532], [-0.09458, 51.44583], [-0.0951, 51.44656]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3511979", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.05729, 51.42116], [-0.05699, 51.42102], [-0.0566, 51.42082], [-0.0562, 51.42059], [-0.05571, 51.42032], [-0.05521, 51.42003], [-0.05406, 51.41929], [-0.05349, 51.4189], [-0.05326, 51.41874], [-0.05305, 51.41858], [-0.05266, 51.41829], [-0.05235, 51.41804], [-0.05208, 51.41783], [-0.05179, 51.4176], [-0.0516, 51.41743], [-0.05142, 51.41727]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3527378", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.02898, 51.66801], [-0.02916, 51.66687], [-0.02941, 51.6651], [-0.02963, 51.66366], [-0.02985, 51.66194]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3527419", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.10882, 50.79672], [-1.10875, 50.79673], [-1.10752, 50.79696], [-1.10731, 50.79699], [-1.10715, 50.79702], [-1.10697, 50.79704], [-1.10677, 50.79705], [-1.10659, 50.79705], [-1.10639, 50.79705], [-1.10618, 50.79703], [-1.10599, 50.79701], [-1.10582, 50.79698]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3527677", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.05407, 50.83405], [-1.05359, 50.8345], [-1.0534, 50.8347]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3527999", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.94903, 50.97155], [-0.94959, 50.97204]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3528001", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.94366, 51.0054], [-0.9427, 51.00597], [-0.94165, 51.0066], [-0.94098, 51.00699], [-0.94092, 51.00702], [-0.94063, 51.0072], [-0.94011, 51.00751], [-0.93901, 51.00813], [-0.93779, 51.00887], [-0.93704, 51.0093], [-0.93637, 51.0097], [-0.93566, 51.01012], [-0.93507, 51.01046], [-0.93428, 51.01092], [-0.9335, 51.01138], [-0.93278, 51.0118], [-0.93202, 51.01225], [-0.93133, 51.01265], [-0.92931, 51.01384], [-0.928, 51.01462], [-0.92552, 51.01607]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3528029", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.92168, 51.01833], [-0.92, 51.01929], [-0.91883, 51.01999], [-0.91824, 51.02031], [-0.91757, 51.02065], [-0.91669, 51.02106], [-0.91396, 51.02216], [-0.91338, 51.02241], [-0.91279, 51.02271], [-0.91211, 51.02306], [-0.91144, 51.02344], [-0.91064, 51.02395], [-0.91012, 51.02429], [-0.90942, 51.02481], [-0.9087, 51.02543]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3531083", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.23889, 51.58686], [-0.23869, 51.58757], [-0.23862, 51.58778], [-0.23856, 51.58799], [-0.23843, 51.58841], [-0.23826, 51.58896], [-0.23815, 51.58937], [-0.23804, 51.5897], [-0.23774, 51.59071], [-0.23759, 51.59119], [-0.2375, 51.5915], [-0.23739, 51.59191]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3533550", "railway": "narrow_gauge", "voltage": "250"}, "geometry": {"type": "LineString", "coordinates": [[-1.39917, 50.87072], [-1.39908, 50.87078], [-1.39894, 50.87089], [-1.39866, 50.8711], [-1.39451, 50.87395], [-1.3936, 50.87459], [-1.39339, 50.87474]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3533710", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.80013, 51.07124], [-0.79817, 51.07256]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3533711", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.67692, 51.11626], [-0.67652, 51.11635]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3534132", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.31724, 51.06867], [-0.31721, 51.06899], [-0.31719, 51.06924], [-0.31716, 51.06957], [-0.31708, 51.0699], [-0.31688, 51.07068], [-0.31664, 51.07141], [-0.3164, 51.07199], [-0.31611, 51.0726], [-0.31574, 51.07325], [-0.31531, 51.07388], [-0.31476, 51.07458], [-0.31423, 51.07519], [-0.31365, 51.07584], [-0.31308, 51.07638], [-0.31241, 51.07695], [-0.31183, 51.07738], [-0.31113, 51.07788], [-0.31049, 51.07831], [-0.30984, 51.07871], [-0.30912, 51.0791], [-0.30842, 51.07945], [-0.30831, 51.0795], [-0.30773, 51.07977], [-0.30685, 51.08014], [-0.30599, 51.08049], [-0.30501, 51.08084], [-0.30378, 51.0812], [-0.29826, 51.08271], [-0.28779, 51.0856], [-0.28669, 51.08592], [-0.28566, 51.08624], [-0.28455, 51.08661], [-0.28287, 51.08721], [-0.28203, 51.08753], [-0.28115, 51.08788], [-0.28055, 51.08813], [-0.27334, 51.09138], [-0.26532, 51.09498], [-0.26458, 51.09531], [-0.26378, 51.09565], [-0.26302, 51.09596], [-0.26267, 51.0961], [-0.26203, 51.09635], [-0.261, 51.09676], [-0.24062, 51.10465], [-0.23974, 51.10497], [-0.23881, 51.10528], [-0.23681, 51.10591], [-0.23586, 51.10624], [-0.23496, 51.10657], [-0.23409, 51.1069], [-0.23331, 51.10721], [-0.23245, 51.10757], [-0.23131, 51.10809], [-0.23078, 51.10835], [-0.22, 51.11392], [-0.21935, 51.11423], [-0.21873, 51.11449], [-0.21808, 51.11474], [-0.2174, 51.11495], [-0.21668, 51.11515], [-0.21598, 51.11531], [-0.21522, 51.11545], [-0.21456, 51.11554], [-0.21379, 51.11561], [-0.21305, 51.11564], [-0.21214, 51.11564], [-0.2112, 51.11561], [-0.21031, 51.11552], [-0.20943, 51.1154], [-0.19684, 51.11352], [-0.19679, 51.11352], [-0.19063, 51.1126], [-0.18983, 51.11248], [-0.18876, 51.11232], [-0.18793, 51.1122], [-0.1872, 51.11211], [-0.18642, 51.11203], [-0.18554, 51.11195], [-0.18499, 51.11192], [-0.18462, 51.1119], [-0.18367, 51.11188], [-0.18284, 51.11188]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3541713", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.67627, 50.7869], [-0.67621, 50.78702], [-0.67572, 50.78797], [-0.6755, 50.7883], [-0.67528, 50.7886], [-0.67492, 50.78904], [-0.67467, 50.78935]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3542865", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.55979, 50.82799], [-0.5593, 50.82795], [-0.55881, 50.82789], [-0.55831, 50.8278], [-0.55782, 50.82771], [-0.55729, 50.82757], [-0.55663, 50.82739], [-0.55615, 50.82724], [-0.55532, 50.82701], [-0.55417, 50.82672], [-0.55342, 50.82654], [-0.55262, 50.82638], [-0.55194, 50.82626], [-0.55121, 50.82614], [-0.5504, 50.82603], [-0.54964, 50.82594], [-0.54888, 50.82586], [-0.54255, 50.8253], [-0.54233, 50.82528], [-0.5373, 50.82481], [-0.53303, 50.82448], [-0.51924, 50.82328], [-0.51868, 50.82323], [-0.51801, 50.82316], [-0.51738, 50.82307], [-0.51671, 50.82297], [-0.51596, 50.82284], [-0.51526, 50.82271], [-0.51452, 50.82256], [-0.51382, 50.82238], [-0.51314, 50.82221], [-0.51242, 50.822], [-0.51187, 50.82183], [-0.51132, 50.82165], [-0.51079, 50.82146], [-0.50991, 50.82114], [-0.50927, 50.82087], [-0.50867, 50.8206], [-0.50657, 50.81961], [-0.50602, 50.81937], [-0.50547, 50.81915], [-0.50496, 50.81895], [-0.50435, 50.81872], [-0.50359, 50.81847], [-0.50277, 50.81823], [-0.50198, 50.81801], [-0.50117, 50.81782], [-0.50044, 50.81766], [-0.49977, 50.81753], [-0.49901, 50.81739], [-0.49825, 50.81728], [-0.49751, 50.81718], [-0.49661, 50.81707], [-0.49494, 50.81688], [-0.49406, 50.8168], [-0.49318, 50.81672], [-0.49161, 50.81662], [-0.49074, 50.81658], [-0.49019, 50.81657], [-0.48967, 50.81655], [-0.48931, 50.81654], [-0.4886, 50.81653], [-0.4877, 50.81652], [-0.48262, 50.81655], [-0.48049, 50.81656], [-0.47772, 50.81657], [-0.47603, 50.81655], [-0.47557, 50.81653]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3548761", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.33046, 52.06786], [-1.33048, 52.06768], [-1.3305, 52.06747], [-1.33052, 52.0673], [-1.33052, 52.06713], [-1.33053, 52.06697], [-1.33052, 52.06667], [-1.3305, 52.06638], [-1.33048, 52.06617], [-1.33046, 52.06598], [-1.33042, 52.06566], [-1.33036, 52.06536], [-1.33032, 52.06514], [-1.33027, 52.06497], [-1.33024, 52.06484], [-1.33019, 52.06467], [-1.33014, 52.0645], [-1.3301, 52.06437], [-1.33004, 52.06419], [-1.32996, 52.064], [-1.3299, 52.06383], [-1.3298, 52.06359], [-1.32967, 52.06333], [-1.32957, 52.06313], [-1.32947, 52.06294], [-1.32937, 52.06276], [-1.32925, 52.06255], [-1.32906, 52.06225], [-1.32885, 52.06194], [-1.32865, 52.06167], [-1.3284, 52.06134], [-1.32811, 52.06099], [-1.32774, 52.06058], [-1.32757, 52.06041], [-1.32724, 52.06009], [-1.32691, 52.05978], [-1.32665, 52.05956], [-1.32632, 52.0593], [-1.32605, 52.0591], [-1.32576, 52.05888], [-1.32542, 52.05862], [-1.3249, 52.05825], [-1.32417, 52.0578]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3548762", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.32643, 52.08003], [-1.3267, 52.07912], [-1.32683, 52.07866]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3549067", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28788, 51.94707], [-1.28765, 51.94787], [-1.28749, 51.94832], [-1.28715, 51.94913], [-1.28682, 51.9498], [-1.2864, 51.95054], [-1.28591, 51.95126], [-1.28548, 51.9518], [-1.28491, 51.95243], [-1.28437, 51.95296], [-1.28355, 51.95367], [-1.28274, 51.9543]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3549068", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27541, 51.96308], [-1.27533, 51.96453], [-1.27522, 51.96589], [-1.27488, 51.96867], [-1.27398, 51.97601], [-1.27372, 51.97812], [-1.27364, 51.97933], [-1.27362, 51.98011], [-1.27368, 51.98177], [-1.2738, 51.98295], [-1.274, 51.9841], [-1.27422, 51.98497], [-1.27447, 51.98587], [-1.27477, 51.98677]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3549118", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.32417, 52.0578], [-1.32351, 52.05743], [-1.32287, 52.05708], [-1.32221, 52.05677], [-1.32121, 52.05633], [-1.32007, 52.05589], [-1.31885, 52.0554], [-1.31722, 52.0548], [-1.31493, 52.05396], [-1.31284, 52.0532], [-1.31083, 52.05244], [-1.30906, 52.05178], [-1.30818, 52.05144], [-1.30735, 52.0511], [-1.3065, 52.05072], [-1.30563, 52.05031], [-1.3048, 52.04989], [-1.30401, 52.04948], [-1.3027, 52.04872], [-1.30206, 52.04832], [-1.30147, 52.04794], [-1.30057, 52.04731], [-1.29972, 52.04667], [-1.29892, 52.04603], [-1.29818, 52.04538]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3549119", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29818, 52.04538], [-1.29745, 52.0447], [-1.29678, 52.04401], [-1.29651, 52.04371], [-1.29616, 52.0433], [-1.29591, 52.043], [-1.29559, 52.04259], [-1.29536, 52.04231], [-1.29513, 52.042], [-1.2949, 52.0417], [-1.29466, 52.04137], [-1.29438, 52.0409], [-1.29411, 52.04039], [-1.29396, 52.04007], [-1.29385, 52.03982]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3549197", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27172, 51.97934], [-1.27198, 51.98163]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550617", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.17014, 51.91078], [-1.17284, 51.91197]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550662", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08938, 51.90976], [-1.08677, 51.91032], [-1.08236, 51.91117], [-1.07892, 51.91176], [-1.07889, 51.91177], [-1.07475, 51.91247], [-1.07151, 51.91301], [-1.06916, 51.91341], [-1.06407, 51.91423], [-1.06032, 51.91492], [-1.0589, 51.91527], [-1.05861, 51.91535], [-1.05689, 51.91587]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550663", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.05658, 51.91597], [-1.05508, 51.91642], [-1.05321, 51.91703], [-1.05033, 51.91787], [-1.04641, 51.9188], [-1.04192, 51.91972], [-1.0375, 51.92043], [-1.03225, 51.92124], [-1.02736, 51.92203], [-1.02693, 51.92211], [-1.02257, 51.92276], [-1.0173, 51.92362], [-1.017, 51.92368], [-1.01416, 51.92411]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550871", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.37817, 52.17331], [-1.37887, 52.17361], [-1.38082, 52.1744], [-1.38148, 52.1746], [-1.38206, 52.17475], [-1.38259, 52.17488], [-1.38294, 52.17495], [-1.38334, 52.17507], [-1.38424, 52.17522], [-1.38595, 52.17542], [-1.38807, 52.17557], [-1.38979, 52.17566], [-1.39148, 52.17573], [-1.39419, 52.1758], [-1.39575, 52.17582], [-1.3997, 52.17589], [-1.40644, 52.17601], [-1.41255, 52.17616], [-1.41316, 52.17618], [-1.41469, 52.17618], [-1.41817, 52.17617], [-1.419, 52.17615], [-1.41982, 52.17612], [-1.42076, 52.17607], [-1.42147, 52.17602], [-1.42252, 52.17595], [-1.42376, 52.17585], [-1.42498, 52.17572], [-1.4259, 52.17562], [-1.42771, 52.17538], [-1.42962, 52.17508], [-1.4307, 52.1749], [-1.43202, 52.17464], [-1.43541, 52.17392], [-1.43586, 52.1738], [-1.43696, 52.17354], [-1.43742, 52.17344], [-1.43799, 52.17331], [-1.43858, 52.17318], [-1.43904, 52.17308], [-1.43942, 52.17299], [-1.43977, 52.1729], [-1.44011, 52.17281], [-1.44044, 52.17272], [-1.44074, 52.17264], [-1.44109, 52.17254], [-1.44216, 52.17223]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550913", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.32567, 52.1284], [-1.32536, 52.12783], [-1.32524, 52.1276], [-1.32514, 52.12741], [-1.32506, 52.12723], [-1.32495, 52.12702], [-1.32484, 52.12678], [-1.32472, 52.12652], [-1.3246, 52.12625], [-1.32449, 52.12603], [-1.32441, 52.12584], [-1.32425, 52.12548], [-1.32418, 52.12532]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550914", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.36302, 52.16668], [-1.35892, 52.16536], [-1.35625, 52.1645], [-1.35567, 52.16431], [-1.35526, 52.16417], [-1.35484, 52.16403], [-1.35445, 52.16389], [-1.35406, 52.16375], [-1.35364, 52.16358], [-1.35333, 52.16345], [-1.35295, 52.1633], [-1.35263, 52.16316], [-1.35222, 52.16297], [-1.35195, 52.16284], [-1.35166, 52.1627], [-1.35133, 52.16254], [-1.35103, 52.16238], [-1.35068, 52.1622], [-1.35034, 52.162], [-1.35001, 52.16181], [-1.34982, 52.16169], [-1.34959, 52.16154], [-1.34927, 52.16133], [-1.34896, 52.16113], [-1.34874, 52.16096], [-1.3485, 52.1608], [-1.34821, 52.16058], [-1.34795, 52.16038], [-1.3477, 52.16018], [-1.34741, 52.15993], [-1.34714, 52.1597], [-1.34689, 52.15947], [-1.34661, 52.1592], [-1.34631, 52.1589], [-1.34604, 52.15862], [-1.34578, 52.15834], [-1.34555, 52.15807], [-1.34533, 52.15781], [-1.34517, 52.15758], [-1.345, 52.15736], [-1.34484, 52.15715], [-1.34468, 52.15691], [-1.34452, 52.15666], [-1.34441, 52.15649], [-1.34426, 52.15623], [-1.34409, 52.15594], [-1.34397, 52.1557], [-1.3439, 52.15557], [-1.34381, 52.15539], [-1.34367, 52.15506], [-1.34353, 52.15473], [-1.34342, 52.15443], [-1.34332, 52.15413], [-1.34321, 52.15375], [-1.34312, 52.15343], [-1.34304, 52.15311], [-1.34295, 52.15268], [-1.34282, 52.15205], [-1.34246, 52.15027], [-1.34236, 52.14981], [-1.34222, 52.14911], [-1.34214, 52.14876], [-1.34208, 52.14852], [-1.34201, 52.14822], [-1.34193, 52.14794], [-1.34187, 52.14775], [-1.34181, 52.14756], [-1.34174, 52.14735], [-1.34162, 52.14703], [-1.34153, 52.14681], [-1.34142, 52.14654], [-1.3413, 52.14627], [-1.34119, 52.14605], [-1.34102, 52.14569], [-1.3409, 52.14547]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3550915", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.4229, 52.22528], [-1.42252, 52.2247], [-1.42205, 52.22404], [-1.42158, 52.22342]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3554443", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33244, 51.27519], [-0.33259, 51.27636], [-0.33276, 51.27753], [-0.33292, 51.27847], [-0.33303, 51.27894], [-0.33316, 51.2794], [-0.33338, 51.2801], [-0.3335, 51.28044], [-0.33363, 51.28078], [-0.33392, 51.28149], [-0.33413, 51.28216], [-0.33435, 51.28302], [-0.33455, 51.28389]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3554444", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33181, 51.27084], [-0.33244, 51.27519]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3554452", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.30966, 51.23342], [-0.3128, 51.23588]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3555092", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.52989, 51.25823], [-0.53045, 51.25809], [-0.53231, 51.25762]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590552", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.75586, 51.05881], [-1.75524, 51.05867], [-1.75474, 51.05857], [-1.75405, 51.05844], [-1.75337, 51.05832], [-1.75264, 51.05819], [-1.75201, 51.0581], [-1.75127, 51.05799], [-1.75043, 51.05787], [-1.74972, 51.05776], [-1.74907, 51.05766], [-1.74843, 51.05754], [-1.74773, 51.05741], [-1.74709, 51.05728], [-1.7465, 51.05715], [-1.74579, 51.05699], [-1.74524, 51.05685], [-1.74471, 51.05671], [-1.74413, 51.05655], [-1.7436, 51.05638], [-1.74244, 51.05601], [-1.74138, 51.05563], [-1.74047, 51.05528], [-1.73958, 51.0549], [-1.73869, 51.05449], [-1.73772, 51.05401], [-1.737, 51.05362], [-1.73618, 51.05314], [-1.73551, 51.05272], [-1.73483, 51.05228], [-1.73422, 51.05185], [-1.73363, 51.0514], [-1.73296, 51.05087], [-1.73233, 51.05033], [-1.73124, 51.04933], [-1.73053, 51.04873], [-1.72991, 51.04825], [-1.72913, 51.04771], [-1.72822, 51.04711], [-1.72732, 51.04657], [-1.72651, 51.04611], [-1.72552, 51.04561], [-1.72474, 51.04524], [-1.72423, 51.04502], [-1.72353, 51.04473], [-1.72278, 51.04443], [-1.72188, 51.04411], [-1.72102, 51.04383], [-1.72003, 51.04353], [-1.71914, 51.04328], [-1.71811, 51.04303], [-1.71696, 51.04278], [-1.71597, 51.04259], [-1.71508, 51.04243], [-1.71412, 51.04229], [-1.71318, 51.04217], [-1.71229, 51.04208], [-1.71148, 51.04201], [-1.71066, 51.04197], [-1.70995, 51.04193], [-1.70912, 51.04191], [-1.70825, 51.04191], [-1.70728, 51.04191], [-1.70632, 51.04193], [-1.70484, 51.042]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590553", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.78, 51.06521], [-1.77961, 51.06513]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590652", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.1377, 51.19741], [-2.13851, 51.19802], [-2.14094, 51.19998], [-2.14183, 51.20067], [-2.1427, 51.20127], [-2.14376, 51.20189], [-2.14481, 51.20243], [-2.14595, 51.20292], [-2.14712, 51.20335], [-2.14846, 51.20377], [-2.14962, 51.20407], [-2.15065, 51.2043], [-2.1518, 51.20451], [-2.15284, 51.20467], [-2.15391, 51.20479], [-2.15489, 51.20487], [-2.15588, 51.20492], [-2.15656, 51.20495], [-2.15734, 51.20496], [-2.15804, 51.20494], [-2.15879, 51.20491], [-2.15964, 51.20484], [-2.16275, 51.20457], [-2.16358, 51.20453], [-2.16442, 51.2045], [-2.16537, 51.2045], [-2.16626, 51.20453], [-2.16717, 51.20458], [-2.16806, 51.20467], [-2.16892, 51.20478], [-2.16984, 51.2049], [-2.17072, 51.20505], [-2.17158, 51.20523], [-2.17244, 51.20541], [-2.17332, 51.20565], [-2.17375, 51.20577], [-2.17407, 51.20587], [-2.17481, 51.20612], [-2.1752, 51.20628]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590857", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.09629, 50.96871], [0.0965, 50.96874], [0.09669, 50.96877]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590858", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.18913, 51.04677], [0.19004, 51.04722], [0.19239, 51.04832]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590859", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.15163, 51.13054], [0.15138, 51.13104], [0.15114, 51.13154]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3590860", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.10582, 51.16933], [0.1053, 51.17206], [0.10447, 51.1734], [0.1039, 51.17431], [0.10323, 51.17506]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3590861", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01615, 51.12912], [-0.01736, 51.12709], [-0.0175, 51.12686], [-0.01754, 51.1268], [-0.0176, 51.12671], [-0.01766, 51.12662], [-0.01771, 51.12656], [-0.01777, 51.12648], [-0.01784, 51.1264]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3619847", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.05403, 51.77565], [0.05229, 51.77528], [0.05064, 51.77502], [0.04934, 51.77486], [0.04803, 51.77475], [0.0474, 51.77472], [0.04608, 51.77467], [0.04487, 51.77468], [0.04358, 51.77471], [0.04254, 51.77479], [0.04249, 51.7748], [0.04239, 51.77481], [0.04112, 51.77496], [0.04084, 51.775], [0.0403, 51.77508]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3636480", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.06729, 51.51106], [-0.06687, 51.51109], [-0.06634, 51.51113]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3648768", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.83655, 53.3594], [-1.84519, 53.35697]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3648769", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.84519, 53.35697], [-1.84946, 53.35582], [-1.89129, 53.34402]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3648918", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.2853, 51.41268], [-0.28476, 51.41254], [-0.28408, 51.41232], [-0.2836, 51.41214], [-0.28299, 51.41186], [-0.28261, 51.41165], [-0.28161, 51.41103], [-0.28, 51.41001], [-0.27906, 51.40941], [-0.27799, 51.40873], [-0.27693, 51.40804], [-0.27583, 51.40733], [-0.27438, 51.4064], [-0.27177, 51.40473], [-0.27039, 51.40385], [-0.27003, 51.40366], [-0.26954, 51.40342], [-0.26908, 51.40323], [-0.26845, 51.403], [-0.26794, 51.40284], [-0.26734, 51.4027], [-0.26651, 51.40254], [-0.26605, 51.40249], [-0.26567, 51.40247], [-0.26533, 51.40246], [-0.26479, 51.40246], [-0.26397, 51.40255], [-0.26321, 51.40266], [-0.25902, 51.40349], [-0.25855, 51.40357], [-0.2577, 51.4037], [-0.25725, 51.40379]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3648973", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.12723, 51.5321], [-0.12727, 51.53215], [-0.12736, 51.53226]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3648974", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.13122, 51.54238], [-0.1313, 51.54255], [-0.13146, 51.54283], [-0.13159, 51.54308], [-0.13166, 51.54325], [-0.13191, 51.54361]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3649010", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.14604, 51.54178], [-0.14622, 51.54178], [-0.1464, 51.54177], [-0.1467, 51.54177], [-0.14682, 51.54178], [-0.14694, 51.54179], [-0.14715, 51.54181], [-0.1473, 51.54183], [-0.14748, 51.54186], [-0.14765, 51.5419], [-0.14788, 51.54196], [-0.14821, 51.54205], [-0.14893, 51.54228], [-0.14927, 51.54238], [-0.1496, 51.54248]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3649036", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19214, 51.53731], [-0.1913, 51.53764], [-0.19115, 51.5377], [-0.1908, 51.53785], [-0.19046, 51.53798], [-0.18995, 51.5382], [-0.1897, 51.53831], [-0.18876, 51.53867], [-0.188, 51.53897], [-0.18741, 51.53921], [-0.18603, 51.53967], [-0.18528, 51.5399], [-0.18459, 51.5401]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3649048", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.15875, 51.55205], [-0.15939, 51.55196], [-0.16254, 51.55146], [-0.16486, 51.5511], [-0.16643, 51.55088], [-0.17028, 51.55029], [-0.17845, 51.54905], [-0.17988, 51.54879], [-0.1814, 51.54861]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3655117", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.21186, 51.45473], [-0.21217, 51.45501], [-0.21239, 51.45527], [-0.21254, 51.45553], [-0.21265, 51.45577], [-0.21273, 51.45605], [-0.21274, 51.45639], [-0.21267, 51.45673], [-0.21258, 51.45699], [-0.21246, 51.45722], [-0.21225, 51.45753], [-0.21204, 51.45778]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3661636", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.57383, 51.53616], [-2.57603, 51.53732], [-2.58176, 51.53992], [-2.58702, 51.54215]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3661637", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.65065, 51.56385], [-2.65728, 51.56592]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3661755", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.7823, 51.58406], [-2.77983, 51.58413], [-2.77841, 51.58415], [-2.77709, 51.58418], [-2.77607, 51.58421], [-2.77296, 51.58426], [-2.77074, 51.5843], [-2.76984, 51.58432]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3661757", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.65728, 51.56592], [-2.71066, 51.58269], [-2.71796, 51.58465], [-2.71953, 51.585], [-2.72164, 51.58534], [-2.72329, 51.58556], [-2.72399, 51.58561], [-2.72629, 51.58576], [-2.72952, 51.58578], [-2.73229, 51.5857], [-2.73409, 51.58558], [-2.74011, 51.58545], [-2.74574, 51.58521], [-2.75114, 51.58509]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3663203", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.06634, 51.51113], [-0.06586, 51.51117]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3663322", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.0643, 51.52349], [-0.06309, 51.52357], [-0.06275, 51.52358]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3663323", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.08193, 51.51798], [-0.08189, 51.51804], [-0.08172, 51.51837], [-0.08104, 51.5196]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3663324", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.03153, 51.52919], [-0.03087, 51.52929], [-0.0303, 51.52938], [-0.02974, 51.52947], [-0.02915, 51.52953], [-0.02865, 51.52958], [-0.0279, 51.52965], [-0.02743, 51.52969], [-0.02683, 51.52975], [-0.02617, 51.52982], [-0.02567, 51.52988], [-0.02522, 51.52994], [-0.02495, 51.52998]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "3663332", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.23825, 53.48181], [-2.23817, 53.48178], [-2.23812, 53.48175], [-2.23808, 53.48172], [-2.23806, 53.48169], [-2.23804, 53.48167], [-2.23803, 53.48164], [-2.23802, 53.48162], [-2.23802, 53.48158], [-2.23802, 53.48156], [-2.23804, 53.48152], [-2.23806, 53.48149], [-2.23809, 53.48146], [-2.23814, 53.48143], [-2.23833, 53.4813], [-2.23844, 53.48122], [-2.23846, 53.48121], [-2.23854, 53.48116], [-2.23871, 53.48105], [-2.23875, 53.48103], [-2.23882, 53.48097], [-2.23887, 53.48094]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3663959", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.9119, 53.31249], [-1.91116, 53.31267], [-1.91069, 53.31281], [-1.9102, 53.31297], [-1.90975, 53.31314], [-1.90882, 53.31351], [-1.90795, 53.31388], [-1.90688, 53.31435], [-1.90643, 53.31456], [-1.90583, 53.31483], [-1.90543, 53.31501], [-1.90506, 53.31517], [-1.9044, 53.31545], [-1.90421, 53.31553], [-1.904, 53.3156], [-1.90372, 53.31569], [-1.9034, 53.31577], [-1.90289, 53.31588], [-1.90231, 53.316], [-1.90177, 53.31609], [-1.90124, 53.31615], [-1.90079, 53.3162], [-1.90028, 53.31621], [-1.89984, 53.31621]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3663960", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.89984, 53.31621], [-1.89912, 53.31618], [-1.89839, 53.31613], [-1.89767, 53.31605], [-1.8969, 53.31594], [-1.89609, 53.31578], [-1.89528, 53.31556], [-1.89446, 53.31529]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3663961", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.88792, 53.31154], [-1.88744, 53.31118], [-1.88702, 53.3108]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3663962", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.88702, 53.3108], [-1.88669, 53.31043], [-1.88646, 53.31013], [-1.88636, 53.30998], [-1.88625, 53.30977], [-1.88603, 53.30927], [-1.88589, 53.30885], [-1.88581, 53.30847], [-1.88575, 53.30807], [-1.88573, 53.30785], [-1.88573, 53.30755], [-1.88577, 53.30691], [-1.88587, 53.3064], [-1.88601, 53.30595], [-1.88627, 53.30535], [-1.88661, 53.30477], [-1.88735, 53.30366], [-1.88836, 53.30213], [-1.88885, 53.30136], [-1.88937, 53.30061], [-1.88946, 53.30049], [-1.88969, 53.30013]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3663963", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.97516, 53.31968], [-1.97398, 53.31919], [-1.97161, 53.31821], [-1.97092, 53.31794], [-1.97048, 53.31778], [-1.9701, 53.31765], [-1.96923, 53.3174], [-1.96817, 53.31716], [-1.96762, 53.31705], [-1.96704, 53.31697], [-1.96634, 53.31689], [-1.96537, 53.31681], [-1.96437, 53.31679], [-1.96395, 53.3168], [-1.96247, 53.31687], [-1.9618, 53.31689], [-1.96163, 53.3169], [-1.96148, 53.3169], [-1.96082, 53.31689], [-1.96011, 53.31685], [-1.95951, 53.31681], [-1.95901, 53.31675], [-1.9585, 53.31669], [-1.95807, 53.31661], [-1.95778, 53.31656], [-1.95747, 53.3165], [-1.95685, 53.31637], [-1.95624, 53.31621], [-1.95568, 53.31604], [-1.95508, 53.31584], [-1.95448, 53.31562], [-1.9539, 53.31535], [-1.95328, 53.31504], [-1.95297, 53.31488], [-1.95265, 53.31469], [-1.95234, 53.31448], [-1.952, 53.31425], [-1.95178, 53.31408], [-1.95153, 53.31388], [-1.95111, 53.31349], [-1.94985, 53.31222], [-1.94919, 53.31157], [-1.94852, 53.31089], [-1.9477, 53.31006], [-1.94726, 53.30962], [-1.9468, 53.30915], [-1.94642, 53.30879], [-1.94592, 53.30837], [-1.94536, 53.30798], [-1.94495, 53.30773], [-1.94473, 53.30761], [-1.94445, 53.30746], [-1.94403, 53.30726], [-1.94353, 53.30704], [-1.94298, 53.30683]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3665588", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.24197, 52.18653], [0.24488, 52.18612], [0.25007, 52.18539], [0.25044, 52.18534], [0.25115, 52.18523], [0.2527, 52.18502], [0.25771, 52.18431], [0.25798, 52.18427], [0.25886, 52.18415], [0.25969, 52.18403], [0.26043, 52.18393], [0.26125, 52.18381], [0.26219, 52.18368], [0.26329, 52.18352], [0.26469, 52.18333], [0.26554, 52.18321], [0.26979, 52.18261], [0.27063, 52.1825], [0.27205, 52.18229], [0.27258, 52.18221], [0.273, 52.18216], [0.27363, 52.18207], [0.27394, 52.18204], [0.27448, 52.18199], [0.27491, 52.18196], [0.27526, 52.18194], [0.27562, 52.18192], [0.27605, 52.18191], [0.27633, 52.18191], [0.27689, 52.1819], [0.27736, 52.1819], [0.27777, 52.18191], [0.27854, 52.18195], [0.2792, 52.182], [0.27949, 52.18203], [0.27988, 52.18208], [0.28018, 52.18212], [0.28054, 52.18218]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3666100", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.49366, 53.67719], [-1.49417, 53.67707], [-1.49469, 53.67697], [-1.49514, 53.67691], [-1.49569, 53.67686], [-1.49619, 53.67684], [-1.49674, 53.67682], [-1.49728, 53.67684], [-1.49796, 53.6769], [-1.49864, 53.67698], [-1.49947, 53.67715], [-1.5004, 53.67745]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3677425", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.45276, 51.78655], [-2.45268, 51.78574], [-2.45254, 51.78504], [-2.45238, 51.78454], [-2.45219, 51.78407], [-2.45195, 51.78351], [-2.45164, 51.78296], [-2.45124, 51.78236], [-2.45075, 51.78174], [-2.45026, 51.78117], [-2.4496, 51.78054], [-2.44911, 51.78014], [-2.44841, 51.77963], [-2.44745, 51.77894], [-2.44626, 51.77806], [-2.44549, 51.77732], [-2.44513, 51.77692], [-2.44466, 51.77632], [-2.44421, 51.7756], [-2.44387, 51.77483], [-2.44367, 51.7742], [-2.44354, 51.77351], [-2.4435, 51.77296], [-2.44355, 51.77216], [-2.44367, 51.7716], [-2.44386, 51.77096], [-2.44418, 51.77027], [-2.44467, 51.76932], [-2.44557, 51.76768], [-2.44605, 51.76685], [-2.44743, 51.76437], [-2.44764, 51.76397], [-2.4483, 51.7628], [-2.44837, 51.76267], [-2.44864, 51.76217], [-2.44901, 51.76133], [-2.44924, 51.76067], [-2.44939, 51.76006], [-2.44948, 51.7594], [-2.44951, 51.75709], [-2.44954, 51.75655], [-2.44962, 51.75584], [-2.44975, 51.75533], [-2.44998, 51.75469], [-2.45021, 51.75414], [-2.45061, 51.75351], [-2.45115, 51.7528], [-2.45148, 51.75237], [-2.45209, 51.75174], [-2.4526, 51.75129], [-2.45324, 51.7508], [-2.45398, 51.75037], [-2.45508, 51.74985], [-2.45628, 51.7494], [-2.45985, 51.74809], [-2.46068, 51.74782], [-2.46166, 51.74755], [-2.46305, 51.74724], [-2.46355, 51.74713], [-2.46414, 51.74696], [-2.46537, 51.74655]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3677755", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.24496, 51.46745], [-0.24537, 51.46752], [-0.24596, 51.46761], [-0.24657, 51.46767], [-0.24729, 51.46774], [-0.24808, 51.46781], [-0.24888, 51.46785], [-0.25009, 51.4679]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3677795", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.6663, 51.64399], [-2.66728, 51.6436], [-2.66863, 51.64307]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3679218", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.11179, 51.69823], [-0.11191, 51.69697], [-0.11177, 51.69534], [-0.11129, 51.6937], [-0.11074, 51.69241], [-0.10986, 51.69055], [-0.1091, 51.68885], [-0.10723, 51.68475], [-0.10693, 51.6841]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3681043", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.65312, 52.57308], [-0.65318, 52.57264], [-0.65452, 52.56251]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3688274", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53218, 53.65888], [-1.53165, 53.65906], [-1.53079, 53.65937], [-1.53029, 53.65955], [-1.52999, 53.65965], [-1.52956, 53.65982]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3688277", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.43618, 53.69082], [-1.43651, 53.69063], [-1.43701, 53.69037], [-1.43768, 53.69003], [-1.43846, 53.68969], [-1.43957, 53.68927], [-1.44164, 53.68855], [-1.443, 53.6881], [-1.44459, 53.68761], [-1.44529, 53.68741], [-1.44715, 53.6869], [-1.44899, 53.68642], [-1.45273, 53.68562]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3688278", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.42659, 53.69751], [-1.4269, 53.69726], [-1.42767, 53.69663], [-1.42813, 53.69628], [-1.42858, 53.69592], [-1.42924, 53.69542], [-1.43032, 53.69464], [-1.43134, 53.69393], [-1.43252, 53.69314], [-1.4337, 53.69235], [-1.43618, 53.69082]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3688279", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.35648, 53.72377], [-1.35698, 53.72365], [-1.35739, 53.72354], [-1.35823, 53.72332], [-1.35878, 53.72323], [-1.35933, 53.72316], [-1.35978, 53.72312], [-1.36015, 53.72311], [-1.3606, 53.7231], [-1.36132, 53.72312], [-1.36188, 53.72315], [-1.36247, 53.72315], [-1.3645, 53.72313], [-1.36537, 53.7231], [-1.36626, 53.72304], [-1.37013, 53.72272], [-1.37421, 53.72241], [-1.37688, 53.72222], [-1.37786, 53.72216], [-1.37834, 53.72213], [-1.37892, 53.72207], [-1.3797, 53.72198], [-1.38067, 53.72183], [-1.38086, 53.7218], [-1.38134, 53.7217], [-1.38141, 53.72169], [-1.38277, 53.72138], [-1.38356, 53.72118], [-1.38443, 53.72092], [-1.38548, 53.72056], [-1.38638, 53.72018], [-1.38716, 53.71984], [-1.3882, 53.71931], [-1.38847, 53.71918], [-1.39017, 53.7183], [-1.39131, 53.71777], [-1.39231, 53.71734], [-1.39328, 53.71696], [-1.39401, 53.71669]]}}, {"type": "Feature", "properties": {"osm_id": "3688281", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.47771, 53.67399], [-1.47748, 53.67375], [-1.47746, 53.67373], [-1.47735, 53.67363], [-1.4769, 53.67316], [-1.47643, 53.67267], [-1.47611, 53.67234], [-1.47537, 53.67158], [-1.4742, 53.67036], [-1.47351, 53.66966], [-1.473, 53.66921], [-1.47254, 53.66886]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3688282", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.49138, 53.6674], [-1.49018, 53.66669], [-1.48867, 53.66593]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3688450", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51757, 53.70435], [-1.518, 53.70338], [-1.51816, 53.70288], [-1.51835, 53.7022]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3688451", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.55315, 53.7368], [-1.55244, 53.73663], [-1.55166, 53.73646], [-1.55087, 53.73631], [-1.55008, 53.73616]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3688452", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.46955, 53.76489], [-1.46811, 53.76477], [-1.46772, 53.76474], [-1.46733, 53.76469], [-1.4666, 53.7646], [-1.46598, 53.76453], [-1.4654, 53.76445], [-1.46466, 53.76433], [-1.46209, 53.76384], [-1.46123, 53.76365], [-1.45982, 53.7633], [-1.45764, 53.76268], [-1.45476, 53.76178], [-1.45303, 53.76119], [-1.45242, 53.76096], [-1.45179, 53.76073], [-1.45109, 53.76048], [-1.45042, 53.76021], [-1.44961, 53.75989], [-1.44799, 53.75922], [-1.4464, 53.75852], [-1.44466, 53.75766], [-1.44354, 53.75709], [-1.44228, 53.75637]]}}, {"type": "Feature", "properties": {"osm_id": "3689900", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.35698, 53.72365], [-1.35731, 53.72354], [-1.35751, 53.72346], [-1.3583, 53.72314], [-1.35876, 53.72294], [-1.35994, 53.72228], [-1.3604, 53.722], [-1.36068, 53.72181], [-1.36096, 53.72159], [-1.36123, 53.72132], [-1.3615, 53.72101], [-1.36168, 53.72072], [-1.36183, 53.72042], [-1.36194, 53.72008], [-1.36201, 53.71972], [-1.362, 53.71932], [-1.36194, 53.71898], [-1.36189, 53.71875], [-1.36154, 53.71723], [-1.36138, 53.71661], [-1.36126, 53.71634], [-1.36112, 53.7161], [-1.36093, 53.71586], [-1.36071, 53.71564], [-1.36042, 53.71539], [-1.3601, 53.71516], [-1.35959, 53.71489], [-1.35904, 53.71468], [-1.35826, 53.71442], [-1.35387, 53.71297], [-1.34898, 53.71136], [-1.34105, 53.70875]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3689901", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.35509, 53.72406], [-1.35595, 53.72389], [-1.35648, 53.72377]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3689903", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27132, 53.7125], [-1.27125, 53.71229], [-1.27117, 53.71208], [-1.27101, 53.71154], [-1.27085, 53.7109], [-1.27082, 53.71066], [-1.2708, 53.71041], [-1.27079, 53.71011]]}}, {"type": "Feature", "properties": {"osm_id": "3689904", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.26836, 53.70744], [-1.26797, 53.70723], [-1.26749, 53.70702], [-1.26706, 53.70687], [-1.26664, 53.70674], [-1.26627, 53.70665], [-1.26576, 53.70656], [-1.26539, 53.7065], [-1.26517, 53.70648], [-1.26485, 53.70645]]}}, {"type": "Feature", "properties": {"osm_id": "3689906", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.45803, 53.66295], [-1.45715, 53.66278], [-1.45648, 53.66268], [-1.45589, 53.66261], [-1.45544, 53.66257], [-1.45412, 53.66253], [-1.45304, 53.66255], [-1.45236, 53.66258], [-1.45089, 53.66275], [-1.44993, 53.66293], [-1.44867, 53.66322], [-1.44751, 53.66356], [-1.44677, 53.66383], [-1.44573, 53.66433], [-1.44429, 53.66512]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3692007", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.60626, 51.48576], [-0.60607, 51.48588], [-0.60592, 51.48601], [-0.60579, 51.48613], [-0.60569, 51.48623], [-0.6056, 51.48634], [-0.60547, 51.48652], [-0.60534, 51.48671], [-0.60528, 51.48681], [-0.60518, 51.48699], [-0.60504, 51.48736], [-0.60495, 51.48763], [-0.60485, 51.4879], [-0.60481, 51.48801], [-0.60444, 51.4889], [-0.60414, 51.48969], [-0.60395, 51.4901], [-0.60373, 51.4905], [-0.60345, 51.49082], [-0.60308, 51.49124], [-0.60252, 51.49162], [-0.60214, 51.49182], [-0.60164, 51.492], [-0.60095, 51.49219], [-0.60059, 51.49227], [-0.60023, 51.49231], [-0.59963, 51.49237], [-0.59767, 51.49253]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693280", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.52044, 53.57689], [-1.52055, 53.57714], [-1.52086, 53.57783], [-1.52114, 53.57845], [-1.52141, 53.57907], [-1.52182, 53.57992], [-1.52205, 53.58034], [-1.52245, 53.58101], [-1.52298, 53.58178], [-1.52336, 53.58224], [-1.52389, 53.58284], [-1.52451, 53.58345], [-1.52524, 53.58408], [-1.52582, 53.58455], [-1.52638, 53.58497], [-1.52708, 53.58547]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3693549", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.38249, 53.63632], [-1.37588, 53.63319], [-1.37464, 53.63261], [-1.36613, 53.6286], [-1.36566, 53.62837], [-1.36405, 53.62763], [-1.36283, 53.62704], [-1.36056, 53.62595]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693556", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.31642, 53.6426], [-1.3169, 53.64083], [-1.31971, 53.6305]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693979", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.21189, 52.56789], [-1.21255, 52.56764], [-1.21331, 52.56735], [-1.21406, 52.56706], [-1.21559, 52.56647], [-1.21815, 52.56549], [-1.21823, 52.56546], [-1.21953, 52.56497], [-1.22051, 52.56459], [-1.22311, 52.56359], [-1.22525, 52.56277], [-1.22663, 52.56223], [-1.22835, 52.56157], [-1.23065, 52.5607], [-1.23119, 52.56051], [-1.232, 52.56023]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693981", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08598, 52.6762], [-1.08515, 52.6777], [-1.08449, 52.67901], [-1.08391, 52.68033], [-1.08351, 52.68137], [-1.08318, 52.68241], [-1.08272, 52.68419], [-1.08241, 52.68599], [-1.08225, 52.68739], [-1.0822, 52.68844], [-1.08218, 52.68949], [-1.08225, 52.69122], [-1.08243, 52.69287], [-1.08254, 52.69351]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693982", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08315, 52.69639], [-1.08322, 52.69677], [-1.08328, 52.6972], [-1.08327, 52.69756], [-1.08321, 52.69798], [-1.08303, 52.69844], [-1.08277, 52.69888], [-1.08254, 52.69924]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693983", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.87658, 52.7612], [-0.87791, 52.7612], [-0.88023, 52.76119], [-0.88206, 52.76115], [-0.88441, 52.76106], [-0.88457, 52.76105]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693985", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.73234, 52.67821], [-0.73191, 52.67893], [-0.73144, 52.67969], [-0.73106, 52.68032], [-0.72834, 52.68477], [-0.72562, 52.68917], [-0.72531, 52.68966], [-0.72485, 52.6904], [-0.72433, 52.69123], [-0.72389, 52.69198], [-0.72352, 52.69273], [-0.72318, 52.69342], [-0.72289, 52.6941], [-0.72245, 52.69519], [-0.72211, 52.69626], [-0.72182, 52.69737], [-0.72159, 52.69848], [-0.72138, 52.70014], [-0.72131, 52.70178], [-0.72132, 52.70242], [-0.72136, 52.70307], [-0.72147, 52.70413], [-0.72162, 52.70504], [-0.72184, 52.70601], [-0.72211, 52.70698], [-0.72253, 52.70823], [-0.72292, 52.7092], [-0.72348, 52.71042], [-0.72413, 52.71163], [-0.72468, 52.71257], [-0.72529, 52.71349], [-0.72611, 52.7146], [-0.7265, 52.71506], [-0.72666, 52.71526], [-0.72774, 52.71637], [-0.72868, 52.71721], [-0.72974, 52.71808], [-0.73097, 52.71897], [-0.73348, 52.72071], [-0.73919, 52.7247], [-0.74386, 52.72793], [-0.75916, 52.73856], [-0.76045, 52.73947], [-0.76169, 52.74039], [-0.76267, 52.74111], [-0.76466, 52.74256], [-0.76691, 52.7442], [-0.76893, 52.74566], [-0.77065, 52.7469], [-0.77233, 52.74813], [-0.77319, 52.74878], [-0.774, 52.74946], [-0.77474, 52.75015], [-0.77555, 52.75093], [-0.77628, 52.75173], [-0.77696, 52.75251], [-0.77757, 52.75328], [-0.77804, 52.75397], [-0.77852, 52.75473], [-0.7791, 52.75583], [-0.77976, 52.75708], [-0.78064, 52.75846], [-0.78166, 52.75962], [-0.78225, 52.76018], [-0.78287, 52.76069], [-0.78375, 52.76132], [-0.78465, 52.76188], [-0.78586, 52.76251], [-0.78691, 52.76299], [-0.78804, 52.76343], [-0.78909, 52.76377], [-0.78982, 52.76398], [-0.79054, 52.76416], [-0.79117, 52.76431], [-0.79187, 52.76445], [-0.7932, 52.76465], [-0.7945, 52.76479], [-0.79586, 52.76489], [-0.7971, 52.76493], [-0.79814, 52.76493], [-0.7992, 52.76489], [-0.80045, 52.76479], [-0.8017, 52.76464], [-0.80888, 52.76354], [-0.81517, 52.76257], [-0.81946, 52.76191], [-0.82234, 52.76146], [-0.82961, 52.76034], [-0.83255, 52.75991], [-0.83392, 52.75976], [-0.83528, 52.75965], [-0.83667, 52.75957], [-0.83809, 52.75953], [-0.83963, 52.75952], [-0.84115, 52.75956], [-0.84674, 52.75987], [-0.85218, 52.76016], [-0.85658, 52.76036], [-0.85878, 52.76047], [-0.86097, 52.76059], [-0.86455, 52.76078], [-0.8684, 52.76098], [-0.87199, 52.76113], [-0.87507, 52.76119], [-0.87545, 52.7612]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693986", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.61731, 52.61323], [-0.62419, 52.61457], [-0.63709, 52.6171], [-0.65108, 52.61984], [-0.65676, 52.62097]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3693987", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.47738, 52.64841], [-0.47809, 52.64829], [-0.47865, 52.64818], [-0.47905, 52.6481], [-0.47929, 52.64804], [-0.47982, 52.6479], [-0.4801, 52.64781], [-0.48041, 52.6477], [-0.48061, 52.64763], [-0.48082, 52.64754], [-0.48107, 52.64743], [-0.48132, 52.6473], [-0.48155, 52.64719]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3693992", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.16901, 52.23523], [0.16777, 52.23403], [0.1674, 52.23365], [0.16698, 52.23326], [0.16645, 52.23274], [0.16625, 52.23255], [0.16537, 52.2317], [0.16443, 52.23077], [0.16418, 52.23053], [0.16342, 52.22981], [0.16276, 52.22919], [0.1624, 52.22882], [0.16183, 52.2282], [0.16098, 52.22731], [0.16037, 52.22652], [0.16009, 52.22617], [0.15938, 52.22524], [0.15869, 52.22422], [0.15806, 52.22322], [0.15773, 52.22262], [0.15765, 52.22248], [0.15696, 52.22112], [0.15687, 52.22095], [0.15655, 52.22039]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3693993", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.26043, 52.38307], [0.26017, 52.38255], [0.25975, 52.38146], [0.25906, 52.37942], [0.25838, 52.37743], [0.25774, 52.37557], [0.25717, 52.37392], [0.25685, 52.373], [0.25641, 52.37171], [0.25554, 52.36914], [0.25239, 52.36002], [0.2518, 52.35824], [0.25033, 52.35475], [0.24666, 52.348]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3697938", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.99282, 53.60037], [-0.99403, 53.59992], [-0.99498, 53.59956], [-0.9955, 53.59936]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3697969", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.03393, 53.58513], [-1.03352, 53.58524], [-1.03327, 53.5853], [-1.03292, 53.58541], [-1.03255, 53.58552], [-1.03201, 53.58571], [-1.03165, 53.58585]]}}, {"type": "Feature", "properties": {"osm_id": "3697970", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12184, 53.58773], [-1.12192, 53.5874], [-1.12195, 53.5872], [-1.12199, 53.58688], [-1.12199, 53.58663], [-1.12197, 53.58645], [-1.12194, 53.58628], [-1.12189, 53.58609], [-1.12184, 53.58594], [-1.12177, 53.58577], [-1.12166, 53.58552], [-1.12152, 53.58527], [-1.12142, 53.58511], [-1.12122, 53.58482], [-1.12089, 53.58443], [-1.12066, 53.5842], [-1.12043, 53.584], [-1.12022, 53.58382], [-1.11994, 53.58362], [-1.11969, 53.58345], [-1.11944, 53.5833], [-1.11911, 53.58311], [-1.11868, 53.58291], [-1.11833, 53.58275], [-1.11791, 53.58259], [-1.11743, 53.58244], [-1.11704, 53.58232], [-1.11658, 53.5822], [-1.11624, 53.58212], [-1.11589, 53.58204], [-1.1153, 53.58194], [-1.11504, 53.58191]]}}, {"type": "Feature", "properties": {"osm_id": "3697971", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.2378, 53.76943], [-1.23791, 53.76924], [-1.2381, 53.76886], [-1.23824, 53.76858], [-1.23831, 53.76845], [-1.23856, 53.76795]]}}, {"type": "Feature", "properties": {"osm_id": "3698003", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.24996, 53.70283], [-1.25041, 53.70312], [-1.25083, 53.70343], [-1.25171, 53.70398], [-1.25319, 53.70493], [-1.25388, 53.70529], [-1.25481, 53.7057], [-1.25568, 53.70598], [-1.25621, 53.7061], [-1.25628, 53.70612], [-1.25668, 53.7062], [-1.25709, 53.70625], [-1.25746, 53.70626], [-1.25794, 53.70627], [-1.26011, 53.70628], [-1.26057, 53.70629], [-1.26114, 53.70631], [-1.26202, 53.70636], [-1.26287, 53.70639], [-1.26347, 53.7064], [-1.26402, 53.70642]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3698063", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.30566, 53.48712], [-1.30565, 53.48688]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3698064", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.30567, 53.48749], [-1.30566, 53.48817], [-1.30566, 53.48852], [-1.30569, 53.48897], [-1.30579, 53.48957]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3700638", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10247, 51.50457], [-0.10252, 51.50468], [-0.10258, 51.50481], [-0.10264, 51.50493], [-0.10275, 51.50515], [-0.10311, 51.50571], [-0.10342, 51.50626], [-0.10355, 51.50659], [-0.10362, 51.50685], [-0.10365, 51.50701], [-0.10367, 51.50715], [-0.10368, 51.50746], [-0.10368, 51.50753], [-0.10366, 51.50762], [-0.10364, 51.50776], [-0.10354, 51.5081], [-0.10349, 51.50833], [-0.10347, 51.50843]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3752907", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.05969, 51.32809], [-1.06025, 51.3289], [-1.06057, 51.32943], [-1.06086, 51.32998], [-1.0611, 51.33051], [-1.06131, 51.33105], [-1.06149, 51.33156], [-1.06165, 51.33213], [-1.06177, 51.33265], [-1.06185, 51.33319], [-1.06191, 51.33373], [-1.06194, 51.33423], [-1.06251, 51.34502], [-1.06247, 51.3465], [-1.0624, 51.34747], [-1.06229, 51.34843], [-1.0621, 51.34946], [-1.06196, 51.35012]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3752911", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.05555, 51.31959], [-1.05577, 51.32063], [-1.05592, 51.32115]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3753401", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.64814, 52.91394], [-0.64823, 52.91458], [-0.6483, 52.91513], [-0.64833, 52.91541]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3753699", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.59163, 53.79368], [-1.59275, 53.79402], [-1.59321, 53.79415], [-1.59367, 53.79428], [-1.59466, 53.79463], [-1.59518, 53.7948], [-1.59569, 53.79496], [-1.59691, 53.79533], [-1.59754, 53.79552], [-1.59784, 53.79562], [-1.59819, 53.7957], [-1.59863, 53.7958], [-1.59886, 53.79584], [-1.59908, 53.79588], [-1.5993, 53.79592], [-1.59955, 53.79595], [-1.60006, 53.796], [-1.6004, 53.79603], [-1.60075, 53.79606], [-1.6013, 53.79609], [-1.60187, 53.7961], [-1.60229, 53.7961], [-1.60274, 53.79609], [-1.60328, 53.79607], [-1.60356, 53.79605], [-1.60385, 53.79603], [-1.60442, 53.796], [-1.605, 53.79596], [-1.60536, 53.79594], [-1.60573, 53.79592], [-1.60646, 53.7959], [-1.60705, 53.79589], [-1.60762, 53.7959], [-1.60805, 53.79591], [-1.60848, 53.79594], [-1.60872, 53.79596], [-1.60895, 53.79598], [-1.60943, 53.79603], [-1.60977, 53.79607], [-1.61012, 53.79612], [-1.61046, 53.79617], [-1.61078, 53.79623], [-1.61116, 53.7963], [-1.61152, 53.79638], [-1.61189, 53.79647], [-1.61226, 53.79656], [-1.61257, 53.79665], [-1.61286, 53.79674], [-1.61316, 53.79684], [-1.61343, 53.79694], [-1.61397, 53.79715], [-1.61449, 53.79737], [-1.61482, 53.79752], [-1.61514, 53.79768], [-1.61574, 53.79799], [-1.61663, 53.79845], [-1.6175, 53.7989], [-1.61952, 53.79997]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3753700", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.56751, 53.79175], [-1.56832, 53.79144]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3753701", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.59265, 53.74892], [-1.61905, 53.72603]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3753885", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.47801, 53.55638], [-1.47779, 53.55616]]}}, {"type": "Feature", "properties": {"osm_id": "3753965", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.43027, 53.57986], [-1.43029, 53.57922], [-1.4305, 53.57863], [-1.43096, 53.57802], [-1.43266, 53.57671], [-1.43351, 53.57608]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3789867", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.24226, 51.46692], [-0.24285, 51.46708]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3806210", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32415, 51.06082], [-0.32398, 51.06097]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3806211", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32398, 51.06097], [-0.32359, 51.06133], [-0.32088, 51.06404], [-0.32082, 51.06411]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3806212", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.45484, 51.01392], [-0.45416, 51.01419], [-0.4535, 51.01441], [-0.45283, 51.0146], [-0.45221, 51.01475], [-0.45155, 51.01489], [-0.4507, 51.01503], [-0.44989, 51.01511], [-0.44915, 51.01516], [-0.44833, 51.01519], [-0.44738, 51.01516], [-0.44644, 51.01511], [-0.44479, 51.015], [-0.44238, 51.01484], [-0.44145, 51.01479], [-0.44051, 51.01477], [-0.43949, 51.01477], [-0.43867, 51.01479], [-0.43778, 51.01483], [-0.43682, 51.0149], [-0.43587, 51.01499], [-0.42514, 51.01621]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3811884", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.57073, 51.51679], [-2.56936, 51.51665], [-2.56808, 51.51653], [-2.56625, 51.51638], [-2.5644, 51.51622], [-2.5607, 51.51591], [-2.55993, 51.51583], [-2.55902, 51.51576], [-2.55804, 51.51568], [-2.556, 51.51554], [-2.55204, 51.51518], [-2.55123, 51.51511], [-2.55014, 51.51499]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3811885", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.56111, 51.52254], [-2.56102, 51.5221], [-2.561, 51.52202], [-2.56092, 51.52165], [-2.56092, 51.52162]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3811886", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.56133, 51.50744], [-2.56128, 51.50767]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3814379", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.25288, 51.55459], [-0.25373, 51.55479], [-0.25418, 51.55488], [-0.25433, 51.55491], [-0.25478, 51.555], [-0.25527, 51.55509], [-0.25571, 51.55516], [-0.25607, 51.55521], [-0.25657, 51.55528], [-0.25738, 51.55539]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3819781", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0781, 51.50088], [-0.07715, 51.50037], [-0.07605, 51.49978], [-0.07484, 51.49913], [-0.07393, 51.49864], [-0.07288, 51.49808], [-0.07136, 51.4973], [-0.07017, 51.49672], [-0.0688, 51.49606], [-0.06759, 51.49551], [-0.0666, 51.49507], [-0.06504, 51.49436], [-0.06278, 51.49338], [-0.06144, 51.49282]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820150", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14837, 51.2662], [-0.14822, 51.26689], [-0.1481, 51.26736], [-0.14804, 51.26772], [-0.14795, 51.26855], [-0.14793, 51.269], [-0.14796, 51.26934], [-0.14799, 51.26975], [-0.14804, 51.2703]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820153", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15119, 51.26145], [-0.15129, 51.26127]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820154", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15876, 51.25082], [-0.1593, 51.24995], [-0.16095, 51.24732]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820621", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00239, 51.21385], [-0.00447, 51.21417], [-0.00823, 51.21434], [-0.00916, 51.21439], [-0.01008, 51.21445], [-0.02077, 51.21527], [-0.02783, 51.21582]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820623", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15785, 51.22943], [-0.15847, 51.22952], [-0.15921, 51.22968], [-0.15989, 51.22986], [-0.16059, 51.23007], [-0.16123, 51.23028], [-0.16187, 51.23054], [-0.1624, 51.23078], [-0.16289, 51.23104], [-0.16337, 51.23131], [-0.16384, 51.2316], [-0.16411, 51.2318], [-0.16425, 51.2319], [-0.1646, 51.23219]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820624", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.08918, 51.20545], [0.07461, 51.20689], [0.0746, 51.20689], [0.07258, 51.20709]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820629", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.24057, 51.19168], [0.2396, 51.19169], [0.23884, 51.1917], [0.23822, 51.19173], [0.23763, 51.19176], [0.23711, 51.1918], [0.2317, 51.19225]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3820630", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.26458, 51.19187], [0.26419, 51.19184], [0.26312, 51.19174], [0.26279, 51.19171], [0.26252, 51.19169]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3839208", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.9249, 50.72493], [-1.92445, 50.72507], [-1.92401, 50.72523], [-1.9236, 50.72542], [-1.92224, 50.72608], [-1.92176, 50.72628], [-1.92129, 50.72647], [-1.92097, 50.7266], [-1.9206, 50.72674], [-1.92019, 50.72685]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3839229", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.99493, 50.72988], [-1.99366, 50.72981], [-1.99295, 50.72976], [-1.99232, 50.72969], [-1.99186, 50.72963], [-1.99142, 50.72957], [-1.99094, 50.72948], [-1.99046, 50.72938], [-1.99, 50.72927], [-1.98957, 50.72915], [-1.98937, 50.72908]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3842150", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.0131, 50.7284], [-2.01231, 50.7286], [-2.01158, 50.72876], [-2.01081, 50.72891], [-2.01, 50.72906], [-2.00926, 50.72919], [-2.00851, 50.7293], [-2.00781, 50.72939], [-2.00711, 50.72947], [-2.0063, 50.72955], [-2.00557, 50.72961]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3842198", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.14456, 50.68022], [-2.14342, 50.68005], [-2.14293, 50.67999], [-2.14247, 50.67994], [-2.14207, 50.67992], [-2.14168, 50.6799], [-2.14124, 50.6799], [-2.1408, 50.67991], [-2.14029, 50.67995], [-2.13986, 50.67999], [-2.13942, 50.68005], [-2.13911, 50.6801], [-2.13878, 50.68017], [-2.13844, 50.68023], [-2.1381, 50.68032], [-2.13782, 50.6804], [-2.13744, 50.68052], [-2.13709, 50.68064], [-2.13671, 50.68079], [-2.13635, 50.68095], [-2.13592, 50.68117], [-2.13555, 50.68138], [-2.13519, 50.6816]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3842302", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.37237, 50.70341], [-2.37224, 50.7034]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3872898", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.04123, 51.71466], [-5.0413, 51.71486], [-5.04135, 51.71498]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3876711", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.98528, 52.01244], [-4.98542, 52.01208], [-4.98599, 52.01124], [-4.98629, 52.01066]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3896387", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.57775, 51.22005], [-0.57767, 51.22037], [-0.57761, 51.22071], [-0.57756, 51.22109], [-0.57752, 51.22154], [-0.57753, 51.22202], [-0.57755, 51.22236], [-0.57763, 51.22294], [-0.57771, 51.22337], [-0.57788, 51.2241]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3896698", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.10734, 51.15841], [0.10648, 51.16027], [0.10623, 51.16156], [0.10602, 51.16371], [0.10599, 51.16567], [0.10589, 51.16783], [0.10582, 51.16933]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3905202", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.76012, 52.72933], [-2.75958, 52.72841], [-2.75904, 52.72746], [-2.75873, 52.72694], [-2.75818, 52.72603], [-2.75773, 52.72529], [-2.75732, 52.72461], [-2.75655, 52.72334], [-2.75643, 52.72313], [-2.75508, 52.72086], [-2.75467, 52.7202], [-2.7538, 52.71875], [-2.75371, 52.71858], [-2.75333, 52.71796], [-2.7526, 52.71676], [-2.7523, 52.71622], [-2.75204, 52.71567], [-2.75183, 52.71523], [-2.75143, 52.71442], [-2.75124, 52.71406], [-2.75115, 52.71386]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957869", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.72887, 51.52011], [-0.72873, 51.51988], [-0.7286, 51.51971]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957870", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.72878, 51.52315], [-0.72891, 51.5221], [-0.72903, 51.52114], [-0.72906, 51.52094], [-0.72905, 51.52072], [-0.729, 51.5205], [-0.72895, 51.5203], [-0.72887, 51.52011]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957871", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7287, 51.52671], [-0.72853, 51.52474], [-0.72878, 51.52315]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957872", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.72874, 51.52722], [-0.7287, 51.52671]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957873", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7266, 51.54076], [-0.7283, 51.5336]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957874", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.72395, 51.5539], [-0.72465, 51.55244]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957875", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.76138, 51.57079], [-0.76052, 51.57068], [-0.7581, 51.5703]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3957876", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.76691, 51.57114], [-0.76545, 51.57095], [-0.76472, 51.57088], [-0.76419, 51.57085], [-0.76348, 51.57088], [-0.76239, 51.57087], [-0.76138, 51.57079]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3958940", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.49312, 51.74275], [-0.49355, 51.74284]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3959227", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.65449, 51.83738], [-0.65376, 51.83535]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3959230", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.67689, 51.89966], [-0.67764, 51.90229], [-0.67811, 51.90457], [-0.67827, 51.90572], [-0.67834, 51.90674], [-0.67841, 51.90892], [-0.67841, 51.9096], [-0.6784, 51.91027], [-0.67819, 51.91161], [-0.6779, 51.91354], [-0.67784, 51.914], [-0.6777, 51.91461], [-0.67754, 51.91524], [-0.67736, 51.91584], [-0.67704, 51.9168], [-0.67657, 51.91796], [-0.67629, 51.91875], [-0.67582, 51.92003], [-0.6755, 51.92145], [-0.67543, 51.92259], [-0.67551, 51.9232], [-0.67573, 51.92418]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3961089", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.8875, 51.85316], [-4.88662, 51.85293]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3961466", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.90647, 51.673], [-4.90582, 51.67265], [-4.90567, 51.67258]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3962175", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.17779, 53.14816], [0.17764, 53.14831], [0.17747, 53.14847], [0.17733, 53.14857], [0.17721, 53.14864], [0.17704, 53.14873], [0.17689, 53.1488], [0.1767, 53.14887], [0.17653, 53.14893], [0.17635, 53.14898], [0.17616, 53.14902], [0.17597, 53.14906], [0.17579, 53.14909], [0.17556, 53.14911], [0.17534, 53.14912], [0.17516, 53.14913], [0.17496, 53.14913], [0.17478, 53.14912], [0.17461, 53.1491], [0.17441, 53.14908], [0.17423, 53.14904], [0.17404, 53.149], [0.17381, 53.14893], [0.17367, 53.14888], [0.17351, 53.14883], [0.17334, 53.14875], [0.17321, 53.14869], [0.17309, 53.14863], [0.17294, 53.14854], [0.17275, 53.1484]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3962410", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.0312, 52.97812], [-0.03106, 52.97843], [-0.0309, 52.97882], [-0.03086, 52.97892], [-0.03084, 52.97898], [-0.03082, 52.97903], [-0.03077, 52.97918], [-0.03071, 52.97939], [-0.03063, 52.97974], [-0.03059, 52.97993], [-0.03048, 52.9802], [-0.03042, 52.98034]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3978939", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09189, 51.50788], [-0.09205, 51.50759], [-0.09213, 51.5074]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3978945", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09175, 51.50812], [-0.09158, 51.50837], [-0.09141, 51.50874]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3981258", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03662, 51.45523], [-0.03625, 51.455], [-0.03595, 51.45485], [-0.03572, 51.45473], [-0.03546, 51.45461], [-0.03498, 51.45442], [-0.03469, 51.45431], [-0.03412, 51.45411], [-0.03356, 51.4539], [-0.03338, 51.45384], [-0.03264, 51.4536], [-0.0321, 51.45342], [-0.03144, 51.4532], [-0.03069, 51.45295], [-0.03031, 51.45282]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3981261", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01992, 51.4679], [-0.01939, 51.46771], [-0.01897, 51.46757], [-0.01866, 51.46745], [-0.01823, 51.46728], [-0.01573, 51.46627]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3981262", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01297, 51.46381], [-0.01296, 51.4637], [-0.01297, 51.46352], [-0.013, 51.46325], [-0.01303, 51.46312], [-0.01307, 51.463]]}}, {"type": "Feature", "properties": {"osm_id": "3981454", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.77475, 52.52284], [-1.77449, 52.5227], [-1.77422, 52.52255], [-1.77412, 52.52249], [-1.77376, 52.52229], [-1.77339, 52.52209], [-1.77313, 52.52195], [-1.7729, 52.52182], [-1.77241, 52.52154], [-1.77219, 52.52142], [-1.77152, 52.52104], [-1.77102, 52.52076], [-1.77007, 52.52023], [-1.76966, 52.52001], [-1.76928, 52.51981], [-1.76889, 52.51963], [-1.7685, 52.51945], [-1.76819, 52.51933], [-1.76793, 52.51923]]}}, {"type": "Feature", "properties": {"osm_id": "3981455", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.77719, 52.51501], [-1.77659, 52.51515], [-1.77597, 52.51532], [-1.77554, 52.51545], [-1.77516, 52.5156], [-1.77468, 52.51582], [-1.77444, 52.51594], [-1.77417, 52.51609], [-1.77391, 52.51625], [-1.77363, 52.51644], [-1.77332, 52.51668], [-1.77306, 52.51692], [-1.77284, 52.51714], [-1.77265, 52.51737], [-1.77246, 52.51763], [-1.77232, 52.51788], [-1.7721, 52.51834], [-1.77201, 52.51868], [-1.77196, 52.51896], [-1.77194, 52.51925], [-1.77195, 52.51948], [-1.77199, 52.51978], [-1.77205, 52.52002], [-1.77213, 52.52028], [-1.77223, 52.52053], [-1.77239, 52.52081], [-1.77256, 52.52107], [-1.7727, 52.52126], [-1.77288, 52.52147], [-1.77299, 52.52159], [-1.7731, 52.52169], [-1.77324, 52.52183], [-1.77339, 52.52196], [-1.77355, 52.52209], [-1.77369, 52.5222], [-1.77389, 52.52234], [-1.77412, 52.52249]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3985120", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.3429, 51.7448], [-0.34258, 51.74466], [-0.34169, 51.74424], [-0.34048, 51.74359], [-0.33923, 51.74293], [-0.33867, 51.74261], [-0.33799, 51.74217], [-0.33751, 51.74184], [-0.33696, 51.74141], [-0.33673, 51.74121], [-0.33648, 51.74101], [-0.33596, 51.7405], [-0.33553, 51.74004], [-0.33511, 51.73954], [-0.33485, 51.73916], [-0.33468, 51.73892], [-0.33453, 51.73863], [-0.33437, 51.73834], [-0.33426, 51.73809], [-0.33415, 51.7378], [-0.334, 51.73729], [-0.33392, 51.73674], [-0.33391, 51.73604], [-0.33398, 51.73549], [-0.33409, 51.735], [-0.33423, 51.73459], [-0.33448, 51.7341]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3986021", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.33463, 51.73385], [-0.33582, 51.73208], [-0.33617, 51.73161], [-0.33932, 51.72689], [-0.34004, 51.72556], [-0.34048, 51.72473]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3986022", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.34466, 51.7176], [-0.34564, 51.71668], [-0.3482, 51.71455], [-0.35137, 51.71194], [-0.35316, 51.71044]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3986023", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.35382, 51.70992], [-0.35567, 51.7084], [-0.35933, 51.70548], [-0.36254, 51.7027]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3986025", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.38179, 51.68653], [-0.38245, 51.68577], [-0.38322, 51.68473], [-0.38399, 51.68367], [-0.38478, 51.68261], [-0.38553, 51.68158], [-0.38971, 51.67587], [-0.3899, 51.6756], [-0.39023, 51.67516], [-0.39279, 51.67169]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3987145", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.13529, 52.19093], [0.13544, 52.19122], [0.13568, 52.19158], [0.13608, 52.19224], [0.13654, 52.19293], [0.13693, 52.19348], [0.13701, 52.1936]]}}, {"type": "Feature", "properties": {"osm_id": "3987146", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.1392, 52.19653], [0.13902, 52.19636], [0.13807, 52.19512], [0.13791, 52.1949]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987289", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15363, 51.37823], [-0.15352, 51.37867], [-0.15348, 51.3789], [-0.15341, 51.3795], [-0.15326, 51.38131], [-0.15308, 51.38359], [-0.15295, 51.38541], [-0.15277, 51.38744], [-0.15266, 51.38871], [-0.15264, 51.38931], [-0.15263, 51.38953], [-0.15264, 51.38967], [-0.15267, 51.38986], [-0.15272, 51.39008], [-0.1528, 51.39028], [-0.15288, 51.39047], [-0.15299, 51.39065], [-0.15309, 51.3908], [-0.15319, 51.39093], [-0.15334, 51.39111], [-0.1535, 51.39127], [-0.15365, 51.3914], [-0.15379, 51.39151], [-0.15397, 51.39164], [-0.15414, 51.39175], [-0.15434, 51.39187], [-0.15455, 51.39198], [-0.15482, 51.39211], [-0.15507, 51.39221], [-0.15535, 51.39232], [-0.15566, 51.39242], [-0.15598, 51.39251], [-0.15725, 51.39281], [-0.15781, 51.39294], [-0.1584, 51.39308], [-0.15869, 51.39315], [-0.15911, 51.39327], [-0.1594, 51.39338], [-0.15962, 51.39348], [-0.1598, 51.39359], [-0.16006, 51.39374], [-0.1603, 51.39391], [-0.16048, 51.39405], [-0.16067, 51.39422], [-0.16084, 51.39441], [-0.16102, 51.39467], [-0.16113, 51.39487], [-0.16122, 51.39509], [-0.16127, 51.39529], [-0.16132, 51.39551]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987290", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.16132, 51.39551], [-0.16132, 51.39576], [-0.16128, 51.39601], [-0.16122, 51.39623], [-0.16113, 51.39645], [-0.161, 51.39667], [-0.16077, 51.39702], [-0.16049, 51.3974], [-0.16031, 51.39766], [-0.16013, 51.39795], [-0.15996, 51.39821], [-0.15978, 51.39854], [-0.15951, 51.39902], [-0.15898, 51.40009], [-0.15881, 51.40046], [-0.15862, 51.40085], [-0.15829, 51.40155], [-0.15804, 51.40206], [-0.15786, 51.40244], [-0.15759, 51.40303], [-0.15725, 51.40371], [-0.15683, 51.40449], [-0.15644, 51.40517], [-0.15593, 51.40594], [-0.15555, 51.40651], [-0.15526, 51.40693], [-0.15492, 51.40737], [-0.15484, 51.40747], [-0.15473, 51.40763], [-0.1546, 51.40778], [-0.1543, 51.40817], [-0.15424, 51.40824], [-0.15379, 51.40875], [-0.15332, 51.40929], [-0.15288, 51.40978], [-0.15184, 51.41074], [-0.15102, 51.41151], [-0.15043, 51.41202], [-0.14983, 51.41251], [-0.1494, 51.41286], [-0.14895, 51.41321], [-0.14802, 51.41391], [-0.1461, 51.41524]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987291", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13751, 51.42137], [-0.1371, 51.42174], [-0.13672, 51.42211], [-0.13634, 51.4225], [-0.13594, 51.4229], [-0.13556, 51.42326], [-0.13513, 51.42364], [-0.13473, 51.42397], [-0.13434, 51.42425], [-0.1338, 51.42462], [-0.13351, 51.42482], [-0.1329, 51.42517], [-0.13239, 51.42545], [-0.13196, 51.42568], [-0.13145, 51.42592]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987293", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10171, 51.45311], [-0.10178, 51.45319], [-0.10221, 51.45371], [-0.10253, 51.45409], [-0.103, 51.45473], [-0.10332, 51.45527], [-0.1035, 51.45567], [-0.10367, 51.45612]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987294", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10192, 51.46405], [-0.10195, 51.46443], [-0.10203, 51.46486], [-0.10207, 51.46507], [-0.10213, 51.46537], [-0.10219, 51.46566], [-0.10224, 51.46601], [-0.10227, 51.4662], [-0.10229, 51.46638], [-0.10232, 51.46672], [-0.10232, 51.46709], [-0.10232, 51.46743], [-0.10229, 51.46784]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987295", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0956, 51.48082], [-0.09566, 51.48147], [-0.0957, 51.48207], [-0.09571, 51.48233], [-0.09575, 51.48286], [-0.09577, 51.48323]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987296", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09921, 51.49801], [-0.09937, 51.49824], [-0.09963, 51.49858], [-0.09986, 51.49886], [-0.10022, 51.49935], [-0.10035, 51.49956], [-0.10044, 51.49974], [-0.10051, 51.4999], [-0.10056, 51.50004], [-0.10062, 51.50025], [-0.1007, 51.50058], [-0.10078, 51.50093], [-0.10084, 51.50108], [-0.1009, 51.50122], [-0.1012, 51.5018], [-0.10133, 51.50201], [-0.10157, 51.50236], [-0.10174, 51.50266], [-0.10182, 51.50283], [-0.10187, 51.50295], [-0.10199, 51.50323], [-0.10218, 51.50376]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3987808", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.05394, 51.63999], [0.05386, 51.63985], [0.05368, 51.63946], [0.05346, 51.63874], [0.05325, 51.63804], [0.0529, 51.63722], [0.05257, 51.63654], [0.05201, 51.63561], [0.05096, 51.63421], [0.05, 51.63295], [0.04937, 51.63204], [0.04901, 51.63143], [0.04867, 51.63083], [0.04838, 51.63019], [0.04809, 51.6296], [0.04777, 51.6289], [0.04759, 51.62839], [0.04742, 51.62792], [0.04707, 51.62676], [0.047, 51.62652], [0.04684, 51.62595], [0.04672, 51.62556], [0.04666, 51.62532]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3987809", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.03394, 51.60663], [0.03324, 51.6054], [0.03292, 51.60483], [0.03287, 51.60474], [0.03176, 51.60272], [0.02974, 51.59902], [0.02889, 51.5972], [0.02858, 51.59635]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3987950", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.43577, 50.70939], [-2.43615, 50.70938], [-2.43627, 50.70938], [-2.43647, 50.70935], [-2.4366, 50.70933], [-2.43681, 50.7093], [-2.43709, 50.70924], [-2.43737, 50.70915], [-2.43761, 50.70905], [-2.43779, 50.70897], [-2.43807, 50.70879], [-2.43847, 50.70847]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3988018", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.75847, 54.6633], [-2.75853, 54.66289], [-2.75863, 54.66248], [-2.75874, 54.66213], [-2.75888, 54.66178], [-2.75907, 54.66141], [-2.75931, 54.66104], [-2.75957, 54.66068], [-2.75984, 54.66034], [-2.76005, 54.66011], [-2.76047, 54.65973], [-2.76091, 54.65934], [-2.76365, 54.65709], [-2.7644, 54.65649]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3989740", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22507, 53.33012], [-2.22477, 53.33088], [-2.22438, 53.33166], [-2.22373, 53.33277]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3989940", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.31174, 51.84615], [-4.31171, 51.8461]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3991607", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.71333, 51.34838], [0.71291, 51.34853], [0.71165, 51.34898], [0.71058, 51.34931], [0.70947, 51.34962], [0.70789, 51.35005], [0.70752, 51.35016], [0.70743, 51.35019]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991638", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.21609, 51.77675], [-0.21614, 51.77624], [-0.21614, 51.77495], [-0.21579, 51.76818], [-0.21578, 51.76784], [-0.21575, 51.76717], [-0.21574, 51.76705], [-0.21572, 51.7668], [-0.21567, 51.76583], [-0.21568, 51.76506], [-0.21573, 51.76439], [-0.2159, 51.76337], [-0.21618, 51.76227], [-0.21637, 51.76183]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991639", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.21642, 51.76184], [-0.21621, 51.76228], [-0.21594, 51.76337], [-0.21577, 51.76439], [-0.21573, 51.76506], [-0.21572, 51.76582], [-0.21576, 51.76679], [-0.21577, 51.76689], [-0.2158, 51.76717], [-0.21586, 51.76818], [-0.21586, 51.76833], [-0.21621, 51.77495], [-0.21619, 51.77624], [-0.21614, 51.77675]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991640", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.27153, 51.96321], [-0.27071, 51.96139], [-0.27049, 51.96103], [-0.26963, 51.95963], [-0.26906, 51.95887]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991641", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.26571, 51.95562], [-0.26605, 51.95599], [-0.26631, 51.95629], [-0.2665, 51.95658], [-0.26666, 51.95688], [-0.26675, 51.95715], [-0.26679, 51.95743], [-0.26679, 51.95772], [-0.26675, 51.95803], [-0.26669, 51.9583], [-0.26657, 51.95856], [-0.26643, 51.95883], [-0.26623, 51.9591], [-0.26601, 51.95935], [-0.26577, 51.95958], [-0.26549, 51.95985]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3991645", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08901, 53.71534], [-1.08882, 53.71598]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3991646", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08861, 53.71652], [-1.08848, 53.71686], [-1.08812, 53.71809]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991649", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.61751, 54.96828], [-1.6174, 54.96831], [-1.61726, 54.96835], [-1.61709, 54.96839], [-1.61694, 54.96841], [-1.61679, 54.96843], [-1.61661, 54.96846], [-1.61642, 54.96847], [-1.61618, 54.96848], [-1.616, 54.96848], [-1.61571, 54.96848], [-1.61566, 54.96848]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991654", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.60966, 54.93373], [-1.60997, 54.93475], [-1.61028, 54.93581], [-1.61058, 54.93685], [-1.61091, 54.9379], [-1.61122, 54.93899], [-1.6113, 54.93927], [-1.61139, 54.93953], [-1.61155, 54.9401], [-1.61176, 54.94077]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991655", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.57969, 54.84071], [-1.57946, 54.84125]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991658", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.52731, 54.67365], [-1.52769, 54.67402], [-1.52805, 54.67438], [-1.52816, 54.6745], [-1.52823, 54.67458], [-1.52838, 54.67476], [-1.52869, 54.67513], [-1.52905, 54.6756], [-1.52938, 54.67607], [-1.52967, 54.67653], [-1.52993, 54.67699], [-1.53007, 54.67726], [-1.53019, 54.67751], [-1.53032, 54.67779], [-1.53042, 54.67806], [-1.53058, 54.67859], [-1.53073, 54.67911], [-1.53088, 54.67984], [-1.53101, 54.68059], [-1.53123, 54.68199], [-1.53208, 54.68771], [-1.53307, 54.69437], [-1.53406, 54.70097], [-1.5342, 54.70182], [-1.53438, 54.70267], [-1.5348, 54.70413], [-1.53497, 54.7047], [-1.53507, 54.70507], [-1.53517, 54.70547], [-1.5353, 54.70601], [-1.53538, 54.70644], [-1.53543, 54.70687], [-1.53544, 54.70732], [-1.53543, 54.70773], [-1.53541, 54.70807], [-1.53537, 54.70839], [-1.53529, 54.70906]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991659", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.57225, 54.78972], [-1.57088, 54.79123], [-1.57064, 54.79147], [-1.56991, 54.79221], [-1.56953, 54.79262], [-1.5691, 54.79302], [-1.56877, 54.79328], [-1.56843, 54.79351], [-1.56772, 54.79396], [-1.56726, 54.79426], [-1.56694, 54.79447], [-1.56609, 54.79497], [-1.56509, 54.79556], [-1.56459, 54.79586], [-1.56413, 54.79617], [-1.56371, 54.79648], [-1.56336, 54.79676], [-1.563, 54.79707], [-1.56268, 54.79737], [-1.56242, 54.79765], [-1.56231, 54.79779], [-1.5622, 54.79793], [-1.56198, 54.79821], [-1.56177, 54.79849], [-1.5616, 54.79877], [-1.56145, 54.79905], [-1.56131, 54.79934], [-1.56119, 54.79962], [-1.56109, 54.7999], [-1.56101, 54.80019], [-1.56095, 54.80047], [-1.5609, 54.80076], [-1.56088, 54.80099], [-1.56088, 54.80123], [-1.56088, 54.8017], [-1.5609, 54.80194], [-1.56094, 54.80218], [-1.56098, 54.80242], [-1.56105, 54.80265], [-1.56117, 54.80302], [-1.56131, 54.80338], [-1.56138, 54.80356], [-1.56148, 54.80374], [-1.56164, 54.80402], [-1.56168, 54.80409], [-1.56185, 54.80437], [-1.56204, 54.80462], [-1.56224, 54.80488], [-1.56246, 54.80512], [-1.56283, 54.80551], [-1.56321, 54.80586]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991910", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.17718, 53.8563], [-1.17763, 53.85716], [-1.18038, 53.86246], [-1.18112, 53.8642], [-1.18155, 53.86561], [-1.18188, 53.8671], [-1.18207, 53.86875], [-1.1821, 53.87039], [-1.182, 53.87168], [-1.18181, 53.87297], [-1.18142, 53.87448], [-1.18091, 53.87597], [-1.17978, 53.87837], [-1.17889, 53.87979], [-1.1779, 53.88116], [-1.17686, 53.88237], [-1.17539, 53.8839], [-1.17174, 53.88735], [-1.1698, 53.88905], [-1.16854, 53.8901], [-1.1681, 53.89045], [-1.16769, 53.89077]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991922", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.10186, 53.96245], [-1.10249, 53.96246], [-1.10317, 53.96246], [-1.1037, 53.96245], [-1.10431, 53.96242], [-1.10713, 53.96225], [-1.10785, 53.96222], [-1.10879, 53.96222], [-1.10935, 53.96225], [-1.10992, 53.96232], [-1.11048, 53.96242], [-1.11111, 53.96257], [-1.11166, 53.96275], [-1.11208, 53.96292], [-1.11243, 53.96309], [-1.11273, 53.96324], [-1.11304, 53.96345], [-1.11358, 53.96386], [-1.11404, 53.96429], [-1.11468, 53.96496], [-1.1148, 53.96508]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991946", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.57769, 55.02689], [-1.57888, 55.02794]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991949", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.14995, 55.9564], [-3.14919, 55.95648], [-3.14864, 55.95653], [-3.14808, 55.95657], [-3.14749, 55.9566], [-3.14686, 55.95662], [-3.14623, 55.95663], [-3.14514, 55.95662], [-3.14456, 55.95659], [-3.14361, 55.95656], [-3.1429, 55.95651], [-3.14208, 55.95644], [-3.14162, 55.95639], [-3.14073, 55.9563], [-3.13971, 55.95618], [-3.13919, 55.95611], [-3.13856, 55.95603], [-3.13769, 55.9559]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991951", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.97498, 55.95289], [-2.97451, 55.953], [-2.97362, 55.9532], [-2.97218, 55.95351], [-2.97014, 55.95396], [-2.96811, 55.9544], [-2.96644, 55.95476], [-2.96596, 55.95487], [-2.96514, 55.95505], [-2.96297, 55.95551], [-2.96125, 55.95588], [-2.95449, 55.95737], [-2.95327, 55.95764]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991952", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.83315, 55.99194], [-2.83181, 55.99279]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991954", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.71109, 56.00716], [-2.7093, 56.00668], [-2.70824, 56.00637], [-2.70714, 56.00601], [-2.7057, 56.00546]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991955", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.53606, 55.99536], [-2.534, 55.99594], [-2.5323, 55.99648], [-2.53091, 55.99695]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991956", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.39235, 55.95208], [-2.39045, 55.9513], [-2.38875, 55.95059], [-2.38701, 55.94979], [-2.38565, 55.94913], [-2.38483, 55.94873], [-2.38312, 55.94784], [-2.38085, 55.94656]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991957", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.30335, 55.88198], [-2.29934, 55.88245], [-2.2989, 55.88248], [-2.2983, 55.8825], [-2.29723, 55.8825]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991958", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.17249, 55.84525], [-2.17115, 55.84487], [-2.16993, 55.84441], [-2.16881, 55.84393], [-2.16776, 55.84339], [-2.16651, 55.84268], [-2.16541, 55.84189], [-2.16459, 55.84123], [-2.16388, 55.84055], [-2.1622, 55.83873], [-2.16133, 55.83799], [-2.16035, 55.83726], [-2.15926, 55.83659], [-2.15805, 55.83595], [-2.15659, 55.83534], [-2.15498, 55.83478], [-2.15333, 55.83433], [-2.15248, 55.83412], [-2.15158, 55.83394], [-2.15021, 55.83373], [-2.14882, 55.83358], [-2.14746, 55.83349], [-2.14608, 55.83342], [-2.14363, 55.83332], [-2.14184, 55.83322], [-2.14027, 55.83307], [-2.13916, 55.83291], [-2.13806, 55.83271], [-2.13713, 55.83252], [-2.13575, 55.83218], [-2.13487, 55.83193], [-2.13434, 55.83177]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991970", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0144, 55.77147], [-2.01513, 55.77085], [-2.01593, 55.77003], [-2.0165, 55.76926], [-2.01684, 55.76846]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3991971", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.00495, 55.75974], [-2.0028, 55.75922]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992021", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.97158, 55.74051], [-1.96954, 55.73861], [-1.96889, 55.73801], [-1.96759, 55.73675], [-1.96696, 55.73607], [-1.96635, 55.73536], [-1.96524, 55.73401], [-1.964, 55.73268]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992022", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.9073, 55.68169], [-1.90638, 55.68061], [-1.90548, 55.67959], [-1.90434, 55.67847], [-1.90383, 55.67801], [-1.90342, 55.67766], [-1.90338, 55.67763], [-1.90318, 55.67747], [-1.90139, 55.67618], [-1.90004, 55.67536], [-1.8983, 55.67443], [-1.89645, 55.67359], [-1.89431, 55.67278], [-1.89155, 55.67193], [-1.88957, 55.67142]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992076", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.81635, 55.60695], [-1.81593, 55.60663], [-1.81334, 55.60471], [-1.81079, 55.60278], [-1.80641, 55.59948], [-1.80501, 55.59844], [-1.80462, 55.59815], [-1.80355, 55.5973], [-1.80217, 55.59625], [-1.80156, 55.59578], [-1.80138, 55.59566], [-1.79881, 55.59372], [-1.79673, 55.59215], [-1.79532, 55.59109], [-1.79433, 55.59044], [-1.79351, 55.58993], [-1.79155, 55.58887], [-1.78906, 55.58766], [-1.78512, 55.58577], [-1.78095, 55.58375], [-1.77688, 55.5818], [-1.77248, 55.57972], [-1.76872, 55.57784], [-1.76627, 55.57654], [-1.76411, 55.57534], [-1.76181, 55.57404], [-1.75922, 55.57244], [-1.75863, 55.57205], [-1.7564, 55.5706], [-1.75454, 55.56931], [-1.75326, 55.56837], [-1.7516, 55.56712], [-1.75013, 55.56599], [-1.74912, 55.56515], [-1.74816, 55.56436], [-1.74593, 55.5624], [-1.74393, 55.56063]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992077", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.74167, 55.55866], [-1.7392, 55.55647], [-1.73768, 55.55516], [-1.73751, 55.55501]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3992082", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.24746, 51.46884], [-0.24834, 51.46935]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3992083", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.25265, 51.472], [-0.25272, 51.47204], [-0.25304, 51.47223]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3992084", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.25304, 51.47223], [-0.25453, 51.47312]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992085", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.66267, 55.49777], [-1.66252, 55.49708], [-1.66245, 55.49638], [-1.66242, 55.49562], [-1.66244, 55.49486], [-1.66253, 55.49394], [-1.6627, 55.49302], [-1.66321, 55.49001], [-1.66341, 55.48883], [-1.66362, 55.48764], [-1.66387, 55.48618], [-1.66414, 55.48471], [-1.66465, 55.48169], [-1.66471, 55.48069], [-1.6647, 55.47969], [-1.66465, 55.47926], [-1.66456, 55.47884], [-1.66435, 55.47796], [-1.6639, 55.47686], [-1.66333, 55.47578], [-1.66275, 55.47496], [-1.66192, 55.47398], [-1.65992, 55.47186], [-1.65814, 55.46999], [-1.65639, 55.46812], [-1.65463, 55.46625], [-1.65406, 55.46564], [-1.65347, 55.46502], [-1.65133, 55.46275], [-1.651, 55.4624], [-1.65067, 55.46205], [-1.65001, 55.46136], [-1.6487, 55.45998], [-1.64632, 55.45748], [-1.64524, 55.45634], [-1.64417, 55.4552], [-1.64319, 55.45417], [-1.64222, 55.45315], [-1.64172, 55.45262], [-1.64133, 55.45222], [-1.64085, 55.45168], [-1.64056, 55.45138], [-1.64044, 55.45126], [-1.64017, 55.45097], [-1.63982, 55.45061]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992086", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.62543, 55.43844], [-1.62467, 55.43765], [-1.62419, 55.43707], [-1.62376, 55.43649], [-1.62317, 55.43559], [-1.6226, 55.43444], [-1.62232, 55.43365], [-1.62211, 55.4328], [-1.62197, 55.4317], [-1.62196, 55.43097]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992087", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.64123, 55.4001], [-1.6414, 55.39955], [-1.64149, 55.39923], [-1.64151, 55.39892], [-1.64151, 55.39839], [-1.64144, 55.39782], [-1.64137, 55.3975], [-1.64126, 55.3972], [-1.64069, 55.39606], [-1.64052, 55.39582], [-1.64034, 55.39559], [-1.63993, 55.39512], [-1.63945, 55.39465], [-1.63891, 55.39421], [-1.6384, 55.39385]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992101", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.6224, 55.3734], [-1.62231, 55.37309], [-1.62226, 55.37279], [-1.62216, 55.37217], [-1.62211, 55.3718], [-1.62209, 55.37142], [-1.62209, 55.37104], [-1.62211, 55.37066], [-1.62216, 55.37018], [-1.62223, 55.36969], [-1.62229, 55.36947], [-1.62235, 55.36922], [-1.62247, 55.36876], [-1.62272, 55.3681], [-1.62299, 55.36748], [-1.62323, 55.36699], [-1.62352, 55.3665], [-1.62372, 55.36617], [-1.62395, 55.36583], [-1.62419, 55.36551], [-1.62444, 55.3652], [-1.62483, 55.36469], [-1.62513, 55.36431], [-1.62546, 55.36391], [-1.62562, 55.36372], [-1.62579, 55.36352], [-1.62645, 55.36272], [-1.6273, 55.3617], [-1.62813, 55.36066], [-1.62847, 55.36027], [-1.6294, 55.35915], [-1.63103, 55.35719], [-1.63195, 55.3561], [-1.63335, 55.35439], [-1.63383, 55.35383], [-1.63473, 55.35274], [-1.63572, 55.35156], [-1.63608, 55.35108], [-1.63645, 55.35059], [-1.63711, 55.34959], [-1.63829, 55.34766], [-1.63924, 55.34608], [-1.63985, 55.34506], [-1.64048, 55.34405], [-1.64092, 55.34338], [-1.64141, 55.34273], [-1.64189, 55.34216], [-1.64237, 55.34158], [-1.64283, 55.3411], [-1.64331, 55.34062], [-1.64412, 55.33986], [-1.64526, 55.3389], [-1.64676, 55.33763], [-1.64824, 55.33632], [-1.64984, 55.33499]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992102", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.64984, 55.33499], [-1.65041, 55.33451], [-1.65066, 55.33427], [-1.65093, 55.334], [-1.6513, 55.33358], [-1.65148, 55.33335], [-1.65165, 55.33311], [-1.65189, 55.33274], [-1.6521, 55.3323], [-1.65229, 55.33186], [-1.65242, 55.33141], [-1.65245, 55.33117], [-1.65247, 55.33092], [-1.65248, 55.33065], [-1.65245, 55.33038], [-1.65242, 55.33007], [-1.65235, 55.32977], [-1.65206, 55.32867]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992103", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.65251, 55.26942], [-1.65219, 55.26786], [-1.65196, 55.26673], [-1.65192, 55.26658], [-1.65177, 55.26591], [-1.65165, 55.26541], [-1.65157, 55.26501], [-1.65117, 55.26287], [-1.65104, 55.26225], [-1.65091, 55.26161], [-1.65077, 55.261], [-1.65063, 55.26035], [-1.65043, 55.25947], [-1.65035, 55.25914], [-1.65024, 55.25879], [-1.65014, 55.25853], [-1.65002, 55.25825], [-1.64986, 55.25788], [-1.64977, 55.25771], [-1.64966, 55.25749], [-1.64954, 55.25726], [-1.64942, 55.25704], [-1.64903, 55.25648], [-1.64866, 55.25594], [-1.64823, 55.25537]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992104", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.62461, 55.20725], [-1.62481, 55.20688], [-1.62499, 55.20654], [-1.62566, 55.2052], [-1.62572, 55.20508], [-1.62616, 55.20388], [-1.62623, 55.2036], [-1.62631, 55.2033], [-1.62637, 55.20301], [-1.62642, 55.2027], [-1.62648, 55.20217], [-1.62651, 55.20163], [-1.62646, 55.19973], [-1.62644, 55.19886], [-1.6264, 55.19799], [-1.62637, 55.19647], [-1.62641, 55.19557], [-1.62652, 55.19467], [-1.62661, 55.19423], [-1.62672, 55.19379], [-1.62684, 55.19334], [-1.62698, 55.1929], [-1.62722, 55.19228], [-1.62734, 55.19197], [-1.62748, 55.19167], [-1.62774, 55.19114], [-1.62789, 55.19088], [-1.62803, 55.19062], [-1.62824, 55.19031], [-1.62845, 55.19], [-1.62866, 55.18969], [-1.62887, 55.18938], [-1.62942, 55.18868], [-1.62999, 55.18801], [-1.63056, 55.18741], [-1.63114, 55.18686], [-1.63178, 55.1863], [-1.6324, 55.18579]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992105", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.66694, 55.16981], [-1.66759, 55.16907]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3992106", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.65108, 55.10812], [-1.65082, 55.10787], [-1.65053, 55.10761], [-1.65026, 55.10738], [-1.64994, 55.1071], [-1.6496, 55.10685], [-1.64922, 55.10658], [-1.64848, 55.10606], [-1.64782, 55.10564]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993282", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.125, 51.66951], [-4.12651, 51.66968], [-4.12806, 51.66985], [-4.13006, 51.67007], [-4.13252, 51.67035], [-4.13391, 51.67052], [-4.13462, 51.6706], [-4.13641, 51.67081], [-4.13901, 51.6711], [-4.14174, 51.67139], [-4.14318, 51.67157], [-4.14518, 51.67178], [-4.14783, 51.67209], [-4.14845, 51.67216], [-4.14852, 51.67217], [-4.14915, 51.67224], [-4.14949, 51.67228], [-4.15122, 51.67247], [-4.15306, 51.67268], [-4.15558, 51.67296], [-4.15776, 51.67321], [-4.15834, 51.67329], [-4.15872, 51.67334]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993283", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.03715, 51.64962], [-4.03526, 51.64871], [-4.03155, 51.64694], [-4.02785, 51.64519], [-4.02694, 51.64482], [-4.02604, 51.64445], [-4.02512, 51.6441], [-4.02466, 51.64392], [-4.02416, 51.64376], [-4.0231, 51.6434], [-4.02198, 51.6431], [-4.02155, 51.64299], [-4.0211, 51.64288], [-4.02017, 51.64268], [-4.01925, 51.64248], [-4.01836, 51.64232], [-4.01776, 51.64222], [-4.0171, 51.64212], [-4.01645, 51.64204], [-4.01583, 51.64196], [-4.01505, 51.64189], [-4.01432, 51.64182], [-4.01388, 51.64179], [-4.01346, 51.64175]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993290", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.91742, 51.64832], [-3.91774, 51.64825], [-3.91831, 51.64813], [-3.91913, 51.64798], [-3.92606, 51.64673]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993291", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.86598, 51.65814], [-3.86671, 51.65808], [-3.8675, 51.65805], [-3.86831, 51.65805], [-3.86903, 51.65808], [-3.86978, 51.65814], [-3.87024, 51.65819], [-3.87074, 51.65826], [-3.87126, 51.65835], [-3.87198, 51.6585], [-3.8726, 51.65866], [-3.87323, 51.65885], [-3.87379, 51.65905], [-3.87428, 51.65925], [-3.87547, 51.65981], [-3.87658, 51.66037], [-3.87709, 51.66059], [-3.87767, 51.66081], [-3.87855, 51.66108], [-3.87902, 51.6612], [-3.87956, 51.66132], [-3.88051, 51.66148], [-3.881, 51.66154], [-3.88156, 51.66159], [-3.88235, 51.66163], [-3.88337, 51.66162], [-3.88436, 51.66158]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993292", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.83663, 51.66207], [-3.83745, 51.66208], [-3.83858, 51.66215], [-3.84048, 51.66224], [-3.84116, 51.66225], [-3.84177, 51.66223], [-3.84252, 51.66218], [-3.84328, 51.66211], [-3.84413, 51.66199], [-3.84477, 51.66188], [-3.8456, 51.66171], [-3.84745, 51.66131]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993294", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.81519, 51.65174], [-3.81487, 51.652], [-3.8146, 51.65226], [-3.81437, 51.65253], [-3.8141, 51.65286], [-3.81372, 51.65341], [-3.81328, 51.65405], [-3.81252, 51.65516], [-3.81184, 51.65615], [-3.81103, 51.65712], [-3.81017, 51.65813], [-3.80963, 51.65876], [-3.8095, 51.65891], [-3.80903, 51.65947], [-3.80853, 51.6601], [-3.80818, 51.66066], [-3.80788, 51.66127], [-3.8077, 51.66164], [-3.80748, 51.66202], [-3.80737, 51.66222]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993295", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.94265, 51.63843], [-3.94245, 51.63857], [-3.94223, 51.63877], [-3.94197, 51.63901], [-3.94171, 51.63929], [-3.94144, 51.63961], [-3.94121, 51.63995], [-3.94095, 51.64047], [-3.94079, 51.64074], [-3.94061, 51.64101], [-3.94032, 51.64137], [-3.93971, 51.64201], [-3.93935, 51.64239]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993297", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.67187, 51.5231], [-3.67301, 51.5231], [-3.67422, 51.52305], [-3.67787, 51.52299], [-3.67969, 51.52297], [-3.68063, 51.52296], [-3.68151, 51.52296], [-3.68215, 51.52297], [-3.68282, 51.52299], [-3.68391, 51.52304], [-3.68453, 51.52308], [-3.68506, 51.52311], [-3.68587, 51.52318], [-3.68671, 51.52325], [-3.68755, 51.52334], [-3.68833, 51.52344], [-3.68913, 51.52355], [-3.69035, 51.52373], [-3.69097, 51.52382], [-3.69138, 51.52389], [-3.692, 51.52399], [-3.69265, 51.5241], [-3.69333, 51.52424], [-3.69388, 51.52436], [-3.69443, 51.52448], [-3.6954, 51.52471], [-3.69637, 51.52498], [-3.6971, 51.52518], [-3.69763, 51.52533]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3993407", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.17732, 51.47571], [-3.17759, 51.4757], [-3.17981, 51.47563]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3993408", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.00041, 51.58876], [-3.00019, 51.58889], [-2.99866, 51.58978], [-2.99817, 51.59006], [-2.9978, 51.59025], [-2.99711, 51.59057], [-2.99697, 51.59064], [-2.99663, 51.59078], [-2.99644, 51.59085]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3993409", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.77052, 51.58446], [-2.7713, 51.58444], [-2.77255, 51.58442], [-2.77374, 51.58439], [-2.77533, 51.58437], [-2.77667, 51.58434], [-2.77778, 51.58431], [-2.77862, 51.58429], [-2.77924, 51.58426], [-2.78003, 51.58421], [-2.78095, 51.58415], [-2.7819, 51.58409], [-2.7823, 51.58406]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993938", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.4182, 54.25068], [-0.41839, 54.25016], [-0.41844, 54.24992], [-0.41848, 54.24965], [-0.4185, 54.24943], [-0.41848, 54.24914], [-0.41847, 54.249], [-0.4184, 54.24876], [-0.41831, 54.24854], [-0.41821, 54.2483], [-0.41807, 54.24808], [-0.41788, 54.24781], [-0.41767, 54.24759], [-0.41741, 54.24734], [-0.41668, 54.24662], [-0.41638, 54.24624], [-0.41613, 54.24586], [-0.41599, 54.24561], [-0.41585, 54.24533], [-0.41573, 54.24502], [-0.41565, 54.24473], [-0.41554, 54.24421], [-0.41553, 54.24394], [-0.41553, 54.24364], [-0.41556, 54.24335], [-0.4156, 54.24309], [-0.41567, 54.2428], [-0.41576, 54.24253], [-0.41589, 54.24222], [-0.41603, 54.24189], [-0.41641, 54.24124], [-0.41661, 54.24098], [-0.4169, 54.24064], [-0.41779, 54.23976], [-0.41815, 54.23941]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3993948", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.90184, 54.06534], [-0.90428, 54.06581], [-0.90565, 54.06606], [-0.90789, 54.06648], [-0.90975, 54.06684], [-0.91088, 54.0671], [-0.91193, 54.06737], [-0.91265, 54.06758], [-0.91347, 54.06784], [-0.91474, 54.0683], [-0.91648, 54.06898], [-0.9175, 54.06937], [-0.91822, 54.06964], [-0.91887, 54.06986], [-0.91958, 54.07008], [-0.92051, 54.07032], [-0.92149, 54.07054], [-0.92234, 54.07068], [-0.92312, 54.07076], [-0.92401, 54.07085], [-0.92482, 54.0709], [-0.92556, 54.07092], [-0.92634, 54.07091], [-0.92726, 54.07087], [-0.92834, 54.07076], [-0.92932, 54.07063], [-0.92998, 54.07051], [-0.93095, 54.0703], [-0.93175, 54.07009], [-0.93253, 54.06984], [-0.93301, 54.06968], [-0.93468, 54.06909], [-0.93727, 54.06817], [-0.93919, 54.06751], [-0.9412, 54.06693], [-0.94217, 54.06671], [-0.94297, 54.06654], [-0.9442, 54.0663], [-0.94648, 54.06596], [-0.94779, 54.06583], [-0.94856, 54.06576], [-0.94999, 54.06568], [-0.95174, 54.06565], [-0.95427, 54.06569], [-0.95616, 54.06572], [-0.95805, 54.06565], [-0.95972, 54.06549], [-0.96085, 54.06533], [-0.96181, 54.06516], [-0.96374, 54.06474], [-0.96541, 54.06424], [-0.96682, 54.06371], [-0.96854, 54.06296], [-0.96925, 54.06267], [-0.97009, 54.06233], [-0.97116, 54.06196], [-0.97238, 54.0616], [-0.97342, 54.06135], [-0.97579, 54.0609], [-0.97737, 54.06063], [-0.97882, 54.06025], [-0.98016, 54.05973], [-0.98134, 54.05911], [-0.9833, 54.05775], [-0.98604, 54.05591], [-0.98813, 54.05474], [-0.98986, 54.05394], [-0.99162, 54.05315], [-0.99668, 54.05085], [-0.99774, 54.05042], [-0.99869, 54.05006], [-0.99878, 54.05003], [-0.99948, 54.04979], [-1.00419, 54.04824], [-1.01103, 54.04601], [-1.01303, 54.04535], [-1.01522, 54.0446], [-1.01712, 54.04388], [-1.02483, 54.04082], [-1.02628, 54.04025], [-1.02872, 54.03929], [-1.0305, 54.03858], [-1.03229, 54.03788], [-1.03583, 54.03648], [-1.03832, 54.03549], [-1.04604, 54.03243]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3994103", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.00174, 51.53888], [-0.00204, 51.53923], [-0.00216, 51.53936], [-0.00223, 51.53945], [-0.00228, 51.53951], [-0.0024, 51.53966], [-0.00251, 51.5398], [-0.00268, 51.54001], [-0.00283, 51.54019], [-0.00301, 51.5404], [-0.00319, 51.54061], [-0.0034, 51.54088]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994175", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40919, 51.6398], [-2.4094, 51.64007], [-2.40976, 51.64046], [-2.41008, 51.64081], [-2.41052, 51.64126], [-2.41087, 51.64161], [-2.4113, 51.64207], [-2.41156, 51.64235], [-2.41183, 51.64266]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994185", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.39962, 51.59832], [-2.39936, 51.59855], [-2.39906, 51.59883], [-2.3985, 51.59941], [-2.39794, 51.60002], [-2.39714, 51.60093], [-2.39694, 51.60116], [-2.39639, 51.60177], [-2.39608, 51.60213], [-2.39584, 51.60241], [-2.39567, 51.60264], [-2.39549, 51.60286]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994354", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.26464, 51.8041], [-2.26481, 51.8037], [-2.26508, 51.80306], [-2.26538, 51.80241], [-2.26561, 51.8019]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994363", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.41195, 51.64281], [-2.41205, 51.64295], [-2.41222, 51.64321], [-2.41234, 51.64338], [-2.41252, 51.64364], [-2.4127, 51.64393], [-2.41284, 51.64416], [-2.41297, 51.6444], [-2.41311, 51.64467], [-2.41324, 51.64495], [-2.41337, 51.64524], [-2.41349, 51.64554], [-2.4136, 51.64581], [-2.41371, 51.64618], [-2.4138, 51.6465], [-2.41391, 51.64705], [-2.41404, 51.64784], [-2.41408, 51.64823], [-2.41413, 51.64849], [-2.41422, 51.64921], [-2.41431, 51.6499], [-2.41438, 51.65049], [-2.41447, 51.65122], [-2.41455, 51.65183], [-2.41463, 51.65246], [-2.4147, 51.65302], [-2.41477, 51.65355], [-2.41487, 51.65429], [-2.41498, 51.65516], [-2.4151, 51.65607], [-2.41521, 51.65691], [-2.41541, 51.6585], [-2.41555, 51.65959], [-2.41566, 51.66042], [-2.41572, 51.66089], [-2.41578, 51.66138], [-2.41586, 51.66199], [-2.41592, 51.66247], [-2.416, 51.66305], [-2.41606, 51.66354], [-2.4162, 51.66454], [-2.41635, 51.66575], [-2.41653, 51.6672], [-2.41665, 51.66807], [-2.41678, 51.66912], [-2.41687, 51.66986], [-2.41702, 51.67094], [-2.41713, 51.67179], [-2.41729, 51.6731], [-2.41736, 51.67361], [-2.4175, 51.67465], [-2.4177, 51.67633], [-2.41777, 51.67727], [-2.41781, 51.67842], [-2.41779, 51.67921], [-2.41776, 51.67994], [-2.41773, 51.68057], [-2.41764, 51.68129], [-2.41756, 51.68187], [-2.41749, 51.68238], [-2.4174, 51.68289], [-2.41732, 51.68327]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3994676", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.71319, 53.86222], [-1.71216, 53.86264], [-1.71146, 53.86304], [-1.71084, 53.86347], [-1.71046, 53.86372]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994992", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.70077, 51.50453], [-2.70049, 51.50488], [-2.7004, 51.50499], [-2.70003, 51.50543], [-2.69962, 51.50592], [-2.69927, 51.50634], [-2.69874, 51.50699], [-2.69841, 51.5074], [-2.69812, 51.5078], [-2.6979, 51.50819], [-2.69776, 51.50845], [-2.69763, 51.50877], [-2.69727, 51.50983], [-2.69683, 51.51103]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3994993", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.59276, 51.51649], [-2.59118, 51.51678], [-2.59023, 51.51693], [-2.58894, 51.5171], [-2.58801, 51.51723], [-2.58704, 51.51733], [-2.58594, 51.5174], [-2.58488, 51.51746], [-2.58256, 51.51753], [-2.58138, 51.51753], [-2.57979, 51.5175], [-2.57869, 51.51745], [-2.57321, 51.51699], [-2.57174, 51.51687], [-2.5717, 51.51687], [-2.57073, 51.51679]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3995420", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.08154, 52.41387], [-4.07993, 52.4127], [-4.07906, 52.41207], [-4.07784, 52.41119], [-4.07737, 52.41089], [-4.07691, 52.41063], [-4.07653, 52.41041], [-4.07589, 52.41011], [-4.07544, 52.40993], [-4.07471, 52.40963], [-4.07381, 52.40938], [-4.06104, 52.40622], [-4.05692, 52.40519], [-4.05557, 52.40488]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3995421", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.0422, 52.47922], [-4.04234, 52.47929]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3995423", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.99002, 52.55333], [-3.98947, 52.5535], [-3.98894, 52.55373], [-3.9883, 52.55406], [-3.98768, 52.55442], [-3.98713, 52.55467], [-3.98627, 52.55489], [-3.98553, 52.55506], [-3.98501, 52.55515], [-3.98392, 52.55521], [-3.98311, 52.55522], [-3.98221, 52.5552], [-3.98095, 52.55532], [-3.97811, 52.55612], [-3.97582, 52.5564], [-3.97519, 52.55642], [-3.97436, 52.55639], [-3.97367, 52.55632], [-3.97246, 52.55613]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3995433", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.87655, 52.58194], [-3.87815, 52.58045], [-3.879, 52.5797], [-3.87959, 52.57923], [-3.87992, 52.579], [-3.88118, 52.57818], [-3.88254, 52.57748], [-3.88372, 52.57697], [-3.8843, 52.5768], [-3.88507, 52.57661], [-3.88573, 52.57649], [-3.88667, 52.57636], [-3.88763, 52.57629], [-3.8885, 52.57629], [-3.88986, 52.57637], [-3.89137, 52.57656], [-3.89311, 52.5768], [-3.89594, 52.57717], [-3.89762, 52.5774], [-3.89924, 52.57753], [-3.90035, 52.57758], [-3.9012, 52.57758], [-3.9021, 52.57754], [-3.90304, 52.57745], [-3.90485, 52.57715], [-3.90625, 52.57683], [-3.90638, 52.5768], [-3.90742, 52.57646], [-3.90839, 52.57609], [-3.90914, 52.57572], [-3.91376, 52.57311], [-3.92018, 52.56949], [-3.92079, 52.56914]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3995459", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.85439, 52.59542], [-3.85218, 52.59658], [-3.85151, 52.59692], [-3.85076, 52.59721]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "3995465", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14135, 50.82989], [-0.1413, 50.82973], [-0.14127, 50.82953], [-0.14126, 50.82932], [-0.14127, 50.82921], [-0.14129, 50.82901]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996086", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.60039, 53.46023], [-2.60094, 53.45963], [-2.6015, 53.45903], [-2.6029, 53.45762], [-2.60598, 53.45454]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996087", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.64035, 53.5807], [-2.64007, 53.57897], [-2.63989, 53.57722], [-2.63979, 53.57553], [-2.63977, 53.57382], [-2.6399, 53.57173], [-2.63996, 53.57077], [-2.64009, 53.56858], [-2.64045, 53.56335], [-2.64065, 53.56032], [-2.64054, 53.55664]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996088", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.67315, 53.6667], [-2.67158, 53.66067], [-2.67072, 53.65734], [-2.67035, 53.65603]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996089", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.70643, 53.7521], [-2.70624, 53.75075]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996090", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.74031, 53.84957], [-2.73968, 53.84678], [-2.7391, 53.84427], [-2.7389, 53.84341], [-2.73867, 53.84214], [-2.73858, 53.84112], [-2.73856, 53.84006], [-2.73867, 53.83887], [-2.73883, 53.83793], [-2.73902, 53.83722], [-2.7393, 53.83637], [-2.73961, 53.83552], [-2.73983, 53.83479], [-2.74006, 53.83375], [-2.74015, 53.83305], [-2.74021, 53.83224], [-2.74022, 53.83151], [-2.74012, 53.83043], [-2.73978, 53.82859], [-2.73844, 53.82235], [-2.73805, 53.82054], [-2.73802, 53.82035], [-2.73784, 53.81949], [-2.73767, 53.81869], [-2.73739, 53.81768], [-2.73724, 53.81704], [-2.73694, 53.81608], [-2.73678, 53.81556]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996091", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.80885, 54.05606], [-2.80896, 54.05686], [-2.8091, 54.05753], [-2.80928, 54.05817], [-2.80965, 54.05923], [-2.81014, 54.06034]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996092", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.74882, 54.22915], [-2.74708, 54.22329], [-2.74655, 54.22148]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3996094", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.60429, 54.40621], [-2.60439, 54.40544], [-2.60434, 54.40464], [-2.60418, 54.40377], [-2.60403, 54.40315], [-2.60385, 54.40252], [-2.60362, 54.4019], [-2.60336, 54.40128], [-2.60254, 54.39985], [-2.60207, 54.39913], [-2.6018, 54.39877], [-2.6015, 54.39841], [-2.60013, 54.39697], [-2.59943, 54.39632], [-2.59863, 54.39568], [-2.59538, 54.39349], [-2.59172, 54.39109], [-2.59034, 54.3902], [-2.58808, 54.38869]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3996527", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.4131, 51.57309], [-0.41741, 51.57213], [-0.41781, 51.57204], [-0.41821, 51.57197], [-0.41862, 51.5719], [-0.41902, 51.57184], [-0.41947, 51.57177], [-0.41992, 51.57169], [-0.42026, 51.57162], [-0.42055, 51.57156], [-0.42134, 51.57139], [-0.42188, 51.57127], [-0.42206, 51.57122], [-0.42228, 51.57117], [-0.42247, 51.57112], [-0.42269, 51.57106], [-0.42301, 51.57095], [-0.42334, 51.57085], [-0.42374, 51.5707], [-0.42418, 51.57054], [-0.42468, 51.57036], [-0.42531, 51.57011], [-0.42639, 51.56965], [-0.42747, 51.56918], [-0.4281, 51.56891], [-0.4286, 51.5687], [-0.43185, 51.56728], [-0.43388, 51.56639], [-0.43468, 51.56607], [-0.43484, 51.566], [-0.43588, 51.56556], [-0.43648, 51.56532], [-0.4369, 51.56515], [-0.43726, 51.56501], [-0.43782, 51.56479], [-0.43818, 51.56464], [-0.43856, 51.56448], [-0.43888, 51.56433], [-0.43921, 51.56417], [-0.43964, 51.56393], [-0.44006, 51.56368], [-0.44025, 51.56356], [-0.44069, 51.56324], [-0.44117, 51.56284], [-0.4415, 51.56256], [-0.44182, 51.56224], [-0.44202, 51.56198]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3996648", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.35158, 51.56419], [-0.35126, 51.56391], [-0.35083, 51.56348]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3996654", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.28811, 51.51472], [-0.28801, 51.5146], [-0.28795, 51.51453], [-0.28789, 51.51444], [-0.28782, 51.51433], [-0.28776, 51.51419], [-0.2877, 51.51404], [-0.28767, 51.51392], [-0.28764, 51.51378], [-0.28762, 51.51355], [-0.28764, 51.51338], [-0.28766, 51.51323], [-0.28771, 51.51306], [-0.28783, 51.51262], [-0.28788, 51.51243], [-0.28792, 51.51223], [-0.28797, 51.51193], [-0.28813, 51.51098], [-0.28817, 51.51063]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "3996658", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.22208, 51.49117], [-0.222, 51.4911], [-0.22141, 51.49073], [-0.22118, 51.49062], [-0.22098, 51.49055], [-0.22079, 51.49049], [-0.22053, 51.49042], [-0.22023, 51.49035], [-0.2199, 51.49029], [-0.21949, 51.49025], [-0.21888, 51.49022], [-0.21854, 51.49023], [-0.21681, 51.4903], [-0.21634, 51.49032], [-0.21593, 51.49036], [-0.21561, 51.49037], [-0.21539, 51.49038], [-0.21529, 51.49038], [-0.21516, 51.49038], [-0.21493, 51.49038], [-0.21469, 51.49038], [-0.21449, 51.49038]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3996767", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.3169, 52.51045], [-3.31633, 52.51065], [-3.3146, 52.51123], [-3.31223, 52.51201], [-3.31154, 52.51224], [-3.31119, 52.51235], [-3.31087, 52.51243], [-3.31034, 52.51257]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3997420", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.15893, 52.20118], [0.15915, 52.20093]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3998242", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.34267, 54.20124], [-1.34121, 54.19991]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "3998243", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.13923, 53.99116], [-1.13939, 53.99132], [-1.14023, 53.99226], [-1.1416, 53.99378], [-1.14328, 53.99563]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998575", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.76822, 54.89978], [-2.76733, 54.90041], [-2.76647, 54.90097], [-2.76602, 54.90122], [-2.76555, 54.90144], [-2.76516, 54.90161], [-2.76501, 54.90166], [-2.76454, 54.90183], [-2.764, 54.90199], [-2.76354, 54.90211], [-2.76304, 54.90221], [-2.76251, 54.9023], [-2.76199, 54.90235], [-2.76153, 54.90239], [-2.76094, 54.90241], [-2.76035, 54.90241], [-2.75803, 54.90236], [-2.75572, 54.90232], [-2.75513, 54.90235], [-2.75455, 54.90239], [-2.75396, 54.90247], [-2.75343, 54.90256], [-2.75304, 54.90264], [-2.75266, 54.90273], [-2.75228, 54.90284], [-2.7519, 54.90295], [-2.75081, 54.90333], [-2.75026, 54.90352], [-2.74969, 54.90369], [-2.74925, 54.9038], [-2.74881, 54.90388], [-2.74344, 54.90475], [-2.73528, 54.90612], [-2.73492, 54.90619], [-2.73458, 54.90627], [-2.73426, 54.90636], [-2.73397, 54.90645], [-2.73363, 54.90657], [-2.73331, 54.90669], [-2.73272, 54.90698], [-2.73228, 54.90724], [-2.73168, 54.90763], [-2.73137, 54.90786], [-2.73109, 54.90811]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998582", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.65929, 54.95729], [-2.65622, 54.95811], [-2.65551, 54.95829], [-2.65477, 54.95848], [-2.65405, 54.95868], [-2.65339, 54.95886], [-2.65286, 54.95903], [-2.65239, 54.9592], [-2.65191, 54.95939], [-2.65147, 54.95959], [-2.64993, 54.9604], [-2.64896, 54.96093], [-2.64629, 54.96238], [-2.64412, 54.96357], [-2.64267, 54.96436], [-2.64196, 54.96481], [-2.64163, 54.96505], [-2.64131, 54.96532], [-2.64079, 54.96583], [-2.64031, 54.96636], [-2.6398, 54.96693], [-2.6393, 54.9675], [-2.63882, 54.96801], [-2.63833, 54.96847], [-2.63799, 54.96875], [-2.63773, 54.96892], [-2.63751, 54.96906], [-2.63709, 54.96929], [-2.6367, 54.96949], [-2.63649, 54.96958]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998583", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.53997, 54.99041], [-2.53961, 54.99018], [-2.53927, 54.98996], [-2.53859, 54.98951], [-2.53791, 54.98906], [-2.53731, 54.98861], [-2.53698, 54.98831], [-2.5369, 54.98822], [-2.5366, 54.98788], [-2.53645, 54.98767], [-2.53634, 54.98749], [-2.53615, 54.98716], [-2.53598, 54.98681], [-2.53545, 54.9856], [-2.53371, 54.98168]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998584", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.39432, 54.9676], [-2.39353, 54.96762], [-2.39282, 54.96766], [-2.3894, 54.96788], [-2.38763, 54.96799], [-2.38592, 54.9681], [-2.38301, 54.9683], [-2.38221, 54.96835], [-2.38148, 54.96841], [-2.38071, 54.96849], [-2.38001, 54.96858], [-2.37918, 54.9687], [-2.3784, 54.96885], [-2.37752, 54.96904], [-2.3767, 54.96925], [-2.37485, 54.96977], [-2.37263, 54.97038], [-2.37187, 54.9706], [-2.3707, 54.97093], [-2.36877, 54.97146], [-2.36491, 54.97254], [-2.36421, 54.97274], [-2.36231, 54.97327], [-2.36089, 54.97364], [-2.36027, 54.97378], [-2.35966, 54.97391], [-2.3591, 54.97403], [-2.35847, 54.97414], [-2.35785, 54.97425], [-2.3574, 54.97432], [-2.35701, 54.97438], [-2.35657, 54.97444], [-2.35614, 54.97449], [-2.35569, 54.97455], [-2.35524, 54.97459], [-2.35439, 54.97466], [-2.35349, 54.97472], [-2.35255, 54.97477], [-2.35156, 54.97479], [-2.35057, 54.97479], [-2.34952, 54.97476], [-2.34831, 54.97471], [-2.34734, 54.97467], [-2.346, 54.9746], [-2.34491, 54.97455], [-2.34319, 54.97447]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998585", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.21168, 54.9906], [-2.20965, 54.9919], [-2.2075, 54.99316], [-2.20632, 54.99397], [-2.20585, 54.99439], [-2.2053, 54.99497], [-2.20458, 54.99574], [-2.20407, 54.99617], [-2.20354, 54.99655], [-2.20289, 54.9969], [-2.2023, 54.99718], [-2.20144, 54.99754], [-2.20067, 54.99784], [-2.1998, 54.99817], [-2.19892, 54.99849], [-2.19831, 54.9987], [-2.19769, 54.99888], [-2.19628, 54.99927]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998586", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.00774, 54.96481], [-2.00471, 54.96441], [-2.00394, 54.96428], [-2.00321, 54.96414], [-2.00263, 54.964], [-2.00209, 54.96386], [-2.00097, 54.96354], [-1.99872, 54.96286], [-1.99815, 54.9627], [-1.99751, 54.9625], [-1.99686, 54.96229], [-1.99625, 54.96208], [-1.99578, 54.96189], [-1.99534, 54.96171], [-1.99368, 54.96097], [-1.99314, 54.96072], [-1.99265, 54.9605], [-1.99209, 54.96024], [-1.99064, 54.95951], [-1.98982, 54.95906], [-1.98905, 54.9586], [-1.98884, 54.95847], [-1.98799, 54.95792], [-1.98715, 54.95734], [-1.98599, 54.95649], [-1.98463, 54.9555], [-1.98381, 54.95493], [-1.98295, 54.95436], [-1.9825, 54.95408], [-1.982, 54.95378], [-1.98141, 54.95345], [-1.98072, 54.9531], [-1.97784, 54.95171], [-1.97487, 54.95033], [-1.97154, 54.94876], [-1.97125, 54.94862]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998587", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.8749, 54.96219], [-1.87239, 54.96292], [-1.87115, 54.96332], [-1.86995, 54.96371], [-1.86954, 54.96387], [-1.86914, 54.96403], [-1.86633, 54.96523], [-1.86521, 54.96569], [-1.86475, 54.96589], [-1.86407, 54.96618], [-1.86351, 54.96642], [-1.8629, 54.96668], [-1.86178, 54.96718], [-1.86069, 54.96765], [-1.85864, 54.96852], [-1.85758, 54.96896], [-1.85654, 54.96937], [-1.8555, 54.96965], [-1.85451, 54.96988], [-1.8534, 54.97009], [-1.85232, 54.97025], [-1.85119, 54.9704], [-1.85013, 54.97051], [-1.84792, 54.97076], [-1.8435, 54.97126]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998588", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.73199, 54.97097], [-1.73127, 54.97068], [-1.73061, 54.97044], [-1.72997, 54.97024], [-1.72858, 54.96985], [-1.72799, 54.96969], [-1.72754, 54.96953], [-1.72728, 54.96942], [-1.727, 54.9693], [-1.72597, 54.96886], [-1.72545, 54.96863], [-1.72497, 54.96843], [-1.72345, 54.96789], [-1.72329, 54.96783], [-1.72259, 54.9676], [-1.72182, 54.96738], [-1.72048, 54.96702], [-1.71957, 54.96679], [-1.71902, 54.96669]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998589", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.66285, 54.9587], [-1.66146, 54.95855], [-1.65987, 54.95838]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3998708", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83846, 54.85808], [-2.83929, 54.8585], [-2.83997, 54.85887], [-2.84068, 54.85929], [-2.84122, 54.85964], [-2.84177, 54.86001], [-2.84238, 54.86043], [-2.84292, 54.86086], [-2.84328, 54.86116], [-2.84367, 54.8615], [-2.84404, 54.86184], [-2.84533, 54.86312], [-2.84649, 54.86433], [-2.84701, 54.86483], [-2.84753, 54.86533], [-2.84852, 54.86633], [-2.85048, 54.86833], [-2.85259, 54.87044], [-2.85355, 54.87144], [-2.85511, 54.87299], [-2.85666, 54.87454]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999115", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.76591, 54.8239], [-2.76574, 54.82443], [-2.76566, 54.8247], [-2.76559, 54.82498], [-2.76556, 54.8252], [-2.76555, 54.82551], [-2.76555, 54.82577], [-2.76558, 54.82603]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999157", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.75038, 54.78322], [-2.75127, 54.78369]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999158", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.69254, 54.74328], [-2.6929, 54.74353]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999159", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.63967, 54.67393], [-2.64009, 54.6744], [-2.6405, 54.67484], [-2.64071, 54.67504], [-2.6409, 54.67522], [-2.64129, 54.67561], [-2.64178, 54.67602], [-2.64223, 54.67639], [-2.643, 54.67697]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999206", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.53632, 54.62825], [-2.53763, 54.62907], [-2.53896, 54.6299], [-2.53975, 54.6304], [-2.54053, 54.63091], [-2.54112, 54.63128], [-2.54168, 54.63164], [-2.54238, 54.6321], [-2.54278, 54.63235], [-2.54388, 54.63303], [-2.54452, 54.63341], [-2.54504, 54.6337], [-2.5456, 54.63399], [-2.54673, 54.63456]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999255", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.46588, 54.54381], [-2.46614, 54.54471], [-2.46641, 54.5456], [-2.46695, 54.5474]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999256", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.4187, 54.47344], [-2.41951, 54.47428], [-2.42028, 54.47511]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999257", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.34245, 54.39353], [-2.34271, 54.39501], [-2.34287, 54.39569], [-2.343, 54.39641], [-2.34361, 54.39946], [-2.34373, 54.40006], [-2.34385, 54.40066], [-2.34407, 54.40189], [-2.34438, 54.40324], [-2.34517, 54.40741], [-2.34524, 54.40773], [-2.34531, 54.40805], [-2.34584, 54.41066], [-2.34637, 54.41325], [-2.34727, 54.41567], [-2.34746, 54.41615], [-2.34803, 54.41768], [-2.34862, 54.4192], [-2.34953, 54.42153]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999258", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.32133, 54.33475], [-2.32269, 54.33582], [-2.32306, 54.33613], [-2.32391, 54.33694], [-2.32429, 54.33739], [-2.32454, 54.3377], [-2.32509, 54.33845], [-2.32545, 54.33897], [-2.3258, 54.33951], [-2.32614, 54.34006]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999705", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.36733, 54.23193], [-2.3671, 54.2323], [-2.36685, 54.23268], [-2.36656, 54.23305], [-2.36624, 54.23341], [-2.3659, 54.23377], [-2.36552, 54.23411], [-2.36153, 54.23743], [-2.35896, 54.2395], [-2.34834, 54.24812], [-2.34645, 54.24973]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999706", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.37174, 54.21183], [-2.37138, 54.2114], [-2.37094, 54.21094], [-2.37047, 54.21049], [-2.36997, 54.21005], [-2.36944, 54.20963], [-2.36888, 54.20922], [-2.36828, 54.20882]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "3999822", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.31887, 54.32658], [-2.31859, 54.32722], [-2.31844, 54.32761], [-2.31829, 54.32802]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000089", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.36952, 54.22786], [-2.36747, 54.23168], [-2.36733, 54.23193]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000090", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.36828, 54.20882], [-2.36796, 54.20861], [-2.36687, 54.20798], [-2.36609, 54.20759]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000334", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.64419, 55.45984], [-3.6443, 55.45896], [-3.64469, 55.45777]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000335", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.63306, 55.55924], [-3.6336, 55.55704], [-3.6339, 55.55607], [-3.63423, 55.55533], [-3.63473, 55.55453]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000336", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.73171, 55.69041], [-3.72971, 55.68995], [-3.72866, 55.68975], [-3.72813, 55.68965], [-3.72758, 55.68956], [-3.72665, 55.68943], [-3.72572, 55.68933], [-3.72493, 55.68925], [-3.72403, 55.68917], [-3.72283, 55.68913], [-3.72168, 55.6891], [-3.72053, 55.68912], [-3.71926, 55.68917], [-3.7177, 55.68926], [-3.71618, 55.68941], [-3.71384, 55.68965], [-3.71106, 55.68992], [-3.71004, 55.69003], [-3.70828, 55.69021], [-3.70641, 55.6904], [-3.70437, 55.69061], [-3.70107, 55.69095], [-3.6976, 55.69131], [-3.69253, 55.69183], [-3.6913, 55.69195]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000337", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.01663, 55.80351], [-4.01387, 55.80318], [-4.01251, 55.80299], [-4.01186, 55.80288], [-4.01124, 55.80275], [-4.01011, 55.8025], [-4.00957, 55.80236], [-4.00904, 55.80221], [-4.00806, 55.80192], [-4.00715, 55.80159], [-4.00624, 55.80125], [-4.00534, 55.80087], [-4.00437, 55.80038], [-4.00344, 55.79988], [-4.00305, 55.79965], [-4.00262, 55.7994], [-4.00189, 55.79891], [-4.00139, 55.79853], [-4.00091, 55.7982], [-4.0004, 55.79776], [-3.99991, 55.7973], [-3.99939, 55.79675], [-3.99891, 55.79622], [-3.99862, 55.79586], [-3.99841, 55.79561]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000464", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.54158, 52.28477], [-1.54059, 52.28479], [-1.54022, 52.28479], [-1.53902, 52.28477]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000465", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.60982, 52.28577], [-1.60928, 52.28574], [-1.60863, 52.28572], [-1.60763, 52.28571], [-1.60726, 52.28572], [-1.60681, 52.28574], [-1.60639, 52.28576], [-1.60603, 52.28579], [-1.60555, 52.28583], [-1.60494, 52.28589], [-1.60417, 52.28599], [-1.60376, 52.28606], [-1.60118, 52.28652]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000476", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.75556, 52.23708], [-1.75538, 52.23755], [-1.75526, 52.23785], [-1.75516, 52.23807], [-1.75495, 52.23853], [-1.75476, 52.23893], [-1.75466, 52.23913], [-1.75459, 52.23928], [-1.75424, 52.23995], [-1.75396, 52.24042], [-1.75384, 52.24061], [-1.75378, 52.2407], [-1.75362, 52.24094], [-1.75343, 52.2412], [-1.75328, 52.24141], [-1.75289, 52.2419], [-1.75265, 52.24221], [-1.75243, 52.24246], [-1.75223, 52.24269], [-1.75201, 52.24294], [-1.75172, 52.24324], [-1.75147, 52.24348], [-1.75127, 52.24368], [-1.75112, 52.24382], [-1.75094, 52.24397], [-1.75062, 52.24425], [-1.7503, 52.24452], [-1.74982, 52.24492], [-1.74941, 52.24524], [-1.7491, 52.24549], [-1.74892, 52.24561]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000477", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.67993, 52.2928], [-1.67987, 52.29303], [-1.67981, 52.29315], [-1.67976, 52.29326], [-1.67967, 52.29341], [-1.67956, 52.29356], [-1.67947, 52.29368], [-1.67928, 52.29387], [-1.67915, 52.29398], [-1.67902, 52.29409], [-1.67887, 52.2942], [-1.67865, 52.29435], [-1.67846, 52.29446], [-1.67825, 52.29458], [-1.67803, 52.29469], [-1.67777, 52.29479], [-1.67754, 52.29488], [-1.67733, 52.29495], [-1.67722, 52.29498]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000488", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.66808, 52.29536], [-1.66769, 52.29541], [-1.66739, 52.29545], [-1.66667, 52.29556], [-1.66616, 52.29566], [-1.66532, 52.29582], [-1.66468, 52.29598], [-1.66415, 52.29612], [-1.66296, 52.29646], [-1.66228, 52.29666], [-1.66139, 52.29692], [-1.66074, 52.29709]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000489", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.72208, 52.32376], [-1.72193, 52.32345], [-1.7216, 52.32281], [-1.72136, 52.32242], [-1.72121, 52.32219], [-1.72088, 52.32171], [-1.72066, 52.32139], [-1.72031, 52.32093], [-1.71994, 52.32048], [-1.71962, 52.32012], [-1.71946, 52.31994], [-1.71927, 52.31973], [-1.71884, 52.3193], [-1.71838, 52.31885], [-1.71736, 52.31791], [-1.71709, 52.31766], [-1.71669, 52.3173]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000490", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.71632, 52.19447], [-1.71627, 52.19509], [-1.71625, 52.19539], [-1.71624, 52.19552], [-1.71624, 52.19569], [-1.71625, 52.19589], [-1.71628, 52.19608], [-1.71631, 52.19622], [-1.71633, 52.1963], [-1.71637, 52.19645], [-1.71643, 52.19662], [-1.71651, 52.19683], [-1.71659, 52.19698], [-1.71668, 52.19715], [-1.71675, 52.19725], [-1.71682, 52.19736], [-1.71693, 52.1975]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000619", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.41136, 52.38159], [-1.41359, 52.38165], [-1.41617, 52.38173], [-1.41922, 52.38183], [-1.42109, 52.38192], [-1.42266, 52.38202], [-1.42423, 52.38215], [-1.42595, 52.38232], [-1.42771, 52.38251], [-1.4293, 52.38272], [-1.43097, 52.38296], [-1.43302, 52.3833], [-1.43451, 52.38357], [-1.43667, 52.38402], [-1.43808, 52.38433], [-1.4397, 52.38472], [-1.44076, 52.385], [-1.44213, 52.38538], [-1.44268, 52.38554], [-1.44347, 52.38577], [-1.44466, 52.38613], [-1.44599, 52.38656], [-1.44711, 52.38694], [-1.44834, 52.3874], [-1.45085, 52.38834], [-1.45285, 52.38906], [-1.45436, 52.38958], [-1.45682, 52.39035], [-1.45898, 52.39095]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000621", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.5206, 52.40161], [-1.52081, 52.40164], [-1.52109, 52.40169], [-1.52133, 52.40175], [-1.52159, 52.40183], [-1.52199, 52.40194], [-1.52253, 52.40212], [-1.52305, 52.4023], [-1.52356, 52.4025], [-1.52393, 52.40267], [-1.52414, 52.40277], [-1.52435, 52.40289], [-1.52462, 52.40305], [-1.52487, 52.40322], [-1.52517, 52.40344], [-1.52543, 52.40365], [-1.52562, 52.40383]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000629", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.57198, 52.33659], [-1.57234, 52.33818], [-1.57248, 52.33893], [-1.57254, 52.33941], [-1.57257, 52.33993], [-1.57259, 52.34036], [-1.57258, 52.34121], [-1.57256, 52.34159], [-1.57254, 52.34184], [-1.57249, 52.34215], [-1.57239, 52.34274], [-1.57235, 52.34298], [-1.57231, 52.34316], [-1.57224, 52.34351], [-1.57212, 52.34394], [-1.57204, 52.34421], [-1.57188, 52.34472]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000630", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.54712, 52.28605], [-1.54672, 52.28592], [-1.54408, 52.28523], [-1.54348, 52.28507], [-1.54308, 52.28496], [-1.5427, 52.28489], [-1.54238, 52.28484], [-1.54207, 52.2848], [-1.5419, 52.28478], [-1.54158, 52.28477]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000638", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.75357, 52.3725], [-1.75278, 52.37188]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000639", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80242, 52.43508], [-1.8021, 52.43438], [-1.80183, 52.43374], [-1.80168, 52.43338], [-1.80149, 52.43289], [-1.80131, 52.43239], [-1.8012, 52.43206], [-1.80114, 52.43185], [-1.80105, 52.43155], [-1.80087, 52.43088], [-1.80053, 52.42939], [-1.80048, 52.42906], [-1.80025, 52.42794], [-1.8002, 52.42766], [-1.80011, 52.42725], [-1.80005, 52.427], [-1.79997, 52.42671], [-1.7999, 52.42646], [-1.79978, 52.42604], [-1.79968, 52.42576], [-1.79953, 52.42536], [-1.79941, 52.42504], [-1.79923, 52.4246], [-1.79908, 52.42427], [-1.79892, 52.42395], [-1.7988, 52.4237], [-1.79863, 52.42339], [-1.79849, 52.42315], [-1.79833, 52.42287], [-1.79817, 52.42262], [-1.79783, 52.4221], [-1.79761, 52.42179], [-1.79728, 52.42134], [-1.79695, 52.42093], [-1.79674, 52.42068], [-1.79606, 52.41992], [-1.7958, 52.41964], [-1.79546, 52.4193], [-1.79497, 52.41883], [-1.79469, 52.41859], [-1.79437, 52.41831], [-1.79403, 52.41803], [-1.79355, 52.41765], [-1.79326, 52.41741], [-1.79297, 52.41721], [-1.79223, 52.41667], [-1.7911, 52.41598], [-1.78969, 52.41519]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000640", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.82101, 52.45029], [-1.82, 52.44992], [-1.81915, 52.4496], [-1.8186, 52.44936], [-1.81833, 52.44923], [-1.81806, 52.44909], [-1.81724, 52.44865]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000653", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.86211, 52.46485], [-1.8623, 52.46491], [-1.86251, 52.46498], [-1.8626, 52.46501], [-1.8627, 52.46505], [-1.86279, 52.46508], [-1.86323, 52.46526], [-1.86447, 52.46576], [-1.86586, 52.46633], [-1.86634, 52.46652], [-1.86723, 52.46688], [-1.869, 52.4676], [-1.87018, 52.46808], [-1.87049, 52.4682], [-1.87097, 52.46843]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000682", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.88205, 52.48128], [-1.88145, 52.4814], [-1.8813, 52.48142], [-1.88115, 52.48145], [-1.88087, 52.48148], [-1.88059, 52.48149], [-1.88033, 52.4815], [-1.88011, 52.48151], [-1.87979, 52.4815], [-1.87931, 52.4815]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000686", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.80956, 52.48501], [-1.80867, 52.48491], [-1.80812, 52.48486], [-1.80765, 52.48482], [-1.80685, 52.48474], [-1.80605, 52.48465], [-1.80566, 52.48461], [-1.80488, 52.4845], [-1.8046, 52.48446], [-1.80401, 52.48438], [-1.80322, 52.48427], [-1.80242, 52.48415], [-1.80161, 52.48402], [-1.80066, 52.48387], [-1.79962, 52.4837], [-1.79862, 52.48352], [-1.79767, 52.48335], [-1.79675, 52.48317], [-1.79558, 52.48294], [-1.79502, 52.48283], [-1.79444, 52.48271], [-1.79343, 52.48249], [-1.79256, 52.48229], [-1.79175, 52.4821]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000697", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.61439, 52.39413], [-1.61399, 52.39415], [-1.61351, 52.39418], [-1.61289, 52.39422], [-1.61179, 52.3943], [-1.61132, 52.39433], [-1.61064, 52.39437], [-1.6102, 52.3944], [-1.60966, 52.39443], [-1.60887, 52.39448], [-1.60711, 52.39458], [-1.60635, 52.39463], [-1.60509, 52.39471], [-1.60355, 52.39481], [-1.60275, 52.39486], [-1.6017, 52.39492], [-1.59989, 52.39504], [-1.5987, 52.39511], [-1.59782, 52.39517], [-1.59688, 52.39523], [-1.59635, 52.39527], [-1.59606, 52.39529], [-1.59556, 52.39532], [-1.59511, 52.39534], [-1.59469, 52.39537], [-1.59413, 52.39541], [-1.59177, 52.39556], [-1.59122, 52.39559], [-1.59028, 52.39565], [-1.58983, 52.39568], [-1.58916, 52.39572], [-1.58868, 52.39575], [-1.58808, 52.39579], [-1.58747, 52.39583], [-1.58688, 52.39587], [-1.58459, 52.39602], [-1.58432, 52.39603], [-1.58323, 52.3961], [-1.58301, 52.39611], [-1.58253, 52.39614], [-1.58227, 52.39616], [-1.58141, 52.39621], [-1.57971, 52.39632], [-1.57916, 52.39636], [-1.57864, 52.39639], [-1.57802, 52.39643], [-1.57633, 52.39654], [-1.5761, 52.39655], [-1.57589, 52.39656], [-1.57559, 52.39658]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000706", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.37424, 52.38055], [-1.37301, 52.38051], [-1.37069, 52.38046], [-1.36921, 52.38041], [-1.36566, 52.38031], [-1.36163, 52.3802], [-1.35537, 52.38003], [-1.35128, 52.3799], [-1.34631, 52.37976], [-1.34034, 52.37958], [-1.3365, 52.37947]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000713", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.2702, 52.38079], [-1.26912, 52.38082], [-1.26857, 52.38085], [-1.26802, 52.38086], [-1.26756, 52.38087], [-1.26719, 52.38086]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000714", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.23048, 52.37199], [-1.23115, 52.37232], [-1.23279, 52.3731], [-1.23505, 52.37418], [-1.23634, 52.37476]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000715", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.09198, 52.26326], [-1.09274, 52.26415], [-1.09327, 52.26484], [-1.09376, 52.26553], [-1.09413, 52.26609], [-1.09466, 52.26696], [-1.09504, 52.26768], [-1.09546, 52.26859], [-1.09583, 52.26948], [-1.09619, 52.27045], [-1.0968, 52.27221]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000716", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.26721, 52.38069], [-1.26795, 52.38066], [-1.26886, 52.38061], [-1.26983, 52.38057], [-1.27108, 52.38053], [-1.27219, 52.38052], [-1.27254, 52.38052], [-1.27307, 52.38054], [-1.27359, 52.38057], [-1.27416, 52.3806], [-1.27485, 52.38066], [-1.27583, 52.38077], [-1.27665, 52.3809], [-1.27725, 52.381], [-1.27799, 52.38116], [-1.27884, 52.38136], [-1.27963, 52.38157], [-1.28059, 52.38188], [-1.28112, 52.38207], [-1.28174, 52.3823], [-1.28236, 52.38256], [-1.28273, 52.38272], [-1.2838, 52.38321], [-1.28442, 52.3835]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000718", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.44433, 52.50177], [-1.4445, 52.5026], [-1.44471, 52.50343], [-1.44501, 52.50447], [-1.44527, 52.50525], [-1.44597, 52.50718], [-1.44632, 52.50808], [-1.44675, 52.50901], [-1.44726, 52.51001]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000719", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51349, 52.55615], [-1.51258, 52.55573], [-1.51196, 52.55545], [-1.51155, 52.55526], [-1.51117, 52.55509], [-1.51017, 52.55462], [-1.50901, 52.55411], [-1.50788, 52.55363], [-1.50688, 52.55316], [-1.50667, 52.55305]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000720", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.4588, 52.52324], [-1.45911, 52.52347], [-1.4594, 52.52368], [-1.45991, 52.52405], [-1.46038, 52.52438], [-1.4609, 52.52474], [-1.4613, 52.525], [-1.4619, 52.5254], [-1.46211, 52.52554], [-1.46235, 52.52573], [-1.46267, 52.52603], [-1.46285, 52.52614], [-1.46297, 52.52622], [-1.464, 52.52686], [-1.46494, 52.52744], [-1.46539, 52.52774], [-1.46559, 52.52787], [-1.46575, 52.52798], [-1.46593, 52.52811], [-1.46612, 52.52826], [-1.46629, 52.52842], [-1.46638, 52.5285], [-1.4665, 52.52862], [-1.46663, 52.52877], [-1.46677, 52.52892], [-1.46687, 52.52902], [-1.467, 52.52914], [-1.4671, 52.52923], [-1.46723, 52.52933], [-1.46739, 52.52943], [-1.46758, 52.52954], [-1.46777, 52.52963], [-1.46805, 52.52975], [-1.46821, 52.52981], [-1.46839, 52.52987], [-1.46859, 52.52992], [-1.46881, 52.52997], [-1.469, 52.53], [-1.46919, 52.53003]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000721", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.46176, 52.52522], [-1.46195, 52.52537], [-1.4621, 52.52549], [-1.46224, 52.5256], [-1.46234, 52.52568], [-1.46271, 52.52595], [-1.46298, 52.52614], [-1.46406, 52.52683], [-1.465, 52.52742], [-1.46633, 52.52824], [-1.46698, 52.52864], [-1.46789, 52.5292], [-1.46916, 52.5299]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000724", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.47029, 52.49272], [-1.47064, 52.49438], [-1.47098, 52.49602], [-1.47133, 52.49764], [-1.47164, 52.49919], [-1.47227, 52.50207], [-1.47246, 52.50291], [-1.47252, 52.50322], [-1.47256, 52.50344], [-1.4728, 52.50454], [-1.4729, 52.50523], [-1.47294, 52.50594], [-1.4729, 52.50662], [-1.4728, 52.50734], [-1.47266, 52.50798], [-1.4725, 52.50851], [-1.47229, 52.5091], [-1.47161, 52.51041], [-1.47105, 52.51125], [-1.47076, 52.51163], [-1.47044, 52.51201], [-1.47003, 52.51244], [-1.46953, 52.51294]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4000726", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.01695, 52.20354], [-1.01651, 52.20338], [-1.01568, 52.20311], [-1.01454, 52.20277], [-1.01362, 52.20252], [-1.01231, 52.2022], [-1.0111, 52.20192], [-1.00991, 52.20166], [-1.00846, 52.20139], [-1.00726, 52.2012], [-1.00618, 52.20106], [-1.00532, 52.20096], [-1.00347, 52.20075], [-1.00235, 52.20061], [-1.00074, 52.20038], [-0.99914, 52.20012], [-0.99729, 52.19975], [-0.99558, 52.19936], [-0.99409, 52.19896], [-0.99294, 52.19862], [-0.99184, 52.19827], [-0.99024, 52.1977], [-0.98937, 52.1974], [-0.98856, 52.19714], [-0.98737, 52.19679], [-0.98634, 52.19654], [-0.98482, 52.1962], [-0.98383, 52.196], [-0.98255, 52.19579], [-0.98112, 52.19558], [-0.97942, 52.19535], [-0.97863, 52.19522], [-0.97745, 52.19504], [-0.97619, 52.19481], [-0.97488, 52.19456], [-0.97334, 52.19425], [-0.97204, 52.19397], [-0.97061, 52.19364], [-0.96896, 52.19322], [-0.96718, 52.19274], [-0.96592, 52.19237], [-0.96461, 52.19197], [-0.96276, 52.19137], [-0.96122, 52.19084], [-0.95979, 52.19031]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4000727", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.10151, 52.56897], [-1.10375, 52.56963], [-1.10593, 52.57034], [-1.10704, 52.57075], [-1.10811, 52.57116], [-1.10963, 52.57179], [-1.11099, 52.57242], [-1.11217, 52.573], [-1.11329, 52.57359], [-1.1144, 52.57421], [-1.11543, 52.57483], [-1.11652, 52.57552], [-1.11748, 52.57623], [-1.11826, 52.57688], [-1.11857, 52.57714], [-1.11917, 52.57772], [-1.12057, 52.57911], [-1.12134, 52.57986], [-1.12209, 52.58058], [-1.12509, 52.58346], [-1.12542, 52.58382], [-1.12578, 52.58431], [-1.1261, 52.5848], [-1.1263, 52.58532], [-1.12642, 52.58577], [-1.1265, 52.58609], [-1.12652, 52.58657], [-1.12651, 52.58696], [-1.12647, 52.58743], [-1.12642, 52.58784]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001001", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.41136, 51.67557], [-0.41017, 51.67466], [-0.40897, 51.67374], [-0.40819, 51.67313], [-0.40753, 51.67263], [-0.40676, 51.67203], [-0.40636, 51.67173], [-0.40575, 51.67125], [-0.40529, 51.6709], [-0.40447, 51.67027], [-0.40346, 51.66952], [-0.40286, 51.66908], [-0.4021, 51.6685], [-0.40145, 51.66798], [-0.40072, 51.66742], [-0.39983, 51.66673], [-0.39905, 51.66612], [-0.39796, 51.66527], [-0.3975, 51.66492], [-0.39741, 51.66485], [-0.39679, 51.66437], [-0.39607, 51.66382], [-0.39574, 51.66355], [-0.39535, 51.66325], [-0.39492, 51.66291], [-0.39462, 51.66268], [-0.39424, 51.66239], [-0.39407, 51.66226], [-0.39393, 51.66215], [-0.39352, 51.66183]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001002", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.42648, 51.68722], [-0.4238, 51.68519], [-0.41994, 51.68219], [-0.41817, 51.68085], [-0.41633, 51.67946], [-0.41488, 51.67832], [-0.41136, 51.67557]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001003", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.42623, 51.688], [-0.42259, 51.68528], [-0.41893, 51.68252], [-0.41734, 51.68129], [-0.41378, 51.6786], [-0.40955, 51.67534]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001004", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.43322, 51.69369], [-0.43301, 51.69339], [-0.43272, 51.69302], [-0.43247, 51.6927], [-0.43218, 51.69234], [-0.43185, 51.69196], [-0.43146, 51.69152], [-0.43115, 51.6912], [-0.43073, 51.69077], [-0.43049, 51.69052], [-0.43018, 51.69023], [-0.42991, 51.68998], [-0.42962, 51.68972], [-0.4293, 51.68945], [-0.42885, 51.68907], [-0.42846, 51.68876], [-0.42807, 51.68845], [-0.42727, 51.68784], [-0.42648, 51.68722]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001015", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.73699, 51.99732], [-0.73684, 51.99683], [-0.73613, 51.9946], [-0.73596, 51.99403]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001030", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.79611, 52.05043], [-0.79584, 52.05019]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001031", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.93592, 52.18074], [-0.9348, 52.18044], [-0.93309, 52.18003], [-0.93142, 52.17968], [-0.92983, 52.17939], [-0.92892, 52.17923], [-0.92766, 52.17898], [-0.92689, 52.17881], [-0.92614, 52.17864], [-0.9244, 52.17819], [-0.92316, 52.17783], [-0.92246, 52.17761], [-0.92129, 52.17722], [-0.91976, 52.17665], [-0.91905, 52.17637], [-0.91776, 52.17582], [-0.91634, 52.17515], [-0.91503, 52.17448], [-0.91374, 52.17373], [-0.91243, 52.1729], [-0.91128, 52.1721], [-0.91061, 52.1716], [-0.9099, 52.17103], [-0.90933, 52.17055], [-0.90871, 52.16999]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4001155", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.90408, 52.22866], [-0.90447, 52.22867], [-0.90463, 52.22868], [-0.90506, 52.22873], [-0.90535, 52.22879], [-0.90563, 52.22888], [-0.90589, 52.22896], [-0.90618, 52.22908], [-0.9064, 52.2292], [-0.90661, 52.22935], [-0.90684, 52.22954]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001185", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.91112, 52.23151], [-0.91077, 52.23183]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001186", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.91335, 52.26074], [-0.91355, 52.26117]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001392", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.02085, 52.28969], [-1.0243, 52.28953], [-1.02595, 52.28946], [-1.02758, 52.28938], [-1.02957, 52.2893], [-1.03143, 52.28928], [-1.0336, 52.28932], [-1.03602, 52.28943], [-1.03859, 52.28964], [-1.04287, 52.29001], [-1.04486, 52.29018], [-1.04749, 52.29041], [-1.05112, 52.29073], [-1.05729, 52.29124], [-1.06429, 52.29186], [-1.06749, 52.29214], [-1.06914, 52.29228], [-1.07028, 52.29238], [-1.07099, 52.29244], [-1.07554, 52.29282], [-1.07805, 52.29302], [-1.07963, 52.29316], [-1.08064, 52.29326], [-1.08145, 52.29334], [-1.08227, 52.29345], [-1.08289, 52.29355], [-1.08351, 52.29368], [-1.08451, 52.2939], [-1.08525, 52.29411], [-1.08558, 52.29422]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4001393", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.10946, 52.32151], [-1.11103, 52.32225], [-1.11184, 52.32258], [-1.11266, 52.32289], [-1.11381, 52.32329], [-1.11495, 52.32364], [-1.1172, 52.32434], [-1.11936, 52.32501], [-1.12204, 52.32582], [-1.12477, 52.32665], [-1.12905, 52.32798]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4003472", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.90366, 54.37973], [-2.90353, 54.37963], [-2.90334, 54.37948], [-2.90312, 54.37931], [-2.90294, 54.37917], [-2.90265, 54.37894], [-2.9024, 54.37877], [-2.90207, 54.37855], [-2.9016, 54.37824], [-2.90111, 54.37796]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4004364", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.59504, 54.73333], [-1.59645, 54.73382], [-1.59691, 54.734], [-1.59788, 54.73441], [-1.59893, 54.73494], [-1.5992, 54.73509]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4004609", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.16709, 51.23816], [-0.16727, 51.23805], [-0.16744, 51.23795], [-0.16771, 51.23781], [-0.16806, 51.23767], [-0.16834, 51.2376], [-0.1686, 51.23755], [-0.16901, 51.23748]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005676", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.26375, 52.55249], [1.26396, 52.55273], [1.26435, 52.55318], [1.26473, 52.55363], [1.26546, 52.55453], [1.26621, 52.55554], [1.26693, 52.55657], [1.26815, 52.55854], [1.27056, 52.56259], [1.27064, 52.56273], [1.27071, 52.56286], [1.27242, 52.56572], [1.27277, 52.5663], [1.2731, 52.56688], [1.2738, 52.56802], [1.27517, 52.57033], [1.27626, 52.57216]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005710", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.19802, 52.49487], [1.19873, 52.49615], [1.19911, 52.4968], [1.19947, 52.49748], [1.2002, 52.49882], [1.20172, 52.50157], [1.20233, 52.50267], [1.20292, 52.50376], [1.20413, 52.50594], [1.20446, 52.50655], [1.2048, 52.50716], [1.20547, 52.50837], [1.20613, 52.50959], [1.20651, 52.51022], [1.20686, 52.51079], [1.20739, 52.5116], [1.208, 52.51238], [1.20832, 52.51277], [1.20867, 52.51317], [1.20933, 52.51389], [1.2101, 52.51463], [1.21092, 52.51537], [1.21175, 52.51605], [1.21217, 52.51636], [1.21257, 52.51667], [1.21322, 52.51714], [1.21396, 52.51762]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005711", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.12093, 52.37066], [1.12153, 52.37135], [1.12352, 52.37363], [1.12781, 52.37853]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4005749", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01074, 51.48182], [-0.01075, 51.48204], [-0.01076, 51.48308], [-0.01072, 51.48349], [-0.01063, 51.48385], [-0.01022, 51.4849], [-0.00995, 51.48561], [-0.0097, 51.48626], [-0.00956, 51.48691], [-0.00953, 51.48712], [-0.00958, 51.48732], [-0.00965, 51.48744], [-0.00985, 51.4876], [-0.01031, 51.4879]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4005750", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01371, 51.47815], [-0.01334, 51.47821], [-0.013, 51.47829], [-0.01254, 51.47841], [-0.01171, 51.47884], [-0.0116, 51.47892], [-0.0112, 51.47921], [-0.01079, 51.47967], [-0.01056, 51.48036], [-0.01057, 51.48083], [-0.01074, 51.48175], [-0.01074, 51.48182]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4005751", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01607, 51.47802], [-0.01593, 51.47803], [-0.01527, 51.47805], [-0.01486, 51.47806], [-0.01435, 51.47807], [-0.01414, 51.47807], [-0.01398, 51.47809], [-0.01371, 51.47815]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005777", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.02294, 52.17315], [1.02163, 52.17408], [1.02078, 52.17474], [1.01987, 52.17546], [1.01822, 52.17687], [1.01779, 52.17723], [1.01737, 52.17758], [1.01649, 52.17826], [1.01573, 52.17882], [1.01492, 52.17939], [1.01356, 52.18028], [1.01178, 52.18134], [1.01096, 52.18178], [1.00984, 52.18239], [1.00846, 52.18319], [1.00769, 52.18366], [1.00641, 52.1845], [1.00599, 52.18478], [1.00492, 52.18556], [1.00388, 52.18635], [1.00278, 52.1873], [1.00166, 52.18831], [1.00092, 52.18905], [1.00021, 52.18981]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005778", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.09198, 52.12072], [1.09184, 52.12086], [1.08462, 52.12843], [1.08218, 52.13099], [1.0767, 52.13674], [1.07396, 52.13962], [1.07258, 52.14105], [1.07189, 52.14177], [1.07122, 52.14248], [1.06999, 52.14376], [1.06937, 52.14435], [1.06845, 52.14507], [1.06797, 52.14543], [1.06744, 52.14577], [1.06698, 52.14608], [1.0665, 52.14637], [1.06545, 52.14694], [1.06433, 52.14749], [1.06317, 52.14802], [1.06202, 52.14855], [1.06092, 52.14911], [1.06001, 52.1496], [1.05915, 52.15012], [1.05895, 52.15023]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005779", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.15143, 52.04216], [1.15155, 52.04251], [1.15164, 52.04287], [1.15168, 52.04324], [1.15171, 52.04363], [1.15171, 52.04403], [1.1517, 52.04422], [1.15168, 52.04442], [1.15165, 52.04467], [1.15159, 52.04492], [1.15152, 52.04515], [1.15146, 52.04537]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005780", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.11586, 52.0215], [1.1162, 52.02163], [1.11654, 52.02176], [1.11721, 52.022], [1.11784, 52.02222], [1.11852, 52.02244], [1.1192, 52.02267], [1.1199, 52.02289], [1.12175, 52.02345], [1.12393, 52.02406], [1.12586, 52.02464]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005793", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.02147, 51.94591], [1.02006, 51.94507], [1.01532, 51.94213], [1.01437, 51.94156], [1.01261, 51.94049], [1.01151, 51.93981], [1.01011, 51.93892], [1.0091, 51.9383], [1.00864, 51.938], [1.00801, 51.93762], [1.00528, 51.93596], [1.00322, 51.93466], [1.00168, 51.9335], [1.00105, 51.93298], [1.00058, 51.93257], [0.99978, 51.93183], [0.99892, 51.93094], [0.99808, 51.93], [0.99724, 51.92911], [0.99666, 51.92854], [0.99538, 51.92741], [0.99399, 51.92632], [0.9928, 51.92551], [0.99105, 51.92444], [0.98956, 51.92364], [0.98839, 51.92307], [0.9856, 51.92182], [0.98526, 51.92166], [0.98513, 51.92161], [0.98271, 51.92053], [0.98096, 51.91976], [0.97921, 51.91903], [0.97801, 51.91855], [0.97657, 51.918], [0.97416, 51.91712], [0.9694, 51.91547], [0.96097, 51.91255], [0.96008, 51.91224], [0.95897, 51.91183], [0.95803, 51.91146], [0.95697, 51.91104]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005794", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.92842, 51.88524], [0.92813, 51.88544], [0.92781, 51.88564], [0.92753, 51.88581], [0.92722, 51.88599], [0.92692, 51.88614], [0.9267, 51.88625], [0.92647, 51.88635], [0.92606, 51.8865], [0.92572, 51.88662], [0.92485, 51.8869], [0.92386, 51.88725]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005797", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.88842, 51.90117], [0.89012, 51.9009], [0.89131, 51.90072], [0.89138, 51.90071], [0.89231, 51.90058]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005798", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.78668, 51.88192], [0.78507, 51.88151], [0.784, 51.88122], [0.7826, 51.88081], [0.78241, 51.88075], [0.78078, 51.88024], [0.7797, 51.87987], [0.77801, 51.87925], [0.77741, 51.87901], [0.77681, 51.87877], [0.77619, 51.87852], [0.77468, 51.87791], [0.77326, 51.87725], [0.77168, 51.87652], [0.76937, 51.87533], [0.76843, 51.8748], [0.7675, 51.87422], [0.76455, 51.87235], [0.76169, 51.87048], [0.7582, 51.86839], [0.75695, 51.8677], [0.75568, 51.86701], [0.75367, 51.86592], [0.75167, 51.86486], [0.74964, 51.86375], [0.74824, 51.86301], [0.74686, 51.86231], [0.74472, 51.86129], [0.74225, 51.86011], [0.74126, 51.85967], [0.73991, 51.85905], [0.73755, 51.85799], [0.73634, 51.85747], [0.73517, 51.85697], [0.72736, 51.85349], [0.72585, 51.85282], [0.72551, 51.85266], [0.72517, 51.85252], [0.72453, 51.85224], [0.72385, 51.85193], [0.72268, 51.85141], [0.72132, 51.85081]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005799", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.48852, 51.74211], [0.49138, 51.74299]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4005864", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.23634, 53.30417], [-3.23028, 53.30174], [-3.22365, 53.2991], [-3.21715, 53.29651], [-3.21525, 53.29575], [-3.21237, 53.29461], [-3.21168, 53.29434], [-3.21139, 53.29423], [-3.21073, 53.29397], [-3.20951, 53.29348], [-3.20824, 53.29293], [-3.20737, 53.29253], [-3.20642, 53.29207], [-3.20524, 53.29147], [-3.20457, 53.2911], [-3.20432, 53.29097], [-3.20394, 53.29076], [-3.2034, 53.29045], [-3.20288, 53.29013], [-3.20242, 53.28985], [-3.20193, 53.28954], [-3.20147, 53.28924], [-3.20103, 53.28894], [-3.20009, 53.28834]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4005865", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.27665, 53.32115], [-3.27505, 53.32061], [-3.27373, 53.32017], [-3.27165, 53.31955], [-3.27078, 53.31927], [-3.27022, 53.31908], [-3.26967, 53.31887]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4005866", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.38811, 53.34155], [-3.38255, 53.34286], [-3.38067, 53.34326]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4005867", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.5049, 53.3098], [-3.50368, 53.3102], [-3.50233, 53.31069], [-3.50108, 53.31119], [-3.49949, 53.31186], [-3.49795, 53.31261], [-3.4963, 53.31351], [-3.49483, 53.31443], [-3.4937, 53.31521], [-3.49261, 53.316], [-3.49145, 53.31678], [-3.49027, 53.31749], [-3.48888, 53.31825], [-3.48786, 53.31881], [-3.4875, 53.31899], [-3.48674, 53.31937], [-3.48544, 53.31997], [-3.48498, 53.32017], [-3.48469, 53.32028], [-3.48389, 53.32062], [-3.48316, 53.32088]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4005876", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.07191, 51.55958], [0.07065, 51.55932]]}}, {"type": "Feature", "properties": {"osm_id": "4005973", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.0028, 51.92586], [-1.00366, 51.92564], [-1.00411, 51.9255], [-1.00444, 51.92535], [-1.00473, 51.92521], [-1.005, 51.92505], [-1.00534, 51.92481], [-1.00573, 51.92444], [-1.00606, 51.92397], [-1.00623, 51.92343], [-1.00623, 51.92292], [-1.00611, 51.92249], [-1.00589, 51.92208], [-1.00526, 51.92137], [-1.00491, 51.92098], [-1.0014, 51.91778], [-1.00004, 51.91654], [-0.99897, 51.91543], [-0.99677, 51.9134], [-0.9946, 51.91146], [-0.99447, 51.91134], [-0.99269, 51.90971], [-0.98923, 51.90654], [-0.98822, 51.90558], [-0.98815, 51.90551], [-0.98761, 51.90505], [-0.98588, 51.90365], [-0.98463, 51.90263], [-0.98218, 51.90084], [-0.97713, 51.89717], [-0.97227, 51.89358]]}}, {"type": "Feature", "properties": {"osm_id": "4006072", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.97227, 51.89358], [-0.96862, 51.89093], [-0.96779, 51.89029], [-0.96427, 51.88771], [-0.96129, 51.8855], [-0.96061, 51.88499]]}}, {"type": "Feature", "properties": {"osm_id": "4006073", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.87505, 51.84438], [-0.87356, 51.84331], [-0.87209, 51.84205], [-0.86972, 51.83969], [-0.86705, 51.83704], [-0.86594, 51.83588], [-0.86519, 51.83517], [-0.86422, 51.83425], [-0.86282, 51.8331]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006074", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.81284, 51.81298], [-0.81242, 51.81283], [-0.81224, 51.81276], [-0.81146, 51.81241], [-0.81114, 51.81224], [-0.81082, 51.81206], [-0.8106, 51.81193], [-0.81026, 51.81171], [-0.80994, 51.81147], [-0.80959, 51.81121], [-0.80925, 51.81094], [-0.80733, 51.80933], [-0.80515, 51.80727], [-0.80248, 51.80458], [-0.80064, 51.80273], [-0.79973, 51.80183]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006075", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.82248, 51.81527], [-0.82142, 51.81511], [-0.82004, 51.81492], [-0.81975, 51.81488], [-0.81951, 51.81485], [-0.81892, 51.81476], [-0.81852, 51.81468], [-0.81795, 51.81455], [-0.81743, 51.8144], [-0.81709, 51.81431], [-0.81657, 51.81417], [-0.81627, 51.8141]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006076", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.80889, 51.75523], [-0.80887, 51.75499], [-0.80881, 51.75472], [-0.8087, 51.75422], [-0.80861, 51.75382], [-0.80855, 51.75341], [-0.80852, 51.75299], [-0.80851, 51.75274], [-0.80856, 51.75233], [-0.8086, 51.75191], [-0.80863, 51.75182], [-0.80874, 51.75136], [-0.80882, 51.75113], [-0.80906, 51.75062], [-0.80933, 51.75016], [-0.80953, 51.74982], [-0.80993, 51.74923], [-0.81048, 51.74858], [-0.81099, 51.74804], [-0.81152, 51.74756], [-0.81198, 51.74714], [-0.81261, 51.74665], [-0.81328, 51.74619], [-0.814, 51.74572], [-0.8146, 51.74536], [-0.81567, 51.7448], [-0.81702, 51.74414], [-0.81797, 51.74368], [-0.81887, 51.74326], [-0.81974, 51.74285], [-0.82068, 51.74238], [-0.82124, 51.74212]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006737", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.82124, 51.74212], [-0.82221, 51.74165], [-0.82335, 51.74108], [-0.82431, 51.74051], [-0.82483, 51.74019], [-0.82536, 51.73982], [-0.82601, 51.73932], [-0.82656, 51.73886], [-0.8271, 51.73835], [-0.82718, 51.73827], [-0.8277, 51.73771], [-0.82821, 51.73712], [-0.82871, 51.73655], [-0.82897, 51.73625], [-0.82921, 51.73596], [-0.82963, 51.73548], [-0.83021, 51.73481]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006904", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.91951, 51.75951], [-0.92512, 51.76187], [-0.92766, 51.76295], [-0.93013, 51.76405], [-0.93143, 51.7647], [-0.93253, 51.76527], [-0.93419, 51.7662], [-0.93583, 51.7672], [-0.93668, 51.7677], [-0.93945, 51.76942], [-0.94217, 51.77109], [-0.95128, 51.77658], [-0.9532, 51.77773]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006963", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.80433, 51.65737], [-0.80332, 51.65653], [-0.80281, 51.65611], [-0.80228, 51.6557], [-0.80036, 51.65425]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4006964", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.75086, 51.63139], [-0.75036, 51.63114], [-0.74984, 51.63092]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4006970", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.62485, 51.39019], [-0.62633, 51.39045], [-0.62781, 51.39072], [-0.62904, 51.39096], [-0.63013, 51.39121], [-0.63114, 51.39147], [-0.6317, 51.39162], [-0.63207, 51.39174], [-0.63224, 51.39179], [-0.63245, 51.39186], [-0.63289, 51.392], [-0.63324, 51.39213], [-0.6345, 51.3926], [-0.63659, 51.39341], [-0.63996, 51.39472]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4006972", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.56416, 51.39747], [-0.564, 51.39773]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4007005", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.563, 51.39962], [-0.56285, 51.39995], [-0.5628, 51.40007]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4007187", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.68089, 51.60723], [-0.67999, 51.60729], [-0.67911, 51.60736], [-0.67858, 51.60741], [-0.67807, 51.60746], [-0.67753, 51.60753], [-0.67706, 51.6076], [-0.67624, 51.60773], [-0.67534, 51.6079], [-0.67459, 51.60806], [-0.67379, 51.60824], [-0.67312, 51.60839], [-0.67251, 51.60854], [-0.67127, 51.60883], [-0.67036, 51.60905], [-0.66939, 51.60929], [-0.66749, 51.60974], [-0.66546, 51.61022], [-0.66471, 51.61036], [-0.66391, 51.61051], [-0.66379, 51.61052]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4007207", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.57666, 51.59719], [-0.57393, 51.59634], [-0.57128, 51.59546], [-0.56747, 51.59406], [-0.5635, 51.59249], [-0.56115, 51.59152], [-0.55889, 51.59052], [-0.55521, 51.58893], [-0.5536, 51.58825]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4007242", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.19173, 50.85258], [-1.1916, 50.85245], [-1.19145, 50.85233], [-1.19126, 50.85219], [-1.19103, 50.85208], [-1.19082, 50.85198], [-1.19058, 50.8519], [-1.19032, 50.85183], [-1.19006, 50.85177], [-1.18973, 50.85172]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4007543", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.4377, 51.56965], [-0.43758, 51.56961], [-0.43702, 51.56942], [-0.43593, 51.56906], [-0.43552, 51.56892], [-0.43479, 51.56868], [-0.43294, 51.56809], [-0.43191, 51.56777]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4007551", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.21225, 51.45753], [-0.21213, 51.45766], [-0.212, 51.45776]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4007995", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.34547, 51.54228], [-0.34535, 51.54225], [-0.34514, 51.5422], [-0.344, 51.5419], [-0.34353, 51.54178]]}}, {"type": "Feature", "properties": {"osm_id": "4007996", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.33376, 51.53944], [-0.33407, 51.53944], [-0.33428, 51.53947], [-0.33458, 51.5395], [-0.33483, 51.5395], [-0.33521, 51.53949], [-0.33563, 51.53945], [-0.33598, 51.53939], [-0.33635, 51.53929], [-0.33667, 51.53918], [-0.33693, 51.53907], [-0.33716, 51.53895], [-0.33733, 51.53884], [-0.33756, 51.53868], [-0.33775, 51.53851], [-0.33787, 51.53838], [-0.33797, 51.53825], [-0.3381, 51.53803], [-0.3382, 51.53781], [-0.33824, 51.5376], [-0.33826, 51.53734], [-0.33823, 51.53708], [-0.33816, 51.53685]]}}, {"type": "Feature", "properties": {"osm_id": "4007997", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.34229, 51.54165], [-0.34167, 51.54138], [-0.34118, 51.54118], [-0.341, 51.54107], [-0.34082, 51.54096], [-0.34059, 51.54079], [-0.34027, 51.54052]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4008012", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.32995, 51.51568], [-0.32987, 51.51545], [-0.32978, 51.51521], [-0.32975, 51.51507], [-0.32973, 51.51484], [-0.32974, 51.51464], [-0.32976, 51.51453], [-0.32979, 51.51442], [-0.32983, 51.5143], [-0.32996, 51.51404], [-0.33006, 51.51389], [-0.33018, 51.51374], [-0.33032, 51.51361], [-0.33044, 51.51349], [-0.33062, 51.51336], [-0.33076, 51.51326], [-0.33094, 51.51315], [-0.33113, 51.51305], [-0.33131, 51.51297], [-0.33152, 51.51289], [-0.33183, 51.5128], [-0.33209, 51.51275], [-0.33238, 51.5127], [-0.33282, 51.51265], [-0.33375, 51.51254], [-0.33409, 51.51249], [-0.33435, 51.51243], [-0.33457, 51.51238], [-0.33483, 51.5123], [-0.33506, 51.51225], [-0.33544, 51.51217]]}}, {"type": "Feature", "properties": {"osm_id": "4008013", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.33968, 51.54097], [-0.33626, 51.54008], [-0.33376, 51.53944], [-0.33308, 51.53927], [-0.32432, 51.53703]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4008032", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.31505, 51.55425], [-0.31587, 51.55427], [-0.31646, 51.5543], [-0.31728, 51.55436], [-0.31836, 51.55447], [-0.31922, 51.55459], [-0.31994, 51.5547], [-0.32066, 51.55484], [-0.3213, 51.55497], [-0.32205, 51.55514], [-0.3231, 51.55538], [-0.32395, 51.55557], [-0.32519, 51.55587], [-0.32697, 51.55628], [-0.32824, 51.55657], [-0.32941, 51.55686], [-0.3316, 51.55739], [-0.33267, 51.55764], [-0.3346, 51.55816], [-0.33619, 51.55853], [-0.33723, 51.55876], [-0.33755, 51.55882], [-0.33823, 51.55894], [-0.33929, 51.55911], [-0.33979, 51.55917], [-0.34057, 51.55926], [-0.34128, 51.55932], [-0.34211, 51.55937], [-0.34337, 51.5594], [-0.34455, 51.55942]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4008251", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7697, 51.77584], [-0.76834, 51.77472], [-0.76698, 51.77359], [-0.76566, 51.77251], [-0.76503, 51.77198], [-0.76436, 51.77143]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4008298", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.67252, 51.68635], [-0.67142, 51.68614], [-0.67036, 51.68592], [-0.6685, 51.68552], [-0.66752, 51.68534], [-0.66658, 51.6852], [-0.66524, 51.68503]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4008303", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.61094, 51.70539], [-0.611, 51.70521], [-0.61106, 51.70506], [-0.61115, 51.70482], [-0.61119, 51.70466], [-0.6112, 51.70455], [-0.61121, 51.70442], [-0.61122, 51.70431], [-0.61122, 51.70421], [-0.61121, 51.70395], [-0.6112, 51.70382], [-0.61118, 51.70367], [-0.61114, 51.70354], [-0.61108, 51.70332], [-0.61104, 51.70322], [-0.61098, 51.70308], [-0.61089, 51.70295], [-0.61063, 51.70266], [-0.6105, 51.70254], [-0.6103, 51.70241], [-0.60977, 51.70208], [-0.60939, 51.70179], [-0.60915, 51.70159], [-0.60896, 51.70136], [-0.60882, 51.70113], [-0.60873, 51.70091]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4008593", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.18063, 51.54676], [-0.1802, 51.54657], [-0.1799, 51.54644], [-0.17964, 51.54632], [-0.17934, 51.54619], [-0.17915, 51.54608], [-0.17897, 51.54596], [-0.17879, 51.54583], [-0.1786, 51.54568], [-0.17844, 51.54553], [-0.178, 51.54514], [-0.17774, 51.54489], [-0.17751, 51.54464], [-0.17736, 51.54442], [-0.17723, 51.54424], [-0.17713, 51.54406], [-0.17708, 51.54392], [-0.17704, 51.54371], [-0.17702, 51.5435], [-0.17704, 51.54319], [-0.17708, 51.54287]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008608", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.67828, 52.63794], [-1.67726, 52.63799], [-1.67511, 52.6381], [-1.6737, 52.63817], [-1.67296, 52.63821], [-1.67061, 52.63833], [-1.6692, 52.63841], [-1.66828, 52.63846], [-1.66772, 52.63848], [-1.66644, 52.63855], [-1.66387, 52.63869], [-1.66174, 52.6388], [-1.65863, 52.63896], [-1.65762, 52.63901], [-1.65608, 52.63909], [-1.65449, 52.63918], [-1.65283, 52.63926], [-1.65071, 52.63935], [-1.64898, 52.63937], [-1.64738, 52.63935], [-1.646, 52.63931], [-1.6444, 52.63922], [-1.64225, 52.63904], [-1.64051, 52.63884], [-1.63878, 52.63858], [-1.63745, 52.63837], [-1.63545, 52.638]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008618", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.85451, 52.73079], [-1.85425, 52.73061], [-1.84463, 52.72339], [-1.84352, 52.72256]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008626", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.94772, 52.78163], [-1.94619, 52.78064], [-1.93709, 52.77462], [-1.93416, 52.77269], [-1.93322, 52.77208], [-1.9314, 52.77091], [-1.93085, 52.77053], [-1.93053, 52.7703], [-1.92981, 52.76972]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008627", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.06337, 52.7938], [-2.06565, 52.7946], [-2.06688, 52.79499], [-2.06804, 52.79532], [-2.06915, 52.79567], [-2.06968, 52.79586], [-2.07023, 52.79609], [-2.07115, 52.79649], [-2.07193, 52.79689], [-2.07321, 52.7976], [-2.07385, 52.79797], [-2.07453, 52.79833], [-2.07535, 52.7987], [-2.0763, 52.79907], [-2.07706, 52.79932], [-2.07783, 52.79955], [-2.07896, 52.7998], [-2.07988, 52.79996], [-2.0807, 52.80009], [-2.08151, 52.80016], [-2.08253, 52.80026], [-2.08356, 52.80029], [-2.08477, 52.80029], [-2.08597, 52.80025]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008652", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.95437, 52.74875], [-1.95414, 52.74886], [-1.95313, 52.74929]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008669", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0047, 52.81725], [-2.00486, 52.81764], [-2.00535, 52.81907], [-2.00593, 52.82075], [-2.00634, 52.82187], [-2.00683, 52.82298], [-2.00738, 52.82406], [-2.00773, 52.82463], [-2.00807, 52.82514], [-2.00871, 52.82599], [-2.00939, 52.8268], [-2.01009, 52.82748], [-2.01077, 52.82818], [-2.01168, 52.82905], [-2.01204, 52.82939], [-2.01244, 52.82971], [-2.01268, 52.8299], [-2.01292, 52.83009], [-2.01408, 52.83098], [-2.01536, 52.83191], [-2.0166, 52.83279], [-2.01781, 52.83358], [-2.01966, 52.83472], [-2.0216, 52.83584], [-2.02334, 52.83685], [-2.02502, 52.83786], [-2.02661, 52.83874], [-2.02832, 52.8396], [-2.02984, 52.84031], [-2.03136, 52.84095], [-2.03432, 52.84208], [-2.03614, 52.84277], [-2.03998, 52.84426]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008696", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15853, 52.90166], [-2.15927, 52.90113], [-2.16028, 52.90051], [-2.16091, 52.9002], [-2.16156, 52.8999], [-2.16224, 52.8996], [-2.16295, 52.89934], [-2.1645, 52.89883], [-2.16614, 52.89831], [-2.16781, 52.89778], [-2.16955, 52.89722], [-2.17149, 52.8966], [-2.17245, 52.89629], [-2.17342, 52.89599], [-2.17731, 52.89475], [-2.17939, 52.89407], [-2.18149, 52.8934], [-2.18228, 52.89311], [-2.18304, 52.89281], [-2.18381, 52.89248], [-2.18454, 52.89213], [-2.18527, 52.89176], [-2.18562, 52.89157], [-2.18596, 52.89138], [-2.18643, 52.8911], [-2.18688, 52.89081], [-2.18733, 52.8905], [-2.18775, 52.89022], [-2.1885, 52.88966], [-2.18919, 52.88907], [-2.18997, 52.88831], [-2.19017, 52.88812], [-2.19086, 52.88731], [-2.19151, 52.88646], [-2.19182, 52.88596], [-2.19211, 52.88545], [-2.19258, 52.88442], [-2.19357, 52.88194], [-2.19408, 52.88077]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008841", "railway": "abandoned", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.19279, 52.86811], [-2.19316, 52.86833], [-2.19355, 52.86852]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008842", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.34152, 52.99439], [-2.34019, 52.99308], [-2.33888, 52.99177], [-2.33687, 52.98975], [-2.33627, 52.98915], [-2.33365, 52.98653], [-2.33233, 52.98521], [-2.33167, 52.98456], [-2.33135, 52.98423], [-2.33109, 52.98398], [-2.32777, 52.98063], [-2.32609, 52.97895], [-2.32443, 52.97728], [-2.31889, 52.97174], [-2.31611, 52.96895], [-2.31335, 52.96619], [-2.31198, 52.96481], [-2.31052, 52.96346], [-2.30953, 52.9627], [-2.30844, 52.96203], [-2.30788, 52.96171], [-2.30736, 52.96144], [-2.30678, 52.96116], [-2.30619, 52.9609], [-2.30558, 52.96062], [-2.30498, 52.96035], [-2.30438, 52.9601], [-2.30377, 52.95984], [-2.30333, 52.95967], [-2.30289, 52.9595], [-2.30243, 52.95934], [-2.30196, 52.95919], [-2.30148, 52.95905], [-2.30101, 52.95892], [-2.29997, 52.95866], [-2.29874, 52.9584], [-2.29748, 52.95819], [-2.29616, 52.958], [-2.29483, 52.95786], [-2.29359, 52.95773], [-2.29247, 52.95757], [-2.29129, 52.95738], [-2.29012, 52.95715], [-2.28889, 52.95689], [-2.28768, 52.95658], [-2.28655, 52.95624], [-2.28545, 52.95587], [-2.28452, 52.95552], [-2.28362, 52.95514], [-2.28275, 52.95474], [-2.28194, 52.95432], [-2.28125, 52.95393], [-2.28058, 52.95354], [-2.27995, 52.95312], [-2.27936, 52.95268], [-2.27863, 52.95207], [-2.27795, 52.95146], [-2.27762, 52.95115], [-2.27731, 52.95083], [-2.27701, 52.9505], [-2.27687, 52.95034], [-2.27674, 52.95017], [-2.27638, 52.94971], [-2.27607, 52.94924], [-2.27575, 52.94875], [-2.27547, 52.94827], [-2.2727, 52.94354], [-2.27131, 52.94119], [-2.26989, 52.93878], [-2.26708, 52.93404], [-2.26425, 52.92918], [-2.26371, 52.92821], [-2.26321, 52.92724], [-2.26275, 52.92626], [-2.26234, 52.9253], [-2.2619, 52.92412], [-2.26149, 52.92296], [-2.26112, 52.92178], [-2.26079, 52.9206], [-2.26047, 52.91941], [-2.26016, 52.91824], [-2.25953, 52.91588], [-2.25863, 52.91253], [-2.25773, 52.90918], [-2.25704, 52.90672], [-2.2567, 52.90548], [-2.25626, 52.90425], [-2.25585, 52.90336], [-2.25539, 52.90246], [-2.25487, 52.90158], [-2.2543, 52.90073], [-2.25367, 52.89988], [-2.25299, 52.89905], [-2.25226, 52.89823], [-2.25148, 52.89743], [-2.25111, 52.89708], [-2.25078, 52.89677], [-2.25072, 52.89671], [-2.25033, 52.89636], [-2.24992, 52.89601], [-2.24951, 52.89567], [-2.24909, 52.89534], [-2.24867, 52.895], [-2.24824, 52.89468], [-2.24724, 52.89397], [-2.24622, 52.89329], [-2.24524, 52.89268], [-2.24468, 52.89236], [-2.24406, 52.892]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4008850", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.43994, 53.10187], [-2.44027, 53.10244]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4009129", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.74943, 52.71174], [-2.74981, 52.71202], [-2.74992, 52.71211], [-2.75, 52.71218], [-2.75009, 52.71227]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010055", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.05569, 52.92266], [-4.05577, 52.92245], [-4.0558, 52.92238], [-4.0559, 52.92219], [-4.0561, 52.92184], [-4.0564, 52.92127], [-4.05656, 52.92102], [-4.05669, 52.92078], [-4.05681, 52.92057], [-4.05694, 52.92029], [-4.05707, 52.91997], [-4.05724, 52.91947], [-4.05865, 52.91542], [-4.05868, 52.91534], [-4.05876, 52.9151]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010111", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.43937, 53.09414], [-2.43854, 53.09397]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010113", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.54054, 53.05292], [-2.53858, 53.05407], [-2.53315, 53.0574], [-2.53212, 53.05801], [-2.53139, 53.05846], [-2.53064, 53.0589], [-2.52938, 53.05962], [-2.52913, 53.0598], [-2.52833, 53.06028]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4010114", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.43234, 53.08893], [-2.43213, 53.08855]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4010130", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.24161, 53.08262], [-2.24144, 53.08227], [-2.24128, 53.08179], [-2.24123, 53.08151]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4010202", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.17652, 53.00221], [-2.17633, 53.00163]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010213", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.99363, 52.55308], [-3.99228, 52.55308], [-3.99176, 52.55309], [-3.99002, 52.55333]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010214", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.10308, 52.65632], [-4.1045, 52.65539], [-4.10549, 52.65435], [-4.10821, 52.6498], [-4.11006, 52.64711], [-4.1133, 52.64417], [-4.11433, 52.64216], [-4.11551, 52.63856], [-4.11682, 52.63452], [-4.11717, 52.63352], [-4.11745, 52.633], [-4.11782, 52.63249], [-4.12018, 52.62996], [-4.1213, 52.62883], [-4.12199, 52.62768], [-4.12231, 52.62603], [-4.12281, 52.6243], [-4.12467, 52.62063], [-4.12503, 52.61898], [-4.12505, 52.61769], [-4.1249, 52.61678], [-4.12477, 52.61625], [-4.12454, 52.61563], [-4.12349, 52.61362], [-4.12108, 52.60937], [-4.11988, 52.60724], [-4.11911, 52.60589]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4010221", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.63417, 53.12809], [-2.63296, 53.12807], [-2.63176, 53.12803], [-2.63059, 53.12796], [-2.62973, 53.12789], [-2.62755, 53.12771], [-2.62458, 53.12735], [-2.62175, 53.12695], [-2.61937, 53.12656], [-2.61721, 53.12617], [-2.61487, 53.12564], [-2.61367, 53.12535], [-2.6126, 53.12508], [-2.61118, 53.12468], [-2.60936, 53.12412], [-2.60703, 53.12336], [-2.60435, 53.12235], [-2.6028, 53.12171], [-2.60165, 53.12122], [-2.60042, 53.12066], [-2.59945, 53.12021], [-2.59792, 53.11942], [-2.59674, 53.11884], [-2.59556, 53.11831], [-2.59452, 53.11789], [-2.59338, 53.11745], [-2.59202, 53.11699], [-2.59007, 53.11637], [-2.58806, 53.11585], [-2.58609, 53.11543], [-2.58419, 53.11503], [-2.58232, 53.11479], [-2.57965, 53.11455], [-2.57794, 53.11446]]}}, {"type": "Feature", "properties": {"osm_id": "4010223", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.5535, 53.24763], [-2.55436, 53.24728], [-2.5549, 53.24707], [-2.55528, 53.24694], [-2.5557, 53.24681], [-2.55607, 53.24672], [-2.55659, 53.2466], [-2.55689, 53.24655], [-2.55726, 53.24649], [-2.55771, 53.24644], [-2.5581, 53.2464], [-2.5585, 53.24637], [-2.55896, 53.24636], [-2.55939, 53.24635], [-2.55995, 53.24636], [-2.56046, 53.2464], [-2.561, 53.24645], [-2.56148, 53.24651], [-2.56203, 53.24661], [-2.56263, 53.24674], [-2.56313, 53.24686], [-2.56372, 53.24702], [-2.56402, 53.24711], [-2.5643, 53.24721], [-2.56459, 53.24732], [-2.56487, 53.24744], [-2.56531, 53.24766], [-2.56587, 53.24793], [-2.56648, 53.24821], [-2.56701, 53.24846], [-2.5685, 53.24921]]}}, {"type": "Feature", "properties": {"osm_id": "4010224", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.5705, 53.24533], [-2.5697, 53.24537], [-2.56885, 53.2454], [-2.56848, 53.24541], [-2.56805, 53.24542], [-2.5672, 53.24543], [-2.56574, 53.24544], [-2.56431, 53.24545]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4010227", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.41051, 51.44781], [-0.40993, 51.44793], [-0.40921, 51.44808], [-0.40847, 51.44824], [-0.40779, 51.44839], [-0.40711, 51.44853], [-0.4063, 51.44871], [-0.4056, 51.44886], [-0.40492, 51.449], [-0.4045, 51.44907], [-0.40392, 51.44917], [-0.40343, 51.44925], [-0.40313, 51.44929], [-0.40163, 51.44949], [-0.4009, 51.4496], [-0.39956, 51.44981], [-0.39722, 51.45017], [-0.39651, 51.45027], [-0.39581, 51.45038], [-0.39482, 51.45054], [-0.3939, 51.45068], [-0.39261, 51.45088], [-0.39128, 51.45109], [-0.39075, 51.45117], [-0.39018, 51.45126], [-0.38957, 51.45135], [-0.3891, 51.45142]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4010228", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.35778, 51.44951], [-0.35625, 51.44929], [-0.35616, 51.44927], [-0.35344, 51.4489], [-0.35191, 51.44868], [-0.35106, 51.44856], [-0.35003, 51.44841], [-0.34926, 51.44831], [-0.34842, 51.4482], [-0.34737, 51.44807], [-0.34653, 51.44798], [-0.34624, 51.44796]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4010634", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.44287, 51.3991], [-0.44297, 51.39905], [-0.44365, 51.39863], [-0.44492, 51.39794], [-0.4456, 51.39758]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4010636", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33932, 51.43917], [-0.33923, 51.44023], [-0.3391, 51.44157]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4010637", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.31408, 51.45958], [-0.31693, 51.45749], [-0.31901, 51.45597], [-0.3201, 51.45519], [-0.32214, 51.4539], [-0.32385, 51.45283], [-0.32549, 51.45187], [-0.32592, 51.45167], [-0.32643, 51.45143], [-0.32801, 51.45079], [-0.32888, 51.45042], [-0.33012, 51.44993], [-0.33073, 51.44972], [-0.3332, 51.44904], [-0.3356, 51.44851]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013202", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.11647, 52.79801], [-2.11614, 52.79765], [-2.11532, 52.7968]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013203", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.11698, 52.73792], [-2.117, 52.73781]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013233", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.12432, 52.60956], [-2.12417, 52.60912], [-2.12398, 52.60866], [-2.12391, 52.60849], [-2.12376, 52.60811]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013235", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.11938, 52.65714], [-2.1192, 52.65661], [-2.1191, 52.6563], [-2.11904, 52.65605], [-2.11892, 52.65561], [-2.11881, 52.6551], [-2.11873, 52.65463], [-2.11867, 52.65413], [-2.11855, 52.6524], [-2.11843, 52.6504], [-2.11821, 52.646]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013296", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.0795, 52.58666], [-2.07932, 52.58661], [-2.07891, 52.5865], [-2.07759, 52.58611], [-2.07558, 52.58552], [-2.07427, 52.58513], [-2.07314, 52.5848], [-2.07114, 52.58422], [-2.06925, 52.58365], [-2.06801, 52.58329], [-2.06743, 52.58313], [-2.06638, 52.58287], [-2.06539, 52.58265], [-2.06481, 52.58254], [-2.06388, 52.58238], [-2.063, 52.58225], [-2.06209, 52.58215], [-2.05978, 52.58195], [-2.05911, 52.58193], [-2.05786, 52.58192], [-2.05691, 52.58193], [-2.05478, 52.58196], [-2.05216, 52.58202], [-2.04999, 52.58207], [-2.04825, 52.5821], [-2.04718, 52.58213], [-2.04637, 52.58216], [-2.04477, 52.58219], [-2.04347, 52.58219], [-2.04276, 52.58219], [-2.04168, 52.58215], [-2.04053, 52.58209], [-2.03979, 52.58204], [-2.03857, 52.58193], [-2.03769, 52.58183], [-2.03691, 52.58174], [-2.03582, 52.58157], [-2.03458, 52.58136], [-2.03294, 52.58101], [-2.03219, 52.58083], [-2.03134, 52.58062], [-2.03059, 52.58042], [-2.02995, 52.58022], [-2.02944, 52.58007], [-2.0291, 52.57995], [-2.02808, 52.57962], [-2.02743, 52.57939], [-2.02686, 52.57918], [-2.02642, 52.579], [-2.02594, 52.57878], [-2.02511, 52.57841], [-2.02434, 52.57805], [-2.02385, 52.57781], [-2.02316, 52.57745], [-2.02267, 52.57718], [-2.02192, 52.57674], [-2.02115, 52.57627], [-2.02059, 52.57592], [-2.02009, 52.57558], [-2.01931, 52.57502], [-2.019, 52.5748], [-2.01872, 52.57458], [-2.01844, 52.57436], [-2.01812, 52.5741], [-2.01742, 52.57351], [-2.01689, 52.57308], [-2.01638, 52.57267], [-2.01578, 52.57221], [-2.01526, 52.57183], [-2.01505, 52.57169]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013302", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.99172, 52.56329], [-1.99212, 52.56346], [-1.99276, 52.56375], [-1.99331, 52.56409], [-1.99345, 52.56417], [-1.99384, 52.56446], [-1.99475, 52.56521], [-1.99486, 52.56532], [-1.99496, 52.56542], [-1.99517, 52.56565], [-1.99538, 52.56589], [-1.99571, 52.56631], [-1.99593, 52.56664], [-1.99605, 52.56683], [-1.99625, 52.56722], [-1.99637, 52.5675], [-1.99648, 52.56786], [-1.99657, 52.56824], [-1.99665, 52.56863], [-1.99667, 52.56892], [-1.99666, 52.56934], [-1.99665, 52.56956], [-1.99662, 52.56977], [-1.9965, 52.57016], [-1.99626, 52.57092]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013304", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.91701, 52.52147], [-1.91655, 52.52119], [-1.91621, 52.52099], [-1.91597, 52.52085], [-1.91571, 52.52071], [-1.91539, 52.52053], [-1.91517, 52.52041], [-1.91495, 52.52029], [-1.91474, 52.52018], [-1.91443, 52.52002], [-1.91423, 52.51992], [-1.91399, 52.5198], [-1.91372, 52.51967], [-1.91354, 52.51959], [-1.91331, 52.51948], [-1.91306, 52.51937], [-1.91263, 52.51919], [-1.91229, 52.51904], [-1.91199, 52.51892], [-1.91157, 52.51875], [-1.91114, 52.51859], [-1.91075, 52.51844], [-1.91041, 52.51832], [-1.91013, 52.51822], [-1.90966, 52.51806], [-1.90926, 52.51793], [-1.90881, 52.51778], [-1.90833, 52.51763], [-1.90785, 52.51749], [-1.90758, 52.51741], [-1.90737, 52.51736], [-1.90707, 52.51728], [-1.9067, 52.51718], [-1.9066, 52.51716], [-1.90635, 52.5171], [-1.90602, 52.51703], [-1.9057, 52.51696], [-1.90533, 52.51689], [-1.90506, 52.51684], [-1.90467, 52.51677], [-1.90426, 52.5167], [-1.90383, 52.51663]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013305", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.99172, 52.56329], [-1.99137, 52.56316], [-1.99098, 52.56301], [-1.99048, 52.56282], [-1.99016, 52.56269], [-1.9898, 52.56256], [-1.98942, 52.56239], [-1.98908, 52.56225], [-1.98886, 52.56215], [-1.98864, 52.56204]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4013306", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.95687, 52.53599], [-1.95658, 52.53589], [-1.95624, 52.53578], [-1.95566, 52.5356], [-1.95522, 52.53548], [-1.95498, 52.53542], [-1.95468, 52.53534], [-1.95444, 52.53528], [-1.95419, 52.53522], [-1.95394, 52.53517], [-1.9537, 52.53511], [-1.95348, 52.53507], [-1.95315, 52.535], [-1.95288, 52.53495], [-1.95259, 52.5349], [-1.9523, 52.53484], [-1.952, 52.5348], [-1.95171, 52.53475], [-1.95117, 52.53468], [-1.95092, 52.53464], [-1.95065, 52.53461], [-1.95025, 52.53457], [-1.9499, 52.53454], [-1.94961, 52.53451], [-1.94918, 52.53448], [-1.9489, 52.53446], [-1.9486, 52.53445], [-1.94833, 52.53444], [-1.94808, 52.53442], [-1.94783, 52.53442], [-1.94756, 52.53441], [-1.9472, 52.53441], [-1.94689, 52.53441], [-1.94655, 52.53441], [-1.94621, 52.53442], [-1.94578, 52.53443], [-1.94548, 52.53443], [-1.94511, 52.53444], [-1.94473, 52.53445], [-1.94431, 52.53446], [-1.94392, 52.53446], [-1.94364, 52.53446], [-1.94331, 52.53446], [-1.94269, 52.53444], [-1.94235, 52.53443], [-1.94196, 52.53442], [-1.94163, 52.5344], [-1.94123, 52.53437], [-1.94095, 52.53435], [-1.94063, 52.53432], [-1.94027, 52.53429], [-1.93988, 52.53425], [-1.93949, 52.53421], [-1.93905, 52.53415], [-1.9388, 52.53412], [-1.93797, 52.53399], [-1.93758, 52.53392], [-1.93727, 52.53387], [-1.93691, 52.5338], [-1.93667, 52.53375], [-1.93628, 52.53367], [-1.93596, 52.5336], [-1.93557, 52.5335], [-1.93531, 52.53344], [-1.93497, 52.53335], [-1.93466, 52.53327], [-1.93431, 52.53317], [-1.93393, 52.53306], [-1.93363, 52.53297], [-1.93329, 52.53286], [-1.93301, 52.53277], [-1.93264, 52.53264], [-1.93219, 52.53248], [-1.93179, 52.53233], [-1.93143, 52.53219], [-1.93105, 52.53204], [-1.93078, 52.53193], [-1.93048, 52.53179], [-1.93009, 52.53162], [-1.92972, 52.53144], [-1.92918, 52.53117], [-1.92885, 52.531], [-1.92848, 52.53079], [-1.92819, 52.53063], [-1.92785, 52.53043], [-1.92763, 52.5303], [-1.92743, 52.53017], [-1.9272, 52.53003], [-1.92696, 52.52988], [-1.92672, 52.52972], [-1.92644, 52.52953], [-1.92615, 52.52934], [-1.92589, 52.52915], [-1.92545, 52.52883], [-1.92512, 52.52858], [-1.92485, 52.52837], [-1.92464, 52.52819], [-1.92446, 52.52804], [-1.92422, 52.52783], [-1.92393, 52.52758], [-1.92372, 52.52738], [-1.92347, 52.52715], [-1.9233, 52.52697], [-1.92304, 52.52671], [-1.92284, 52.52651], [-1.92262, 52.52627], [-1.92239, 52.52601], [-1.92218, 52.52578]]}}, {"type": "Feature", "properties": {"osm_id": "4013504", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.48779, 51.59417], [-2.48843, 51.59425], [-2.49093, 51.59434]]}}, {"type": "Feature", "properties": {"osm_id": "4013505", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.48162, 51.59195], [-2.4819, 51.59212], [-2.48257, 51.59252], [-2.48333, 51.59289], [-2.48417, 51.59324], [-2.48524, 51.5936], [-2.48635, 51.59388], [-2.48723, 51.59408], [-2.48779, 51.59417]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4014470", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.87112, 52.50331], [-1.87104, 52.50322]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4014641", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.24185, 51.721], [-1.24137, 51.72093], [-1.24089, 51.72088], [-1.24018, 51.72088], [-1.2388, 51.72091]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4015496", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.2376, 51.97779], [-0.23648, 51.97817], [-0.233, 51.97925], [-0.2307, 51.97988], [-0.22941, 51.98023], [-0.2289, 51.98037], [-0.22838, 51.98051], [-0.22704, 51.98088], [-0.22565, 51.98125], [-0.22494, 51.98144], [-0.22478, 51.98148], [-0.22427, 51.98162]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015620", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.1951, 51.29661], [-2.19532, 51.29817], [-2.19542, 51.29858], [-2.19561, 51.29919], [-2.19581, 51.29979], [-2.19681, 51.30218], [-2.1973, 51.30338], [-2.19743, 51.30368], [-2.19802, 51.305], [-2.19825, 51.30545], [-2.19856, 51.30598]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015622", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.20486, 51.26243], [-2.20538, 51.2621]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015623", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.32229, 51.19812], [-2.32235, 51.1979]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015624", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.50734, 51.1024], [-2.50969, 51.10216], [-2.51087, 51.10201], [-2.51206, 51.10183], [-2.51505, 51.10134], [-2.51947, 51.10058], [-2.52035, 51.10041], [-2.52089, 51.10028], [-2.52162, 51.10009], [-2.52262, 51.09979]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015625", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.73504, 51.05174], [-2.73557, 51.05145], [-2.73612, 51.05115], [-2.73725, 51.05063], [-2.7378, 51.05039], [-2.73837, 51.05016], [-2.73893, 51.04995], [-2.73953, 51.04974], [-2.74125, 51.04915], [-2.74765, 51.04691], [-2.75259, 51.0452]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015968", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.98785, 51.14365], [-2.98855, 51.14039], [-2.98924, 51.13711], [-2.98958, 51.13553], [-2.98994, 51.13383], [-2.99005, 51.13324], [-2.99014, 51.13264], [-2.99025, 51.13168], [-2.99032, 51.13073], [-2.99036, 51.1296], [-2.99034, 51.12899], [-2.99033, 51.12852], [-2.99031, 51.12819], [-2.99029, 51.128]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015969", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.09329, 51.02344], [-3.09446, 51.02331], [-3.09558, 51.02319], [-3.09619, 51.02315], [-3.097, 51.02311], [-3.09792, 51.02307], [-3.09852, 51.02307], [-3.0991, 51.02307], [-3.09955, 51.02308], [-3.10008, 51.0231], [-3.1005, 51.02311], [-3.1011, 51.02314], [-3.10209, 51.02319], [-3.10385, 51.02329]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015971", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.30176, 50.9511], [-3.30552, 50.94948], [-3.30625, 50.94918], [-3.30742, 50.94873], [-3.30886, 50.94823], [-3.30947, 50.94804], [-3.31012, 50.94786], [-3.31078, 50.94769], [-3.31192, 50.94741], [-3.3124, 50.94731], [-3.31309, 50.94717], [-3.31461, 50.94688], [-3.31541, 50.94671], [-3.31623, 50.94651], [-3.31702, 50.94629], [-3.31845, 50.94584], [-3.31915, 50.94557], [-3.31981, 50.9453], [-3.32067, 50.94494], [-3.32146, 50.94455], [-3.32215, 50.94418], [-3.32271, 50.94386], [-3.32325, 50.94351], [-3.32377, 50.94317], [-3.3243, 50.94279], [-3.32472, 50.94245], [-3.32522, 50.94201], [-3.32605, 50.94123], [-3.32652, 50.9407], [-3.32778, 50.93912], [-3.32798, 50.93888], [-3.32843, 50.93832], [-3.32893, 50.93774], [-3.32947, 50.93721], [-3.33006, 50.93668], [-3.33117, 50.9358], [-3.33232, 50.93494], [-3.33475, 50.93327], [-3.33637, 50.9322], [-3.33759, 50.93142], [-3.33861, 50.93077], [-3.33996, 50.92996], [-3.34119, 50.92921], [-3.34276, 50.92822], [-3.34512, 50.92675], [-3.34736, 50.92534], [-3.34962, 50.92394], [-3.35074, 50.92324], [-3.35185, 50.92255], [-3.35411, 50.92114], [-3.35501, 50.92058], [-3.35588, 50.92001], [-3.35671, 50.91946], [-3.35753, 50.91886], [-3.35872, 50.91796], [-3.35926, 50.91747], [-3.35979, 50.917], [-3.36026, 50.91657], [-3.36065, 50.9162], [-3.361, 50.91586], [-3.36146, 50.91541], [-3.36282, 50.91385], [-3.36567, 50.90954], [-3.3666, 50.90805], [-3.36737, 50.90692], [-3.36781, 50.90631], [-3.36827, 50.9057], [-3.36922, 50.90449], [-3.37009, 50.90335], [-3.37092, 50.90222], [-3.37244, 50.8999], [-3.37319, 50.8987], [-3.37349, 50.89823], [-3.37402, 50.8974], [-3.37462, 50.89658], [-3.37498, 50.89615], [-3.3753, 50.89579], [-3.37563, 50.89544], [-3.37652, 50.89456]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4015973", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.5845, 51.44373], [-2.58405, 51.44386], [-2.58331, 51.44409], [-2.5827, 51.44433], [-2.58219, 51.44454], [-2.5817, 51.44476], [-2.58125, 51.44499], [-2.58101, 51.44513], [-2.58084, 51.44525], [-2.58062, 51.44542], [-2.58048, 51.44556], [-2.58036, 51.44569], [-2.58026, 51.44581], [-2.58016, 51.44597]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016014", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.54367, 50.72821], [-3.54363, 50.72879], [-3.5436, 50.72922]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016015", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.47307, 50.70799], [-3.47302, 50.70741], [-3.47295, 50.70659], [-3.47285, 50.70569]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016111", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.06761, 52.12978], [-2.06608, 52.12953], [-2.066, 52.12952], [-2.06375, 52.12918], [-2.05916, 52.12856], [-2.05654, 52.12811], [-2.05481, 52.12777], [-2.05296, 52.12736], [-2.05112, 52.12691]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016112", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.90903, 52.10158], [-1.91212, 52.1014], [-1.9125, 52.10138], [-1.91329, 52.10134], [-1.91408, 52.10129], [-1.9164, 52.10115], [-1.91757, 52.10106], [-1.91837, 52.10097], [-1.91918, 52.10087], [-1.91987, 52.10078], [-1.92064, 52.10065], [-1.9213, 52.10054], [-1.92207, 52.10039], [-1.92346, 52.10009], [-1.92497, 52.0997]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016119", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.16313, 52.14768], [-2.16312, 52.14818], [-2.16312, 52.14863], [-2.16318, 52.14912], [-2.16324, 52.14946], [-2.16329, 52.14968], [-2.16337, 52.14998], [-2.16347, 52.15028], [-2.16354, 52.15048], [-2.16362, 52.15068], [-2.16371, 52.15088], [-2.16381, 52.15109], [-2.16392, 52.15131], [-2.16405, 52.15153], [-2.16424, 52.15184], [-2.16438, 52.15204], [-2.16449, 52.1522], [-2.16453, 52.15225], [-2.16483, 52.15264], [-2.16516, 52.15301], [-2.16552, 52.15339], [-2.16571, 52.15357], [-2.16593, 52.15376], [-2.16613, 52.15394], [-2.16634, 52.15411], [-2.16655, 52.15428], [-2.16677, 52.15444], [-2.16721, 52.15476], [-2.16768, 52.15506], [-2.16815, 52.15534], [-2.16867, 52.15562], [-2.16918, 52.15588], [-2.16985, 52.15618], [-2.1702, 52.15632], [-2.17054, 52.15646], [-2.1709, 52.1566], [-2.17126, 52.15671], [-2.17162, 52.15683], [-2.17198, 52.15694]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016120", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.16062, 52.13953], [-2.16102, 52.14036], [-2.16139, 52.14112], [-2.16223, 52.14286], [-2.16239, 52.14321], [-2.16254, 52.14357], [-2.16267, 52.14393], [-2.16278, 52.1443]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016129", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.16215, 52.15154], [-2.16141, 52.1538], [-2.16129, 52.15417], [-2.16123, 52.15434], [-2.16103, 52.15488], [-2.16092, 52.15514], [-2.16078, 52.15542], [-2.1605, 52.15596], [-2.1603, 52.15628], [-2.16008, 52.15664], [-2.15979, 52.15706], [-2.15948, 52.15748], [-2.15914, 52.1579], [-2.15877, 52.15831], [-2.15835, 52.15876], [-2.15789, 52.1592], [-2.15697, 52.16008], [-2.15376, 52.16312], [-2.15229, 52.16451], [-2.15187, 52.16492], [-2.15158, 52.16522], [-2.15129, 52.16553], [-2.15101, 52.16584], [-2.15075, 52.16615], [-2.15038, 52.16663], [-2.15004, 52.16712], [-2.14973, 52.16762], [-2.14958, 52.16788], [-2.14944, 52.16813], [-2.149, 52.16901], [-2.14846, 52.17015], [-2.14633, 52.17462], [-2.14623, 52.17485], [-2.14526, 52.17689], [-2.14426, 52.17901], [-2.14257, 52.18253], [-2.14195, 52.18383], [-2.14097, 52.1859], [-2.14066, 52.18658], [-2.14051, 52.18693], [-2.14038, 52.18728], [-2.14032, 52.18745], [-2.14017, 52.18799], [-2.14, 52.18873], [-2.13997, 52.18893], [-2.13993, 52.18916], [-2.1399, 52.18945], [-2.13977, 52.19079], [-2.13977, 52.19084], [-2.13952, 52.19426], [-2.13932, 52.19684], [-2.1391, 52.19986], [-2.139, 52.20129], [-2.13881, 52.20383], [-2.13861, 52.2065], [-2.13843, 52.20894], [-2.13831, 52.21039], [-2.13824, 52.2109], [-2.13815, 52.21138], [-2.13806, 52.21175], [-2.13791, 52.21227], [-2.13774, 52.21272], [-2.13762, 52.21303], [-2.13752, 52.21325], [-2.13731, 52.2137], [-2.13712, 52.21406], [-2.13707, 52.21415], [-2.13688, 52.21448], [-2.13664, 52.21486], [-2.13638, 52.21525], [-2.13609, 52.21566], [-2.1358, 52.21603], [-2.13551, 52.21637], [-2.13526, 52.21664], [-2.13494, 52.21697], [-2.13455, 52.21734], [-2.13413, 52.21772], [-2.13369, 52.21808], [-2.1331, 52.21854], [-2.13266, 52.21885], [-2.13218, 52.21917], [-2.13002, 52.22063], [-2.12917, 52.22129], [-2.12848, 52.22192], [-2.12779, 52.22258]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4016142", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.04177, 52.32607], [-2.04113, 52.32651], [-2.04059, 52.32687], [-2.04002, 52.32726], [-2.03962, 52.32753], [-2.03924, 52.32778], [-2.03853, 52.32827], [-2.03809, 52.32858]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016144", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.15605, 52.27005], [-2.15547, 52.27057]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016212", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.42156, 52.04492], [-2.41542, 52.04471], [-2.41433, 52.04468], [-2.40743, 52.04454], [-2.40621, 52.04453], [-2.404, 52.04451]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016213", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.35041, 52.08389], [-2.34761, 52.08483], [-2.3389, 52.08775], [-2.3318, 52.0901]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016214", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.35041, 52.08389], [-2.3513, 52.08355], [-2.35194, 52.0833], [-2.35253, 52.08301], [-2.35305, 52.0827], [-2.35352, 52.08239], [-2.35452, 52.08165]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4016256", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.13381, 52.18884], [0.13295, 52.18754], [0.13241, 52.18654], [0.13203, 52.18579], [0.1316, 52.18474], [0.13144, 52.18428], [0.13117, 52.18331], [0.13094, 52.18219], [0.13084, 52.18154], [0.13073, 52.18007], [0.13074, 52.17947], [0.13076, 52.17867], [0.13087, 52.17758], [0.13096, 52.17677], [0.13107, 52.17592], [0.13189, 52.16963], [0.13209, 52.16808], [0.13229, 52.16657], [0.13251, 52.16475], [0.13284, 52.16299], [0.13326, 52.16151], [0.13377, 52.16003], [0.13411, 52.1592], [0.1347, 52.15795]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4016260", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01565, 52.06221], [-0.01727, 52.06033], [-0.01869, 52.0587]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016277", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.69272, 52.08331], [-2.69087, 52.08545], [-2.69058, 52.08581], [-2.69026, 52.08628], [-2.69006, 52.0866], [-2.68982, 52.0871], [-2.68967, 52.08751], [-2.68959, 52.08787], [-2.68949, 52.08836], [-2.68946, 52.08874], [-2.68947, 52.08902], [-2.68949, 52.08934], [-2.68955, 52.08973], [-2.68965, 52.09021], [-2.68977, 52.09059], [-2.69031, 52.09172], [-2.6914, 52.09294], [-2.69177, 52.09321]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016323", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.42639, 52.04536], [-2.42561, 52.04527], [-2.42497, 52.04521], [-2.42318, 52.04503], [-2.42226, 52.04498]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016324", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.54844, 52.06721], [-2.55158, 52.0673], [-2.55357, 52.06736], [-2.55559, 52.06762], [-2.56099, 52.06854], [-2.56297, 52.06888], [-2.56969, 52.07005], [-2.57242, 52.07048], [-2.57804, 52.07141], [-2.58434, 52.07252], [-2.58739, 52.07333], [-2.58971, 52.07416]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016325", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.62765, 52.0783], [-2.62818, 52.07821], [-2.62905, 52.07805], [-2.62999, 52.07786], [-2.63072, 52.07774], [-2.63139, 52.07764], [-2.63198, 52.07757], [-2.63259, 52.0775], [-2.63306, 52.07746], [-2.63387, 52.07741], [-2.63437, 52.07739], [-2.63513, 52.07737], [-2.63574, 52.07737], [-2.6362, 52.07738], [-2.63685, 52.07741], [-2.63745, 52.07744], [-2.63827, 52.07751], [-2.63954, 52.07763], [-2.64224, 52.07789], [-2.64497, 52.07814], [-2.64799, 52.07842], [-2.65787, 52.07934], [-2.65844, 52.07939], [-2.65962, 52.0795], [-2.66141, 52.07965], [-2.66249, 52.07975], [-2.66399, 52.07989], [-2.6653, 52.08]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016327", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.11012, 52.05063], [-2.11013, 52.0508], [-2.11018, 52.05144], [-2.11023, 52.0519], [-2.11031, 52.05322], [-2.11041, 52.05421], [-2.11045, 52.05473], [-2.1105, 52.05524], [-2.11057, 52.05617], [-2.11067, 52.05718], [-2.11071, 52.05769], [-2.11074, 52.05802], [-2.11081, 52.05878], [-2.11088, 52.05946], [-2.11092, 52.05984], [-2.11099, 52.06018], [-2.11108, 52.06057], [-2.11118, 52.0609], [-2.11126, 52.06117], [-2.11136, 52.06145], [-2.11163, 52.06214], [-2.11176, 52.06244], [-2.11202, 52.06292], [-2.11254, 52.06387], [-2.11315, 52.06492], [-2.11328, 52.06516], [-2.11366, 52.06584], [-2.11434, 52.06706], [-2.11459, 52.0675], [-2.1148, 52.06789], [-2.11496, 52.06817], [-2.1151, 52.0684], [-2.11537, 52.06891], [-2.11551, 52.06915], [-2.1157, 52.06946], [-2.11597, 52.06993], [-2.11642, 52.07074], [-2.11688, 52.07158], [-2.11765, 52.07298], [-2.11827, 52.07407], [-2.11874, 52.07488], [-2.1191, 52.07551], [-2.11968, 52.07649], [-2.12015, 52.07731], [-2.12085, 52.07858], [-2.12131, 52.07938], [-2.12179, 52.08022]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016340", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.10882, 51.98178], [-2.10881, 51.9827], [-2.10881, 51.9837], [-2.10881, 51.9845], [-2.10881, 51.98555], [-2.10881, 51.98652], [-2.1088, 51.98755], [-2.10881, 51.98954], [-2.10881, 51.98973], [-2.10881, 51.99085], [-2.10881, 51.99194], [-2.1088, 51.99309], [-2.10877, 51.99357]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016352", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.19946, 52.31066], [-2.20117, 52.31112], [-2.20173, 52.31128], [-2.20234, 52.31146], [-2.2028, 52.31162], [-2.20319, 52.31175], [-2.20404, 52.31208], [-2.20451, 52.31228], [-2.20487, 52.31244], [-2.20595, 52.31299], [-2.20624, 52.31316], [-2.20647, 52.31331], [-2.20749, 52.314], [-2.20825, 52.3146], [-2.20866, 52.31491], [-2.209, 52.31523], [-2.20955, 52.31579], [-2.21004, 52.31638], [-2.21057, 52.31709], [-2.21107, 52.31782], [-2.21206, 52.31929], [-2.21336, 52.32122], [-2.21464, 52.32312]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4016363", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.23283, 52.35952], [-2.23313, 52.36007], [-2.23349, 52.36061], [-2.23383, 52.36112], [-2.23421, 52.36164], [-2.23494, 52.3626], [-2.23535, 52.36307], [-2.23579, 52.36356], [-2.23674, 52.36457], [-2.23773, 52.3656], [-2.23882, 52.36674], [-2.23938, 52.36734], [-2.23988, 52.3679], [-2.24052, 52.36874], [-2.24112, 52.36957]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4017627", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.37161, 51.5164], [-3.37222, 51.51658], [-3.37268, 51.51672], [-3.37319, 51.51687], [-3.37366, 51.51701], [-3.37422, 51.51719], [-3.37481, 51.51739], [-3.37517, 51.51754], [-3.37567, 51.51775], [-3.37601, 51.51791], [-3.37639, 51.51809]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4017752", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.03796, 52.52055], [1.03636, 52.52012], [1.03496, 52.51973], [1.0336, 52.51932], [1.03197, 52.51878], [1.03043, 52.51823], [1.02946, 52.51786], [1.02856, 52.5175], [1.02741, 52.51701], [1.02659, 52.51665], [1.02552, 52.51613], [1.02469, 52.51572], [1.02342, 52.51504], [1.02222, 52.51441], [1.02195, 52.51427], [1.02051, 52.5135], [1.0194, 52.51291], [1.015, 52.51057], [1.00702, 52.50633], [1.00597, 52.50572], [1.00554, 52.50545], [1.00494, 52.50501], [1.00407, 52.50429], [1.00075, 52.5011], [1.00072, 52.50107], [0.99109, 52.49173], [0.98076, 52.48169], [0.9704, 52.47166], [0.97001, 52.47126], [0.96928, 52.47054], [0.96523, 52.46661], [0.96371, 52.4651], [0.96228, 52.46343]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4018090", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.05552, 52.21874], [-1.06113, 52.22095]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018219", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.20042, 57.48342], [-4.20105, 57.48335], [-4.20183, 57.48323], [-4.20298, 57.48305], [-4.20353, 57.48296]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018220", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.22361, 57.47976], [-4.22338, 57.47993], [-4.22304, 57.48019], [-4.223, 57.48024], [-4.22284, 57.48047], [-4.22279, 57.48059], [-4.22275, 57.48073], [-4.22274, 57.48086], [-4.22275, 57.48101], [-4.22279, 57.48115], [-4.22286, 57.4813], [-4.22293, 57.48142], [-4.22302, 57.48155], [-4.22315, 57.48168], [-4.2233, 57.48182], [-4.22349, 57.48196], [-4.22373, 57.4821]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018231", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.26289, 57.48799], [-4.26363, 57.48779], [-4.26427, 57.48757], [-4.26501, 57.48726], [-4.26594, 57.48684], [-4.26678, 57.48651], [-4.26804, 57.48613], [-4.27079, 57.48534], [-4.27448, 57.48431], [-4.27939, 57.48292], [-4.28314, 57.48187], [-4.28455, 57.48152], [-4.2855, 57.48128], [-4.28764, 57.48088], [-4.29055, 57.48048], [-4.29457, 57.48003], [-4.29799, 57.47961], [-4.29961, 57.47939]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018357", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.31799, 57.47862], [-4.31895, 57.47886], [-4.32002, 57.4792], [-4.3212, 57.47967], [-4.32259, 57.48029], [-4.323, 57.48047]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018358", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.39372, 57.48461], [-4.39418, 57.4847], [-4.39534, 57.48488], [-4.3966, 57.48501], [-4.3977, 57.48506], [-4.3988, 57.48508], [-4.39989, 57.48504], [-4.40112, 57.48493], [-4.40224, 57.48477], [-4.40358, 57.48455], [-4.40641, 57.48405], [-4.41168, 57.48317], [-4.4126, 57.48301], [-4.41485, 57.48258], [-4.41729, 57.48219], [-4.41911, 57.48194], [-4.42546, 57.48117], [-4.4318, 57.48048], [-4.43627, 57.48], [-4.43861, 57.47973], [-4.44133, 57.47944], [-4.44233, 57.47931], [-4.44318, 57.47915], [-4.44502, 57.47869], [-4.44824, 57.47787], [-4.45073, 57.47726], [-4.45281, 57.47672]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4018359", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.46256, 57.47618], [-4.46376, 57.47631], [-4.46471, 57.47644], [-4.46564, 57.47663], [-4.46656, 57.47685], [-4.46749, 57.47715], [-4.4683, 57.47746], [-4.46912, 57.47785], [-4.46986, 57.47828], [-4.4704, 57.47863], [-4.47093, 57.47905], [-4.47137, 57.4795], [-4.4719, 57.48014], [-4.47224, 57.48068], [-4.47246, 57.48122], [-4.4726, 57.48172], [-4.47266, 57.48226], [-4.47265, 57.48271], [-4.47256, 57.48328], [-4.47237, 57.48381], [-4.47208, 57.48435], [-4.47174, 57.48484], [-4.47136, 57.48529], [-4.47091, 57.4857], [-4.47029, 57.48619], [-4.46831, 57.48761], [-4.46644, 57.48895], [-4.46598, 57.48928]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4019193", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01537, 52.06253], [-0.01565, 52.06221]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4020905", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.70101, 50.93307], [0.70031, 50.93275], [0.69965, 50.93246], [0.69893, 50.93217], [0.69816, 50.93189], [0.69739, 50.93163], [0.69663, 50.93139], [0.69582, 50.93116], [0.69504, 50.93097], [0.69426, 50.93078], [0.69352, 50.93063], [0.69276, 50.9305], [0.69198, 50.93037], [0.69123, 50.93028], [0.69039, 50.93019], [0.68957, 50.93012], [0.67702, 50.92922]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4030330", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.08808, 51.78511], [-0.08736, 51.78365], [-0.08649, 51.78164], [-0.08614, 51.78004], [-0.08587, 51.77856], [-0.08583, 51.7766], [-0.08614, 51.77472], [-0.08663, 51.77275], [-0.08743, 51.77085], [-0.08835, 51.76916], [-0.0894, 51.7677], [-0.09023, 51.7666], [-0.09114, 51.76545], [-0.09238, 51.76375], [-0.0936, 51.76212], [-0.09464, 51.76069], [-0.09545, 51.75887]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4033544", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.78811, 51.5648], [-1.78827, 51.56472], [-1.78902, 51.5644], [-1.78944, 51.56427], [-1.78967, 51.5642], [-1.78973, 51.56419], [-1.78989, 51.56416], [-1.79012, 51.56411], [-1.79033, 51.56408], [-1.79068, 51.56404]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4033546", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.89049, 51.60333], [-1.89097, 51.60355], [-1.89139, 51.60372], [-1.89206, 51.604], [-1.8924, 51.60414], [-1.89298, 51.60436], [-1.89339, 51.60451], [-1.89389, 51.60469]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4033547", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.973, 51.62262], [-1.97596, 51.62373], [-1.97683, 51.62406]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4035823", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.02345, 51.67788], [-2.0239, 51.67933], [-2.02435, 51.68076], [-2.02464, 51.68163]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4035824", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.10171, 51.7236], [-2.10035, 51.7232], [-2.09707, 51.72213], [-2.09166, 51.72038], [-2.08999, 51.71984], [-2.08625, 51.71864], [-2.07996, 51.71656]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4035825", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.10171, 51.7236], [-2.10306, 51.72386], [-2.10357, 51.72393], [-2.10399, 51.72397], [-2.10446, 51.72401], [-2.10523, 51.72405], [-2.10602, 51.72409], [-2.10656, 51.72413], [-2.1071, 51.7242], [-2.10769, 51.72428], [-2.10822, 51.72436], [-2.10933, 51.72454], [-2.11021, 51.72463], [-2.11094, 51.72466], [-2.1117, 51.72467], [-2.11219, 51.72465], [-2.11275, 51.72461], [-2.11321, 51.72456], [-2.11397, 51.72444], [-2.1149, 51.72425], [-2.1158, 51.72403], [-2.11652, 51.72388], [-2.11699, 51.7238], [-2.11749, 51.72372], [-2.11803, 51.72366], [-2.11871, 51.72359]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4036395", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.14443, 51.72056], [-2.1455, 51.72068], [-2.14597, 51.72071], [-2.14649, 51.72074], [-2.1468, 51.72074], [-2.14714, 51.72073], [-2.14746, 51.72073], [-2.14807, 51.72069], [-2.15045, 51.72052], [-2.15114, 51.72049], [-2.15184, 51.72047], [-2.1523, 51.72048], [-2.15425, 51.72061], [-2.15491, 51.72062], [-2.15577, 51.72059], [-2.15655, 51.72055], [-2.15707, 51.72048], [-2.158, 51.7203]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4040412", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.24207, 51.53586], [-2.2451, 51.53498], [-2.24592, 51.53475], [-2.24648, 51.53458], [-2.24702, 51.53443], [-2.24775, 51.53423], [-2.24842, 51.53405], [-2.24895, 51.53391], [-2.24951, 51.53377], [-2.25022, 51.5336], [-2.25103, 51.5334], [-2.25213, 51.53315], [-2.25307, 51.53295], [-2.25401, 51.53276], [-2.25461, 51.53264], [-2.25527, 51.53251], [-2.25591, 51.53239], [-2.25679, 51.53223], [-2.25768, 51.53208], [-2.25864, 51.53193], [-2.25951, 51.5318], [-2.26074, 51.53163], [-2.26136, 51.53155], [-2.26197, 51.53148], [-2.26258, 51.5314], [-2.26316, 51.53134], [-2.26474, 51.53117], [-2.26692, 51.53097], [-2.26936, 51.53076], [-2.27256, 51.53047], [-2.27574, 51.53019], [-2.27716, 51.53007], [-2.27816, 51.52998], [-2.28059, 51.52977], [-2.28178, 51.52966], [-2.28301, 51.52956], [-2.28544, 51.52935], [-2.28591, 51.52932], [-2.28651, 51.52927], [-2.28698, 51.52924], [-2.28736, 51.52922], [-2.28775, 51.5292], [-2.28812, 51.52918], [-2.2885, 51.52918], [-2.28924, 51.52916], [-2.29, 51.52915], [-2.29076, 51.52916], [-2.29114, 51.52916], [-2.29152, 51.52917], [-2.29363, 51.52924], [-2.29577, 51.52931], [-2.30003, 51.52946]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4041181", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.89255, 52.47914], [-1.89197, 52.47892], [-1.89174, 52.47884], [-1.88978, 52.47811]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4042882", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.20771, 51.44994], [-0.20784, 51.45025], [-0.20796, 51.45047], [-0.20806, 51.45064], [-0.20821, 51.45088], [-0.20839, 51.45112], [-0.20857, 51.45135], [-0.20885, 51.4517], [-0.2092, 51.45213], [-0.20939, 51.45237]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4043420", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.20454, 51.43898], [-0.20532, 51.44008], [-0.20566, 51.44076], [-0.20601, 51.44155], [-0.20619, 51.44228], [-0.20634, 51.44299], [-0.20649, 51.44379], [-0.20658, 51.44454]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4043422", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.20939, 51.45237], [-0.20947, 51.45247]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4043423", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.20658, 51.44454], [-0.20662, 51.4449]]}}, {"type": "Feature", "properties": {"osm_id": "4043467", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.5063, 53.25727], [-2.50746, 53.25687], [-2.50859, 53.25649]]}}, {"type": "Feature", "properties": {"osm_id": "4043468", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.39479, 53.28692], [-2.39344, 53.28783]]}}, {"type": "Feature", "properties": {"osm_id": "4043469", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.3481, 53.38429], [-2.34799, 53.38405], [-2.34794, 53.38393], [-2.34787, 53.38376], [-2.34781, 53.3836], [-2.34777, 53.38347], [-2.34774, 53.38336], [-2.34771, 53.38325], [-2.34768, 53.38316], [-2.34764, 53.38296], [-2.34761, 53.38278], [-2.3476, 53.38266], [-2.34758, 53.38256], [-2.34758, 53.38249], [-2.34755, 53.3824], [-2.34754, 53.38195], [-2.34751, 53.38154], [-2.34751, 53.38096], [-2.3475, 53.38039], [-2.3475, 53.38013], [-2.34749, 53.37983], [-2.34749, 53.37936], [-2.34746, 53.37852], [-2.34745, 53.37817], [-2.34744, 53.37793], [-2.34741, 53.3777], [-2.3473, 53.3772], [-2.34723, 53.37691], [-2.34707, 53.37649], [-2.34697, 53.37628], [-2.34685, 53.37605], [-2.34662, 53.37565], [-2.34628, 53.37517], [-2.34579, 53.37452], [-2.34535, 53.37395], [-2.34497, 53.3734], [-2.34479, 53.37312], [-2.34463, 53.37285], [-2.3445, 53.37257], [-2.34437, 53.37229], [-2.34417, 53.37178], [-2.34405, 53.37148], [-2.34396, 53.37111], [-2.34391, 53.3709], [-2.3438, 53.37029], [-2.34364, 53.36936], [-2.34348, 53.36844], [-2.34343, 53.36806], [-2.34337, 53.36765], [-2.34325, 53.36685], [-2.34312, 53.36607], [-2.34298, 53.36526], [-2.34245, 53.36208], [-2.3414, 53.35572]]}}, {"type": "Feature", "properties": {"osm_id": "4043576", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.33392, 53.40014], [-2.33418, 53.40017], [-2.33437, 53.40019], [-2.33458, 53.40022], [-2.33479, 53.40027], [-2.33502, 53.40033], [-2.33522, 53.40039], [-2.3354, 53.40047], [-2.33568, 53.40059], [-2.33584, 53.40065], [-2.33602, 53.40072], [-2.33621, 53.40077], [-2.33642, 53.40083], [-2.33663, 53.40089], [-2.33687, 53.40093], [-2.33714, 53.40098], [-2.33742, 53.40102], [-2.33772, 53.40105], [-2.33796, 53.40106], [-2.33824, 53.40106], [-2.33849, 53.40106], [-2.3388, 53.40104], [-2.33906, 53.40101], [-2.33933, 53.40098], [-2.33958, 53.40093], [-2.33987, 53.40087], [-2.34018, 53.40079], [-2.34037, 53.40072], [-2.34051, 53.40067], [-2.34074, 53.40057], [-2.34094, 53.40048], [-2.34113, 53.40038], [-2.34132, 53.40026], [-2.34148, 53.40014], [-2.34162, 53.40002], [-2.34173, 53.3999], [-2.34181, 53.3998], [-2.34187, 53.39972], [-2.34194, 53.39962]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4043680", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.10249, 51.66993], [0.10286, 51.6708], [0.10287, 51.67083], [0.10288, 51.67085], [0.10296, 51.67103], [0.10299, 51.67108], [0.10301, 51.67114], [0.10307, 51.67126], [0.10308, 51.67129], [0.10309, 51.67131], [0.10311, 51.67135], [0.10313, 51.67141], [0.10316, 51.67148], [0.10319, 51.67155], [0.10323, 51.67162], [0.10325, 51.67167], [0.10327, 51.67172]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4045671", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.65022, 53.82738], [-1.65114, 53.82765], [-1.65327, 53.82825], [-1.6537, 53.82837], [-1.65416, 53.82848], [-1.65464, 53.82859], [-1.65513, 53.82869], [-1.65565, 53.82879], [-1.65621, 53.82888], [-1.65681, 53.82896], [-1.65741, 53.82902], [-1.65872, 53.82913], [-1.66011, 53.82924], [-1.66062, 53.82929], [-1.66116, 53.82935], [-1.66174, 53.82942], [-1.66231, 53.82951], [-1.6628, 53.82959], [-1.66329, 53.82969], [-1.66418, 53.82989], [-1.66491, 53.83008], [-1.66538, 53.83021], [-1.66587, 53.83036], [-1.66683, 53.8307], [-1.66727, 53.83087], [-1.66772, 53.83106], [-1.66817, 53.83125], [-1.6686, 53.83145], [-1.6695, 53.83188]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4045728", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.23438, 53.78059], [-1.22669, 53.77977], [-1.22526, 53.77964], [-1.22383, 53.77953], [-1.22335, 53.7795]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4045767", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.06527, 53.78044], [-1.06555, 53.78017], [-1.06586, 53.77987], [-1.06607, 53.77972], [-1.06645, 53.77951], [-1.06693, 53.77929], [-1.06743, 53.77913], [-1.06793, 53.779], [-1.06838, 53.77892], [-1.06883, 53.77887], [-1.06953, 53.77884], [-1.07041, 53.7789], [-1.07092, 53.77898], [-1.07131, 53.77906], [-1.07283, 53.77943], [-1.07323, 53.77951], [-1.07361, 53.77958], [-1.07398, 53.77961], [-1.07439, 53.77962], [-1.075, 53.77959]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4045846", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.05969, 53.78624], [-1.06007, 53.78604], [-1.06048, 53.78581], [-1.0609, 53.78552], [-1.06113, 53.78534], [-1.06128, 53.78521], [-1.06142, 53.78509], [-1.06159, 53.78491], [-1.06185, 53.78464]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4054427", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.20665, 54.57721], [-1.20675, 54.5772], [-1.20795, 54.57714], [-1.20955, 54.57705], [-1.21123, 54.57698], [-1.21174, 54.57695], [-1.21277, 54.57689], [-1.21566, 54.57673], [-1.22022, 54.57647], [-1.22129, 54.57641], [-1.22192, 54.5764]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4060274", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.7918, 51.07691], [-1.79004, 51.07711], [-1.78786, 51.07736], [-1.78612, 51.07754]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4060392", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.07766, 57.10144], [-2.07811, 57.1009], [-2.07837, 57.10055], [-2.07862, 57.10018], [-2.07877, 57.09995], [-2.0789, 57.09973], [-2.07907, 57.09941], [-2.07918, 57.09919], [-2.07929, 57.09895], [-2.07941, 57.09867], [-2.07957, 57.09814], [-2.07972, 57.09759], [-2.07993, 57.09708], [-2.0802, 57.09659], [-2.08049, 57.09614], [-2.08083, 57.09572], [-2.08133, 57.09519], [-2.08203, 57.09459], [-2.08273, 57.09403], [-2.08322, 57.09363], [-2.08371, 57.09324], [-2.08393, 57.09303], [-2.08414, 57.0928], [-2.08448, 57.09241], [-2.08463, 57.09223], [-2.08478, 57.092], [-2.08483, 57.09192], [-2.08488, 57.0918], [-2.08493, 57.09156], [-2.085, 57.09136], [-2.08504, 57.09113], [-2.08509, 57.09085], [-2.08511, 57.09052], [-2.08519, 57.08986], [-2.08524, 57.08959], [-2.08532, 57.08935], [-2.08551, 57.08889], [-2.08583, 57.08837], [-2.0862, 57.08794], [-2.08644, 57.0877], [-2.0867, 57.08747], [-2.08718, 57.08704], [-2.08741, 57.08683]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4060397", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.07763, 57.1301], [-2.07588, 57.13045], [-2.07506, 57.1306], [-2.07424, 57.13074], [-2.07354, 57.13085], [-2.07283, 57.13094], [-2.07162, 57.13108], [-2.07097, 57.13114], [-2.07033, 57.1312], [-2.06999, 57.13122], [-2.06965, 57.13124], [-2.06898, 57.13127], [-2.06828, 57.1313], [-2.06757, 57.13131], [-2.06689, 57.13132], [-2.06624, 57.13132], [-2.0659, 57.13132], [-2.06559, 57.13131], [-2.06495, 57.13129], [-2.06463, 57.13128], [-2.06432, 57.13126], [-2.06369, 57.13123], [-2.06318, 57.1312], [-2.06267, 57.13115], [-2.06195, 57.13107], [-2.06142, 57.13099], [-2.06094, 57.13092], [-2.06055, 57.13085], [-2.06016, 57.13077], [-2.05964, 57.13064], [-2.0594, 57.13058], [-2.05916, 57.1305], [-2.0587, 57.13035], [-2.05828, 57.13019], [-2.05792, 57.13003], [-2.05757, 57.12987], [-2.05698, 57.12956]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4062227", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.87051, 56.46715], [-2.8707, 56.46717], [-2.8712, 56.46721], [-2.872, 56.4673], [-2.87291, 56.46744], [-2.87318, 56.46748], [-2.87339, 56.46752], [-2.87519, 56.46782], [-2.8765, 56.46804], [-2.87778, 56.46823], [-2.8793, 56.46844], [-2.8803, 56.46857], [-2.88103, 56.46865], [-2.88213, 56.46874], [-2.88335, 56.46881], [-2.88459, 56.46885], [-2.88595, 56.46888], [-2.88713, 56.46887], [-2.88819, 56.46885], [-2.88997, 56.46878], [-2.89115, 56.46873], [-2.89423, 56.4686], [-2.89619, 56.46853], [-2.90505, 56.46816], [-2.90742, 56.46812], [-2.90971, 56.46813], [-2.9104, 56.46814], [-2.91623, 56.46813], [-2.92215, 56.46812], [-2.92634, 56.46812], [-2.92952, 56.46811], [-2.93143, 56.46808]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4062228", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.98945, 56.45161], [-2.98971, 56.45152], [-2.99004, 56.4514], [-2.99051, 56.45122], [-2.99087, 56.45106], [-2.99118, 56.45089], [-2.99144, 56.45074], [-2.9917, 56.45056], [-2.99197, 56.45035], [-2.99223, 56.45012], [-2.99247, 56.44985], [-2.99265, 56.44963], [-2.99279, 56.44941], [-2.99294, 56.4491], [-2.99304, 56.44881], [-2.9931, 56.44857], [-2.99312, 56.44833], [-2.99312, 56.44806], [-2.99309, 56.44781], [-2.99303, 56.44758], [-2.99292, 56.44733], [-2.99279, 56.44705], [-2.9906, 56.4429]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4062229", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.98138, 56.42512], [-2.98137, 56.42488], [-2.98141, 56.42462], [-2.98156, 56.42418]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064134", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.92881, 56.39893], [-2.92762, 56.39857], [-2.92647, 56.39831], [-2.92555, 56.39815], [-2.92458, 56.39801], [-2.92292, 56.39786], [-2.92251, 56.39782], [-2.9211, 56.3977], [-2.91919, 56.39754], [-2.9166, 56.39729], [-2.91527, 56.39709], [-2.9146, 56.39695], [-2.91394, 56.39681], [-2.91329, 56.39664], [-2.91269, 56.39645], [-2.91223, 56.39629]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064135", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.78273, 51.33802], [-1.78331, 51.33787], [-1.7839, 51.33772], [-1.78513, 51.33748]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4064140", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.19866, 55.95039], [-3.19826, 55.95046], [-3.1972, 55.95065], [-3.19661, 55.95074]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4064141", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.21738, 55.94553], [-3.21488, 55.94613], [-3.2122, 55.94677], [-3.20863, 55.9476], [-3.2082, 55.94771], [-3.2068, 55.94805], [-3.20611, 55.94823], [-3.20494, 55.94865], [-3.20407, 55.94899]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4064142", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.45958, 55.88216], [-3.46028, 55.88193], [-3.46087, 55.88173], [-3.46203, 55.8813], [-3.46414, 55.88037], [-3.46492, 55.87996], [-3.46563, 55.87956], [-3.46634, 55.87915], [-3.46702, 55.87872], [-3.46751, 55.87838], [-3.46799, 55.87802], [-3.46846, 55.87764], [-3.46868, 55.87746], [-3.4689, 55.87726], [-3.46942, 55.87678], [-3.46992, 55.87627], [-3.47038, 55.87576], [-3.47081, 55.87522], [-3.47124, 55.87464], [-3.47143, 55.87433], [-3.4716, 55.87403], [-3.47177, 55.87377], [-3.47193, 55.87344], [-3.47225, 55.8728], [-3.47255, 55.87218], [-3.4729, 55.87159], [-3.47331, 55.87097], [-3.47375, 55.87038], [-3.47399, 55.87007], [-3.47426, 55.86978], [-3.47483, 55.86918], [-3.47544, 55.86863], [-3.47595, 55.86817]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064150", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.12142, 56.27353], [-3.12162, 56.2742], [-3.12185, 56.27516], [-3.12185, 56.27518]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064151", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.12199, 56.27565], [-3.1221, 56.27605], [-3.12217, 56.27644], [-3.12224, 56.27672], [-3.1223, 56.27696], [-3.12242, 56.27734], [-3.12258, 56.27785], [-3.12286, 56.27861], [-3.1229, 56.2787], [-3.12305, 56.27902], [-3.12318, 56.27927], [-3.12337, 56.27961], [-3.12361, 56.28001], [-3.12387, 56.28039], [-3.1243, 56.28097], [-3.12453, 56.28126], [-3.12458, 56.28132], [-3.12493, 56.2817], [-3.12519, 56.28197], [-3.12632, 56.283], [-3.1275, 56.28387], [-3.12896, 56.28495], [-3.13053, 56.28607], [-3.13684, 56.29072]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064279", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.18123, 56.32862], [-3.18183, 56.32895]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064280", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.25732, 56.34663], [-3.2835, 56.34124], [-3.28786, 56.34032], [-3.30154, 56.33751]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4064281", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.32247, 56.33506], [-3.32778, 56.33507]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4066507", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.19341, 57.20654], [-2.19489, 57.20848], [-2.19514, 57.2088], [-2.19739, 57.21172], [-2.19829, 57.21291], [-2.19939, 57.21433], [-2.20007, 57.2152], [-2.20113, 57.21659], [-2.20115, 57.21662]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4066508", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.20131, 57.21684], [-2.20193, 57.2176], [-2.20223, 57.21798], [-2.20259, 57.21843], [-2.20303, 57.21888], [-2.20346, 57.21926], [-2.20413, 57.21973], [-2.20479, 57.22015], [-2.20542, 57.22048]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068410", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.16244, 57.47595], [-4.16385, 57.47595], [-4.16508, 57.47597], [-4.16635, 57.47602], [-4.16768, 57.47608], [-4.16904, 57.47617], [-4.17024, 57.47628], [-4.17151, 57.4764], [-4.17314, 57.4766], [-4.17422, 57.47674], [-4.17525, 57.4769], [-4.17617, 57.47707], [-4.17695, 57.47722], [-4.17774, 57.47739], [-4.17833, 57.47752], [-4.17895, 57.47767], [-4.17999, 57.47795], [-4.18092, 57.47823], [-4.18153, 57.47842], [-4.18222, 57.47865], [-4.18327, 57.47904], [-4.18429, 57.47945]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068417", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.2086, 57.48249], [-4.206, 57.48266], [-4.20456, 57.48273], [-4.20333, 57.4828], [-4.20211, 57.48287], [-4.20059, 57.48293], [-4.19775, 57.48302], [-4.19677, 57.48305]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068419", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.99029, 57.55313], [-3.98759, 57.55343], [-3.98617, 57.55359], [-3.98437, 57.55383], [-3.98233, 57.55412], [-3.98019, 57.55446], [-3.97389, 57.55556], [-3.96815, 57.55658], [-3.96813, 57.55658], [-3.95987, 57.55797], [-3.95152, 57.55942], [-3.94509, 57.56054], [-3.94171, 57.56113], [-3.93507, 57.56227], [-3.92782, 57.56353], [-3.92402, 57.56419], [-3.92164, 57.56467], [-3.91993, 57.56507], [-3.91825, 57.56551], [-3.91603, 57.56617], [-3.91174, 57.56744], [-3.90628, 57.56909], [-3.90191, 57.57039], [-3.89637, 57.57208], [-3.89455, 57.57268], [-3.89281, 57.57327], [-3.88928, 57.57444], [-3.88484, 57.57592], [-3.88245, 57.57673], [-3.88005, 57.57752], [-3.87841, 57.57808], [-3.87676, 57.57863]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068420", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.85868, 57.58357], [-3.85818, 57.58364]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068422", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.68596, 57.59677], [-3.68524, 57.59689], [-3.67997, 57.59777], [-3.6771, 57.59825], [-3.6753, 57.59859], [-3.67444, 57.59876], [-3.67196, 57.59934], [-3.67072, 57.59963], [-3.66916, 57.60006], [-3.66198, 57.60208]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068423", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.57651, 57.6288], [-3.57496, 57.62924], [-3.57328, 57.62971], [-3.57257, 57.62988], [-3.57192, 57.63], [-3.56993, 57.63042], [-3.56804, 57.63076], [-3.56621, 57.63104], [-3.56395, 57.63133], [-3.56254, 57.63148], [-3.56004, 57.6317], [-3.55867, 57.6318], [-3.55531, 57.63213], [-3.54673, 57.63288], [-3.53898, 57.63358], [-3.53099, 57.63428], [-3.52758, 57.63459], [-3.52574, 57.63474], [-3.52442, 57.63483], [-3.52202, 57.63497], [-3.51829, 57.63516], [-3.51216, 57.63547], [-3.51206, 57.63547], [-3.50437, 57.63586], [-3.50113, 57.63603], [-3.49293, 57.63644], [-3.48943, 57.63662], [-3.488, 57.63669], [-3.48541, 57.63683], [-3.48249, 57.63697], [-3.48152, 57.63702], [-3.47818, 57.63718], [-3.47628, 57.63724], [-3.47448, 57.63726]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068424", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.47448, 57.63726], [-3.4687, 57.63734], [-3.46268, 57.63743], [-3.45931, 57.63748], [-3.44934, 57.63761], [-3.44775, 57.63766], [-3.44618, 57.63774], [-3.44456, 57.63784], [-3.44217, 57.63805], [-3.44012, 57.63826], [-3.43824, 57.63851], [-3.4364, 57.63879], [-3.43121, 57.63972], [-3.42631, 57.64061], [-3.42294, 57.6412], [-3.42036, 57.64167], [-3.41857, 57.64196], [-3.4172, 57.64215], [-3.41543, 57.64235], [-3.41401, 57.64247], [-3.41206, 57.64261], [-3.41008, 57.64269]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068484", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.49136, 57.31854], [-2.49243, 57.31876], [-2.49411, 57.31923], [-2.49515, 57.31951], [-2.49624, 57.31974], [-2.49733, 57.31992], [-2.49864, 57.32006], [-2.49965, 57.32012], [-2.50074, 57.32014], [-2.5018, 57.32012], [-2.5029, 57.32004], [-2.5039, 57.31992], [-2.50504, 57.31977], [-2.50598, 57.31965], [-2.50671, 57.3196]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068485", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.57754, 57.32589], [-2.57896, 57.32612], [-2.57978, 57.32625], [-2.5812, 57.32655], [-2.58212, 57.32678], [-2.58341, 57.32713], [-2.58492, 57.3276]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068488", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.79923, 57.38667], [-2.79921, 57.38707], [-2.79919, 57.38743], [-2.79912, 57.3878], [-2.79899, 57.38821], [-2.79882, 57.38863], [-2.79863, 57.38901], [-2.79842, 57.38933], [-2.79827, 57.38955], [-2.79747, 57.39068], [-2.79717, 57.39122], [-2.79696, 57.3918], [-2.79682, 57.39237], [-2.79677, 57.39288], [-2.79678, 57.39332], [-2.79683, 57.39375], [-2.79691, 57.39474], [-2.79689, 57.39522], [-2.79646, 57.39994], [-2.79639, 57.4007], [-2.79637, 57.40122], [-2.79643, 57.40185], [-2.7965, 57.40257], [-2.79664, 57.40297], [-2.79687, 57.40351], [-2.79718, 57.40421], [-2.79738, 57.40471], [-2.79754, 57.40522], [-2.79763, 57.40581], [-2.79764, 57.40624], [-2.79762, 57.40673], [-2.79752, 57.40714], [-2.79727, 57.40786], [-2.79701, 57.40833], [-2.79677, 57.40869], [-2.79647, 57.40908], [-2.79608, 57.40952], [-2.79579, 57.40979], [-2.79527, 57.41023], [-2.79488, 57.41059], [-2.79453, 57.41095], [-2.79418, 57.41138], [-2.79386, 57.41184], [-2.79361, 57.4123], [-2.79346, 57.41267], [-2.79329, 57.41315], [-2.79323, 57.41363], [-2.79321, 57.41417], [-2.79317, 57.41461], [-2.79305, 57.41512], [-2.79289, 57.41556], [-2.79238, 57.41694], [-2.79221, 57.41743], [-2.79214, 57.41785], [-2.79212, 57.41824], [-2.79212, 57.41866], [-2.79218, 57.41909]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068489", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.79865, 57.43038], [-2.79847, 57.43088], [-2.7983, 57.43123], [-2.79805, 57.43166], [-2.79786, 57.43194], [-2.79751, 57.43238], [-2.79719, 57.43269], [-2.79679, 57.43308], [-2.79643, 57.43337], [-2.79592, 57.43373], [-2.7955, 57.43403], [-2.79493, 57.43435], [-2.79423, 57.4347], [-2.79331, 57.43509], [-2.79211, 57.43559], [-2.78948, 57.43666], [-2.78796, 57.43728], [-2.78637, 57.43797], [-2.78531, 57.4385], [-2.7846, 57.4389], [-2.78326, 57.43969], [-2.78205, 57.44044], [-2.78117, 57.44098]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4068490", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.7605, 57.46628], [-2.76003, 57.46702], [-2.75974, 57.4676], [-2.75959, 57.46806], [-2.75947, 57.46863], [-2.75944, 57.46924], [-2.75944, 57.46946], [-2.75946, 57.46978], [-2.75951, 57.47063], [-2.75964, 57.4726], [-2.7598, 57.47499], [-2.75997, 57.47758], [-2.76017, 57.48019], [-2.76021, 57.48093], [-2.76029, 57.48146], [-2.76043, 57.48192], [-2.76063, 57.4824], [-2.76095, 57.48293], [-2.76127, 57.48336], [-2.76169, 57.48383], [-2.76211, 57.48419]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4073682", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.20844, 51.90415], [-0.2087, 51.90468]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4073731", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.1877, 51.46097], [-0.18798, 51.46092], [-0.18822, 51.46089]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4073927", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.23865, 55.94093], [-3.24009, 55.94062], [-3.24184, 55.94022], [-3.24289, 55.93998], [-3.24394, 55.93975], [-3.24507, 55.93949]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4073947", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.30606, 55.92776], [-3.30687, 55.92767], [-3.31336, 55.92695]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4073953", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.27496, 55.93291], [-3.27565, 55.93278], [-3.27604, 55.9327], [-3.27651, 55.93263], [-3.27703, 55.93257], [-3.27766, 55.93253], [-3.27824, 55.93251], [-3.27885, 55.9325], [-3.27963, 55.93253], [-3.28033, 55.93259], [-3.28078, 55.93265], [-3.28123, 55.93271], [-3.2818, 55.93281], [-3.28238, 55.93292]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074160", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.37694, 55.98086], [-3.37687, 55.98075], [-3.37681, 55.98064], [-3.37674, 55.98047], [-3.3767, 55.98033], [-3.37668, 55.98021], [-3.37666, 55.98002]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074164", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.39311, 56.00997], [-3.38329, 55.98945]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4074183", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.39991, 55.93406], [-3.39784, 55.93426]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074346", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.46893, 55.96902], [-3.46812, 55.96879], [-3.46676, 55.96844], [-3.46498, 55.96806], [-3.46405, 55.9679], [-3.46315, 55.96774], [-3.45677, 55.96666]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4074395", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.24547, 55.9394], [-3.2452, 55.93945], [-3.24506, 55.93948]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074396", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.23721, 55.93674], [-3.23722, 55.93667], [-3.23728, 55.93604], [-3.23728, 55.9358], [-3.23728, 55.93546], [-3.23725, 55.93513], [-3.23717, 55.93481], [-3.23706, 55.93443], [-3.23685, 55.93398], [-3.23657, 55.93361], [-3.2364, 55.93337], [-3.2362, 55.93313], [-3.23579, 55.93276], [-3.23552, 55.93252], [-3.23512, 55.93223], [-3.23474, 55.93196], [-3.23363, 55.93129], [-3.23254, 55.93062], [-3.23068, 55.92944], [-3.2299, 55.92897], [-3.22962, 55.9288]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074401", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.24114, 55.92744], [-3.24061, 55.92751], [-3.24015, 55.92758], [-3.23965, 55.92768], [-3.23925, 55.92779], [-3.23886, 55.92793], [-3.23847, 55.92809], [-3.23769, 55.92842], [-3.23629, 55.92904], [-3.23575, 55.92926], [-3.23543, 55.92936], [-3.23497, 55.92948], [-3.23448, 55.92957], [-3.23389, 55.92964], [-3.23337, 55.92967], [-3.23286, 55.92966], [-3.23231, 55.92963], [-3.23184, 55.92957], [-3.23137, 55.92947], [-3.23078, 55.92932], [-3.23022, 55.92909], [-3.23007, 55.92903]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4074413", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.25044, 55.93829], [-3.25393, 55.93751], [-3.2574, 55.93674], [-3.26486, 55.93506], [-3.26666, 55.93466], [-3.27053, 55.93379]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074480", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16047, 55.92874], [-3.16023, 55.92871], [-3.16, 55.92869], [-3.1597, 55.92867], [-3.15954, 55.92867], [-3.15932, 55.92866], [-3.15911, 55.92866], [-3.15882, 55.92867], [-3.15852, 55.92868], [-3.15825, 55.9287], [-3.15792, 55.92873], [-3.15771, 55.92876], [-3.15731, 55.92881], [-3.15687, 55.92887], [-3.1562, 55.92896], [-3.15553, 55.92905], [-3.15485, 55.92914], [-3.15394, 55.92926], [-3.1534, 55.92934], [-3.15291, 55.92941], [-3.15279, 55.92943], [-3.15217, 55.92951], [-3.15185, 55.92956], [-3.15162, 55.9296], [-3.15142, 55.92964], [-3.15101, 55.92972], [-3.15081, 55.92977], [-3.15063, 55.92981], [-3.15044, 55.92986], [-3.15025, 55.92991], [-3.1498, 55.93005], [-3.14957, 55.93013], [-3.14936, 55.93021], [-3.14914, 55.93029], [-3.14897, 55.93035], [-3.14879, 55.93043], [-3.14859, 55.93052], [-3.14838, 55.93061], [-3.14827, 55.93067], [-3.14816, 55.93073], [-3.14778, 55.93093], [-3.14758, 55.93104], [-3.14719, 55.93127], [-3.14693, 55.93146], [-3.14654, 55.93176], [-3.14613, 55.93214], [-3.14532, 55.93288], [-3.14499, 55.93318], [-3.14423, 55.93386], [-3.14347, 55.93454], [-3.14297, 55.93492], [-3.1426, 55.93515], [-3.14208, 55.93539], [-3.14152, 55.93562], [-3.14111, 55.93575], [-3.14091, 55.93582], [-3.14072, 55.93588], [-3.1401, 55.93602], [-3.13946, 55.93613], [-3.13875, 55.93621], [-3.13817, 55.93625], [-3.13767, 55.93626], [-3.1372, 55.93626], [-3.13654, 55.93626], [-3.13587, 55.93626], [-3.13514, 55.93626], [-3.1344, 55.93626], [-3.13342, 55.93626], [-3.13289, 55.93627], [-3.13234, 55.93627], [-3.13199, 55.93626], [-3.13165, 55.93626], [-3.13093, 55.93624], [-3.13039, 55.93623], [-3.12987, 55.93623], [-3.12909, 55.93624], [-3.12849, 55.93628], [-3.12758, 55.93636], [-3.12709, 55.93641], [-3.12611, 55.93654], [-3.12541, 55.93661], [-3.12478, 55.93667], [-3.1244, 55.93668], [-3.12375, 55.93671], [-3.12251, 55.93676], [-3.12102, 55.93681], [-3.11978, 55.93685], [-3.11901, 55.93688], [-3.11824, 55.93691], [-3.11675, 55.93696], [-3.11525, 55.93701]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074491", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.11487, 55.93703], [-3.1097, 55.93721], [-3.10869, 55.93724]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074516", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.10869, 55.93724], [-3.10775, 55.93722], [-3.10699, 55.93719], [-3.10635, 55.93713], [-3.10544, 55.937], [-3.10316, 55.93665], [-3.10009, 55.93615], [-3.09911, 55.936], [-3.09552, 55.9354], [-3.09485, 55.93529], [-3.09442, 55.93521], [-3.09406, 55.93514], [-3.09382, 55.93508], [-3.09361, 55.93503], [-3.09346, 55.93499], [-3.09328, 55.93494], [-3.0931, 55.93488], [-3.0929, 55.93479]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4074520", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.12001, 55.95093], [-3.11868, 55.95032]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074709", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.03606, 51.42232], [0.04219, 51.41857]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074710", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.12235, 51.34756], [0.12054, 51.34828], [0.11601, 51.35051]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074711", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.04219, 51.41857], [0.04239, 51.41845], [0.04263, 51.41829], [0.04348, 51.4177], [0.04466, 51.41682], [0.04542, 51.41621]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074712", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.14317, 51.34033], [0.14293, 51.34059], [0.14175, 51.34162], [0.14092, 51.34221], [0.14006, 51.34275], [0.1391, 51.34327], [0.13814, 51.34376], [0.13707, 51.34419], [0.13601, 51.34456], [0.13458, 51.34496], [0.13384, 51.34514], [0.13302, 51.34531], [0.13087, 51.34574], [0.12781, 51.34632], [0.1256, 51.34673], [0.12464, 51.34694], [0.12344, 51.34725], [0.12235, 51.34756]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074715", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.05984, 51.40355], [0.06091, 51.4027]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074717", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.06545, 51.39811], [0.06581, 51.39794], [0.06615, 51.39777], [0.06644, 51.3976], [0.06668, 51.39745], [0.06691, 51.3973], [0.06712, 51.39714], [0.06727, 51.39703], [0.06744, 51.39688], [0.06771, 51.39664], [0.06796, 51.39639], [0.06818, 51.39613], [0.06834, 51.39592], [0.06848, 51.39571], [0.06874, 51.39529], [0.06924, 51.39445], [0.06952, 51.39402], [0.0698, 51.39361], [0.07011, 51.3932], [0.07043, 51.39278], [0.07081, 51.39233]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4074872", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01378, 51.42298], [-0.01309, 51.4225], [-0.01238, 51.42202], [-0.01198, 51.42174], [-0.01146, 51.42138], [-0.01098, 51.42103], [-0.01054, 51.42066], [-0.01029, 51.42043], [-0.01008, 51.42022], [-0.0099, 51.42002], [-0.00969, 51.41977], [-0.00951, 51.41953], [-0.00937, 51.41933], [-0.0092, 51.41905], [-0.00906, 51.41879], [-0.00891, 51.41848], [-0.00881, 51.41823], [-0.0087, 51.41791], [-0.00857, 51.41747], [-0.00848, 51.41716], [-0.00838, 51.41679], [-0.00806, 51.41566], [-0.00791, 51.41513], [-0.00775, 51.41466], [-0.00761, 51.41432], [-0.0074, 51.41392], [-0.00716, 51.41353], [-0.007, 51.41328], [-0.00686, 51.41305], [-0.00668, 51.41276], [-0.00643, 51.41236]]}}, {"type": "Feature", "properties": {"electrified": "rail", "osm_id": "4075652", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.02391, 51.42215], [0.02423, 51.42265], [0.02451, 51.42309], [0.02478, 51.42358], [0.025, 51.42395], [0.02522, 51.42433], [0.02547, 51.42484], [0.02558, 51.42513], [0.02565, 51.42541], [0.02571, 51.42577], [0.02572, 51.42612], [0.02571, 51.4264], [0.0257, 51.42685], [0.02567, 51.42717], [0.02559, 51.42748], [0.02553, 51.42767], [0.02545, 51.42786], [0.02536, 51.42805], [0.02525, 51.42822], [0.0251, 51.42843], [0.02491, 51.42864], [0.02475, 51.42877], [0.02349, 51.42953], [0.02277, 51.42996], [0.02248, 51.43015], [0.02223, 51.43034], [0.02203, 51.4305], [0.02169, 51.43079]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4075841", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.07074, 51.60295], [-0.07076, 51.60306]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4075842", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.07333, 51.56547], [-0.07354, 51.5656], [-0.07388, 51.56582], [-0.0743, 51.5661], [-0.07458, 51.56628], [-0.07499, 51.56654], [-0.07534, 51.56676], [-0.07572, 51.567], [-0.07604, 51.56721], [-0.07637, 51.56744], [-0.07666, 51.56768], [-0.07685, 51.56784], [-0.07703, 51.568], [-0.07723, 51.5682], [-0.07735, 51.56832], [-0.07745, 51.56844], [-0.07766, 51.5687], [-0.07785, 51.56898], [-0.07791, 51.56908], [-0.07797, 51.56919], [-0.07803, 51.5693], [-0.07815, 51.56954], [-0.07824, 51.56978], [-0.07832, 51.57004], [-0.07838, 51.57026], [-0.07842, 51.57044], [-0.07846, 51.57079], [-0.07846, 51.57111], [-0.07845, 51.57136], [-0.07841, 51.57162], [-0.07838, 51.57179], [-0.07833, 51.57196], [-0.07829, 51.57212], [-0.07823, 51.57229], [-0.07816, 51.57245], [-0.0781, 51.57258], [-0.078, 51.57277], [-0.07792, 51.57293], [-0.07779, 51.57312], [-0.07757, 51.57342], [-0.07739, 51.57363], [-0.0772, 51.57384], [-0.07704, 51.57404], [-0.07688, 51.57421], [-0.07643, 51.57472], [-0.0762, 51.57498], [-0.07599, 51.57522], [-0.07584, 51.57541], [-0.07574, 51.57556], [-0.07562, 51.57575], [-0.07553, 51.57593], [-0.07543, 51.57614], [-0.07537, 51.5763], [-0.07531, 51.57648], [-0.07526, 51.57666], [-0.07523, 51.57684], [-0.07521, 51.57707], [-0.0752, 51.57722], [-0.0752, 51.57738]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4075843", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.05541, 51.59872], [-0.05616, 51.59708], [-0.05727, 51.59462], [-0.05807, 51.59307], [-0.05907, 51.59094], [-0.05925, 51.59049]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4075847", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.04792, 51.57179], [-0.04799, 51.57183]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4075848", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.68527, 53.2931], [-3.68456, 53.29306], [-3.68377, 53.29299], [-3.68298, 53.29292]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4075868", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.75556, 53.29855], [-3.74819, 53.3], [-3.74712, 53.3002], [-3.74639, 53.30031], [-3.74558, 53.30041], [-3.74488, 53.30048], [-3.74419, 53.30053], [-3.74333, 53.30057], [-3.74232, 53.30059], [-3.74134, 53.30057], [-3.74054, 53.30054], [-3.73973, 53.30048], [-3.73896, 53.30041], [-3.73816, 53.30033], [-3.73736, 53.30021], [-3.73655, 53.30007], [-3.73581, 53.29994], [-3.73501, 53.29978], [-3.73386, 53.29953], [-3.73285, 53.29929], [-3.73184, 53.29903]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4075873", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.76402, 53.29545], [-3.76335, 53.29583], [-3.76261, 53.29621], [-3.76201, 53.2965], [-3.76132, 53.29682]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4075874", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.76402, 53.29545], [-3.76467, 53.29502], [-3.76531, 53.29456], [-3.7659, 53.2941], [-3.76646, 53.29363], [-3.767, 53.29313], [-3.7677, 53.29248], [-3.76885, 53.2914], [-3.7694, 53.29091], [-3.76994, 53.29045], [-3.77046, 53.29003], [-3.77265, 53.28826], [-3.77334, 53.28773], [-3.77423, 53.28712], [-3.77517, 53.28652], [-3.7761, 53.28601], [-3.7771, 53.28548]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4075875", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.78239, 53.28346], [-3.78352, 53.28314], [-3.78463, 53.28286], [-3.78563, 53.28263], [-3.78655, 53.28243], [-3.78745, 53.28227], [-3.78828, 53.28214], [-3.78928, 53.28199], [-3.79023, 53.28188], [-3.79129, 53.28179], [-3.7924, 53.28172]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4076197", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.63435, 53.86261], [-1.63425, 53.86218], [-1.6341, 53.86169], [-1.63398, 53.86137], [-1.63381, 53.86101], [-1.63368, 53.86076], [-1.63352, 53.86051], [-1.63319, 53.86004], [-1.63267, 53.85932], [-1.63236, 53.85888], [-1.63202, 53.85842], [-1.63137, 53.85752], [-1.63117, 53.85723], [-1.63098, 53.85696], [-1.63081, 53.85668], [-1.63066, 53.8564], [-1.63053, 53.85617], [-1.63043, 53.85594], [-1.63033, 53.85572], [-1.63025, 53.85548], [-1.63019, 53.85528], [-1.63012, 53.85505], [-1.63003, 53.85464], [-1.62993, 53.85407], [-1.62991, 53.85351], [-1.62991, 53.85315], [-1.62995, 53.85276], [-1.63006, 53.85202], [-1.63024, 53.85132], [-1.63043, 53.85062], [-1.63051, 53.85024], [-1.63055, 53.84984], [-1.63057, 53.84946], [-1.63055, 53.84905], [-1.63051, 53.84879], [-1.63046, 53.84852], [-1.6304, 53.8483], [-1.63031, 53.84803], [-1.63019, 53.84776], [-1.63006, 53.84749], [-1.62987, 53.84719], [-1.62958, 53.84675], [-1.62916, 53.84624], [-1.62781, 53.84506], [-1.62743, 53.8448], [-1.62694, 53.84452], [-1.62596, 53.84399], [-1.62579, 53.84391], [-1.62383, 53.84302]]}}, {"type": "Feature", "properties": {"osm_id": "4076198", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.63435, 53.86261], [-1.6346, 53.86413], [-1.63463, 53.86602], [-1.63441, 53.86763], [-1.63373, 53.86985], [-1.63279, 53.87138], [-1.63121, 53.873], [-1.62987, 53.87416], [-1.62778, 53.87596], [-1.62498, 53.87835], [-1.62249, 53.88045], [-1.61904, 53.88327], [-1.61681, 53.88525], [-1.6145, 53.88729], [-1.61341, 53.8883], [-1.61279, 53.88899], [-1.61255, 53.88932], [-1.61228, 53.88977]]}}, {"type": "Feature", "properties": {"osm_id": "4076213", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53728, 53.99583], [-1.53722, 53.99598], [-1.53717, 53.99609], [-1.53696, 53.99647], [-1.53683, 53.99671], [-1.53663, 53.99701], [-1.53642, 53.99729], [-1.53615, 53.9976], [-1.53588, 53.99788], [-1.53561, 53.99814], [-1.53533, 53.99839], [-1.53493, 53.9987], [-1.53449, 53.99901], [-1.53423, 53.99919], [-1.53395, 53.99936], [-1.53319, 53.99978], [-1.5323, 54.00026], [-1.52994, 54.00152], [-1.52874, 54.00218], [-1.52751, 54.00284], [-1.52686, 54.0032], [-1.52628, 54.0035], [-1.52592, 54.00367], [-1.52561, 54.00381], [-1.5252, 54.00398], [-1.5248, 54.00413], [-1.52458, 54.0042], [-1.5243, 54.00429], [-1.52384, 54.00442], [-1.52336, 54.00453], [-1.52285, 54.00464], [-1.52222, 54.00476], [-1.52182, 54.00481], [-1.52144, 54.00486], [-1.52098, 54.0049], [-1.52037, 54.00495], [-1.51982, 54.00499], [-1.51929, 54.00502], [-1.51854, 54.00505], [-1.51778, 54.00508], [-1.51711, 54.00509], [-1.51635, 54.00508], [-1.51558, 54.00507], [-1.51508, 54.00504], [-1.51428, 54.00499], [-1.51385, 54.00495], [-1.51344, 54.00491], [-1.51302, 54.00486], [-1.51265, 54.00481], [-1.51231, 54.00475], [-1.51179, 54.00466], [-1.51134, 54.00457], [-1.51086, 54.00447], [-1.51022, 54.00433]]}}, {"type": "Feature", "properties": {"osm_id": "4076214", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.58291, 53.91464], [-1.5823, 53.91542]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4076368", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0917, 51.50615], [-0.09167, 51.50612], [-0.09149, 51.50601], [-0.0913, 51.50591], [-0.09111, 51.50584], [-0.09091, 51.50577], [-0.09077, 51.50574], [-0.09063, 51.50571], [-0.09052, 51.50569], [-0.09036, 51.50567], [-0.09016, 51.50565], [-0.08998, 51.50565], [-0.08984, 51.50565], [-0.08967, 51.50565], [-0.08937, 51.50568]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4076559", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.06676, 51.55556], [-0.06695, 51.55591], [-0.06709, 51.55618], [-0.06724, 51.55645], [-0.06743, 51.5568], [-0.06759, 51.55708], [-0.0678, 51.55747], [-0.06802, 51.55788], [-0.06822, 51.55824], [-0.06868, 51.55908], [-0.06892, 51.55952], [-0.06917, 51.55996], [-0.06931, 51.56022], [-0.06942, 51.56043], [-0.06973, 51.56098], [-0.0699, 51.5613], [-0.07002, 51.56151], [-0.07022, 51.56189], [-0.07037, 51.56217], [-0.07044, 51.56231], [-0.0708, 51.56296], [-0.071, 51.56334], [-0.07115, 51.56358], [-0.07134, 51.56382], [-0.07159, 51.5641], [-0.07185, 51.56437], [-0.07206, 51.56457], [-0.0724, 51.56484], [-0.0726, 51.56499], [-0.07278, 51.56511]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4076612", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.23941, 51.55905], [0.23966, 51.55906], [0.24016, 51.5591], [0.24086, 51.55915], [0.24148, 51.55917], [0.24213, 51.55918], [0.24265, 51.55918], [0.24318, 51.55917], [0.24422, 51.55914], [0.24632, 51.55907], [0.24864, 51.559], [0.25226, 51.55888], [0.25305, 51.55887], [0.25352, 51.55886], [0.254, 51.55886], [0.25451, 51.55886], [0.25526, 51.55888], [0.25602, 51.5589]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4076613", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.25763, 51.55896], [0.25803, 51.55897], [0.25843, 51.55897], [0.25868, 51.55896], [0.25896, 51.55895], [0.25934, 51.55892], [0.25971, 51.55888], [0.2601, 51.55883], [0.26068, 51.55875], [0.26127, 51.55864], [0.26207, 51.55847], [0.26288, 51.55828], [0.26359, 51.55808], [0.2643, 51.55786], [0.26503, 51.5576], [0.26574, 51.55732]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077834", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.17758, 51.4725], [-0.18061, 51.47362]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077838", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.18061, 51.47362], [-0.18083, 51.4737], [-0.18106, 51.47381], [-0.18136, 51.47397], [-0.18157, 51.47408], [-0.18177, 51.4742]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077839", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.18535, 51.47837], [-0.18559, 51.47862], [-0.18589, 51.47894], [-0.18614, 51.4792], [-0.1865, 51.47952], [-0.18683, 51.4798], [-0.18746, 51.48019], [-0.18813, 51.48066], [-0.18844, 51.48089], [-0.18882, 51.48121], [-0.18949, 51.48178], [-0.19017, 51.48236]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077843", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.19017, 51.48236], [-0.19072, 51.48285], [-0.19126, 51.48333], [-0.19178, 51.48384], [-0.19222, 51.48431], [-0.1925, 51.48461], [-0.1928, 51.48491], [-0.19307, 51.4852], [-0.19337, 51.48548], [-0.19371, 51.48578], [-0.19408, 51.48607], [-0.19438, 51.4863], [-0.19465, 51.4865], [-0.19484, 51.48662], [-0.19491, 51.48667], [-0.19506, 51.48676], [-0.1952, 51.48684], [-0.19559, 51.48706], [-0.19571, 51.48712], [-0.19586, 51.4872], [-0.19614, 51.48733], [-0.19645, 51.48747], [-0.19687, 51.48763], [-0.19752, 51.4879]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077905", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14945, 51.4732], [-0.1497, 51.47311], [-0.14991, 51.47303], [-0.15008, 51.47295], [-0.15033, 51.47281], [-0.15061, 51.47263], [-0.15096, 51.47239], [-0.15107, 51.4723], [-0.15151, 51.47197], [-0.15179, 51.47179], [-0.15202, 51.47165], [-0.1526, 51.47131], [-0.15334, 51.47089]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077906", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15365, 51.4717], [-0.1532, 51.47187], [-0.15277, 51.47204], [-0.15159, 51.47246], [-0.15049, 51.47289], [-0.14998, 51.47307], [-0.14973, 51.47315], [-0.14948, 51.47323]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077907", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14681, 51.47383], [-0.14613, 51.47399], [-0.14528, 51.47418], [-0.14475, 51.47436], [-0.14424, 51.4746], [-0.14377, 51.47488], [-0.14347, 51.47514], [-0.14323, 51.47542], [-0.14304, 51.47571], [-0.14294, 51.47594], [-0.14287, 51.47613], [-0.1428, 51.47641]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077908", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14278, 51.4731], [-0.1431, 51.47324], [-0.14339, 51.47335], [-0.1438, 51.47348], [-0.1442, 51.47359], [-0.14461, 51.47366], [-0.145, 51.47371], [-0.14536, 51.47374], [-0.14572, 51.47375], [-0.14608, 51.47375]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077909", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14013, 51.47164], [-0.14038, 51.4719], [-0.14073, 51.47227]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077915", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14073, 51.47227], [-0.14127, 51.47279], [-0.14172, 51.47334], [-0.14194, 51.47367], [-0.14215, 51.47404], [-0.14241, 51.47461], [-0.14251, 51.47492], [-0.14255, 51.4751], [-0.14261, 51.47537], [-0.14267, 51.47569], [-0.14269, 51.47602], [-0.14271, 51.47634], [-0.14269, 51.47681], [-0.14269, 51.47691], [-0.14272, 51.47711], [-0.14286, 51.47747], [-0.14298, 51.47768], [-0.14312, 51.47785]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077961", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14626, 51.47563], [-0.14654, 51.47589], [-0.14672, 51.4761]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077963", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14655, 51.48075], [-0.14694, 51.4813], [-0.14705, 51.4815], [-0.14717, 51.48175], [-0.14725, 51.48195]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4077983", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11465, 51.46339], [-0.11437, 51.46334], [-0.11402, 51.46327], [-0.11365, 51.46321], [-0.11326, 51.46317], [-0.11282, 51.46315], [-0.11236, 51.46313], [-0.11191, 51.46314], [-0.11161, 51.46315], [-0.11134, 51.46317], [-0.11107, 51.46319], [-0.11082, 51.46323], [-0.11048, 51.46329], [-0.11004, 51.46337]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078001", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0855, 51.46921], [-0.08469, 51.46937], [-0.08429, 51.46942], [-0.08379, 51.46949], [-0.08337, 51.46953], [-0.08296, 51.46957], [-0.08262, 51.4696], [-0.08232, 51.46962], [-0.08207, 51.46962], [-0.08179, 51.46962], [-0.08131, 51.46963], [-0.08091, 51.46962], [-0.08059, 51.46961], [-0.08028, 51.46959], [-0.07998, 51.46956], [-0.07955, 51.46952], [-0.07915, 51.46947], [-0.0785, 51.46938], [-0.07808, 51.46931], [-0.07763, 51.46923], [-0.07723, 51.46918], [-0.07669, 51.46911], [-0.07611, 51.46907], [-0.07563, 51.46906], [-0.07493, 51.46904], [-0.07409, 51.46903], [-0.07377, 51.46906]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078007", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.06701, 51.47062], [-0.06675, 51.47064], [-0.0664, 51.47063], [-0.066, 51.4706], [-0.06552, 51.47055], [-0.06504, 51.47046]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078022", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.05454, 51.48813], [-0.05473, 51.48836], [-0.05509, 51.48873], [-0.05529, 51.48892], [-0.05553, 51.48915], [-0.05567, 51.48927], [-0.05585, 51.48942]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4078028", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.2044, 51.43878], [-0.20454, 51.43898]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4078033", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19816, 51.42952], [-0.19796, 51.43016], [-0.19787, 51.43087], [-0.19787, 51.43148], [-0.198, 51.43221], [-0.19816, 51.43267], [-0.19841, 51.43312], [-0.19879, 51.43363]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078042", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.20213, 51.42351], [-0.20083, 51.42403], [-0.20026, 51.42423], [-0.19966, 51.42443], [-0.19913, 51.42459], [-0.19858, 51.42474], [-0.19785, 51.42492], [-0.1971, 51.42507], [-0.19633, 51.4252], [-0.19555, 51.42533], [-0.1947, 51.42543], [-0.194, 51.4255], [-0.19328, 51.42555], [-0.19274, 51.42557], [-0.1922, 51.42559], [-0.19167, 51.42559], [-0.19114, 51.42558], [-0.19056, 51.42555], [-0.19017, 51.42553], [-0.18982, 51.4255], [-0.18904, 51.42545], [-0.18785, 51.42531], [-0.18749, 51.42527], [-0.18689, 51.4252], [-0.18596, 51.42509], [-0.18502, 51.42498]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078044", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.17331, 51.42284], [-0.17358, 51.42294], [-0.1738, 51.42302], [-0.17416, 51.42314], [-0.17462, 51.4233], [-0.17522, 51.42351], [-0.17566, 51.42363], [-0.17612, 51.42376], [-0.17664, 51.42389], [-0.17712, 51.42398], [-0.17766, 51.42409], [-0.1781, 51.42416], [-0.17852, 51.42422], [-0.17915, 51.42429], [-0.17982, 51.42436], [-0.18111, 51.42451], [-0.18171, 51.42458]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078045", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.17331, 51.42284], [-0.17295, 51.42268], [-0.17264, 51.42254], [-0.17214, 51.42231], [-0.17183, 51.42217], [-0.1715, 51.42201], [-0.17096, 51.42176], [-0.1706, 51.4216], [-0.1705, 51.42156], [-0.16972, 51.42126], [-0.16932, 51.42113], [-0.16887, 51.42099], [-0.16836, 51.42083], [-0.16785, 51.42068], [-0.16718, 51.42052], [-0.16695, 51.42047], [-0.16663, 51.4204], [-0.16621, 51.42032], [-0.16589, 51.42026], [-0.16581, 51.42025], [-0.16535, 51.42017], [-0.16497, 51.42012], [-0.16456, 51.42007], [-0.16395, 51.42], [-0.16337, 51.41995], [-0.16253, 51.41991]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078046", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.16253, 51.41991], [-0.1619, 51.41988], [-0.16119, 51.41985], [-0.16053, 51.41979], [-0.16021, 51.41976], [-0.15973, 51.41969], [-0.1593, 51.41962], [-0.15898, 51.41955], [-0.15848, 51.41945], [-0.15795, 51.41933], [-0.15747, 51.41924], [-0.15711, 51.41917], [-0.15649, 51.41903], [-0.15596, 51.41893], [-0.15522, 51.41878], [-0.15347, 51.41837], [-0.15253, 51.41817], [-0.1516, 51.41798], [-0.15064, 51.41778]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078048", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15018, 51.4177], [-0.14961, 51.41761], [-0.14932, 51.41757], [-0.149, 51.41754], [-0.14869, 51.41751], [-0.14836, 51.41748], [-0.14808, 51.41747], [-0.14771, 51.41746], [-0.14746, 51.41745], [-0.14723, 51.41745], [-0.14695, 51.41745], [-0.14672, 51.41746], [-0.14633, 51.41748], [-0.14603, 51.4175], [-0.1457, 51.41754], [-0.14539, 51.41757], [-0.14508, 51.41762], [-0.14453, 51.41772], [-0.14417, 51.41779], [-0.14388, 51.41785], [-0.14358, 51.41793], [-0.14329, 51.41801], [-0.14298, 51.4181], [-0.14269, 51.4182], [-0.1421, 51.41842], [-0.14152, 51.41866], [-0.14117, 51.41882], [-0.14082, 51.41899], [-0.14056, 51.41913], [-0.1403, 51.41929]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078049", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13683, 51.41972], [-0.13702, 51.42001], [-0.13708, 51.42016], [-0.13712, 51.42029], [-0.13715, 51.42045], [-0.13716, 51.42059], [-0.13715, 51.42073], [-0.13713, 51.42087], [-0.13708, 51.42103], [-0.13705, 51.42114], [-0.137, 51.42127], [-0.13694, 51.42139], [-0.13682, 51.4216], [-0.13662, 51.42187], [-0.13642, 51.42213], [-0.13615, 51.42246], [-0.13588, 51.42276], [-0.13546, 51.42319], [-0.13501, 51.4236], [-0.13466, 51.4239], [-0.13439, 51.42412], [-0.13412, 51.42436], [-0.1338, 51.42462]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078050", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13878, 51.42058], [-0.13864, 51.42078], [-0.13856, 51.42095], [-0.13848, 51.42118], [-0.13842, 51.42136], [-0.13841, 51.42159], [-0.1384, 51.42176], [-0.13843, 51.42196], [-0.13847, 51.42215], [-0.13853, 51.42235], [-0.13869, 51.4228], [-0.13885, 51.42338], [-0.13892, 51.42391]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078054", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13896, 51.42026], [-0.13877, 51.42041]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078061", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14646, 51.44191], [-0.146, 51.44181], [-0.14535, 51.44168], [-0.14492, 51.4416], [-0.14347, 51.44133]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078062", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.14327, 51.44129], [-0.14235, 51.44111], [-0.14089, 51.44082], [-0.14003, 51.44066], [-0.13834, 51.44034], [-0.13764, 51.44021]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078063", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.12637, 51.43808], [-0.12565, 51.43794], [-0.1245, 51.43771], [-0.12403, 51.43762], [-0.1235, 51.43753], [-0.12312, 51.43746], [-0.12278, 51.43741], [-0.12236, 51.43738]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078066", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10644, 51.43857], [-0.10668, 51.43839], [-0.10687, 51.43824], [-0.10712, 51.43801], [-0.1073, 51.43783], [-0.10741, 51.43769], [-0.10753, 51.4375], [-0.10763, 51.43731], [-0.10771, 51.43703], [-0.10777, 51.43677], [-0.10776, 51.43659], [-0.10772, 51.43629], [-0.10766, 51.43612], [-0.1076, 51.43597], [-0.10749, 51.43575], [-0.10738, 51.43559], [-0.10726, 51.43544], [-0.10704, 51.43514], [-0.10689, 51.43489], [-0.10665, 51.43445]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078070", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11528, 51.43686], [-0.11434, 51.43685], [-0.11379, 51.43686], [-0.11266, 51.43694], [-0.11214, 51.43698], [-0.11144, 51.43707]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078071", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11266, 51.43694], [-0.11221, 51.43695], [-0.11158, 51.43693]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078072", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10665, 51.43445], [-0.10644, 51.43417], [-0.10611, 51.4337], [-0.10586, 51.43337], [-0.1056, 51.43306], [-0.1053, 51.43276], [-0.10514, 51.4326], [-0.10497, 51.43246], [-0.10476, 51.43228], [-0.10461, 51.43218], [-0.10441, 51.43206], [-0.10421, 51.43195], [-0.10376, 51.43174], [-0.10349, 51.43163], [-0.10304, 51.43149], [-0.10256, 51.43138]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078075", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0998, 51.43045], [-0.09939, 51.43027], [-0.099, 51.43005], [-0.09827, 51.42963], [-0.09784, 51.42935], [-0.09739, 51.42908], [-0.09687, 51.42874], [-0.09625, 51.42833], [-0.09587, 51.42811]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078076", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08918, 51.4263], [-0.08868, 51.42612], [-0.08768, 51.42575], [-0.087, 51.42551], [-0.08538, 51.42498], [-0.08459, 51.4247], [-0.08397, 51.42449]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078077", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07354, 51.41851], [-0.07337, 51.41841], [-0.0733, 51.41837], [-0.07319, 51.41831], [-0.07308, 51.41825], [-0.07304, 51.41823], [-0.07299, 51.41821]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078080", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.06065, 51.41859], [-0.06007, 51.41894], [-0.05973, 51.41917], [-0.05941, 51.4194], [-0.05913, 51.41963], [-0.05883, 51.41991], [-0.05854, 51.42021], [-0.05826, 51.42052], [-0.05795, 51.42088], [-0.05771, 51.42119], [-0.05748, 51.42151], [-0.05722, 51.42189], [-0.05697, 51.42227], [-0.05678, 51.42259], [-0.05651, 51.4231], [-0.05612, 51.42389], [-0.05555, 51.42496]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078081", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07236, 51.41797], [-0.07223, 51.41792], [-0.07197, 51.41782], [-0.07071, 51.41736], [-0.07045, 51.41727], [-0.0702, 51.41719], [-0.06988, 51.4171], [-0.06944, 51.417], [-0.06914, 51.41694], [-0.06887, 51.41689], [-0.06855, 51.41684]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078083", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.04407, 51.40935], [-0.04459, 51.40914], [-0.04508, 51.40894], [-0.0455, 51.40876], [-0.0464, 51.40832], [-0.04751, 51.4078], [-0.0485, 51.40736], [-0.04947, 51.40689], [-0.05044, 51.40642], [-0.05136, 51.40594], [-0.05233, 51.40547], [-0.05334, 51.40498], [-0.05531, 51.40402]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078086", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07156, 51.407], [-0.0712, 51.40665], [-0.07101, 51.40641], [-0.0709, 51.40623], [-0.0708, 51.40604], [-0.07072, 51.40579], [-0.07068, 51.40561], [-0.07066, 51.40545], [-0.07066, 51.4052], [-0.07067, 51.40497], [-0.07072, 51.40478], [-0.07078, 51.4046], [-0.07092, 51.40429], [-0.07111, 51.40393], [-0.07163, 51.40299], [-0.07193, 51.40242], [-0.07221, 51.40189], [-0.07248, 51.40136]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078140", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01673, 51.45907], [-0.01703, 51.45874], [-0.0173, 51.45844], [-0.0178, 51.45786], [-0.01826, 51.45727], [-0.0187, 51.45668], [-0.01913, 51.45609], [-0.01917, 51.45602], [-0.02011, 51.45467], [-0.02069, 51.45385], [-0.02123, 51.45307], [-0.02165, 51.45245], [-0.02191, 51.45206]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078143", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03527, 51.4158], [-0.03518, 51.41536], [-0.03507, 51.41493], [-0.03498, 51.41462], [-0.03486, 51.41439], [-0.03463, 51.41401], [-0.03448, 51.41384], [-0.03425, 51.41359], [-0.03399, 51.41333], [-0.03366, 51.41306], [-0.03334, 51.41282], [-0.03295, 51.41258], [-0.03275, 51.41246], [-0.03253, 51.41234], [-0.03213, 51.41215], [-0.03171, 51.41197], [-0.0312, 51.41179], [-0.03057, 51.41161], [-0.03044, 51.41158], [-0.03006, 51.41151], [-0.02961, 51.41147], [-0.02924, 51.41143], [-0.02844, 51.41135]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078145", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03989, 51.39338], [-0.03814, 51.39327], [-0.0364, 51.39317], [-0.03575, 51.39313]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078146", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.02773, 51.39109], [-0.02735, 51.39087], [-0.02698, 51.39063], [-0.02663, 51.3904], [-0.0263, 51.39015], [-0.02602, 51.38993], [-0.02584, 51.38978], [-0.02567, 51.38963], [-0.0254, 51.38939], [-0.02511, 51.3891]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078147", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.02164, 51.38593], [-0.02108, 51.38549], [-0.02068, 51.3852], [-0.02042, 51.38501], [-0.01991, 51.38465], [-0.01938, 51.38429], [-0.01886, 51.38394], [-0.01854, 51.38372], [-0.01832, 51.38358]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078148", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01389, 51.38105], [-0.01325, 51.38072], [-0.01272, 51.38042], [-0.01233, 51.38021], [-0.01176, 51.3799], [-0.01125, 51.37963], [-0.01069, 51.37937], [-0.01035, 51.37923], [-0.01, 51.37909], [-0.00942, 51.37887], [-0.00913, 51.37876], [-0.00883, 51.37866], [-0.00862, 51.37859], [-0.00838, 51.37852]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078149", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.00251, 51.37732], [-0.0004, 51.37696], [-0.0001, 51.37692], [0.00027, 51.37687], [0.00096, 51.3768], [0.00128, 51.37677], [0.00159, 51.37674], [0.00193, 51.37673], [0.00225, 51.37671], [0.00354, 51.37669], [0.00392, 51.3767]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4078157", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07981, 51.36921], [-0.08005, 51.36894], [-0.0806, 51.36833], [-0.0813, 51.36756], [-0.08184, 51.36695], [-0.08266, 51.36601]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078172", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.25029, 51.46791], [-0.25107, 51.46793], [-0.25265, 51.46794], [-0.25394, 51.46789], [-0.25417, 51.46788], [-0.25628, 51.46777], [-0.25845, 51.46766], [-0.25984, 51.46762], [-0.26058, 51.46762], [-0.26148, 51.46764], [-0.2623, 51.46767], [-0.26313, 51.46774], [-0.26376, 51.46784], [-0.26437, 51.46791], [-0.26493, 51.46798], [-0.26552, 51.46803]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078173", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.26552, 51.46803], [-0.26603, 51.46805], [-0.26653, 51.46805], [-0.26709, 51.46806], [-0.26743, 51.46805], [-0.2677, 51.46804], [-0.26831, 51.46802], [-0.26877, 51.46798], [-0.2692, 51.46793], [-0.26964, 51.46787], [-0.27035, 51.46777], [-0.27433, 51.46716], [-0.27797, 51.46661]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4078174", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.27797, 51.46661], [-0.28207, 51.46599], [-0.28332, 51.4658], [-0.28428, 51.46564], [-0.2849, 51.46554], [-0.2853, 51.46548], [-0.28642, 51.4653], [-0.28695, 51.46523], [-0.28856, 51.465], [-0.29304, 51.46425], [-0.29689, 51.46359], [-0.29791, 51.46342]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4078199", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.28307, 51.48023], [-0.28375, 51.47935], [-0.28386, 51.47918], [-0.28402, 51.47893], [-0.28422, 51.4786], [-0.28451, 51.47807], [-0.28473, 51.4776], [-0.28484, 51.47737], [-0.28491, 51.47718], [-0.28496, 51.47707], [-0.28505, 51.47683], [-0.28514, 51.47659], [-0.28524, 51.47631], [-0.28545, 51.47551], [-0.28601, 51.47356], [-0.28645, 51.472], [-0.28703, 51.47005], [-0.28714, 51.46962], [-0.28734, 51.46912], [-0.28759, 51.46859], [-0.28789, 51.46813], [-0.28804, 51.46788]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078283", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.02137, 51.38109], [-1.02021, 51.38162], [-1.01915, 51.38215], [-1.01811, 51.38273], [-1.01721, 51.3833], [-1.01621, 51.38402], [-1.01522, 51.38485], [-1.01405, 51.38603], [-1.01293, 51.38724], [-1.01203, 51.38829], [-1.01111, 51.38953], [-1.01035, 51.39068], [-1.00941, 51.39218], [-1.0089, 51.39317], [-1.0084, 51.39422], [-1.00729, 51.39706]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078463", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.71532, 53.67862], [-1.71592, 53.67885], [-1.71649, 53.67913]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078464", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.78097, 53.65352], [-1.78216, 53.65195]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078465", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.71816, 53.67976], [-1.72004, 53.68047], [-1.72131, 53.68096], [-1.72287, 53.68153], [-1.72636, 53.68285]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078485", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.76018, 53.59348], [-1.75709, 53.59363], [-1.75183, 53.5941], [-1.73813, 53.59562]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078486", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.73813, 53.59562], [-1.73707, 53.59574], [-1.73511, 53.59598], [-1.7327, 53.59608], [-1.73224, 53.59607], [-1.73186, 53.59607], [-1.73143, 53.59605], [-1.73109, 53.59603], [-1.73059, 53.59598], [-1.73003, 53.59592], [-1.72949, 53.59584], [-1.729, 53.59576], [-1.72833, 53.59562]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078487", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.67401, 53.58198], [-1.67025, 53.57991], [-1.66806, 53.5787], [-1.66638, 53.5777], [-1.66542, 53.57698]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078971", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.86123, 53.71045], [-0.86427, 53.70918], [-0.86779, 53.70769], [-0.87193, 53.70593], [-0.87425, 53.70495]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078972", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.84431, 53.71323], [-0.83973, 53.71319]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4078973", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.83973, 53.71319], [-0.83826, 53.71317], [-0.83705, 53.71322]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079050", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.98051, 53.60276], [-0.98096, 53.60275], [-0.98167, 53.60273], [-0.98208, 53.60271], [-0.98254, 53.60269], [-0.98291, 53.60266], [-0.98339, 53.60263], [-0.98377, 53.60259], [-0.98421, 53.60254], [-0.9848, 53.60247], [-0.98512, 53.60242], [-0.98543, 53.60238], [-0.98575, 53.60233], [-0.98605, 53.60228], [-0.98673, 53.60215], [-0.98736, 53.60203], [-0.98791, 53.6019], [-0.98845, 53.60177], [-0.98896, 53.60164], [-0.98952, 53.60149], [-0.99003, 53.60133], [-0.99054, 53.60118], [-0.99146, 53.60087], [-0.99282, 53.60037]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079066", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.70318, 53.58574], [-0.70535, 53.58583], [-0.70681, 53.58587], [-0.70827, 53.58589], [-0.71091, 53.58593], [-0.71243, 53.58595], [-0.71395, 53.58593], [-0.71654, 53.58591], [-0.71929, 53.58588], [-0.72071, 53.58586], [-0.72212, 53.58587], [-0.72422, 53.58591], [-0.72616, 53.58596], [-0.72695, 53.58595], [-0.72773, 53.58592], [-0.72878, 53.58587]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079596", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.5612, 53.60366], [-0.56038, 53.60363], [-0.55964, 53.60356], [-0.55887, 53.60346], [-0.5583, 53.60335], [-0.55776, 53.60323], [-0.55724, 53.60309], [-0.55673, 53.60294], [-0.55617, 53.60273], [-0.55562, 53.6025], [-0.5551, 53.60226], [-0.5546, 53.60201], [-0.55282, 53.60105], [-0.55168, 53.60044], [-0.55123, 53.60023], [-0.55082, 53.60004], [-0.55038, 53.59984], [-0.54999, 53.59969], [-0.54955, 53.59954], [-0.54911, 53.59939], [-0.54864, 53.59925], [-0.54814, 53.59912], [-0.5476, 53.59899], [-0.54662, 53.59882], [-0.54624, 53.59877], [-0.54566, 53.5987], [-0.54453, 53.59862], [-0.54363, 53.59864], [-0.5433, 53.59865]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079597", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.52145, 53.601], [-0.52088, 53.60106]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079598", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.51935, 53.60122], [-0.51878, 53.60126], [-0.5182, 53.60128], [-0.5176, 53.60128], [-0.51701, 53.60125], [-0.5164, 53.6012], [-0.51581, 53.60114], [-0.51524, 53.60106], [-0.51464, 53.60096], [-0.51386, 53.60079]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079599", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.46225, 53.58112], [-0.46184, 53.58095], [-0.46145, 53.58078], [-0.46105, 53.58059], [-0.4607, 53.58042], [-0.46022, 53.58018], [-0.45977, 53.57992], [-0.45947, 53.57975], [-0.45659, 53.57804], [-0.45184, 53.57521], [-0.44632, 53.57194], [-0.44377, 53.57043], [-0.44337, 53.5702], [-0.44299, 53.57], [-0.44264, 53.56982], [-0.44192, 53.56945], [-0.44118, 53.56914], [-0.44043, 53.56883], [-0.43969, 53.56858], [-0.43892, 53.56835], [-0.4383, 53.5682], [-0.43767, 53.56805], [-0.43712, 53.56794], [-0.43648, 53.56782], [-0.43582, 53.56772], [-0.43513, 53.56764], [-0.43437, 53.56755], [-0.43359, 53.5675], [-0.43282, 53.56746], [-0.43202, 53.56744], [-0.43129, 53.56744], [-0.43054, 53.56745], [-0.42978, 53.56749], [-0.42903, 53.56756], [-0.42827, 53.56765], [-0.42751, 53.56775], [-0.42666, 53.56788], [-0.42582, 53.56804], [-0.42532, 53.56817], [-0.42481, 53.5683]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079602", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.30471, 53.60833], [-0.30528, 53.6082], [-0.30638, 53.60791], [-0.30753, 53.60758], [-0.30816, 53.60738], [-0.30861, 53.60723], [-0.31026, 53.60665]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079603", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.27917, 53.60799], [-0.27538, 53.60726], [-0.27463, 53.60711], [-0.27212, 53.60662], [-0.27072, 53.60635], [-0.2695, 53.60611], [-0.26893, 53.606], [-0.25162, 53.60266], [-0.24032, 53.60047], [-0.23377, 53.59919], [-0.22988, 53.59844], [-0.226, 53.59769], [-0.2244, 53.59736], [-0.22352, 53.59718], [-0.22263, 53.59698], [-0.2218, 53.59679], [-0.21923, 53.59615], [-0.21836, 53.59593], [-0.21775, 53.5958], [-0.21468, 53.59505], [-0.21279, 53.59459], [-0.21087, 53.59411], [-0.20884, 53.59363], [-0.20685, 53.59312], [-0.19825, 53.59103], [-0.19726, 53.59077], [-0.19177, 53.58943], [-0.18989, 53.58896], [-0.18897, 53.58875], [-0.18806, 53.58852], [-0.1873, 53.58831], [-0.18654, 53.5881], [-0.18603, 53.58795], [-0.1849, 53.58761], [-0.18377, 53.58726], [-0.18293, 53.58698]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079604", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.18293, 53.58698], [-0.18239, 53.58681], [-0.18185, 53.58664], [-0.18081, 53.58632], [-0.17988, 53.58604], [-0.17854, 53.58566], [-0.17717, 53.5853], [-0.17589, 53.58497], [-0.1746, 53.58465], [-0.17306, 53.58431], [-0.17153, 53.58398], [-0.16951, 53.58358], [-0.16392, 53.58248], [-0.16083, 53.58186], [-0.16001, 53.5817], [-0.1593, 53.58156], [-0.15851, 53.5814], [-0.15545, 53.5808], [-0.14111, 53.57795], [-0.13906, 53.57755], [-0.1388, 53.57749], [-0.13121, 53.576], [-0.13049, 53.57584], [-0.13034, 53.57582], [-0.12978, 53.5757], [-0.12849, 53.5754], [-0.12807, 53.57529], [-0.12656, 53.57489], [-0.12598, 53.57471], [-0.12424, 53.57412], [-0.12114, 53.57311], [-0.11964, 53.57261], [-0.11896, 53.57238], [-0.1184, 53.57219], [-0.11817, 53.57211], [-0.11783, 53.572], [-0.1175, 53.57189], [-0.1169, 53.57169]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079606", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.28079, 53.60833], [-0.28139, 53.60847], [-0.28181, 53.60857], [-0.28225, 53.60865], [-0.28324, 53.60883], [-0.28443, 53.60905], [-0.28518, 53.60917], [-0.28669, 53.60941], [-0.2879, 53.60968], [-0.28899, 53.60995], [-0.29003, 53.61025], [-0.29174, 53.61083], [-0.29352, 53.6116], [-0.2943, 53.61199], [-0.29503, 53.6124], [-0.29563, 53.61277], [-0.29621, 53.61316], [-0.29681, 53.61361], [-0.29736, 53.61408], [-0.29829, 53.61499], [-0.29852, 53.61524], [-0.29892, 53.61572], [-0.29929, 53.61621], [-0.29964, 53.61676], [-0.29994, 53.61733], [-0.30021, 53.61789], [-0.30048, 53.61848]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079607", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.25652, 53.63743], [-0.25694, 53.63742], [-0.25723, 53.63741], [-0.25739, 53.6374], [-0.25769, 53.63739], [-0.25805, 53.63737], [-0.25836, 53.63736], [-0.25894, 53.63732], [-0.25937, 53.63729], [-0.2598, 53.63726], [-0.26019, 53.63723], [-0.26056, 53.6372], [-0.261, 53.63716], [-0.26161, 53.63711], [-0.26187, 53.63708], [-0.26224, 53.63704], [-0.26267, 53.63698], [-0.26305, 53.63693], [-0.26333, 53.63689], [-0.26382, 53.63682], [-0.26431, 53.63673], [-0.26504, 53.6366], [-0.26561, 53.63647], [-0.26622, 53.63634], [-0.26651, 53.63626], [-0.26996, 53.63533], [-0.27214, 53.63472], [-0.29032, 53.62959], [-0.29336, 53.62874], [-0.29548, 53.62813], [-0.2962, 53.62793], [-0.29654, 53.62783], [-0.29686, 53.62772], [-0.29717, 53.62762], [-0.29746, 53.6275], [-0.29775, 53.62738], [-0.29804, 53.62725], [-0.29859, 53.62699], [-0.29888, 53.62682], [-0.2991, 53.6267], [-0.29964, 53.62635], [-0.29987, 53.62618], [-0.30009, 53.626], [-0.3004, 53.62575], [-0.30066, 53.62549], [-0.30094, 53.62517], [-0.30118, 53.62486], [-0.30143, 53.62449], [-0.30159, 53.62419], [-0.30175, 53.62386], [-0.30188, 53.62354], [-0.30197, 53.62318], [-0.30202, 53.62276], [-0.30204, 53.62242], [-0.30203, 53.62208], [-0.30196, 53.62172], [-0.30185, 53.62134], [-0.30169, 53.62092], [-0.30164, 53.62078]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079688", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.57475, 53.49683], [-0.58764, 53.48894]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079689", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.58764, 53.48894], [-0.59022, 53.48736], [-0.59097, 53.48688], [-0.59354, 53.48533], [-0.5962, 53.48369]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079709", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.66427, 53.26717], [-0.67554, 53.2718], [-0.67834, 53.27296]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4079710", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.76947, 53.39893], [-0.76938, 53.39834], [-0.76934, 53.39793], [-0.76933, 53.39754], [-0.76933, 53.3971], [-0.76936, 53.39653], [-0.76945, 53.39596], [-0.76955, 53.39541], [-0.76969, 53.39488], [-0.76983, 53.39445], [-0.77001, 53.39395], [-0.77016, 53.39358]]}}, {"type": "Feature", "properties": {"osm_id": "4079721", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.53435, 53.2247], [-0.53469, 53.22476], [-0.53493, 53.2248], [-0.53501, 53.22482], [-0.53515, 53.22484], [-0.5353, 53.22487], [-0.53547, 53.22491]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080312", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.30126, 51.46311], [-0.30117, 51.46311], [-0.30108, 51.46312], [-0.29977, 51.46323], [-0.2995, 51.46325], [-0.29924, 51.46328]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080313", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.25453, 51.47312], [-0.25627, 51.47408], [-0.25695, 51.47449], [-0.25739, 51.47476], [-0.25815, 51.4752], [-0.25884, 51.47561], [-0.25948, 51.476], [-0.2607, 51.47672], [-0.26163, 51.47727], [-0.26251, 51.47779], [-0.26396, 51.47865], [-0.26527, 51.47943], [-0.26651, 51.48017], [-0.26724, 51.4806], [-0.26813, 51.48112], [-0.26936, 51.48184], [-0.27166, 51.48318], [-0.27349, 51.48429], [-0.27555, 51.4855], [-0.2764, 51.48599], [-0.27716, 51.48638], [-0.27828, 51.48691], [-0.27922, 51.4873], [-0.27985, 51.48755], [-0.28021, 51.48768], [-0.2807, 51.48782], [-0.28102, 51.48793], [-0.28153, 51.4881], [-0.2823, 51.48833], [-0.28324, 51.4886], [-0.28389, 51.48877], [-0.28442, 51.4889], [-0.28488, 51.48901], [-0.28559, 51.48918], [-0.28602, 51.48926], [-0.28645, 51.48935], [-0.28672, 51.4894]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080314", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.27162, 51.48321], [-0.26928, 51.48186], [-0.26816, 51.48117], [-0.26688, 51.48042], [-0.26646, 51.48017], [-0.26519, 51.47943], [-0.26391, 51.47866], [-0.26247, 51.47781]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080317", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.28169, 51.48819], [-0.2811, 51.48799], [-0.28101, 51.48796], [-0.28086, 51.48791], [-0.28044, 51.48777], [-0.28, 51.48765], [-0.27982, 51.4876], [-0.27918, 51.48734], [-0.2782, 51.48692], [-0.27713, 51.4864], [-0.27637, 51.48602], [-0.27557, 51.48557], [-0.27345, 51.48432], [-0.27162, 51.48321]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080318", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.28668, 51.48942], [-0.28651, 51.4894], [-0.28581, 51.48925], [-0.28549, 51.48919], [-0.28517, 51.48911], [-0.28465, 51.48899], [-0.28414, 51.48887], [-0.28314, 51.4886], [-0.28242, 51.4884], [-0.28169, 51.48819]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4080320", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.28, 51.48765], [-0.2802, 51.48774], [-0.28052, 51.48783], [-0.28087, 51.48795], [-0.28128, 51.48809], [-0.28176, 51.48824], [-0.28235, 51.48842], [-0.28286, 51.48856], [-0.28321, 51.48866], [-0.28355, 51.48875], [-0.284, 51.48887], [-0.28436, 51.48896], [-0.2848, 51.48906], [-0.28513, 51.48914], [-0.28525, 51.48917], [-0.28567, 51.48926], [-0.28595, 51.48933], [-0.28617, 51.48942], [-0.28642, 51.48954]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4080321", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.29422, 51.49014], [-0.29384, 51.49016], [-0.29346, 51.49018], [-0.29318, 51.49021], [-0.29261, 51.49028], [-0.29199, 51.49038], [-0.29154, 51.49048], [-0.29107, 51.49061], [-0.2904, 51.49081], [-0.28974, 51.49106], [-0.28909, 51.49131], [-0.28845, 51.49157], [-0.28796, 51.49178], [-0.28751, 51.492], [-0.28679, 51.49242], [-0.28634, 51.49262]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080322", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.30606, 51.48873], [-0.30562, 51.48885], [-0.3052, 51.48895], [-0.30437, 51.48914], [-0.30381, 51.48926], [-0.30318, 51.48938], [-0.30247, 51.4895], [-0.30205, 51.48957], [-0.30167, 51.48963], [-0.30107, 51.48971], [-0.30041, 51.4898], [-0.29979, 51.48987], [-0.29926, 51.48993], [-0.29874, 51.48997], [-0.29805, 51.49003], [-0.29697, 51.4901], [-0.296, 51.49013], [-0.29547, 51.49014], [-0.29505, 51.49014], [-0.29484, 51.49014], [-0.29422, 51.49014]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080325", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32784, 51.48002], [-0.3272, 51.48038], [-0.32658, 51.48073], [-0.32621, 51.48094], [-0.32582, 51.48116], [-0.32533, 51.48145], [-0.32503, 51.48162], [-0.32473, 51.48179], [-0.32463, 51.48185], [-0.3245, 51.48193], [-0.32405, 51.48218], [-0.32359, 51.48245], [-0.32315, 51.48268], [-0.32282, 51.48285], [-0.32227, 51.48312], [-0.3218, 51.48334], [-0.3214, 51.48352], [-0.32086, 51.48375], [-0.32041, 51.48393], [-0.31998, 51.48409], [-0.31949, 51.48426], [-0.31909, 51.4844], [-0.31859, 51.48457], [-0.31798, 51.48478], [-0.31759, 51.48491], [-0.31685, 51.48517], [-0.3161, 51.48542], [-0.31535, 51.48567], [-0.31462, 51.48592]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080326", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33604, 51.47534], [-0.33565, 51.47555], [-0.33516, 51.47583], [-0.33427, 51.47634], [-0.33396, 51.47651], [-0.33358, 51.47673], [-0.33303, 51.47704], [-0.33261, 51.47729], [-0.33218, 51.47753], [-0.33134, 51.47802], [-0.33097, 51.47822], [-0.33039, 51.47856], [-0.32954, 51.47904], [-0.32784, 51.48002]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080328", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33819, 51.47413], [-0.3379, 51.47429], [-0.3375, 51.47452], [-0.3368, 51.47492]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4080329", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.36126, 51.46237], [-0.36102, 51.46249], [-0.36087, 51.46257], [-0.36038, 51.4628], [-0.35984, 51.46307], [-0.35864, 51.46369], [-0.35589, 51.46508], [-0.35521, 51.46542], [-0.35453, 51.46576], [-0.3532, 51.46644], [-0.35051, 51.46781], [-0.3455, 51.47035]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4081002", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.34771, 53.38693], [-2.3475, 53.3873]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081046", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7856, 53.3835], [-0.78589, 53.38341], [-0.786, 53.38337]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081061", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.14501, 53.3181], [-1.14351, 53.31765], [-1.14303, 53.31751], [-1.13723, 53.31582], [-1.12933, 53.31351], [-1.12833, 53.31322], [-1.12819, 53.31318]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081065", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.14501, 53.3181], [-1.16092, 53.32275], [-1.16672, 53.32444], [-1.16753, 53.32467], [-1.16845, 53.32491], [-1.16958, 53.32521], [-1.17074, 53.32549], [-1.17165, 53.3257], [-1.17258, 53.3259], [-1.17385, 53.32616], [-1.1741, 53.32621], [-1.17548, 53.32647]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081143", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.41197, 53.41807], [-1.41323, 53.41723], [-1.41372, 53.41691], [-1.41453, 53.41638], [-1.41462, 53.41633], [-1.41548, 53.41575]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081246", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.89718, 53.86707], [-1.89765, 53.8671], [-1.89804, 53.86714], [-1.89844, 53.86718], [-1.89884, 53.86724], [-1.8992, 53.86731], [-1.89962, 53.8674], [-1.90005, 53.8675], [-1.90041, 53.8676], [-1.90076, 53.8677], [-1.90109, 53.86781], [-1.90138, 53.86792]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081247", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.77472, 53.83401], [-1.77458, 53.83394], [-1.77444, 53.83385], [-1.77429, 53.83374], [-1.77414, 53.8336], [-1.77404, 53.83348], [-1.77398, 53.8334], [-1.77393, 53.83333], [-1.77388, 53.83325], [-1.77382, 53.83314], [-1.77379, 53.83301], [-1.77376, 53.83289], [-1.77376, 53.83277], [-1.77377, 53.83265], [-1.77379, 53.83254], [-1.77382, 53.83245], [-1.77387, 53.83235], [-1.77394, 53.83223], [-1.77404, 53.83212]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081249", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.75295, 53.79707], [-1.75305, 53.79718], [-1.75325, 53.79743], [-1.75356, 53.79782], [-1.75427, 53.7987], [-1.75461, 53.79912], [-1.75464, 53.79916], [-1.75515, 53.79976], [-1.75556, 53.8003]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081261", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.71998, 53.86041], [-1.71913, 53.8605], [-1.71774, 53.86076], [-1.71646, 53.86108], [-1.71492, 53.86156], [-1.71319, 53.86222]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081262", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.68892, 53.83958], [-1.68933, 53.83964], [-1.68961, 53.83968], [-1.69015, 53.83974], [-1.69046, 53.83977], [-1.69087, 53.83982], [-1.69161, 53.83992], [-1.6922, 53.84001]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081806", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.28565, 51.49285], [-0.28514, 51.49298], [-0.28461, 51.4931], [-0.28426, 51.4932]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4081823", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.27082, 51.49908], [-0.27107, 51.49889], [-0.2712, 51.49879], [-0.27144, 51.49858], [-0.27161, 51.4984], [-0.27186, 51.49811], [-0.27204, 51.49782], [-0.27225, 51.4974], [-0.2723, 51.49723], [-0.27239, 51.49664], [-0.27235, 51.49619], [-0.27229, 51.49598], [-0.27227, 51.49587], [-0.27214, 51.49526], [-0.27218, 51.49463], [-0.27237, 51.49396], [-0.27257, 51.49361], [-0.27279, 51.49334], [-0.27326, 51.49291], [-0.27351, 51.49272], [-0.27376, 51.49253]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081894", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.27948, 51.49512], [-0.27646, 51.49634], [-0.27459, 51.49712], [-0.27406, 51.49736], [-0.27306, 51.49785], [-0.27195, 51.49844], [-0.27107, 51.49898]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4081901", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.2638, 51.50637], [-0.26362, 51.50666]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081904", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.26276, 51.50894], [-0.26267, 51.50923], [-0.26248, 51.50974], [-0.26237, 51.51009], [-0.26225, 51.51047], [-0.26199, 51.5112], [-0.26178, 51.51172], [-0.26155, 51.51223], [-0.26129, 51.51275], [-0.261, 51.51328], [-0.26068, 51.51385], [-0.26051, 51.51413], [-0.26033, 51.5144], [-0.25996, 51.51495], [-0.25954, 51.51551], [-0.25895, 51.51632], [-0.25863, 51.51674], [-0.25841, 51.51704], [-0.25821, 51.51731], [-0.25795, 51.51765], [-0.25771, 51.51798], [-0.25739, 51.51842], [-0.25722, 51.51869], [-0.25709, 51.51889], [-0.25686, 51.51927], [-0.25659, 51.51975], [-0.25647, 51.52001], [-0.25636, 51.52022]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4081975", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.26435, 51.51777], [-0.264, 51.51789], [-0.26358, 51.51799], [-0.26314, 51.51811], [-0.2626, 51.51827], [-0.26202, 51.51845], [-0.26152, 51.51862], [-0.26061, 51.51897], [-0.26021, 51.51912], [-0.25885, 51.51963], [-0.25833, 51.51982], [-0.25798, 51.51998], [-0.25761, 51.52015], [-0.25742, 51.52024], [-0.25723, 51.52034], [-0.25699, 51.52046], [-0.2568, 51.52056], [-0.25664, 51.52066], [-0.2565, 51.52075], [-0.25635, 51.52086], [-0.25622, 51.52096], [-0.25606, 51.52111], [-0.2559, 51.52129], [-0.25576, 51.52144], [-0.25554, 51.52172]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4081993", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.25447, 51.52324], [-0.25409, 51.52373], [-0.25385, 51.524], [-0.25362, 51.52427], [-0.25315, 51.52478], [-0.25292, 51.52507], [-0.2527, 51.5253], [-0.25227, 51.52577], [-0.25182, 51.52624], [-0.25135, 51.52671], [-0.2511, 51.52694], [-0.25084, 51.52716]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4082001", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.25084, 51.52716], [-0.25053, 51.5274], [-0.2503, 51.52756], [-0.25012, 51.52766], [-0.24994, 51.52775], [-0.24964, 51.5279], [-0.24946, 51.52798], [-0.24929, 51.52805], [-0.24906, 51.52811], [-0.24879, 51.52818], [-0.24828, 51.52832]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082445", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.227, 54.0107], [-2.2264, 54.01037], [-2.22616, 54.0102]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082450", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.28573, 54.03922], [-2.28582, 54.03955], [-2.28588, 54.03974], [-2.28592, 54.03988], [-2.28599, 54.04019], [-2.28605, 54.04053], [-2.28607, 54.04084], [-2.28612, 54.04151]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082478", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15917, 51.37193], [-0.15848, 51.37244], [-0.15804, 51.37275], [-0.15739, 51.37321], [-0.15713, 51.3734]]}}, {"type": "Feature", "properties": {"osm_id": "4082486", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.39218, 53.87583], [-2.3916, 53.8763], [-2.39096, 53.87673], [-2.38987, 53.87745], [-2.38878, 53.87818], [-2.3881, 53.8786], [-2.38679, 53.87948], [-2.38574, 53.88015], [-2.38463, 53.88082], [-2.38379, 53.88127], [-2.38296, 53.8817], [-2.38205, 53.88214], [-2.38111, 53.88258], [-2.37975, 53.88315], [-2.37836, 53.88371], [-2.37691, 53.88428], [-2.37591, 53.88464], [-2.37501, 53.88496]]}}, {"type": "Feature", "properties": {"osm_id": "4082487", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.46846, 53.75197], [-2.46805, 53.75227], [-2.46769, 53.75257]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082582", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47061, 53.72243], [-2.4701, 53.72226], [-2.46903, 53.72186], [-2.46843, 53.72157], [-2.46764, 53.72112], [-2.46709, 53.72073], [-2.46654, 53.72025], [-2.46593, 53.71959], [-2.46561, 53.71915], [-2.46513, 53.71799], [-2.46504, 53.71754]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082583", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44442, 53.68284], [-2.43385, 53.67563], [-2.42637, 53.67053]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082584", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40989, 53.62797], [-2.41078, 53.62933], [-2.41094, 53.62973]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4082696", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19508, 51.88443], [-0.19489, 51.88416]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4082697", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19774, 51.88774], [-0.19597, 51.88595], [-0.1959, 51.88588], [-0.1956, 51.88561], [-0.19523, 51.88527], [-0.19485, 51.88497], [-0.19447, 51.88465], [-0.19369, 51.88404], [-0.19247, 51.88308], [-0.19218, 51.88286]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4082724", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.0922, 51.79943], [-0.09221, 51.79929]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082763", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.49276, 53.57341], [-2.49318, 53.57321], [-2.49379, 53.57291], [-2.49495, 53.57234], [-2.49509, 53.57227]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4082764", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.63935, 53.66991], [-2.64046, 53.67024], [-2.64168, 53.67054], [-2.64277, 53.67078], [-2.64366, 53.67094], [-2.6444, 53.67106], [-2.64521, 53.67118], [-2.64625, 53.67132]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082787", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03943, 51.45829], [-0.03925, 51.45808], [-0.03907, 51.45785], [-0.03898, 51.45773]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082789", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.04937, 51.4663], [-0.04885, 51.46617], [-0.04833, 51.46605], [-0.04778, 51.46594], [-0.04748, 51.46588], [-0.04713, 51.46583], [-0.04671, 51.46576], [-0.04639, 51.4657], [-0.04605, 51.46565], [-0.04555, 51.46556], [-0.04507, 51.46548], [-0.04463, 51.46542], [-0.04416, 51.46536], [-0.04369, 51.4653], [-0.04326, 51.46526], [-0.04288, 51.46522], [-0.04247, 51.46519], [-0.04217, 51.46517], [-0.0419, 51.46515], [-0.04163, 51.46514], [-0.04135, 51.46512], [-0.04079, 51.4651], [-0.04021, 51.46508], [-0.03964, 51.46508], [-0.03923, 51.46507], [-0.0388, 51.46507], [-0.03824, 51.46508]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082790", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03635, 51.46513], [-0.0356, 51.46517], [-0.03487, 51.46522], [-0.03415, 51.46528], [-0.03379, 51.46532], [-0.03341, 51.46536], [-0.03261, 51.46546], [-0.03183, 51.46557], [-0.03105, 51.46568], [-0.03066, 51.46576], [-0.03023, 51.46584], [-0.02949, 51.46598], [-0.02879, 51.46613], [-0.02807, 51.4663], [-0.02769, 51.46639], [-0.02734, 51.46648], [-0.02539, 51.467], [-0.02443, 51.46727], [-0.0239, 51.46742], [-0.02341, 51.46756]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082791", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.02228, 51.46789], [-0.02209, 51.46794], [-0.02185, 51.468], [-0.02164, 51.46803], [-0.0214, 51.46806], [-0.02116, 51.46808], [-0.0209, 51.46808], [-0.02064, 51.46806], [-0.02044, 51.46804], [-0.02028, 51.468], [-0.02012, 51.46796], [-0.01992, 51.4679]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082794", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08103, 51.46081], [-0.08244, 51.45913], [-0.08297, 51.45855], [-0.0833, 51.45815], [-0.08424, 51.45725], [-0.08563, 51.45609], [-0.08726, 51.45489], [-0.08833, 51.45418]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082800", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09451, 51.45079], [-0.09344, 51.4514], [-0.09288, 51.45167], [-0.09105, 51.4526]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082827", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10095, 51.44483], [-0.10264, 51.44232]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082828", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10382, 51.44082], [-0.1036, 51.44107], [-0.10339, 51.44131], [-0.10322, 51.44153], [-0.10297, 51.44186], [-0.10264, 51.44232]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4082855", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.01021, 51.46594], [0.01086, 51.46602], [0.01127, 51.46609], [0.01154, 51.46615], [0.01206, 51.46628], [0.01255, 51.46641], [0.01304, 51.46656]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082919", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.56147, 51.5077], [-2.56144, 51.50786], [-2.5614, 51.50813], [-2.56137, 51.50842], [-2.56134, 51.50898], [-2.56126, 51.50967]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082932", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.56709, 51.45421], [-2.56728, 51.45401]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082935", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.58642, 51.46856], [-2.58552, 51.46886], [-2.58339, 51.46994]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082936", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.58339, 51.46994], [-2.58203, 51.4706], [-2.58117, 51.47102], [-2.58037, 51.47139], [-2.57944, 51.47182]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082937", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.61512, 51.46474], [-2.6148, 51.46467]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4082980", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.41193, 51.5897], [-2.40957, 51.59141], [-2.40783, 51.59264], [-2.40606, 51.59387], [-2.40428, 51.59508], [-2.40084, 51.5974], [-2.39962, 51.59832]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4084687", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.97571, 53.29354], [-2.9754, 53.29294], [-2.97491, 53.29219], [-2.97443, 53.29156], [-2.97426, 53.29136], [-2.97407, 53.29116], [-2.97384, 53.29094], [-2.97321, 53.29037], [-2.97264, 53.28994], [-2.97225, 53.28966]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4087505", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.61136, 52.8303], [-1.61129, 52.83034], [-1.61092, 52.83057], [-1.61006, 52.83116], [-1.60961, 52.83147], [-1.60916, 52.83175], [-1.60727, 52.83298], [-1.60469, 52.83458], [-1.60234, 52.83599], [-1.59931, 52.83771]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4087506", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.46377, 52.88328], [-1.46519, 52.88433]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4089241", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.53428, 50.71359], [-3.53384, 50.71329], [-3.53358, 50.71307], [-3.53326, 50.71275], [-3.53303, 50.71247], [-3.53292, 50.7123], [-3.5328, 50.71209], [-3.5327, 50.71191], [-3.53261, 50.71167], [-3.53249, 50.71107], [-3.53248, 50.71082], [-3.5325, 50.71057], [-3.53254, 50.71029], [-3.5326, 50.7101], [-3.53276, 50.70963], [-3.53299, 50.70895]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4089484", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.21524, 51.5602], [-0.21554, 51.56038], [-0.21587, 51.56054], [-0.21626, 51.56071], [-0.21682, 51.56092], [-0.21721, 51.56105], [-0.21731, 51.56109], [-0.21755, 51.56117], [-0.21796, 51.56129], [-0.21816, 51.56135], [-0.21837, 51.5614], [-0.21858, 51.56145], [-0.21879, 51.56149], [-0.21899, 51.56152], [-0.21921, 51.56155], [-0.21941, 51.56158], [-0.21964, 51.5616], [-0.2199, 51.56162], [-0.22024, 51.56163]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4089488", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.23094, 51.5577], [-0.23069, 51.55779], [-0.23017, 51.55798], [-0.2297, 51.55815], [-0.22916, 51.55838], [-0.22856, 51.55863], [-0.22802, 51.55889], [-0.22763, 51.55908], [-0.22707, 51.55937], [-0.22659, 51.55963], [-0.2262, 51.55986], [-0.22565, 51.5602], [-0.22508, 51.56056], [-0.22456, 51.56097], [-0.22408, 51.56132], [-0.22368, 51.56165], [-0.22343, 51.56185], [-0.22315, 51.56213], [-0.22286, 51.56244], [-0.22259, 51.56284], [-0.22236, 51.56342], [-0.22229, 51.56401], [-0.22238, 51.56465], [-0.22253, 51.56506], [-0.22269, 51.56529], [-0.22286, 51.56549], [-0.22319, 51.56579], [-0.22382, 51.56628], [-0.22504, 51.56717], [-0.22561, 51.56762], [-0.22617, 51.56805], [-0.22665, 51.56848], [-0.22682, 51.56863], [-0.22708, 51.56889], [-0.22726, 51.56906]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110532", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.85957, 55.90823], [-4.85882, 55.90853], [-4.85835, 55.90871], [-4.85785, 55.90894], [-4.85752, 55.90909], [-4.85718, 55.90927], [-4.8567, 55.90955], [-4.85624, 55.90983], [-4.85501, 55.91062], [-4.85436, 55.91102], [-4.85271, 55.91211], [-4.85141, 55.91296], [-4.84858, 55.91472], [-4.84597, 55.91647], [-4.84507, 55.91708], [-4.84471, 55.91736], [-4.84338, 55.9184], [-4.84266, 55.91897], [-4.84122, 55.92016], [-4.84083, 55.92052], [-4.83903, 55.92205], [-4.83833, 55.92267], [-4.83741, 55.92337], [-4.83637, 55.92417], [-4.8342, 55.92564], [-4.83275, 55.92654], [-4.83217, 55.92689], [-4.83085, 55.9276], [-4.82955, 55.92828], [-4.82855, 55.92876], [-4.82725, 55.92937], [-4.82623, 55.92982], [-4.82322, 55.93122], [-4.82138, 55.93212], [-4.81955, 55.93305], [-4.81678, 55.93454], [-4.815, 55.93551], [-4.8134, 55.93639], [-4.81194, 55.93719], [-4.81108, 55.93765], [-4.80998, 55.93826], [-4.80922, 55.93866], [-4.80869, 55.93893], [-4.80822, 55.93916], [-4.8075, 55.93945], [-4.80676, 55.93973], [-4.8058, 55.94002], [-4.80495, 55.94024], [-4.80406, 55.94042], [-4.80341, 55.94053], [-4.80277, 55.94061], [-4.80234, 55.94066], [-4.8017, 55.94072], [-4.80088, 55.94077], [-4.80004, 55.94078], [-4.79944, 55.94077], [-4.79884, 55.94074], [-4.79827, 55.94071], [-4.79765, 55.94065], [-4.79687, 55.94055], [-4.79591, 55.94041], [-4.79414, 55.94014], [-4.79258, 55.93991], [-4.79226, 55.93986], [-4.79052, 55.93959], [-4.78958, 55.93944], [-4.78757, 55.93915], [-4.78637, 55.93901], [-4.78562, 55.93895], [-4.7847, 55.93891], [-4.78389, 55.9389], [-4.78292, 55.93894]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110536", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25894, 55.85873], [-4.25894, 55.85863]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110537", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.39775, 55.85508], [-4.39673, 55.85525], [-4.39568, 55.8554], [-4.39472, 55.85554], [-4.39376, 55.85565], [-4.39293, 55.85576], [-4.39209, 55.85587], [-4.3907, 55.85601]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110538", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.47128, 55.87423], [-4.46965, 55.87269], [-4.46804, 55.87116], [-4.46313, 55.86644]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110694", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.92915, 52.45676], [-1.92849, 52.45738], [-1.92815, 52.45778], [-1.92792, 52.45812], [-1.92779, 52.45837], [-1.9277, 52.45857], [-1.92761, 52.45881], [-1.92754, 52.45908], [-1.92748, 52.45951], [-1.92743, 52.46015], [-1.92738, 52.4605], [-1.92722, 52.46123], [-1.92708, 52.46182], [-1.92691, 52.46241], [-1.9268, 52.46269], [-1.92672, 52.46288], [-1.92664, 52.46303], [-1.92653, 52.46319], [-1.92642, 52.46334], [-1.92624, 52.46354], [-1.92605, 52.46373], [-1.92559, 52.46411], [-1.92511, 52.46442], [-1.92485, 52.46456], [-1.92457, 52.46469], [-1.92417, 52.46485], [-1.92372, 52.465], [-1.92307, 52.46516], [-1.92247, 52.46533]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110770", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.50036, 55.90196], [-4.49859, 55.90028], [-4.4977, 55.89944], [-4.49682, 55.8986], [-4.49397, 55.89589], [-4.49255, 55.89452], [-4.49108, 55.89314], [-4.48793, 55.89013], [-4.48637, 55.88863], [-4.48479, 55.88712], [-4.48431, 55.88665], [-4.48378, 55.88615], [-4.48277, 55.88519], [-4.48247, 55.8849], [-4.48217, 55.88461], [-4.48157, 55.88404], [-4.48039, 55.88291]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110771", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.55452, 55.92218], [-4.55193, 55.92177], [-4.55081, 55.9216], [-4.5481, 55.92119], [-4.54669, 55.92101], [-4.54561, 55.92089], [-4.54451, 55.9208], [-4.54353, 55.92073], [-4.54247, 55.92066], [-4.54142, 55.92063], [-4.54099, 55.92063], [-4.54055, 55.92062], [-4.53982, 55.92062], [-4.53869, 55.92064], [-4.53811, 55.92066], [-4.53754, 55.92069], [-4.53693, 55.92072], [-4.53647, 55.92073], [-4.53562, 55.92075], [-4.53478, 55.92074], [-4.53381, 55.92072], [-4.53303, 55.9207], [-4.53221, 55.92065], [-4.53143, 55.9206], [-4.53104, 55.92057], [-4.53067, 55.92054], [-4.5301, 55.92049], [-4.52952, 55.92043], [-4.52818, 55.92027], [-4.52736, 55.92016], [-4.5264, 55.92], [-4.52572, 55.91987], [-4.52506, 55.91973], [-4.52481, 55.91967], [-4.52455, 55.91962], [-4.52369, 55.91941], [-4.52313, 55.91925], [-4.5226, 55.9191], [-4.52164, 55.9188], [-4.5207, 55.91848], [-4.51979, 55.91814], [-4.51891, 55.91778]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110772", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42808, 55.84766], [-4.4278, 55.84761], [-4.42748, 55.84758], [-4.42712, 55.84754], [-4.42628, 55.8475]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4110773", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29873, 55.84608], [-4.29863, 55.84613], [-4.2979, 55.84643], [-4.29769, 55.84652], [-4.29748, 55.8466], [-4.29725, 55.84669], [-4.29693, 55.84679], [-4.29669, 55.84687], [-4.29647, 55.84693], [-4.29626, 55.84698], [-4.29604, 55.84704], [-4.29583, 55.84709], [-4.29542, 55.84718], [-4.29513, 55.84723], [-4.29474, 55.84729], [-4.29433, 55.84734], [-4.29401, 55.84737], [-4.29368, 55.8474], [-4.29326, 55.84743], [-4.29288, 55.84745], [-4.29224, 55.84747], [-4.29075, 55.84749], [-4.29027, 55.84751], [-4.28908, 55.84755], [-4.28881, 55.84755], [-4.28829, 55.84755], [-4.28808, 55.84756], [-4.28778, 55.84758]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4116107", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.41915, 53.56682], [-2.41951, 53.56726], [-2.41959, 53.56734], [-2.42042, 53.56836], [-2.42067, 53.56866], [-2.42177, 53.56992], [-2.42179, 53.56995], [-2.42279, 53.57103], [-2.42317, 53.57142], [-2.42391, 53.57216]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4116871", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.16, 51.3215], [0.14317, 51.34033]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4119200", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.06964, 50.76489], [-3.06945, 50.76481]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4119202", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.05573, 50.75926], [-3.05539, 50.7592]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4119207", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.04179, 50.7604], [-3.04146, 50.76052]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4154927", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.14461, 50.80306], [-3.14394, 50.80299], [-3.14322, 50.80293], [-3.14238, 50.80287], [-3.14144, 50.80284], [-3.14031, 50.80281], [-3.13965, 50.80282], [-3.13884, 50.80283], [-3.13808, 50.80285], [-3.13715, 50.80288], [-3.13607, 50.80293], [-3.13531, 50.80295], [-3.13469, 50.80294], [-3.13399, 50.80292], [-3.13315, 50.80287], [-3.12537, 50.8023], [-3.12443, 50.80221], [-3.12354, 50.80213], [-3.12249, 50.80199], [-3.12146, 50.80182], [-3.1205, 50.80165], [-3.11961, 50.80145], [-3.11894, 50.80128], [-3.11827, 50.80108], [-3.11734, 50.80077]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4203348", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.57839, 53.39747], [-2.58315, 53.39468], [-2.58369, 53.39439], [-2.58428, 53.3941], [-2.58494, 53.39381]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4203349", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.60396, 53.39303], [-2.60979, 53.39578], [-2.61035, 53.39598], [-2.611, 53.39619]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4203475", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.88995, 53.35892], [-2.88881, 53.35825], [-2.88837, 53.35797]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4203851", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.93962, 53.40327], [-2.93957, 53.40328], [-2.93878, 53.40338], [-2.93823, 53.40345], [-2.9364, 53.40367], [-2.93575, 53.40374], [-2.93514, 53.4038], [-2.93454, 53.40384], [-2.93381, 53.40388], [-2.9335, 53.40389], [-2.93318, 53.40389], [-2.93284, 53.40387], [-2.93253, 53.40384], [-2.93217, 53.40379], [-2.93184, 53.40371], [-2.93153, 53.40363], [-2.9312, 53.40352], [-2.9309, 53.40339], [-2.93059, 53.40323], [-2.93035, 53.40307], [-2.93012, 53.4029], [-2.92992, 53.4027], [-2.92974, 53.40249], [-2.92959, 53.40225], [-2.92949, 53.402], [-2.92944, 53.40172], [-2.9294, 53.40117], [-2.92935, 53.40061]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4203852", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.9778, 53.40805], [-2.97589, 53.40769], [-2.97534, 53.40759], [-2.97468, 53.40749], [-2.97428, 53.40743], [-2.97361, 53.40731]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4203854", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.94219, 53.40284], [-2.94245, 53.40278], [-2.94297, 53.40268], [-2.94335, 53.40261], [-2.94371, 53.40254], [-2.94407, 53.40248], [-2.94424, 53.40246], [-2.94468, 53.4024], [-2.94501, 53.40238], [-2.9453, 53.40237], [-2.94562, 53.40238], [-2.94603, 53.40242], [-2.94635, 53.40246], [-2.94683, 53.40254], [-2.94759, 53.40267], [-2.94781, 53.40271], [-2.94846, 53.40284]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4204125", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.8466, 53.40962], [-2.84764, 53.40968], [-2.84912, 53.40974], [-2.85219, 53.40987], [-2.85404, 53.40993], [-2.8559, 53.41], [-2.85807, 53.41012], [-2.8589, 53.41015], [-2.85968, 53.41016], [-2.86038, 53.41015], [-2.86106, 53.41014], [-2.86173, 53.41013], [-2.86244, 53.41011], [-2.86339, 53.41008], [-2.86434, 53.41004], [-2.86528, 53.40998], [-2.8667, 53.40988]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4204126", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.86672, 53.40994], [-2.8647, 53.41008], [-2.86333, 53.41016], [-2.86242, 53.4102], [-2.86135, 53.41022], [-2.85925, 53.41024], [-2.858, 53.41024], [-2.85697, 53.41019], [-2.85415, 53.41006], [-2.85404, 53.41006], [-2.85184, 53.40995], [-2.84804, 53.40977], [-2.8465, 53.40971]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4208555", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.28758, 51.44983], [0.28419, 51.44992]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4217257", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.28503, 53.45602], [-2.28558, 53.45558], [-2.28655, 53.45489], [-2.288, 53.45395], [-2.28885, 53.45344], [-2.29005, 53.45277], [-2.2911, 53.45225], [-2.29175, 53.45194], [-2.29244, 53.45162], [-2.29281, 53.45146], [-2.29329, 53.45124], [-2.29378, 53.45106], [-2.29411, 53.45093], [-2.29481, 53.45066], [-2.29525, 53.4505], [-2.29569, 53.45034], [-2.29624, 53.45015], [-2.29679, 53.44998], [-2.2978, 53.44964], [-2.29831, 53.44946], [-2.29895, 53.44921], [-2.2995, 53.44897], [-2.29989, 53.44878], [-2.30024, 53.44861], [-2.30089, 53.44826], [-2.30136, 53.44799], [-2.30176, 53.44772], [-2.30203, 53.44753], [-2.30237, 53.44729], [-2.30269, 53.44701], [-2.30377, 53.44604]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4232543", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.94251, 53.40272], [-2.9419, 53.40281]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4232841", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.46461, 58.52344], [-3.46585, 58.52532], [-3.4671, 58.52725], [-3.46834, 58.52914], [-3.46969, 58.53119], [-3.47089, 58.53304], [-3.47214, 58.53499], [-3.47369, 58.53735], [-3.47482, 58.53907], [-3.47546, 58.53998], [-3.47619, 58.54084], [-3.47701, 58.54162], [-3.47782, 58.54231], [-3.47914, 58.54326], [-3.48052, 58.54414], [-3.48185, 58.54489], [-3.48352, 58.5458], [-3.48524, 58.54665], [-3.48676, 58.54739], [-3.48858, 58.5482], [-3.49131, 58.54933], [-3.49383, 58.55027], [-3.49566, 58.5509], [-3.49732, 58.55143], [-3.499, 58.55195], [-3.50202, 58.5528], [-3.50508, 58.55368], [-3.5079, 58.55448]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4232844", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.10317, 58.44217], [-3.10182, 58.44203], [-3.09976, 58.44182], [-3.0988, 58.44172], [-3.09709, 58.44155], [-3.09684, 58.44152]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4234724", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15245, 51.39169], [-0.15249, 51.3917], [-0.15309, 51.39184]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4234725", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11229, 51.37321], [-0.11192, 51.3732], [-0.11166, 51.37319], [-0.11139, 51.3732], [-0.11121, 51.37321], [-0.11102, 51.37323], [-0.11072, 51.37329], [-0.11035, 51.37335], [-0.10993, 51.37343]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4234728", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.15245, 51.39169], [-0.15206, 51.39163], [-0.15164, 51.39153], [-0.14319, 51.38954], [-0.14285, 51.38946], [-0.1425, 51.38938], [-0.14169, 51.3892], [-0.14039, 51.38888], [-0.1391, 51.38858], [-0.13745, 51.38822], [-0.13707, 51.38816], [-0.13669, 51.38812], [-0.13592, 51.38806], [-0.13553, 51.38802], [-0.13518, 51.38795], [-0.13484, 51.38788], [-0.1345, 51.38777], [-0.13242, 51.3871], [-0.1321, 51.387], [-0.13193, 51.38694], [-0.1318, 51.38688], [-0.13163, 51.38678], [-0.13126, 51.38657], [-0.13098, 51.3864], [-0.13071, 51.38626], [-0.13055, 51.38619], [-0.13023, 51.38608], [-0.12966, 51.38589], [-0.12909, 51.3857], [-0.12882, 51.3856], [-0.1288, 51.38559], [-0.12864, 51.38554], [-0.1284, 51.38544], [-0.12819, 51.38536], [-0.12805, 51.38529], [-0.12789, 51.38521], [-0.12765, 51.38507], [-0.12742, 51.38493], [-0.12722, 51.38479], [-0.12687, 51.38455], [-0.1264, 51.38423], [-0.1256, 51.38367], [-0.12464, 51.38301], [-0.12398, 51.38256], [-0.12369, 51.38236], [-0.12343, 51.38216], [-0.12323, 51.38201], [-0.12309, 51.38188], [-0.12294, 51.38173], [-0.12276, 51.38153], [-0.12219, 51.38094], [-0.12168, 51.38043], [-0.12117, 51.37991], [-0.12097, 51.37971], [-0.12051, 51.37928], [-0.12017, 51.37898], [-0.11976, 51.37862], [-0.1193, 51.37824], [-0.1188, 51.37782], [-0.11804, 51.37718], [-0.11783, 51.377], [-0.11766, 51.37686], [-0.11759, 51.37681], [-0.1175, 51.37672], [-0.11717, 51.37645], [-0.11653, 51.37591], [-0.11588, 51.37536], [-0.11557, 51.37508], [-0.11527, 51.37481], [-0.11503, 51.37459], [-0.11477, 51.37435], [-0.11466, 51.37425], [-0.11455, 51.37414], [-0.11438, 51.37402], [-0.11422, 51.3739], [-0.11407, 51.3738], [-0.11391, 51.37371], [-0.11369, 51.37361], [-0.11336, 51.37348], [-0.11304, 51.37336], [-0.11294, 51.37333], [-0.1128, 51.37329], [-0.11269, 51.37327], [-0.11251, 51.37324], [-0.11229, 51.37321]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4234730", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10993, 51.37343], [-0.10949, 51.37351], [-0.10935, 51.37354], [-0.10923, 51.37358], [-0.10913, 51.37362], [-0.10905, 51.37367], [-0.10883, 51.37386], [-0.10858, 51.37408], [-0.10818, 51.37443]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4234731", "railway": "tram", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10628, 51.37503], [-0.10625, 51.3748], [-0.10623, 51.37465], [-0.10621, 51.37454], [-0.1062, 51.37446], [-0.10616, 51.3744], [-0.10611, 51.37435], [-0.10604, 51.3743], [-0.10598, 51.37427], [-0.10592, 51.37425], [-0.10583, 51.37423]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4235339", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.95979, 52.19031], [-0.95841, 52.18976], [-0.9574, 52.18936], [-0.9558, 52.18869], [-0.95392, 52.18789], [-0.95147, 52.18682], [-0.9504, 52.18635], [-0.948, 52.18532]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239371", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.03688, 51.54683], [-0.03642, 51.54677], [-0.03604, 51.54671], [-0.03568, 51.54665], [-0.03532, 51.54657], [-0.03498, 51.5465], [-0.03462, 51.54641], [-0.03429, 51.54631], [-0.03396, 51.54621], [-0.0336, 51.54609]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239377", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.06318, 51.54733], [-0.06301, 51.54732], [-0.06271, 51.54729], [-0.0621, 51.54723], [-0.06171, 51.54719], [-0.06144, 51.54716], [-0.06121, 51.54713], [-0.06099, 51.54708], [-0.06075, 51.54702], [-0.06056, 51.54696]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239434", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01614, 51.54331], [-0.01586, 51.54328], [-0.0157, 51.54327], [-0.01546, 51.54328], [-0.01528, 51.54329], [-0.01511, 51.54332], [-0.01492, 51.54335], [-0.01469, 51.54341], [-0.01441, 51.54349], [-0.01413, 51.54363], [-0.01387, 51.54377], [-0.0137, 51.54388], [-0.01357, 51.54397], [-0.01348, 51.54406], [-0.01328, 51.54423], [-0.01312, 51.54437]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239435", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01339, 51.54301], [-0.01331, 51.54285], [-0.01325, 51.54276], [-0.0132, 51.54269], [-0.013, 51.54248], [-0.01283, 51.54232], [-0.01273, 51.54226], [-0.01266, 51.54221], [-0.01246, 51.5421]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239437", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.0121, 51.54193], [-0.01177, 51.54178], [-0.01154, 51.54168]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239447", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.00542, 51.54082], [-0.00562, 51.5407], [-0.00576, 51.54063], [-0.00593, 51.54057], [-0.00614, 51.54051], [-0.00632, 51.54048], [-0.0065, 51.54046], [-0.00676, 51.54043], [-0.00698, 51.54042], [-0.00725, 51.54044], [-0.00755, 51.54046], [-0.0078, 51.54048], [-0.00804, 51.54051], [-0.00822, 51.54054], [-0.00851, 51.5406], [-0.0089, 51.54069]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239448", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01076, 51.5413], [-0.01151, 51.54163]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239452", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01327, 51.54417], [-0.01312, 51.54437], [-0.01287, 51.5446], [-0.01265, 51.54481], [-0.01246, 51.54495], [-0.01236, 51.54502], [-0.01222, 51.54512], [-0.01209, 51.5452], [-0.01194, 51.54529], [-0.0118, 51.54536], [-0.01159, 51.54545], [-0.01143, 51.54552], [-0.01129, 51.54558], [-0.01102, 51.54568], [-0.01076, 51.54576], [-0.01061, 51.54582], [-0.0104, 51.54591], [-0.01019, 51.54601], [-0.01004, 51.54608]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239533", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.00382, 51.54651], [-0.00395, 51.54687], [-0.0041, 51.54724], [-0.00426, 51.54761], [-0.00443, 51.54793], [-0.00459, 51.54824], [-0.00484, 51.54868], [-0.00512, 51.54912], [-0.00535, 51.54945], [-0.0056, 51.54977], [-0.00584, 51.55007], [-0.006, 51.55023]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4239609", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.09855, 51.57705], [-0.09885, 51.57697]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4240376", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7581, 51.5703], [-0.75401, 51.5698], [-0.75229, 51.56962], [-0.75116, 51.56964], [-0.75037, 51.56973], [-0.74998, 51.56979], [-0.74947, 51.56989], [-0.74881, 51.57005], [-0.7479, 51.57039], [-0.74683, 51.57092], [-0.74381, 51.57291], [-0.74329, 51.57325], [-0.74226, 51.57389], [-0.74106, 51.57456], [-0.73963, 51.57502], [-0.73861, 51.57546], [-0.73447, 51.57687], [-0.73314, 51.57733], [-0.73156, 51.5777], [-0.73074, 51.5778], [-0.72657, 51.5782], [-0.72612, 51.57824], [-0.72325, 51.57851], [-0.72219, 51.57859], [-0.72133, 51.57858], [-0.72104, 51.57856], [-0.71962, 51.5784], [-0.71858, 51.57826], [-0.71816, 51.57821], [-0.71789, 51.57818], [-0.7171, 51.57802], [-0.71672, 51.57793], [-0.71638, 51.57783], [-0.71604, 51.57773], [-0.71559, 51.57756], [-0.71488, 51.57726], [-0.71459, 51.57706], [-0.71385, 51.5767], [-0.71324, 51.57653], [-0.71293, 51.57649], [-0.71269, 51.57647], [-0.71231, 51.57649], [-0.71203, 51.57652], [-0.71154, 51.57664], [-0.71139, 51.57671], [-0.71037, 51.57708]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4240377", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.71474, 51.57456], [-0.71479, 51.57451], [-0.71485, 51.57446]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4240378", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.72598, 51.54963], [-0.72608, 51.54893], [-0.72596, 51.54473], [-0.7266, 51.54076]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4240379", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.7283, 51.5336], [-0.72841, 51.53315], [-0.7285, 51.53273], [-0.72877, 51.53062], [-0.72881, 51.52958], [-0.72874, 51.52722]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4241008", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.05714, 51.51173], [-0.05768, 51.51169], [-0.05831, 51.51166], [-0.05896, 51.51163], [-0.05913, 51.51162], [-0.05942, 51.51161], [-0.05972, 51.51159], [-0.06009, 51.51158], [-0.06052, 51.51156], [-0.06106, 51.51153], [-0.06141, 51.51152], [-0.06157, 51.5115]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4241063", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.02484, 51.52687], [-0.02461, 51.52683], [-0.02432, 51.52676], [-0.02399, 51.52665], [-0.02358, 51.52646], [-0.02188, 51.52557], [-0.02124, 51.52523], [-0.02076, 51.52497]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4242850", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.26886, 50.81187], [0.27005, 50.81116], [0.27063, 50.8108], [0.27114, 50.81045], [0.27167, 50.81006], [0.27208, 50.80973], [0.27253, 50.80936], [0.27295, 50.80899], [0.27336, 50.80859], [0.2738, 50.80814], [0.2742, 50.80769], [0.27454, 50.80729], [0.27488, 50.80687], [0.27523, 50.80638], [0.27551, 50.80596], [0.27578, 50.80549], [0.27604, 50.80496], [0.27683, 50.80309], [0.27695, 50.80279]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4244670", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.24644, 51.72311], [-1.2461, 51.72282], [-1.24565, 51.7225], [-1.24538, 51.72232], [-1.24517, 51.7222], [-1.24478, 51.72201]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4244825", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.22561, 51.49677], [-0.22569, 51.49721]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4245702", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00747, 50.8748], [0.00681, 50.87629], [0.00659, 50.87669], [0.00636, 50.87708], [0.00606, 50.87755], [0.0059, 50.8778], [0.0053, 50.87858], [0.00464, 50.87933]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4245721", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.18085, 51.28037], [0.18096, 51.28056], [0.18105, 51.28068]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4246305", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.55953, 50.85562], [0.56059, 50.85577], [0.56126, 50.85587], [0.56206, 50.85598]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4247058", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.19661, 55.95074], [-3.19487, 55.95103]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4247059", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.19003, 55.952], [-3.19151, 55.95175], [-3.19191, 55.95165], [-3.19232, 55.95156], [-3.19274, 55.95149], [-3.19336, 55.95138], [-3.19376, 55.95131]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4248444", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.63302, 53.45196], [-2.63344, 53.45188], [-2.63356, 53.45185], [-2.63366, 53.45182], [-2.63385, 53.45176], [-2.63406, 53.45168], [-2.63425, 53.45158], [-2.63443, 53.45148], [-2.63462, 53.45133], [-2.63475, 53.4512], [-2.63486, 53.45105], [-2.63493, 53.45095], [-2.63501, 53.45075], [-2.63502, 53.45062], [-2.63501, 53.4505], [-2.635, 53.45038], [-2.63492, 53.45016], [-2.63476, 53.4499], [-2.63304, 53.44787], [-2.632, 53.44669], [-2.63042, 53.44486], [-2.63005, 53.44444], [-2.6297, 53.44403], [-2.62874, 53.44292], [-2.62738, 53.44136], [-2.62614, 53.43991], [-2.62581, 53.43949], [-2.62552, 53.43908], [-2.625, 53.43824], [-2.62468, 53.43757], [-2.62439, 53.43688], [-2.62438, 53.43684]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4248579", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.28487, 51.57679], [-0.28445, 51.577], [-0.28392, 51.57727], [-0.28335, 51.57755], [-0.28289, 51.57779], [-0.28264, 51.57792], [-0.28236, 51.57808], [-0.28209, 51.57825], [-0.28176, 51.57848], [-0.28149, 51.57868], [-0.28119, 51.57894], [-0.2809, 51.5792], [-0.28063, 51.5795], [-0.28042, 51.57975], [-0.28015, 51.58014], [-0.2799, 51.5806], [-0.27978, 51.58087], [-0.27969, 51.58111], [-0.27948, 51.58182], [-0.27937, 51.58222], [-0.27925, 51.5826], [-0.27913, 51.58302], [-0.27902, 51.58335], [-0.27893, 51.58366], [-0.27879, 51.58415], [-0.27869, 51.58449], [-0.27862, 51.58472]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4248580", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.29944, 51.61493], [-0.29951, 51.61503], [-0.29956, 51.61513], [-0.2996, 51.6152], [-0.29966, 51.61531], [-0.29972, 51.61541], [-0.30073, 51.6167]]}}, {"type": "Feature", "properties": {"osm_id": "4251688", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.05102, 53.27157], [-3.05054, 53.27115], [-3.04991, 53.27063], [-3.04927, 53.27011], [-3.04875, 53.26964], [-3.04811, 53.26899], [-3.04762, 53.26842], [-3.04729, 53.26797], [-3.04699, 53.26752], [-3.04672, 53.26701], [-3.0465, 53.26654], [-3.04629, 53.266], [-3.04616, 53.26555], [-3.04606, 53.26515], [-3.04599, 53.26473], [-3.04593, 53.2643], [-3.04591, 53.26388], [-3.04592, 53.26348], [-3.046, 53.26232], [-3.04597, 53.26146], [-3.04593, 53.26106], [-3.04585, 53.26056], [-3.04566, 53.25973], [-3.04542, 53.25894], [-3.04525, 53.25855], [-3.04503, 53.25805], [-3.04483, 53.25766], [-3.04457, 53.25722], [-3.04398, 53.25618], [-3.0425, 53.25363], [-3.04175, 53.25235], [-3.04105, 53.25113], [-3.03869, 53.24704], [-3.03565, 53.24181]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4254002", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.14291, 51.53379], [-0.14274, 51.53364], [-0.14258, 51.53349], [-0.14244, 51.53337], [-0.14231, 51.53326], [-0.14216, 51.53314], [-0.14198, 51.533], [-0.14182, 51.53287], [-0.14162, 51.53273], [-0.14146, 51.53261], [-0.14102, 51.53234], [-0.14087, 51.53225], [-0.14067, 51.53212], [-0.14054, 51.53205], [-0.14039, 51.53197], [-0.14012, 51.53185], [-0.13905, 51.53139], [-0.13892, 51.53133], [-0.13867, 51.53122], [-0.13852, 51.53116], [-0.13843, 51.53113], [-0.13832, 51.53108], [-0.1382, 51.53102], [-0.13804, 51.53093]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4254543", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.85389, 52.4979], [-1.8536, 52.4978], [-1.85337, 52.49772], [-1.85307, 52.49761], [-1.85281, 52.49751], [-1.85249, 52.49739], [-1.85221, 52.49727], [-1.85184, 52.49711], [-1.85156, 52.49698], [-1.85129, 52.49685], [-1.85099, 52.4967], [-1.85075, 52.49658], [-1.85046, 52.49641], [-1.85011, 52.49621], [-1.84987, 52.49608], [-1.84953, 52.4959], [-1.84817, 52.49517], [-1.84792, 52.49504], [-1.84767, 52.49491], [-1.84738, 52.49477], [-1.84701, 52.4946], [-1.84666, 52.49445], [-1.84637, 52.49432], [-1.84609, 52.49421], [-1.84585, 52.49412], [-1.84556, 52.49401], [-1.84531, 52.49392], [-1.84497, 52.4938], [-1.8445, 52.49365], [-1.84394, 52.49347], [-1.84336, 52.49328]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254973", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.19592, 51.0905], [1.19738, 51.0911], [1.19848, 51.09156], [1.1995, 51.09197], [1.20063, 51.09243], [1.20116, 51.09267], [1.2017, 51.09288]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254974", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.17117, 51.08271], [1.17232, 51.08276], [1.1727, 51.08279], [1.17335, 51.08284], [1.17379, 51.08288], [1.17423, 51.08293], [1.17464, 51.08298], [1.17501, 51.08303], [1.17547, 51.0831], [1.17629, 51.08325], [1.17652, 51.0833], [1.17707, 51.08342], [1.17747, 51.08352]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254975", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.2017, 51.09288], [1.20266, 51.09327], [1.20332, 51.09351], [1.20499, 51.09413], [1.20741, 51.09502], [1.20873, 51.09551], [1.21062, 51.09621], [1.21155, 51.09655], [1.21198, 51.09671], [1.21239, 51.09688], [1.21289, 51.0971], [1.21324, 51.09725], [1.21356, 51.0974], [1.21408, 51.09763], [1.2144, 51.09778], [1.21469, 51.09789], [1.21506, 51.09804], [1.21538, 51.09815], [1.21576, 51.09829], [1.21608, 51.0984], [1.21662, 51.09857], [1.21718, 51.09872], [1.21764, 51.09885], [1.2181, 51.09896], [1.2186, 51.09907], [1.21906, 51.09916], [1.21941, 51.09923], [1.21999, 51.09933], [1.22057, 51.09942], [1.22109, 51.0995], [1.22173, 51.09959], [1.22247, 51.09969], [1.22299, 51.09974], [1.2239, 51.09984], [1.22466, 51.09991], [1.2257, 51.10001], [1.22679, 51.10012], [1.22786, 51.10022], [1.22929, 51.10035], [1.23031, 51.10045], [1.23164, 51.10056], [1.23263, 51.10065], [1.23299, 51.10069], [1.23388, 51.10077], [1.23497, 51.10088], [1.23692, 51.10106], [1.23793, 51.10116]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254976", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.23793, 51.10116], [1.23815, 51.10118], [1.23902, 51.10126], [1.2404, 51.10138], [1.24241, 51.10156], [1.24386, 51.1017], [1.24704, 51.10198], [1.24904, 51.10216], [1.25104, 51.10235], [1.25302, 51.10252], [1.26292, 51.1034], [1.26305, 51.10341]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254977", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.27949, 51.10784], [1.2821, 51.10855], [1.28411, 51.10911], [1.28613, 51.10966], [1.28815, 51.11022], [1.29018, 51.11077], [1.2922, 51.11133], [1.29422, 51.11188], [1.29532, 51.11219], [1.29623, 51.11244]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4254979", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.14137, 51.08658], [1.14187, 51.08651], [1.14251, 51.08641], [1.14323, 51.0863], [1.14428, 51.08614], [1.14519, 51.08601], [1.14601, 51.08589], [1.14678, 51.08577], [1.14823, 51.08556], [1.14916, 51.08543], [1.15035, 51.08528], [1.15089, 51.0852], [1.15163, 51.0851], [1.1523, 51.085]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4256299", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.00949, 51.5368], [-0.01095, 51.53581], [-0.01162, 51.5354]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4257679", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.08995, 51.57548], [0.08995, 51.5756], [0.08989, 51.57622], [0.08985, 51.57644], [0.08978, 51.57669], [0.08952, 51.57762], [0.08933, 51.57814], [0.08907, 51.57879], [0.08889, 51.57946], [0.08867, 51.58014], [0.08844, 51.58088], [0.08826, 51.58168], [0.0882, 51.58247], [0.08819, 51.58318], [0.08836, 51.58441], [0.0886, 51.58582], [0.08883, 51.58734], [0.08932, 51.59003], [0.08969, 51.59121], [0.09022, 51.59296], [0.09057, 51.59416], [0.09091, 51.59529]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4259845", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.18326, 51.55023], [-0.18175, 51.55068], [-0.1678, 51.55458]]}}, {"type": "Feature", "properties": {"osm_id": "4263334", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07988, 51.56154], [0.07952, 51.56135], [0.07921, 51.56121]]}}, {"type": "Feature", "properties": {"osm_id": "4263335", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.08169, 51.56226], [0.08197, 51.5624], [0.08206, 51.56245], [0.08222, 51.5625], [0.08242, 51.56256], [0.08275, 51.56264], [0.08294, 51.56268], [0.08365, 51.56283], [0.08402, 51.56292], [0.08445, 51.56301], [0.08475, 51.56307]]}}, {"type": "Feature", "properties": {"osm_id": "4263336", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07807, 51.56198], [0.0792, 51.56224], [0.08091, 51.56261], [0.08137, 51.56271], [0.0814, 51.56272], [0.08273, 51.56302]]}}, {"type": "Feature", "properties": {"osm_id": "4263352", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.08488, 51.56344], [0.08526, 51.56348], [0.0855, 51.56351], [0.08572, 51.56355], [0.08595, 51.56356], [0.08624, 51.5636], [0.08646, 51.56363], [0.08668, 51.56367], [0.08691, 51.56374], [0.08714, 51.56383]]}}, {"type": "Feature", "properties": {"osm_id": "4263353", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.086, 51.56345], [0.08636, 51.56345], [0.08645, 51.56346], [0.08674, 51.56346], [0.08704, 51.56347], [0.08731, 51.56347], [0.08753, 51.5635], [0.08777, 51.56352], [0.08794, 51.56354], [0.08815, 51.56356]]}}, {"type": "Feature", "properties": {"osm_id": "4263354", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.08352, 51.56214], [0.08446, 51.56234], [0.08529, 51.56252], [0.08595, 51.56266], [0.08654, 51.56279], [0.08724, 51.56294], [0.08768, 51.56302], [0.08806, 51.56307], [0.08839, 51.56311], [0.08896, 51.56316], [0.08952, 51.56322], [0.0901, 51.56327], [0.0903, 51.56329]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4264492", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.14756, 51.55371], [-0.14793, 51.5533], [-0.14853, 51.55305], [-0.1492, 51.55289]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4269413", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.09386, 51.60532], [0.09387, 51.60557], [0.09385, 51.60575]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4269414", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.0936, 51.61185], [0.09334, 51.61204]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4269415", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.095, 51.60967], [0.09497, 51.60981], [0.09494, 51.60993], [0.09487, 51.6101], [0.09481, 51.61021], [0.09474, 51.61033], [0.09466, 51.61044], [0.09456, 51.61057], [0.09445, 51.61077], [0.09439, 51.61091], [0.09428, 51.61117], [0.09423, 51.61126], [0.09417, 51.61137]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4271672", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.48657, 51.50576], [-0.48671, 51.50536], [-0.48682, 51.50495], [-0.48688, 51.50448], [-0.48688, 51.50435], [-0.48686, 51.50421], [-0.48684, 51.50398], [-0.48684, 51.5038], [-0.4869, 51.5035], [-0.48698, 51.50332], [-0.4871, 51.50309]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4271955", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.32673, 51.97258], [1.32482, 51.97366]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4271974", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.17462, 52.05782], [1.17425, 52.05822], [1.17315, 52.05985], [1.17252, 52.06106]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4272096", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.00492, 51.76228], [0.00419, 51.76182], [0.0038, 51.76157], [0.00261, 51.76075], [0.00208, 51.76038], [0.00114, 51.7597], [0.00021, 51.75897], [-0.00051, 51.7584], [-0.0013, 51.75772], [-0.00198, 51.75712], [-0.00215, 51.75696], [-0.00294, 51.7562], [-0.00366, 51.75552], [-0.00419, 51.75496], [-0.00474, 51.75435], [-0.00544, 51.75358], [-0.00601, 51.75288]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4272098", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.00111, 51.78797], [0.00127, 51.78769], [0.00142, 51.78744], [0.00165, 51.78701], [0.00184, 51.78662], [0.00198, 51.78629], [0.00209, 51.78596], [0.00218, 51.78566], [0.00229, 51.78526], [0.00234, 51.785], [0.00242, 51.78454], [0.00246, 51.78421], [0.00248, 51.78393], [0.00249, 51.78364], [0.0025, 51.78327], [0.00243, 51.78252], [0.00236, 51.78209], [0.00228, 51.78174], [0.00217, 51.78135], [0.00202, 51.78091], [0.00185, 51.7805], [0.00157, 51.77973], [0.00143, 51.77914], [0.00138, 51.77885], [0.00135, 51.77857], [0.00133, 51.77829], [0.00133, 51.77776], [0.00138, 51.77724], [0.00141, 51.77695]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4272107", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.0687, 51.80005], [-0.06832, 51.80012], [-0.06758, 51.80026], [-0.06665, 51.80042], [-0.06611, 51.80055], [-0.06541, 51.80074], [-0.06479, 51.80093], [-0.06409, 51.80114], [-0.06219, 51.8017], [-0.06155, 51.80191], [-0.0582, 51.80309], [-0.05572, 51.80397], [-0.0524, 51.80513], [-0.04956, 51.80612], [-0.04652, 51.80717], [-0.04584, 51.80737], [-0.0458, 51.80738]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4272110", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.02376, 51.70322], [-0.02377, 51.70319], [-0.02384, 51.70273]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4272111", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.02626, 51.68612], [-0.02633, 51.6857], [-0.02637, 51.68542], [-0.02639, 51.68522]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4275364", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.37207, 55.97328], [-3.37269, 55.97376], [-3.37311, 55.97412], [-3.37348, 55.97451], [-3.37389, 55.97498]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4276085", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.13529, 52.19093], [0.13572, 52.19154], [0.13594, 52.19185], [0.1364, 52.1925], [0.13678, 52.19303], [0.13715, 52.19353], [0.13748, 52.19398]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4276086", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.15655, 52.22039], [0.15635, 52.22002]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4277458", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.14703, 52.20699], [0.1476, 52.20755], [0.14775, 52.20767], [0.14788, 52.20775], [0.14805, 52.20784], [0.14822, 52.20792], [0.14862, 52.20806], [0.14894, 52.20814], [0.14924, 52.2082], [0.14951, 52.20823], [0.14976, 52.20824]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4277459", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.15008, 52.20824], [0.15032, 52.20822], [0.15052, 52.2082], [0.15082, 52.20815], [0.15133, 52.20802], [0.15162, 52.2079], [0.15189, 52.20777], [0.15208, 52.20763], [0.15238, 52.20741], [0.15371, 52.20615], [0.15382, 52.20605], [0.1542, 52.20569], [0.15674, 52.20335], [0.15791, 52.20222], [0.15893, 52.20118]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4277925", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.91934, 52.21303], [-0.91839, 52.21532], [-0.91743, 52.21759], [-0.91655, 52.21964], [-0.91645, 52.21989], [-0.9164, 52.21999], [-0.91544, 52.2222]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278677", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15594, 52.90911], [-2.15577, 52.90896], [-2.15555, 52.90874], [-2.1553, 52.90848], [-2.15521, 52.90837], [-2.15506, 52.90815], [-2.15496, 52.90797], [-2.15487, 52.90778], [-2.15477, 52.90755], [-2.15471, 52.90732], [-2.15466, 52.9071], [-2.15465, 52.90706], [-2.15464, 52.9068], [-2.15467, 52.90647], [-2.15473, 52.90616]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278678", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15473, 52.90616], [-2.15479, 52.90597]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278679", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15479, 52.90597], [-2.15494, 52.90565], [-2.15508, 52.90533]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278680", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15508, 52.90533], [-2.15518, 52.90517]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278681", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15518, 52.90517], [-2.15564, 52.90441], [-2.15594, 52.90403], [-2.15624, 52.90364]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4278682", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.15821, 52.9019], [-2.15853, 52.90166]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4281149", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.3264, 55.88273], [-4.32561, 55.88271]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4281283", "railway": "rail", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-1.1657, 50.65011], [-1.16569, 50.65038]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4281563", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.10884, 51.2672], [-1.1097, 51.26715]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281564", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.32928, 51.23781], [-1.32805, 51.23796], [-1.32679, 51.23816], [-1.31017, 51.24101], [-1.30919, 51.2412], [-1.30824, 51.24141], [-1.3073, 51.24163], [-1.30628, 51.24191], [-1.28118, 51.24933], [-1.27993, 51.24967], [-1.27885, 51.24994], [-1.27799, 51.25015], [-1.26003, 51.25415], [-1.25603, 51.25503]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281565", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.45209, 51.22091], [-1.44981, 51.22149], [-1.41478, 51.2306]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281566", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.56164, 51.18531], [-1.56063, 51.18587], [-1.55977, 51.18638], [-1.55888, 51.18694], [-1.55814, 51.18743], [-1.55745, 51.1879], [-1.55676, 51.18841], [-1.55611, 51.18891], [-1.55542, 51.18945], [-1.55482, 51.18996], [-1.55369, 51.19098], [-1.55305, 51.19151], [-1.55233, 51.19207], [-1.55163, 51.19259], [-1.55092, 51.19309], [-1.55017, 51.19359], [-1.54884, 51.19443], [-1.54812, 51.19485], [-1.54736, 51.19526], [-1.54068, 51.19876]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281606", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.81775, 51.07278], [-1.81853, 51.07308], [-1.8195, 51.07352], [-1.8201, 51.07381], [-1.82034, 51.07393], [-1.82138, 51.07448], [-1.82214, 51.07484], [-1.82294, 51.07522], [-1.82366, 51.07553], [-1.82441, 51.07585], [-1.8258, 51.07642], [-1.82703, 51.07691], [-1.82837, 51.07743], [-1.82963, 51.07788], [-1.83105, 51.07833], [-1.83253, 51.07877], [-1.8339, 51.07913], [-1.83428, 51.07923]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281607", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.88276, 51.08087], [-1.88373, 51.08074], [-1.88467, 51.08061], [-1.88559, 51.08051], [-1.88956, 51.0801], [-1.89048, 51.08002], [-1.89132, 51.07998], [-1.89232, 51.07997], [-1.89319, 51.07999], [-1.89408, 51.08004], [-1.89488, 51.08012], [-1.89579, 51.08024], [-1.89668, 51.08037], [-1.89747, 51.08052], [-1.89839, 51.08072], [-1.89918, 51.08094], [-1.89995, 51.08117], [-1.90073, 51.08145], [-1.90223, 51.08198], [-1.903, 51.08222], [-1.90385, 51.08247], [-1.9047, 51.08265], [-1.90556, 51.08283], [-1.90654, 51.08298], [-1.90757, 51.08311], [-1.90852, 51.08321], [-1.91857, 51.08422]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281608", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.92674, 51.08503], [-1.92786, 51.08507], [-1.92889, 51.0851], [-1.92995, 51.0851], [-1.931, 51.08507], [-1.93201, 51.08502], [-1.93298, 51.08494], [-1.93399, 51.08484], [-1.97015, 51.0802], [-1.99819, 51.07658], [-1.99824, 51.07657]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281609", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.0307, 51.06681], [-2.03152, 51.06689], [-2.03523, 51.06734], [-2.03598, 51.06742], [-2.03674, 51.0675], [-2.03741, 51.06755], [-2.03806, 51.06759], [-2.03879, 51.06761], [-2.03957, 51.06761], [-2.0404, 51.06761], [-2.04122, 51.06758], [-2.04204, 51.06753], [-2.04275, 51.06747], [-2.04344, 51.0674], [-2.04414, 51.06732], [-2.05008, 51.06649], [-2.05085, 51.0664], [-2.0517, 51.0663], [-2.05242, 51.06623], [-2.05311, 51.06619], [-2.05399, 51.06615], [-2.05483, 51.06613], [-2.05582, 51.06613], [-2.05676, 51.06616], [-2.05765, 51.0662], [-2.05858, 51.06627], [-2.05967, 51.06638], [-2.06048, 51.06644], [-2.06134, 51.06648], [-2.06155, 51.06649], [-2.0619, 51.06649], [-2.06245, 51.06648], [-2.06301, 51.06644], [-2.06359, 51.06638], [-2.0642, 51.0663], [-2.06475, 51.06621], [-2.06532, 51.0661]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281610", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.10203, 51.05064], [-2.10497, 51.04973], [-2.10574, 51.0495], [-2.10658, 51.04927], [-2.10745, 51.04904], [-2.10841, 51.04879], [-2.10931, 51.04857], [-2.11024, 51.04835], [-2.11126, 51.04814], [-2.11213, 51.04795], [-2.11308, 51.04777], [-2.11413, 51.04758], [-2.11509, 51.04742], [-2.11602, 51.04727], [-2.11702, 51.04713], [-2.11813, 51.047], [-2.11912, 51.04689], [-2.12015, 51.04678], [-2.1212, 51.0467], [-2.12235, 51.04661], [-2.12349, 51.04653], [-2.12475, 51.04646], [-2.12608, 51.04639], [-2.12731, 51.04635], [-2.12858, 51.04634], [-2.12992, 51.04635], [-2.13107, 51.04637], [-2.13202, 51.0464], [-2.13302, 51.04644], [-2.13414, 51.0465], [-2.13529, 51.04658], [-2.13619, 51.04665]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281612", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.2698, 51.0348], [-2.2659, 51.03596], [-2.26489, 51.03627], [-2.26408, 51.03656], [-2.26338, 51.03681], [-2.26253, 51.03716], [-2.26168, 51.03751]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281613", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.3305, 51.02065], [-2.33432, 51.02031]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281636", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47152, 50.98093], [-2.47166, 50.98082]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281637", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.4993, 50.95483], [-2.5003, 50.95406], [-2.50084, 50.95365], [-2.50138, 50.95321], [-2.50971, 50.94616], [-2.51075, 50.94538]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4281638", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.51087, 50.9453], [-2.51133, 50.94496], [-2.51218, 50.94443], [-2.51276, 50.94409], [-2.51338, 50.94372], [-2.51385, 50.94347], [-2.51461, 50.94307], [-2.51575, 50.94252], [-2.51684, 50.94203], [-2.51813, 50.94151], [-2.5194, 50.94102], [-2.52047, 50.94064], [-2.5218, 50.94017], [-2.52311, 50.93975], [-2.53615, 50.93569], [-2.53886, 50.93485], [-2.54074, 50.93429], [-2.54247, 50.93381], [-2.54386, 50.93346], [-2.54554, 50.93307], [-2.54712, 50.93274], [-2.54909, 50.93238], [-2.55054, 50.93213], [-2.56894, 50.92913], [-2.57046, 50.9289], [-2.57205, 50.9287], [-2.5739, 50.92851], [-2.57557, 50.92837]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4281667", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.54241, 50.85319], [0.54282, 50.85326]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4283015", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.92826, 52.76841], [-1.92646, 52.76658]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4287455", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.56665, 55.92283], [-4.5649, 55.92294], [-4.56414, 55.92296], [-4.56329, 55.92298], [-4.5626, 55.92299], [-4.5619, 55.92298], [-4.56117, 55.92296], [-4.56049, 55.92292], [-4.55983, 55.92286], [-4.5592, 55.9228], [-4.55823, 55.9227], [-4.55698, 55.92254], [-4.5559, 55.92239]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4287456", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.5559, 55.92239], [-4.55452, 55.92218]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4288251", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.07729, 52.23114], [-1.07766, 52.23158], [-1.07807, 52.23205], [-1.07853, 52.23249], [-1.07904, 52.23294], [-1.07998, 52.23364], [-1.0805, 52.234], [-1.08123, 52.23447], [-1.0821, 52.23503], [-1.08314, 52.23569], [-1.08371, 52.23611], [-1.08458, 52.23685], [-1.08512, 52.23739], [-1.0857, 52.23808], [-1.08602, 52.23854], [-1.08634, 52.2391], [-1.08661, 52.23968], [-1.08677, 52.24007], [-1.08697, 52.24073], [-1.08707, 52.24152], [-1.08711, 52.24216], [-1.08708, 52.24261], [-1.08702, 52.24312], [-1.08691, 52.2436], [-1.08669, 52.24442], [-1.0864, 52.24539], [-1.08613, 52.24632], [-1.08588, 52.24729], [-1.08578, 52.2478], [-1.08571, 52.24822], [-1.08561, 52.24919], [-1.08556, 52.25053], [-1.08561, 52.25116], [-1.08565, 52.25178], [-1.08572, 52.25243], [-1.08584, 52.25309], [-1.08599, 52.25375], [-1.08616, 52.25441], [-1.08641, 52.25518], [-1.08673, 52.256], [-1.08699, 52.2566], [-1.08726, 52.25717], [-1.08768, 52.25792], [-1.08811, 52.2586], [-1.0884, 52.25906], [-1.08896, 52.25983], [-1.08974, 52.26079], [-1.09082, 52.262], [-1.09171, 52.26295]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4288468", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.0125, 51.44992], [0.01278, 51.44989]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4288470", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00613, 51.45054], [0.00701, 51.45045], [0.00787, 51.45036], [0.00888, 51.45028], [0.00978, 51.45021], [0.01098, 51.45008], [0.0118, 51.44999], [0.01216, 51.44996], [0.0125, 51.44992]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4289340", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.00095, 51.45217], [-0.00025, 51.45183], [0.00013, 51.45168], [0.0006, 51.45151], [0.00109, 51.45136], [0.00161, 51.45122], [0.0021, 51.45109]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4289765", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.17809, 51.67924], [-0.18124, 51.68434], [-0.18388, 51.68852]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4289766", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19011, 51.69492], [-0.18942, 51.69432], [-0.18669, 51.69194], [-0.18574, 51.69107], [-0.18488, 51.69014], [-0.18419, 51.68928], [-0.18372, 51.68856]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4289938", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.18409, 51.57497], [0.1842, 51.575]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4290019", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.03104, 51.44617], [0.03171, 51.4459], [0.03239, 51.44562]]}}, {"type": "Feature", "properties": {"osm_id": "4291504", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.84963, 53.18861], [-2.84837, 53.18754]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4291505", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83144, 53.16998], [-2.83396, 53.17177], [-2.83536, 53.17281], [-2.83614, 53.17342], [-2.83624, 53.17351], [-2.83673, 53.17389], [-2.83773, 53.17478], [-2.83812, 53.17513], [-2.83923, 53.17616], [-2.83978, 53.17669], [-2.84025, 53.17724], [-2.84129, 53.17829], [-2.84149, 53.1785], [-2.84232, 53.17945], [-2.84289, 53.18015], [-2.84399, 53.18164], [-2.84574, 53.18426], [-2.84625, 53.18498]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4292347", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.13311, 50.83724], [-0.13259, 50.83735], [-0.13199, 50.83749], [-0.13141, 50.83764], [-0.13076, 50.83784], [-0.13011, 50.83806], [-0.12922, 50.83837]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4292830", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19018, 51.64787], [-0.19068, 51.6484], [-0.19093, 51.64863], [-0.19127, 51.64887], [-0.19167, 51.64912], [-0.19215, 51.64939], [-0.19259, 51.64966], [-0.19264, 51.64969], [-0.19289, 51.64983], [-0.193, 51.64989], [-0.19378, 51.65031], [-0.19495, 51.65097]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4292843", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.17368, 51.65032], [-0.174, 51.65092], [-0.17429, 51.65158], [-0.17461, 51.65244], [-0.17487, 51.65331], [-0.17499, 51.65379], [-0.17508, 51.65426], [-0.17518, 51.65485], [-0.17525, 51.65544], [-0.17531, 51.65623], [-0.17536, 51.65702], [-0.17543, 51.65789], [-0.17547, 51.65837], [-0.1755, 51.65884], [-0.17573, 51.66154], [-0.17589, 51.66289], [-0.17596, 51.66356], [-0.17602, 51.66424]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4292845", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.15622, 51.62729], [-0.15831, 51.62944], [-0.15924, 51.63032], [-0.1606, 51.63166]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300628", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.30213, 53.25013], [-2.30091, 53.25165], [-2.29973, 53.25314], [-2.29897, 53.2541], [-2.29819, 53.25506], [-2.29781, 53.25551], [-2.2974, 53.25596], [-2.29701, 53.25637], [-2.29681, 53.25657], [-2.29662, 53.25675], [-2.29415, 53.25912]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300629", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.23136, 53.31377], [-2.23104, 53.31435]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300631", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22761, 53.3208], [-2.22747, 53.32104]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300632", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22747, 53.32104], [-2.22727, 53.32147], [-2.22716, 53.3217], [-2.22703, 53.32198], [-2.22688, 53.32235]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300633", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22602, 53.32607], [-2.22598, 53.32633]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300634", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22567, 53.32813], [-2.22544, 53.32893], [-2.22535, 53.32923], [-2.22526, 53.32953], [-2.22507, 53.33012]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4300635", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22598, 53.32633], [-2.22594, 53.32671], [-2.2259, 53.32699], [-2.22583, 53.32739], [-2.22567, 53.32813]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4303775", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.25714, 51.40381], [-0.25643, 51.40395]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4303776", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.19797, 51.42917], [-0.19668, 51.43072], [-0.19584, 51.43201]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4305261", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.23257, 51.4078], [-0.23285, 51.40759], [-0.23342, 51.40719], [-0.23414, 51.4066], [-0.23476, 51.40592]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4305262", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.23563, 51.4045], [-0.23559, 51.40459], [-0.23552, 51.40482], [-0.23549, 51.4049]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4306130", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.26886, 52.39262], [0.26847, 52.39232]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4306132", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.26847, 52.39232], [0.26842, 52.39228]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306279", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.34489, 52.41999], [0.34623, 52.42034]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306282", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.29049, 52.40448], [0.2902, 52.40435], [0.29006, 52.40429], [0.28978, 52.4042], [0.28953, 52.40413], [0.28928, 52.40409], [0.28897, 52.40405], [0.28866, 52.40403], [0.28832, 52.40403], [0.2879, 52.40407], [0.28724, 52.40421], [0.28674, 52.40439], [0.28639, 52.40455], [0.28611, 52.40473], [0.28589, 52.40495], [0.2857, 52.40525], [0.28559, 52.40561], [0.28559, 52.40585], [0.28559, 52.40608], [0.28568, 52.40633], [0.28585, 52.40662], [0.28609, 52.40686], [0.28649, 52.40715], [0.28709, 52.40748], [0.28943, 52.40876], [0.29236, 52.41035], [0.29529, 52.41194], [0.29557, 52.41211], [0.29581, 52.4123], [0.29605, 52.41254], [0.29618, 52.41276], [0.29628, 52.413], [0.29633, 52.41324], [0.29634, 52.41352]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4306285", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.24666, 52.348], [0.24643, 52.34754]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306287", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.29633, 52.40695], [0.29548, 52.40668], [0.2947, 52.4064], [0.2937, 52.40603]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306483", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.21089, 52.47411], [0.20889, 52.4755]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306485", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.20889, 52.4755], [0.20737, 52.47655], [0.20335, 52.47944]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306486", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.20335, 52.47944], [0.20046, 52.48152]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306487", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.21862, 52.46875], [0.21144, 52.47373]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4306545", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.26531, 52.37978], [0.26564, 52.37961], [0.2717, 52.37633]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4307809", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.1884, 51.36029], [-0.18803, 51.36037], [-0.18786, 51.3604], [-0.1877, 51.36044], [-0.18739, 51.36051], [-0.18706, 51.3606]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4307811", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32871, 51.25399], [-0.3289, 51.25471], [-0.32905, 51.25538], [-0.32914, 51.25592], [-0.32921, 51.25643], [-0.32927, 51.25723], [-0.32936, 51.25803]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4308063", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.47337, 50.56249], [-3.47381, 50.56236], [-3.47424, 50.56222]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4309316", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10517, 51.34266], [-0.10661, 51.34184], [-0.10734, 51.34142], [-0.10799, 51.34103], [-0.10838, 51.34081], [-0.10886, 51.34054], [-0.10939, 51.34024], [-0.10994, 51.33991], [-0.11058, 51.33954], [-0.11086, 51.33937], [-0.11092, 51.33933]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4309923", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.47161, 51.62414], [0.47072, 51.62402], [0.47027, 51.62395], [0.46941, 51.62379], [0.46823, 51.62362], [0.46782, 51.62355], [0.46739, 51.6235], [0.46651, 51.62339], [0.46607, 51.62335], [0.465, 51.62329], [0.4635, 51.62327], [0.46187, 51.62333], [0.46032, 51.62349], [0.45915, 51.62368], [0.45838, 51.62381], [0.45699, 51.62411], [0.45484, 51.6246], [0.45272, 51.62508], [0.45093, 51.62551], [0.45054, 51.62559], [0.45011, 51.62569], [0.44926, 51.62589], [0.44758, 51.62626], [0.44561, 51.62672], [0.44341, 51.62719], [0.44097, 51.6277], [0.43983, 51.6279], [0.43939, 51.62796], [0.43916, 51.62799], [0.43892, 51.62801], [0.43847, 51.62805], [0.43804, 51.62809], [0.4376, 51.62813], [0.43677, 51.6282], [0.43651, 51.62822], [0.43613, 51.62824], [0.43575, 51.62825], [0.43531, 51.62826], [0.43442, 51.62827], [0.43365, 51.62826], [0.43304, 51.62823], [0.43151, 51.62817], [0.42962, 51.62803], [0.42729, 51.62787], [0.42612, 51.62782], [0.42571, 51.62782], [0.42531, 51.62781], [0.42516, 51.62781], [0.425, 51.62782], [0.4247, 51.62783], [0.42411, 51.62785], [0.4225, 51.62798], [0.42183, 51.62805], [0.42122, 51.62815], [0.4202, 51.62834], [0.41913, 51.6286], [0.41845, 51.62876], [0.41781, 51.62892], [0.41719, 51.62907], [0.41702, 51.62911], [0.41687, 51.62914], [0.4166, 51.62921], [0.41603, 51.62934], [0.41554, 51.62945], [0.41453, 51.62962], [0.41348, 51.62979], [0.41287, 51.62987], [0.41228, 51.62993], [0.41169, 51.62998], [0.41145, 51.63001], [0.40803, 51.63028], [0.40782, 51.6303], [0.40758, 51.63032], [0.40742, 51.63033], [0.40726, 51.63034], [0.40706, 51.63037], [0.40669, 51.63041], [0.40643, 51.63044], [0.40615, 51.63047], [0.4056, 51.63054], [0.40531, 51.63057], [0.40486, 51.63064], [0.40394, 51.63077], [0.40291, 51.63092], [0.4018, 51.63112], [0.40068, 51.63133], [0.39847, 51.6318], [0.39403, 51.63272], [0.38626, 51.63431]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4311088", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.26162, 52.38524], [0.26148, 52.38494], [0.26142, 52.38474], [0.26122, 52.3841], [0.2612, 52.38367], [0.26125, 52.38322], [0.26135, 52.38286], [0.2615, 52.38251], [0.26182, 52.38204], [0.26201, 52.3818], [0.26234, 52.38146], [0.2626, 52.38127], [0.26336, 52.3808], [0.26352, 52.38072], [0.26445, 52.38023]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4311110", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.26445, 52.38023], [0.26531, 52.37978]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4311684", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.89615, 53.19464], [-2.89555, 53.19502], [-2.89486, 53.1954], [-2.89395, 53.19579]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4311685", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.89395, 53.19579], [-2.89252, 53.19647]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4311779", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32147, 51.2394], [-0.32112, 51.23922], [-0.32077, 51.23906], [-0.32041, 51.23892], [-0.32023, 51.23885], [-0.31977, 51.23871], [-0.31946, 51.23863], [-0.31914, 51.23855], [-0.31878, 51.23848], [-0.31821, 51.2384], [-0.3176, 51.23832], [-0.31726, 51.23826], [-0.31702, 51.23821], [-0.31669, 51.23813], [-0.31628, 51.23801], [-0.316, 51.23791], [-0.31575, 51.23782], [-0.31551, 51.23772]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4311780", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32089, 51.18114], [-0.32035, 51.1815], [-0.31893, 51.18228], [-0.31796, 51.18277], [-0.317, 51.18322], [-0.31574, 51.18372], [-0.3143, 51.1843], [-0.31264, 51.18512], [-0.31096, 51.18612], [-0.30885, 51.18756], [-0.30602, 51.18949]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4311804", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.32253, 51.11656], [-0.32154, 51.11778], [-0.3212, 51.1182], [-0.3205, 51.11926], [-0.31969, 51.12095], [-0.31934, 51.12215], [-0.31922, 51.1229], [-0.31925, 51.12404], [-0.31951, 51.12544], [-0.31984, 51.12624], [-0.3203, 51.12717], [-0.32121, 51.12844], [-0.3214, 51.12868], [-0.32155, 51.12884], [-0.32165, 51.12895], [-0.32261, 51.12984], [-0.323, 51.13017], [-0.32319, 51.13032], [-0.32348, 51.13054], [-0.32407, 51.13099], [-0.32499, 51.13166], [-0.32672, 51.133], [-0.32894, 51.1347]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4311810", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.3362, 51.15022], [-0.33621, 51.15062]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4311811", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.33621, 51.15062], [-0.3362, 51.15157], [-0.33613, 51.15223], [-0.33606, 51.1529], [-0.33597, 51.15342], [-0.3357, 51.15457], [-0.33551, 51.1552], [-0.3352, 51.15602], [-0.33451, 51.15761], [-0.33375, 51.15897], [-0.33138, 51.16237], [-0.33019, 51.16421], [-0.32952, 51.16536], [-0.32899, 51.16658], [-0.32879, 51.16719], [-0.32861, 51.16791], [-0.32846, 51.1688], [-0.32838, 51.16959], [-0.3283, 51.17069], [-0.32825, 51.17123], [-0.32819, 51.17164], [-0.32812, 51.17198], [-0.32793, 51.17275], [-0.32783, 51.17308], [-0.32771, 51.17347], [-0.32762, 51.17369], [-0.32743, 51.17412], [-0.327, 51.17495], [-0.32678, 51.17535], [-0.3265, 51.17579], [-0.32619, 51.17623], [-0.3259, 51.17661]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4312838", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.91385, 53.37705], [-2.91355, 53.37646], [-2.91338, 53.37609], [-2.91294, 53.37533], [-2.9122, 53.37429], [-2.91138, 53.37329], [-2.91026, 53.37208], [-2.90909, 53.37094], [-2.90763, 53.36974], [-2.90732, 53.36951], [-2.90666, 53.36904], [-2.90652, 53.36894], [-2.90507, 53.36799], [-2.90258, 53.36649], [-2.89658, 53.36289], [-2.89301, 53.36075], [-2.89255, 53.36048], [-2.89167, 53.35996]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4312839", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.89167, 53.35996], [-2.89139, 53.35979]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4313876", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.89139, 53.35979], [-2.89066, 53.35935], [-2.89046, 53.35923]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4313877", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.89046, 53.35923], [-2.88995, 53.35892]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314352", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51855, 53.70044], [-1.51853, 53.69998], [-1.51847, 53.69952], [-1.51838, 53.69906], [-1.51833, 53.69883], [-1.51825, 53.69859], [-1.51813, 53.69823], [-1.51795, 53.69777]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314354", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51835, 53.7022], [-1.51846, 53.70168]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314358", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51117, 53.6898], [-1.51079, 53.6892], [-1.51034, 53.68854], [-1.50998, 53.68802], [-1.50958, 53.68751], [-1.50918, 53.68697], [-1.50874, 53.68641], [-1.50831, 53.68583]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314359", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51739, 53.69677], [-1.5173, 53.69663]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314360", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.50831, 53.68583], [-1.50824, 53.68574]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314364", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.50475, 53.68124], [-1.50438, 53.68072], [-1.50423, 53.68047], [-1.50395, 53.68006], [-1.50374, 53.67976], [-1.50345, 53.6794]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4314365", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.50489, 53.68144], [-1.50475, 53.68124]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4314626", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.49449, 52.10442], [-0.49335, 52.10536], [-0.4919, 52.10638], [-0.49146, 52.10665], [-0.48975, 52.10766], [-0.4885, 52.1084], [-0.48496, 52.11048], [-0.48309, 52.11158], [-0.48166, 52.11243], [-0.48006, 52.11337], [-0.47932, 52.11381], [-0.47831, 52.1144], [-0.47755, 52.11485], [-0.47625, 52.11563], [-0.47501, 52.1165], [-0.47417, 52.11724], [-0.47407, 52.11735], [-0.47314, 52.11843], [-0.47215, 52.11976], [-0.47155, 52.12056], [-0.46911, 52.12385], [-0.46803, 52.12537]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4316869", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.49096, 53.67811], [-1.49129, 53.678], [-1.49236, 53.67764], [-1.493, 53.67742]]}}, {"type": "Feature", "properties": {"osm_id": "4316871", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.493, 53.67742], [-1.49316, 53.67737], [-1.49346, 53.67725]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4317711", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.12596, 51.43537], [0.12579, 51.43536]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4318593", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.27401, 51.46924], [0.27779, 51.46757], [0.27897, 51.46708], [0.28023, 51.46664], [0.28196, 51.46606], [0.28381, 51.46552], [0.28613, 51.46492], [0.28944, 51.46415], [0.29126, 51.46368], [0.29323, 51.46311], [0.2952, 51.46245], [0.29739, 51.46161], [0.29971, 51.46061], [0.30175, 51.45953], [0.30354, 51.45858], [0.30567, 51.45728], [0.30714, 51.45631], [0.30891, 51.45494], [0.30974, 51.45428]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4318660", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.28419, 51.44992], [0.28374, 51.44995], [0.28332, 51.44998], [0.28288, 51.45002], [0.28241, 51.45007], [0.28205, 51.45012], [0.28171, 51.45016], [0.2808, 51.4503], [0.27987, 51.45046], [0.27888, 51.45065], [0.2785, 51.45072]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4318661", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.38939, 51.44087], [0.38851, 51.44074], [0.38747, 51.44054], [0.3866, 51.44037], [0.3842, 51.43977]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4318918", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.23781, 51.48874], [0.2376, 51.48901], [0.23742, 51.48923], [0.23716, 51.48948], [0.23691, 51.48971], [0.23669, 51.4899], [0.23647, 51.49007], [0.23621, 51.49024], [0.23595, 51.4904], [0.23566, 51.49057], [0.23536, 51.49072], [0.23473, 51.49101], [0.23409, 51.49131], [0.23346, 51.4916], [0.23271, 51.49198], [0.23196, 51.49236], [0.23123, 51.49277], [0.23051, 51.49319], [0.22751, 51.49495], [0.22452, 51.49672], [0.22151, 51.4985], [0.22, 51.49939], [0.21849, 51.50028]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4318919", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.29529, 51.47482], [0.28881, 51.47436], [0.28701, 51.47424], [0.28522, 51.47416], [0.28345, 51.47412], [0.28167, 51.4741], [0.27987, 51.4741], [0.27895, 51.47411], [0.27808, 51.47413], [0.27638, 51.47419], [0.27468, 51.47428], [0.27323, 51.47438], [0.27292, 51.4744], [0.27116, 51.47455]]}}, {"type": "Feature", "properties": {"osm_id": "4320520", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.32444, 51.47607], [0.32488, 51.47597], [0.32542, 51.47586], [0.32578, 51.4758], [0.32635, 51.47569], [0.32697, 51.47556], [0.32744, 51.47544], [0.3279, 51.47533], [0.32848, 51.47517], [0.32878, 51.47508], [0.32924, 51.47494], [0.32984, 51.47475], [0.33028, 51.47459], [0.33058, 51.47449], [0.33102, 51.47433], [0.33149, 51.47415], [0.33173, 51.47406], [0.33199, 51.47396], [0.33235, 51.47381], [0.33274, 51.47364], [0.33311, 51.47347], [0.33366, 51.4732], [0.33478, 51.4726], [0.33588, 51.472], [0.33642, 51.47171], [0.33713, 51.47132], [0.33754, 51.47111], [0.33786, 51.47093], [0.33825, 51.47074], [0.33866, 51.47053], [0.33877, 51.47047], [0.33895, 51.47034], [0.33913, 51.47017], [0.33916, 51.47014], [0.33922, 51.47009], [0.33935, 51.46994], [0.33976, 51.46953], [0.34002, 51.46932], [0.34032, 51.4691], [0.34058, 51.46897], [0.34095, 51.46876], [0.3423, 51.46804], [0.34337, 51.46747], [0.34446, 51.46689], [0.34556, 51.4663], [0.34658, 51.46575]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4320534", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.53683, 51.44374], [-2.53602, 51.44326], [-2.53486, 51.44257], [-2.53344, 51.44159], [-2.53218, 51.44065], [-2.53015, 51.43883], [-2.52942, 51.43804], [-2.52867, 51.43717]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4321888", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.13715, 51.52693], [0.13797, 51.52684], [0.13905, 51.52672]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322390", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.23912, 51.48859], [0.24068, 51.48748], [0.24149, 51.48693], [0.24241, 51.48634], [0.24373, 51.48555], [0.24448, 51.48512], [0.24508, 51.48479]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322392", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.10412, 51.53095], [0.10489, 51.53087], [0.10568, 51.53079], [0.10725, 51.53064], [0.10893, 51.53047], [0.11344, 51.53002], [0.11629, 51.52973], [0.11743, 51.52963], [0.11802, 51.52959], [0.11861, 51.52956], [0.11957, 51.52952], [0.12063, 51.52952], [0.12166, 51.52952], [0.12271, 51.52953], [0.12388, 51.52954], [0.12441, 51.52954], [0.12527, 51.52955], [0.12613, 51.52955], [0.12685, 51.52953], [0.12722, 51.52951], [0.12764, 51.52948], [0.12841, 51.52941], [0.12882, 51.52935], [0.12921, 51.52929], [0.12997, 51.52914], [0.13038, 51.52905], [0.13078, 51.52894], [0.13156, 51.52871], [0.13235, 51.52844], [0.13315, 51.52815], [0.13402, 51.52787], [0.13444, 51.52775], [0.13489, 51.52763], [0.13533, 51.52753], [0.13578, 51.52744], [0.13627, 51.52736], [0.13695, 51.52726], [0.13789, 51.52714], [0.13908, 51.52701], [0.14005, 51.5269], [0.14069, 51.52681], [0.14136, 51.52671], [0.14151, 51.52668], [0.14164, 51.52666]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322393", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.16299, 51.52418], [0.159, 51.52463], [0.15509, 51.52502], [0.15389, 51.52516], [0.15259, 51.52531], [0.1496, 51.52565], [0.14896, 51.52572], [0.1465, 51.526], [0.14405, 51.52628], [0.14279, 51.52644], [0.14162, 51.52662], [0.13919, 51.52692], [0.13675, 51.5272], [0.13621, 51.52726], [0.13589, 51.52728], [0.13553, 51.52729]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322413", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.29348, 51.47686], [0.29191, 51.47764], [0.29139, 51.4779], [0.29087, 51.47816], [0.29044, 51.47839], [0.29002, 51.47864], [0.28967, 51.47887], [0.28934, 51.47911], [0.28884, 51.47951], [0.28841, 51.47993], [0.28808, 51.48029], [0.2878, 51.48066], [0.28761, 51.48094], [0.28748, 51.48118], [0.28734, 51.48146], [0.28723, 51.48171], [0.28714, 51.48197], [0.28708, 51.48219], [0.28699, 51.4826], [0.28695, 51.48292], [0.28693, 51.48322], [0.28696, 51.48367], [0.28699, 51.48389], [0.28702, 51.48412], [0.28745, 51.48556]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322436", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.28745, 51.48556], [0.28759, 51.48611], [0.2878, 51.48686]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322494", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.31589, 51.47638], [0.31443, 51.47628], [0.31373, 51.47623], [0.31092, 51.47603], [0.30824, 51.47584], [0.30562, 51.47565], [0.304, 51.47553], [0.30338, 51.47548], [0.30297, 51.47546], [0.30181, 51.47537], [0.3012, 51.47534], [0.3006, 51.47531], [0.3, 51.4753], [0.29944, 51.47529]]}}, {"type": "Feature", "properties": {"osm_id": "4322959", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.50204, 51.50868], [0.5012, 51.50872], [0.50038, 51.50877], [0.49994, 51.50882], [0.49938, 51.50894], [0.49896, 51.50908], [0.49856, 51.50925], [0.49824, 51.50946], [0.49797, 51.50968], [0.49774, 51.50994], [0.49761, 51.51015], [0.49751, 51.51041], [0.49747, 51.51066], [0.49747, 51.51106], [0.49748, 51.51365], [0.49749, 51.51401], [0.49754, 51.51421], [0.49768, 51.51441], [0.49787, 51.51464], [0.4981, 51.51481], [0.49836, 51.51498], [0.49866, 51.51511], [0.499, 51.51523], [0.49925, 51.51528], [0.50349, 51.51595], [0.50402, 51.51607]]}}, {"type": "Feature", "properties": {"osm_id": "4322960", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.424, 51.50421], [0.42413, 51.5046], [0.42422, 51.5049], [0.42427, 51.50519], [0.4243, 51.50537], [0.42442, 51.50572], [0.42461, 51.5062], [0.42493, 51.50672], [0.4251, 51.50693], [0.4253, 51.50713], [0.4255, 51.50732], [0.42572, 51.5075], [0.42592, 51.50764], [0.42622, 51.50783], [0.42657, 51.50802], [0.42685, 51.50816], [0.42722, 51.50832], [0.42752, 51.50843], [0.42783, 51.50852], [0.42831, 51.50864], [0.42874, 51.50873]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4322962", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.42478, 51.52345], [0.42442, 51.52307], [0.42407, 51.52267], [0.42371, 51.52221], [0.42337, 51.52174], [0.42311, 51.52128], [0.423, 51.52104], [0.42288, 51.52079], [0.42273, 51.52038], [0.42259, 51.52], [0.4225, 51.51965], [0.42242, 51.51929], [0.42232, 51.51874], [0.42228, 51.51822], [0.42227, 51.51777], [0.42229, 51.51729], [0.42236, 51.51671], [0.42249, 51.51616], [0.42286, 51.51454], [0.42293, 51.51419], [0.42322, 51.51291], [0.42351, 51.51165], [0.42381, 51.51038], [0.42396, 51.50974], [0.4241, 51.50909], [0.42421, 51.50838], [0.4243, 51.50768], [0.42429, 51.50696], [0.42429, 51.50661], [0.42427, 51.50626]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4323080", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.57856, 51.22746], [-0.58002, 51.23437]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4323081", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.58348, 51.24286], [-0.58339, 51.24249], [-0.58329, 51.24211], [-0.58309, 51.2415], [-0.58272, 51.24053], [-0.58264, 51.24031], [-0.58252, 51.24003], [-0.58198, 51.23868], [-0.58188, 51.23844], [-0.58179, 51.23825], [-0.58176, 51.23819], [-0.5815, 51.23773], [-0.58072, 51.2364], [-0.58051, 51.23606]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4323588", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.03047, 51.44639], [0.03104, 51.44617]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4324547", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12745, 51.8955], [-1.1282, 51.89577]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4324583", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15227, 51.9043], [-1.15252, 51.90438]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4324585", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.1407, 51.90022], [-1.14343, 51.9012], [-1.14412, 51.90144], [-1.14698, 51.90241], [-1.14866, 51.903], [-1.14996, 51.90347], [-1.15076, 51.90375], [-1.15227, 51.9043]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4324626", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15431, 51.90502], [-1.15466, 51.90515]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4324627", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15252, 51.90438], [-1.15431, 51.90502]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4328258", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.09641, 51.75228], [-0.09672, 51.75063], [-0.09705, 51.74953], [-0.09817, 51.74746], [-0.09928, 51.74594], [-0.10031, 51.74443], [-0.1013, 51.74286], [-0.10203, 51.7414], [-0.10267, 51.73957], [-0.10323, 51.73802], [-0.104, 51.73611], [-0.10456, 51.73444], [-0.10516, 51.73263], [-0.10563, 51.73088]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4329044", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51838, 53.72525], [-1.51761, 53.72499], [-1.51675, 53.72468], [-1.51592, 53.72432], [-1.51514, 53.72393], [-1.51451, 53.72358], [-1.51388, 53.7232], [-1.51328, 53.72278], [-1.51278, 53.72236], [-1.51234, 53.72198], [-1.51196, 53.72157], [-1.51171, 53.72127], [-1.51148, 53.72096], [-1.51122, 53.7206], [-1.51108, 53.72041], [-1.51097, 53.72021], [-1.51077, 53.71987], [-1.51058, 53.71951], [-1.51032, 53.7188], [-1.51027, 53.71861], [-1.51019, 53.71832], [-1.51015, 53.71804], [-1.51014, 53.718], [-1.51012, 53.71787], [-1.5101, 53.71779], [-1.5101, 53.71769], [-1.51009, 53.71753], [-1.51007, 53.71703], [-1.51008, 53.71678], [-1.51011, 53.71653], [-1.51019, 53.71603], [-1.51028, 53.71565], [-1.51036, 53.71537]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4329046", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.51871, 53.72537], [-1.51838, 53.72525]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4330149", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.18197, 55.95299], [-3.17967, 55.95351], [-3.17854, 55.95376], [-3.17661, 55.95416], [-3.17544, 55.95442]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4330150", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.18769, 55.95275], [-3.18734, 55.95277], [-3.18703, 55.95278], [-3.18655, 55.95279], [-3.18619, 55.95279], [-3.18586, 55.95278], [-3.18421, 55.95272], [-3.18396, 55.95271], [-3.18375, 55.95271], [-3.18354, 55.95272]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4330151", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.18322, 55.95274], [-3.18283, 55.95281]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4332219", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.03626, 55.81013], [-2.03584, 55.8097], [-2.03546, 55.80926], [-2.03519, 55.80886], [-2.03494, 55.80845], [-2.03463, 55.80779], [-2.03451, 55.80746], [-2.0344, 55.80713], [-2.0339, 55.80596], [-2.03354, 55.80531], [-2.03305, 55.8047], [-2.03275, 55.80441], [-2.03242, 55.80411], [-2.03172, 55.80353], [-2.0311, 55.80311], [-2.03041, 55.80272], [-2.02921, 55.80214], [-2.02797, 55.80161], [-2.0267, 55.80099], [-2.02556, 55.80036], [-2.02519, 55.80013]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4332243", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.31385, 55.87801], [-4.31389, 55.87767]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4333629", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19217, 51.50043], [-0.19223, 51.5005]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4333784", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01386, 51.4619], [-0.01407, 51.46164], [-0.01424, 51.4614], [-0.01432, 51.46124], [-0.0144, 51.46107]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4333785", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01445, 51.46094], [-0.01448, 51.4608], [-0.01451, 51.4606], [-0.01452, 51.46037], [-0.01446, 51.45999]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4333787", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01446, 51.45999], [-0.01436, 51.45972], [-0.01423, 51.45946], [-0.01414, 51.45931], [-0.01403, 51.45917], [-0.01387, 51.45899], [-0.01367, 51.4588], [-0.0134, 51.45857]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4334397", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12554, 53.44637], [-1.12527, 53.44216]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4335161", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.83281, 52.53515], [-1.83292, 52.53499], [-1.83304, 52.53483], [-1.83316, 52.53468], [-1.83329, 52.53453], [-1.83342, 52.53438], [-1.83356, 52.53423], [-1.83384, 52.53394], [-1.83493, 52.53286], [-1.8353, 52.53249], [-1.83726, 52.53054], [-1.83923, 52.52857], [-1.8394, 52.5284], [-1.83957, 52.52823], [-1.83993, 52.5279]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4335162", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.82218, 52.56595], [-1.82412, 52.5653]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4335581", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40423, 51.38465], [-2.40559, 51.38532], [-2.40699, 51.38585]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4335703", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07119, 51.52309], [-0.06998, 51.52292]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337906", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.39348, 56.01067], [-3.39311, 56.00997]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337940", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.40516, 56.0233], [-3.40519, 56.02318], [-3.40523, 56.02303], [-3.40527, 56.02287], [-3.4053, 56.02269], [-3.40531, 56.02246], [-3.40532, 56.02226], [-3.40531, 56.02207], [-3.4053, 56.02187], [-3.40528, 56.02167], [-3.40527, 56.02154], [-3.40524, 56.02136]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337945", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.34452, 56.0476], [-3.34398, 56.04777], [-3.34317, 56.04798], [-3.34229, 56.04818], [-3.34134, 56.04835], [-3.34045, 56.0485], [-3.33838, 56.04879], [-3.33619, 56.04909], [-3.33404, 56.0494], [-3.33149, 56.04975], [-3.33027, 56.04994], [-3.32907, 56.05017], [-3.32841, 56.05031], [-3.32778, 56.05046]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337968", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.31785, 56.05332], [-3.31734, 56.05347], [-3.31661, 56.05366], [-3.31609, 56.05379], [-3.31552, 56.05394], [-3.31486, 56.05409], [-3.31417, 56.05422], [-3.31344, 56.05434], [-3.31164, 56.05457], [-3.31007, 56.05467], [-3.30928, 56.0547], [-3.30855, 56.05471], [-3.30729, 56.05471], [-3.30666, 56.05469], [-3.30603, 56.05465], [-3.3049, 56.05458]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337995", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.22038, 56.06345], [-3.2199, 56.06357], [-3.21941, 56.06368], [-3.2187, 56.06382], [-3.21814, 56.06391], [-3.21764, 56.06398], [-3.21727, 56.06402], [-3.21681, 56.06407], [-3.2163, 56.06411], [-3.21578, 56.06415], [-3.2144, 56.06422], [-3.21095, 56.06439], [-3.21034, 56.06441], [-3.20835, 56.0645], [-3.20691, 56.06457], [-3.20596, 56.06461], [-3.20551, 56.06463], [-3.20507, 56.06463], [-3.20441, 56.06464], [-3.20355, 56.06462], [-3.20307, 56.06458], [-3.20167, 56.06444], [-3.20021, 56.06425], [-3.19904, 56.0641], [-3.19713, 56.06385], [-3.19622, 56.06374], [-3.1957, 56.06369], [-3.19525, 56.06366], [-3.19479, 56.06365], [-3.19444, 56.06365], [-3.19393, 56.06365], [-3.1931, 56.06369], [-3.19215, 56.06376], [-3.19106, 56.06384], [-3.1906, 56.06389], [-3.19016, 56.06394], [-3.18929, 56.06404], [-3.18841, 56.06417], [-3.18753, 56.06433], [-3.18665, 56.0645], [-3.18425, 56.06495], [-3.1834, 56.06514], [-3.18325, 56.06517]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337996", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16911, 56.09773], [-3.16942, 56.09913]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4337997", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.13025, 56.16156], [-3.13033, 56.16178], [-3.13042, 56.16195], [-3.13049, 56.16208], [-3.13058, 56.1622], [-3.13075, 56.1624], [-3.13095, 56.16259], [-3.13109, 56.16269], [-3.13124, 56.1628], [-3.13141, 56.1629], [-3.1316, 56.163]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4338028", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.29319, 56.13617], [-3.29608, 56.13628], [-3.30041, 56.13662], [-3.30234, 56.13676], [-3.30376, 56.1368], [-3.30528, 56.13676], [-3.30632, 56.13666], [-3.30749, 56.13649], [-3.30811, 56.13637]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4338110", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.34225, 56.11352], [-3.34268, 56.11278]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4338441", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40202, 51.38348], [-2.40298, 51.38401], [-2.40423, 51.38465]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338543", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00591, 51.45021], [0.00554, 51.4501], [0.00521, 51.44997], [0.0049, 51.44983], [0.00461, 51.44965], [0.00441, 51.4495], [0.00422, 51.44933], [0.00406, 51.44916], [0.00392, 51.44897], [0.00384, 51.44884], [0.00378, 51.4487], [0.0037, 51.44849], [0.00366, 51.44831], [0.00364, 51.44818], [0.00365, 51.44806], [0.00366, 51.44784], [0.00374, 51.44758], [0.00388, 51.4473], [0.00395, 51.4472], [0.00411, 51.44698], [0.00424, 51.44685]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338544", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.0021, 51.45109], [0.00232, 51.45104], [0.00256, 51.45099], [0.00317, 51.45088], [0.00372, 51.4508], [0.00432, 51.45072], [0.00584, 51.45057]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338545", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00584, 51.45057], [0.00613, 51.45054]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338546", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00787, 51.45036], [0.00732, 51.45038], [0.00727, 51.45038], [0.00693, 51.45037], [0.00667, 51.45035], [0.00642, 51.45032], [0.00616, 51.45027]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338547", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00616, 51.45027], [0.00591, 51.45021]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338549", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00256, 51.44887], [0.00274, 51.44872], [0.00288, 51.44862], [0.00296, 51.44856], [0.00311, 51.44841], [0.00323, 51.44823], [0.00339, 51.44796], [0.00352, 51.44777], [0.00363, 51.44757], [0.00374, 51.44741], [0.00395, 51.4472]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338550", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00493, 51.4461], [0.00551, 51.44551]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4338551", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00403, 51.44699], [0.00493, 51.4461]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4339171", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.23223, 51.57289], [-0.23293, 51.57341], [-0.23425, 51.57437], [-0.23527, 51.57514], [-0.23596, 51.57575], [-0.23642, 51.57618]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4339388", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.45203, 55.85707], [-4.45138, 55.85668]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340059", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13848, 51.89941], [-1.14033, 51.90008]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340060", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.14033, 51.90008], [-1.1407, 51.90022]]}}, {"type": "Feature", "properties": {"osm_id": "4340075", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.91928, 53.33516], [-1.91905, 53.33472]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340128", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.94291, 53.34069], [-1.94229, 53.34084], [-1.9417, 53.34096], [-1.94103, 53.34108], [-1.94037, 53.34117], [-1.93982, 53.34125], [-1.93919, 53.34132], [-1.93849, 53.34137], [-1.93785, 53.3414], [-1.93712, 53.34143], [-1.9365, 53.34143], [-1.93595, 53.34142]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340130", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.9843, 53.32808], [-1.98423, 53.32781]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340138", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.94597, 53.33968], [-1.94533, 53.3399], [-1.9444, 53.34025], [-1.94374, 53.34046], [-1.94291, 53.34069]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340185", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.97606, 53.32004], [-1.97516, 53.31968]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340194", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.93595, 53.34142], [-1.93538, 53.3414]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340199", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98423, 53.32781], [-1.98418, 53.32744]]}}, {"type": "Feature", "properties": {"osm_id": "4340215", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.91626, 53.33524], [-1.91588, 53.33543]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340247", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98465, 53.32979], [-1.98462, 53.32964]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340259", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.9847, 53.34101], [-1.98461, 53.34079]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340267", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98462, 53.32964], [-1.98452, 53.3292]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340271", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98416, 53.3272], [-1.98413, 53.3266]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340281", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.0223, 53.35908], [-2.0214, 53.3591]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340292", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98397, 53.33936], [-1.9838, 53.33897], [-1.98363, 53.33845], [-1.98352, 53.33801], [-1.98346, 53.33749], [-1.98346, 53.33689], [-1.98352, 53.33646], [-1.98361, 53.33607], [-1.98374, 53.33568]]}}, {"type": "Feature", "properties": {"osm_id": "4340296", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.91743, 53.33419], [-1.91703, 53.33466], [-1.91668, 53.33494], [-1.91626, 53.33524]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340297", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98452, 53.3292], [-1.9845, 53.32905]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340301", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.9845, 53.32905], [-1.98444, 53.32877], [-1.9843, 53.32808]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340344", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.9232, 53.33887], [-1.92289, 53.33869]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340346", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.93538, 53.3414], [-1.93467, 53.34136], [-1.93351, 53.34127], [-1.93012, 53.34095], [-1.92951, 53.34087], [-1.92882, 53.34076], [-1.92783, 53.34056], [-1.92705, 53.34038], [-1.92658, 53.34024], [-1.92601, 53.34007], [-1.92542, 53.33985], [-1.92382, 53.33919], [-1.9232, 53.33887]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340381", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.98418, 53.32744], [-1.98416, 53.3272]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340427", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.41589, 52.2437], [0.41657, 52.24456], [0.41822, 52.24663], [0.41889, 52.24759], [0.41919, 52.24834], [0.41938, 52.24898], [0.41947, 52.24957], [0.41947, 52.25026], [0.41937, 52.25083], [0.41908, 52.25231]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340455", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.05539, 50.7592], [-3.0549, 50.75912], [-3.05433, 50.75903], [-3.05379, 50.75897], [-3.05315, 50.75891], [-3.05251, 50.75887], [-3.05199, 50.75884], [-3.05152, 50.75882], [-3.05107, 50.75881], [-3.05068, 50.75881], [-3.05018, 50.75882], [-3.04969, 50.75883], [-3.04926, 50.75885], [-3.04882, 50.75888], [-3.04836, 50.75892], [-3.04793, 50.75896], [-3.04754, 50.759], [-3.04718, 50.75905], [-3.04681, 50.7591], [-3.04644, 50.75916], [-3.04612, 50.75921], [-3.04575, 50.75928], [-3.0454, 50.75934], [-3.04503, 50.75943], [-3.04463, 50.75952], [-3.04385, 50.75973], [-3.04315, 50.75994], [-3.04244, 50.76018], [-3.04179, 50.7604]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4340459", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.04146, 50.76052], [-3.04046, 50.76085], [-3.03767, 50.76191]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4340757", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.21589, 50.89033], [-1.2148, 50.8897], [-1.21325, 50.88871]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4340758", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.21706, 50.89099], [-1.21589, 50.89033]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4341350", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.34148, 51.39241], [-2.34165, 51.39237]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4343027", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.26129, 50.78125], [-3.26039, 50.7813]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4343028", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16126, 50.80567], [-3.1479, 50.80354], [-3.14675, 50.80336], [-3.14565, 50.8032], [-3.14461, 50.80306]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4343029", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.46003, 50.73858], [-3.45976, 50.73863]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4343030", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.26634, 50.78098], [-3.26515, 50.78104]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4346192", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01642, 51.46175], [-0.01626, 51.46127], [-0.0162, 51.46108], [-0.01613, 51.46078], [-0.01611, 51.4606], [-0.0161, 51.46042], [-0.01614, 51.46016], [-0.01619, 51.45998], [-0.01626, 51.4598], [-0.01638, 51.45957], [-0.01651, 51.45935], [-0.01673, 51.45907]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4346325", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12327, 52.63247], [-1.12271, 52.63305], [-1.12256, 52.6332], [-1.12202, 52.63363], [-1.12171, 52.63391], [-1.12163, 52.63399], [-1.12137, 52.63422], [-1.12118, 52.63438]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4347563", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.46076, 57.52046], [-4.4609, 57.52118], [-4.46106, 57.52214], [-4.46127, 57.52326], [-4.46135, 57.52411], [-4.46139, 57.52504], [-4.46136, 57.52585], [-4.46123, 57.52689], [-4.46096, 57.52807], [-4.46063, 57.52908], [-4.46032, 57.52978]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4349466", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.50345, 53.6794], [-1.50332, 53.67924], [-1.50317, 53.67908], [-1.50291, 53.67884], [-1.50248, 53.67851], [-1.502, 53.6782], [-1.50149, 53.67792], [-1.50096, 53.67767], [-1.50041, 53.6774]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4349467", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.49178, 53.66765], [-1.49138, 53.6674]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4350221", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.42107, 57.59788], [-4.42105, 57.59812], [-4.42102, 57.5983]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4350947", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.82581, 57.19461], [-3.8254, 57.19526], [-3.82496, 57.19599], [-3.82443, 57.19683], [-3.82387, 57.19768], [-3.82278, 57.19938], [-3.8218, 57.20081], [-3.82021, 57.20325]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351123", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.89446, 53.31529], [-1.89402, 53.31511], [-1.89357, 53.31491], [-1.89318, 53.31471], [-1.89279, 53.31449], [-1.89218, 53.31404], [-1.89155, 53.31356], [-1.89119, 53.31329], [-1.89072, 53.313], [-1.8902, 53.31274], [-1.88957, 53.31246], [-1.88926, 53.31232], [-1.88898, 53.31219], [-1.88854, 53.31195], [-1.88816, 53.31172], [-1.88792, 53.31154]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351131", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.71232, 53.34311], [-1.7151, 53.34306], [-1.71635, 53.34308], [-1.71733, 53.34313], [-1.71831, 53.3432], [-1.71924, 53.34329], [-1.72015, 53.3434], [-1.72085, 53.34349], [-1.72157, 53.3436]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351132", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.67726, 53.33492], [-1.6894, 53.33912], [-1.68958, 53.33918], [-1.69208, 53.34005]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4351150", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.1986, 50.86283], [-1.19727, 50.86077]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4351151", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.20237, 50.86847], [-1.20158, 50.86728]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351207", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15341, 52.58046], [-1.15426, 52.58037]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351208", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15426, 52.58037], [-1.15498, 52.5803]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4351228", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.19193, 50.85284], [-1.19173, 50.85258]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351390", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.75048, 56.70907], [-3.7511, 56.70925], [-3.75169, 56.70941], [-3.75254, 56.7096], [-3.75546, 56.71017], [-3.75613, 56.71033], [-3.75682, 56.71052], [-3.75765, 56.71077], [-3.75823, 56.71096], [-3.75876, 56.71114], [-3.75943, 56.71141], [-3.76012, 56.71173], [-3.76104, 56.71219], [-3.76153, 56.7125], [-3.76202, 56.71283], [-3.76263, 56.71337]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351803", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.80882, 56.75433], [-3.81368, 56.7566], [-3.81639, 56.75787], [-3.81738, 56.75835], [-3.81806, 56.75863], [-3.81871, 56.75886], [-3.81942, 56.7591], [-3.82064, 56.7594], [-3.82324, 56.75998], [-3.83102, 56.76171], [-3.8379, 56.76325], [-3.83849, 56.76338], [-3.84361, 56.76452]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351804", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.95088, 56.76793], [-3.95466, 56.76753], [-3.9552, 56.76748], [-3.95588, 56.76743], [-3.95662, 56.76738], [-3.95744, 56.76737], [-3.95863, 56.76738], [-3.95959, 56.76741], [-3.96077, 56.76739], [-3.96111, 56.76739]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351805", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.07751, 56.8009], [-4.08022, 56.80153], [-4.08209, 56.80197], [-4.08475, 56.80259], [-4.08596, 56.80284], [-4.08703, 56.80304], [-4.0883, 56.80325], [-4.08935, 56.80339], [-4.0902, 56.80351]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4351806", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.18459, 56.81885], [-4.18481, 56.81891]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4352592", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.01611, 51.46658], [0.01638, 51.46649], [0.01668, 51.46637], [0.02012, 51.46494], [0.0209, 51.46464]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4352594", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.04488, 51.45574], [0.0465, 51.45515], [0.0469, 51.45507], [0.04709, 51.45504], [0.04736, 51.45501], [0.04766, 51.455], [0.04794, 51.455], [0.04823, 51.45502]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4352596", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.0392, 51.45785], [0.04175, 51.45691]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4352745", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.10608, 57.4317], [-4.10658, 57.43236], [-4.10685, 57.43282], [-4.10702, 57.43329], [-4.10714, 57.43391], [-4.10726, 57.43473], [-4.10728, 57.43542], [-4.10724, 57.43586], [-4.10717, 57.4363], [-4.10708, 57.43673], [-4.10696, 57.43714], [-4.10674, 57.43775], [-4.10612, 57.43898], [-4.10573, 57.43968], [-4.10461, 57.4417], [-4.10328, 57.44406], [-4.10281, 57.44494], [-4.10251, 57.44546], [-4.10194, 57.44627], [-4.10165, 57.44662], [-4.10111, 57.4472], [-4.10065, 57.44762], [-4.10012, 57.44807], [-4.09944, 57.44858], [-4.09874, 57.44905], [-4.09784, 57.44959], [-4.09618, 57.45049], [-4.09474, 57.45127], [-4.09325, 57.45213], [-4.09174, 57.45312], [-4.09065, 57.45385], [-4.08991, 57.45441], [-4.08917, 57.45502], [-4.08804, 57.45609]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4352748", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.0518, 57.382], [-4.05271, 57.3823], [-4.05365, 57.38259], [-4.05448, 57.38289], [-4.05523, 57.3832], [-4.05649, 57.38371], [-4.05816, 57.38437], [-4.05946, 57.38491], [-4.06037, 57.38535]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4352749", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.97717, 57.32255], [-3.97765, 57.32308], [-3.97801, 57.32359], [-3.97834, 57.32413], [-3.97855, 57.32468], [-3.97871, 57.32525], [-3.97879, 57.32588], [-3.97877, 57.32646], [-3.97868, 57.32779], [-3.97862, 57.32883]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4352750", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.85618, 57.29373], [-3.85699, 57.29385], [-3.85847, 57.29406], [-3.86006, 57.29431], [-3.86156, 57.29457], [-3.8635, 57.29493], [-3.86854, 57.29599]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4352771", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.14508, 51.4395], [0.14456, 51.43938], [0.14329, 51.43906], [0.14262, 51.43889], [0.14197, 51.43873], [0.14056, 51.43836], [0.13984, 51.43818], [0.13916, 51.43801], [0.13773, 51.43765], [0.13693, 51.43745], [0.13628, 51.43728], [0.13551, 51.43709], [0.13477, 51.4369], [0.13403, 51.43671], [0.13356, 51.43659], [0.13311, 51.43649], [0.13236, 51.43633], [0.13168, 51.43619], [0.13076, 51.43601], [0.12987, 51.43586], [0.1291, 51.43574], [0.1287, 51.43568], [0.12831, 51.43563], [0.12772, 51.43555], [0.12668, 51.43544], [0.12596, 51.43537]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4352855", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.37472, 51.37866], [-2.37897, 51.37908], [-2.38029, 51.37921], [-2.38505, 51.37969]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353018", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.33138, 51.63221], [0.33225, 51.63305], [0.33315, 51.63387], [0.33407, 51.63469], [0.33483, 51.63536], [0.335, 51.63551]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4353025", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.92715, 57.13056], [-3.92685, 57.13077], [-3.92623, 57.1312], [-3.92538, 57.13169], [-3.92459, 57.13214], [-3.92376, 57.13255], [-3.92277, 57.133], [-3.92172, 57.13343], [-3.92079, 57.13377], [-3.91973, 57.13411], [-3.91841, 57.13449], [-3.91693, 57.13487], [-3.90988, 57.13669], [-3.90863, 57.13706], [-3.90762, 57.13732], [-3.90682, 57.13762], [-3.90587, 57.13801], [-3.90491, 57.13844], [-3.90419, 57.13879], [-3.90342, 57.13923], [-3.90269, 57.13956], [-3.90181, 57.14012], [-3.89991, 57.14146], [-3.8958, 57.14438]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4353088", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.24548, 57.63485], [-3.2375, 57.63429], [-3.22985, 57.63373], [-3.22498, 57.63337], [-3.22243, 57.63318]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353219", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.93577, 56.12134], [-3.93597, 56.12175], [-3.93604, 56.12195], [-3.93613, 56.12223], [-3.93621, 56.12287], [-3.93623, 56.12333], [-3.93623, 56.12362], [-3.93617, 56.12404], [-3.93611, 56.12429], [-3.93602, 56.12461], [-3.93589, 56.12499], [-3.93544, 56.12578], [-3.93507, 56.12639]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353220", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.86567, 56.13199], [-3.8641, 56.13189], [-3.86226, 56.1317], [-3.86013, 56.13139], [-3.85795, 56.13101], [-3.85401, 56.13004], [-3.85266, 56.12966]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4353222", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.78889, 56.11794], [-3.78726, 56.11805], [-3.78672, 56.11807], [-3.78543, 56.11809]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353327", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.83811, 56.00447], [-3.83774, 56.00477], [-3.83687, 56.00553], [-3.83631, 56.00597], [-3.83573, 56.00642]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353422", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.70763, 55.98373], [-3.70917, 55.98379], [-3.71012, 55.98386], [-3.71107, 55.98394], [-3.71253, 55.9841], [-3.71328, 55.98423], [-3.71449, 55.98445], [-3.71529, 55.9846], [-3.71559, 55.98466], [-3.71608, 55.98474], [-3.71717, 55.98491], [-3.71839, 55.98507], [-3.71889, 55.98512], [-3.71998, 55.98523], [-3.72012, 55.98525], [-3.72084, 55.98531]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353423", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.78523, 56.00236], [-3.78424, 56.00226], [-3.78164, 56.00202], [-3.77718, 56.00156], [-3.77662, 56.00151], [-3.77501, 56.00134]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353522", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.84125, 55.99636], [-3.84304, 55.99643], [-3.84475, 55.99646], [-3.84649, 55.99648], [-3.84834, 55.99645], [-3.85061, 55.99636], [-3.85289, 55.99622], [-3.85446, 55.99609]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4353523", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.92591, 55.98571], [-3.9248, 55.98586], [-3.92308, 55.98611], [-3.92047, 55.98647], [-3.91886, 55.98669], [-3.91725, 55.9869], [-3.91612, 55.98702], [-3.91492, 55.98712], [-3.91343, 55.98722], [-3.89722, 55.98822], [-3.89501, 55.98835], [-3.89398, 55.98849], [-3.89296, 55.98869], [-3.89196, 55.98893], [-3.89101, 55.98923], [-3.88996, 55.98968], [-3.88936, 55.98995]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4354101", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.04693, 55.95169], [-4.04564, 55.952], [-4.04436, 55.95232], [-4.04372, 55.95249], [-4.0431, 55.95267], [-4.04248, 55.95285], [-4.04187, 55.95305], [-4.04077, 55.95345], [-4.03971, 55.95387], [-4.03866, 55.95434], [-4.03767, 55.95483], [-4.03747, 55.95493], [-4.03692, 55.95523], [-4.03621, 55.95565], [-4.03563, 55.95603], [-4.03506, 55.95644], [-4.03241, 55.95846]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4354137", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.24017, 55.88692], [-4.24011, 55.88681], [-4.24006, 55.88673], [-4.24001, 55.88665], [-4.23995, 55.88656], [-4.23989, 55.88648], [-4.23979, 55.88637], [-4.23962, 55.8862]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4354694", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12477, 52.63103], [-1.12327, 52.63247]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4354695", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12519, 52.63061], [-1.12491, 52.63089], [-1.12477, 52.63103]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4354735", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.15063, 57.565], [-3.15068, 57.56466], [-3.15079, 57.56432], [-3.15111, 57.56344], [-3.15187, 57.56137], [-3.15236, 57.56012], [-3.15253, 57.55954], [-3.15265, 57.55909], [-3.15271, 57.55863], [-3.15269, 57.55806], [-3.1526, 57.55765], [-3.15242, 57.55711], [-3.15213, 57.55652], [-3.15173, 57.55589], [-3.1514, 57.55548], [-3.15105, 57.55511], [-3.15058, 57.5547], [-3.15003, 57.55429], [-3.1495, 57.5539], [-3.14886, 57.55352], [-3.14822, 57.55318], [-3.14749, 57.55285], [-3.14656, 57.5525], [-3.14573, 57.55224], [-3.14497, 57.55203], [-3.14415, 57.55184], [-3.14222, 57.5514]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4354736", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.01343, 57.53768], [-3.01212, 57.53771], [-3.01083, 57.53777], [-3.00926, 57.53791], [-3.00787, 57.53806], [-3.00637, 57.53828], [-3.00503, 57.53851], [-3.0036, 57.53881], [-3.00232, 57.5391], [-3.00115, 57.53945], [-3.00009, 57.53977], [-2.9987, 57.54026]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4354856", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.02369, 51.48469], [0.02409, 51.48474], [0.02439, 51.48478], [0.02462, 51.48483], [0.02484, 51.48489], [0.02506, 51.48497], [0.02535, 51.48509], [0.02585, 51.48534], [0.02629, 51.48554], [0.02661, 51.48568], [0.0269, 51.4858], [0.02705, 51.48586], [0.02738, 51.48597], [0.02786, 51.48615]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4354884", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.03513, 51.48777], [0.03592, 51.48802], [0.03642, 51.4882], [0.03684, 51.48835], [0.03733, 51.48853]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4354903", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.02173, 51.48131], [0.02181, 51.48154], [0.02197, 51.48187], [0.02212, 51.48214], [0.02229, 51.48243], [0.02243, 51.48261], [0.02253, 51.48276], [0.02281, 51.48309], [0.02304, 51.48333], [0.0233, 51.48357], [0.02365, 51.48387], [0.02434, 51.4844], [0.02464, 51.48459], [0.02531, 51.48497], [0.02621, 51.48539], [0.02694, 51.48575], [0.0273, 51.48591], [0.02786, 51.48615]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4354907", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.02129, 51.47972], [0.02173, 51.48131]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4355039", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.10022, 56.82188], [-5.10056, 56.8218], [-5.10075, 56.82176], [-5.10129, 56.82159], [-5.10162, 56.82148], [-5.10216, 56.8213], [-5.10271, 56.82113], [-5.10313, 56.82103], [-5.10351, 56.82097], [-5.10452, 56.82076], [-5.10515, 56.82063], [-5.10591, 56.82048]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4355048", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.09138, 56.82406], [-5.09106, 56.82421], [-5.09074, 56.82438], [-5.09035, 56.82462], [-5.09005, 56.82484], [-5.08987, 56.825], [-5.08969, 56.82516], [-5.08949, 56.82538], [-5.08932, 56.8256], [-5.08909, 56.82597], [-5.08881, 56.82657], [-5.0885, 56.82724], [-5.08833, 56.8275], [-5.08821, 56.82768], [-5.08806, 56.82788], [-5.08778, 56.82817], [-5.08751, 56.82844], [-5.08727, 56.82865], [-5.08673, 56.82904], [-5.0855, 56.82987], [-5.08523, 56.83005], [-5.08489, 56.83031], [-5.08468, 56.83049], [-5.08442, 56.83076], [-5.08418, 56.83105], [-5.08403, 56.83132], [-5.0839, 56.83159]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4355945", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25105, 55.86224], [-4.25064, 55.86336], [-4.25059, 55.86351], [-4.25056, 55.86364], [-4.25054, 55.86376], [-4.25054, 55.86385]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4356606", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.83143, 57.00414], [-5.83105, 57.00473], [-5.83082, 57.00506], [-5.83071, 57.00519], [-5.83061, 57.00531], [-5.83039, 57.0055], [-5.83003, 57.00577], [-5.82966, 57.00599]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4356607", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.82258, 56.97505], [-5.82302, 56.97586], [-5.82353, 56.97641], [-5.82395, 56.97676], [-5.82507, 56.97742], [-5.82623, 56.97808]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4356610", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.66951, 56.879], [-5.67147, 56.87919], [-5.67203, 56.87925], [-5.6725, 56.87932], [-5.67292, 56.87942], [-5.67332, 56.87957], [-5.67394, 56.87984], [-5.6747, 56.88037], [-5.6757, 56.88115], [-5.67661, 56.88146], [-5.67769, 56.88159]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356958", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19174, 51.45081], [0.19059, 51.45065], [0.18982, 51.45053], [0.18875, 51.45035], [0.18691, 51.45002], [0.18474, 51.44961], [0.18277, 51.44923], [0.18145, 51.44893], [0.1801, 51.44859], [0.17926, 51.4484], [0.17838, 51.44818], [0.17716, 51.44788], [0.17565, 51.44751]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356959", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19765, 51.45119], [0.19805, 51.45122], [0.19828, 51.45125], [0.19855, 51.45127], [0.19891, 51.45128], [0.19955, 51.45127], [0.20012, 51.45127], [0.20042, 51.45127], [0.20072, 51.45128], [0.20095, 51.4513], [0.20117, 51.45132], [0.20145, 51.45138], [0.20168, 51.45144], [0.20187, 51.45151], [0.20206, 51.45158], [0.20226, 51.45168], [0.20244, 51.45179], [0.20259, 51.45189], [0.20269, 51.45197], [0.20278, 51.45206], [0.20288, 51.45216], [0.20297, 51.45228], [0.20304, 51.45239], [0.20311, 51.45251], [0.20315, 51.45264], [0.20318, 51.45277], [0.20319, 51.45289], [0.20319, 51.45304], [0.20314, 51.45324], [0.20306, 51.45345], [0.20287, 51.45373]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356960", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.20603, 51.45063], [0.20561, 51.4507], [0.205, 51.45078], [0.20439, 51.45086], [0.20376, 51.45092], [0.20332, 51.45096], [0.20286, 51.451], [0.20203, 51.45107], [0.20118, 51.45112], [0.20061, 51.45115], [0.19998, 51.45117], [0.19931, 51.45118], [0.19876, 51.45119], [0.19819, 51.4512], [0.19765, 51.45119]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356961", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.20287, 51.45373], [0.20318, 51.45339], [0.20337, 51.45318], [0.20373, 51.45284], [0.20407, 51.45254], [0.20432, 51.45233], [0.20461, 51.45211], [0.20491, 51.45191], [0.20522, 51.45171], [0.20556, 51.45152], [0.20597, 51.45131], [0.20626, 51.45117], [0.20663, 51.451], [0.20703, 51.45084], [0.20742, 51.45069], [0.20778, 51.45056], [0.20801, 51.45049]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356962", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.2098, 51.45003], [0.21066, 51.44987], [0.21122, 51.44979], [0.21171, 51.44972], [0.21237, 51.44963], [0.21288, 51.44955], [0.21344, 51.44944]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356963", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19489, 51.4626], [0.19514, 51.46234], [0.19546, 51.46197], [0.19568, 51.46173], [0.19599, 51.46141], [0.19649, 51.46085], [0.19677, 51.46052], [0.1972, 51.46005], [0.19762, 51.45959], [0.19795, 51.4592], [0.19828, 51.45882]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356964", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19486, 51.46258], [0.19457, 51.46282], [0.19429, 51.46304], [0.19396, 51.46325], [0.19362, 51.46342], [0.19341, 51.46352], [0.19313, 51.46363], [0.19278, 51.46374], [0.19243, 51.46384], [0.19208, 51.46392], [0.1916, 51.464], [0.19123, 51.46403], [0.19084, 51.46405], [0.19041, 51.46406], [0.18944, 51.46408], [0.18866, 51.46409], [0.18794, 51.4641], [0.18748, 51.46411]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356965", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19082, 51.46713], [0.19138, 51.46652]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356966", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.18794, 51.4641], [0.18834, 51.46413], [0.1887, 51.46417], [0.18894, 51.46422], [0.18918, 51.46428], [0.18942, 51.46436], [0.18963, 51.46443], [0.18979, 51.46449], [0.19003, 51.46461], [0.19022, 51.46473], [0.19041, 51.46484], [0.19065, 51.46504], [0.19077, 51.46516], [0.19089, 51.4653], [0.19098, 51.46547], [0.19108, 51.46565], [0.19113, 51.4658], [0.19117, 51.46598], [0.19119, 51.46613], [0.19119, 51.46629], [0.19116, 51.46647], [0.1911, 51.46667], [0.19098, 51.46689], [0.19091, 51.46701], [0.19082, 51.46713]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4356967", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.10869, 51.4645], [0.1082, 51.46455], [0.10577, 51.46484], [0.10531, 51.46488], [0.1048, 51.46491], [0.10365, 51.46494]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357099", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.69108, 56.88181], [-5.69205, 56.88217], [-5.69312, 56.88257], [-5.69367, 56.88274], [-5.69423, 56.88291]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4357374", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.06525, 51.55818], [0.06547, 51.55824]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357409", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.46697, 56.47162], [-3.46666, 56.47187]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357573", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.90521, 53.18628], [-2.90418, 53.18692]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357938", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.55313, 56.87245], [-5.55339, 56.87257], [-5.55366, 56.87272], [-5.55384, 56.87283], [-5.55404, 56.87299], [-5.55432, 56.87327], [-5.55463, 56.87357], [-5.55508, 56.87407], [-5.55531, 56.87426], [-5.55561, 56.87445], [-5.55599, 56.87466], [-5.55633, 56.8748], [-5.55674, 56.87495], [-5.55756, 56.87521], [-5.55795, 56.87534], [-5.5585, 56.87556], [-5.56, 56.87625], [-5.56077, 56.8766], [-5.56129, 56.87683], [-5.56168, 56.87698], [-5.56202, 56.87709], [-5.56307, 56.87736], [-5.5636, 56.87748], [-5.56407, 56.87755], [-5.56458, 56.87762], [-5.56514, 56.87768], [-5.56568, 56.87772], [-5.56612, 56.87774], [-5.56656, 56.87775], [-5.5673, 56.87774], [-5.56775, 56.8777], [-5.56825, 56.87764], [-5.56879, 56.87756], [-5.56936, 56.87746], [-5.56972, 56.87737], [-5.57008, 56.87727], [-5.57048, 56.87713], [-5.57096, 56.87695], [-5.5714, 56.87677], [-5.57184, 56.87658], [-5.57282, 56.87611], [-5.57349, 56.87579], [-5.57394, 56.87561], [-5.57429, 56.8755], [-5.57464, 56.87539], [-5.57493, 56.87532], [-5.57529, 56.87525], [-5.57574, 56.87518], [-5.57623, 56.87515], [-5.57658, 56.87514], [-5.57702, 56.87515], [-5.57734, 56.87516], [-5.57776, 56.87521], [-5.57816, 56.87527], [-5.57859, 56.87535], [-5.57896, 56.87543]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357946", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.45099, 56.87304], [-5.45137, 56.87319], [-5.45169, 56.8733], [-5.452, 56.87338], [-5.45306, 56.87359], [-5.4546, 56.87388], [-5.4572, 56.87429], [-5.45821, 56.87451], [-5.45895, 56.87476], [-5.45971, 56.87512], [-5.4604, 56.87553], [-5.46093, 56.87578], [-5.46136, 56.87595], [-5.46176, 56.87608], [-5.4623, 56.87622], [-5.46284, 56.87633], [-5.46356, 56.87641], [-5.46428, 56.87646], [-5.46505, 56.87645], [-5.46617, 56.87638], [-5.46664, 56.87637], [-5.46721, 56.87638], [-5.46774, 56.87643], [-5.46827, 56.8765], [-5.46879, 56.87661], [-5.46928, 56.87675], [-5.46972, 56.87693], [-5.47007, 56.87708], [-5.47095, 56.87757], [-5.47136, 56.87775], [-5.47183, 56.87791], [-5.47225, 56.87804], [-5.47271, 56.87813], [-5.47336, 56.87822], [-5.47397, 56.87826], [-5.47456, 56.87826], [-5.4751, 56.87823], [-5.47591, 56.87819], [-5.47643, 56.87818], [-5.477, 56.87819], [-5.4775, 56.87823], [-5.47879, 56.87835], [-5.4795, 56.87839], [-5.48009, 56.87839], [-5.48063, 56.87836], [-5.48117, 56.87831], [-5.48344, 56.87795], [-5.48835, 56.87715], [-5.48944, 56.87705], [-5.4922, 56.87687], [-5.49375, 56.87667], [-5.49527, 56.87638], [-5.49712, 56.87596], [-5.49814, 56.87585], [-5.49999, 56.87565], [-5.50326, 56.87534], [-5.50685, 56.87502], [-5.50821, 56.8748], [-5.50939, 56.87456], [-5.51049, 56.87426], [-5.51284, 56.87342], [-5.51366, 56.87319], [-5.5148, 56.87299], [-5.51584, 56.87295], [-5.51697, 56.87301], [-5.51774, 56.87314]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357959", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.44736, 56.87214], [-5.44772, 56.87216], [-5.44811, 56.87219], [-5.4485, 56.87225], [-5.44886, 56.87232], [-5.44927, 56.87241], [-5.44973, 56.87254], [-5.45008, 56.87265], [-5.45054, 56.87282], [-5.45099, 56.87304]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4357960", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.34997, 56.85904], [-5.35195, 56.85882], [-5.35482, 56.85853], [-5.35882, 56.85812], [-5.36073, 56.85796], [-5.36314, 56.85805], [-5.36554, 56.85823], [-5.37031, 56.8589], [-5.37751, 56.8598], [-5.38462, 56.86072], [-5.39086, 56.86154]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4358487", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.14492, 56.84287], [-5.14659, 56.84283], [-5.14726, 56.84285], [-5.14814, 56.8429], [-5.14899, 56.84302], [-5.14997, 56.84324], [-5.15077, 56.84349], [-5.15188, 56.84393], [-5.15755, 56.8462], [-5.16072, 56.84747], [-5.16402, 56.8488], [-5.16574, 56.8494], [-5.16636, 56.84959], [-5.16737, 56.84987], [-5.16905, 56.85034], [-5.16968, 56.85052], [-5.1704, 56.85076], [-5.17073, 56.85088], [-5.1711, 56.85105], [-5.17166, 56.85132], [-5.17218, 56.85158], [-5.17304, 56.85207], [-5.17377, 56.85237], [-5.17436, 56.85257], [-5.17499, 56.85273], [-5.17548, 56.85282], [-5.17625, 56.85293], [-5.1768, 56.85298], [-5.17743, 56.853], [-5.17866, 56.85301], [-5.17989, 56.85302], [-5.18048, 56.85304], [-5.18108, 56.85311], [-5.18185, 56.85321], [-5.1824, 56.85326], [-5.18297, 56.85328], [-5.18371, 56.85329], [-5.18436, 56.85328], [-5.185, 56.85332], [-5.18565, 56.85338], [-5.18612, 56.85346], [-5.18661, 56.85355], [-5.18715, 56.85369], [-5.18769, 56.85387], [-5.18822, 56.85408], [-5.18876, 56.85429], [-5.18902, 56.8544], [-5.18979, 56.85472], [-5.1904, 56.85493], [-5.19097, 56.85507], [-5.19145, 56.85518], [-5.19192, 56.85527], [-5.19251, 56.85533], [-5.19289, 56.85536], [-5.19318, 56.85538], [-5.19377, 56.8554], [-5.1949, 56.85546], [-5.19589, 56.85551], [-5.1971, 56.85556], [-5.19873, 56.85556], [-5.20081, 56.85553], [-5.20787, 56.85548], [-5.21434, 56.85543], [-5.21732, 56.85531], [-5.22289, 56.85495], [-5.22487, 56.85484], [-5.22945, 56.85491], [-5.23284, 56.85497], [-5.23597, 56.85503], [-5.23719, 56.85506], [-5.23883, 56.85507], [-5.2402, 56.8551], [-5.2423, 56.85513], [-5.24359, 56.85516], [-5.24452, 56.85515]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4358496", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.07092, 56.83483], [-5.07279, 56.83374], [-5.07444, 56.83266], [-5.07591, 56.83177], [-5.07689, 56.83117], [-5.07812, 56.83042], [-5.08071, 56.82878], [-5.08195, 56.82808], [-5.08263, 56.82773]]}}, {"type": "Feature", "properties": {"osm_id": "4358938", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.68023, 55.163], [-1.67974, 55.16306], [-1.67936, 55.16309], [-1.67909, 55.1631], [-1.67883, 55.16311], [-1.67859, 55.16312]]}}, {"type": "Feature", "properties": {"osm_id": "4358939", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.57327, 55.18352], [-1.57332, 55.1838], [-1.57329, 55.1842], [-1.57324, 55.18439], [-1.5731, 55.18483], [-1.57281, 55.18534], [-1.57262, 55.1856], [-1.57244, 55.1858], [-1.57197, 55.18616], [-1.5715, 55.18648], [-1.57114, 55.18668], [-1.57086, 55.1868], [-1.57059, 55.18693], [-1.57022, 55.18706], [-1.56946, 55.18728], [-1.56912, 55.18736], [-1.56868, 55.18744], [-1.56819, 55.1875], [-1.56774, 55.18753], [-1.55999, 55.18786], [-1.55905, 55.18791], [-1.55647, 55.18799], [-1.55174, 55.1882], [-1.55014, 55.18829], [-1.54936, 55.18836], [-1.54841, 55.18843], [-1.54701, 55.18849], [-1.54454, 55.1886], [-1.54258, 55.18866], [-1.54184, 55.18867], [-1.54096, 55.18866], [-1.53991, 55.18864], [-1.53887, 55.18861]]}}, {"type": "Feature", "properties": {"osm_id": "4358942", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.55968, 55.12882], [-1.5588, 55.12755], [-1.55839, 55.12695], [-1.55719, 55.1252], [-1.5568, 55.12465], [-1.55651, 55.12426], [-1.55606, 55.12374], [-1.55559, 55.12329], [-1.55458, 55.12243]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4359017", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.23889, 51.32382], [-0.23886, 51.32385], [-0.2379, 51.32471], [-0.23749, 51.32505], [-0.23692, 51.3255], [-0.23597, 51.32608], [-0.23515, 51.32649], [-0.23429, 51.32687], [-0.23389, 51.32702]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4359851", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.05689, 51.91587], [-1.05658, 51.91597]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4359852", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.107, 51.90609], [-1.10236, 51.90708], [-1.10181, 51.90721], [-1.09798, 51.90798], [-1.09414, 51.90876], [-1.08981, 51.90968]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4359853", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08981, 51.90968], [-1.08938, 51.90976]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4360231", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.8763, 52.24298], [0.9003, 52.24026], [0.90322, 52.23988]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4360233", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.87588, 52.24302], [0.8763, 52.24298]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4360507", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.71474, 56.77502], [-4.71515, 56.77513], [-4.71556, 56.77521], [-4.71597, 56.77528], [-4.71642, 56.77533], [-4.71689, 56.77536], [-4.71731, 56.77537], [-4.71775, 56.77536], [-4.71831, 56.77533], [-4.71894, 56.77528], [-4.72248, 56.77496], [-4.72418, 56.77481], [-4.72481, 56.77477], [-4.72529, 56.77476], [-4.72576, 56.77477], [-4.72615, 56.7748], [-4.7266, 56.77485], [-4.72694, 56.77492], [-4.72743, 56.77502], [-4.72777, 56.77512], [-4.72802, 56.77521], [-4.72837, 56.77534], [-4.72876, 56.77551], [-4.72915, 56.77572], [-4.72952, 56.77596], [-4.72983, 56.77619], [-4.73017, 56.77649], [-4.73049, 56.77681], [-4.73229, 56.77863], [-4.7325, 56.77888], [-4.73267, 56.7791], [-4.73283, 56.77939], [-4.73296, 56.77969], [-4.73308, 56.78003], [-4.73314, 56.78034], [-4.73318, 56.78067], [-4.73318, 56.78096], [-4.73316, 56.78122], [-4.73314, 56.78148], [-4.73309, 56.78171], [-4.73289, 56.78253], [-4.73274, 56.78304], [-4.73251, 56.78376], [-4.73221, 56.78463], [-4.73206, 56.78496], [-4.73185, 56.78535], [-4.73163, 56.78562], [-4.73137, 56.78588], [-4.73055, 56.7866], [-4.73028, 56.78686], [-4.7301, 56.78709], [-4.72966, 56.78769], [-4.72922, 56.78821], [-4.72902, 56.78855], [-4.7287, 56.78913], [-4.72851, 56.78942], [-4.72829, 56.78968], [-4.72794, 56.79007], [-4.7277, 56.79038], [-4.72737, 56.79087], [-4.72719, 56.79115], [-4.72698, 56.79154], [-4.72678, 56.79197], [-4.72661, 56.7923], [-4.72646, 56.7925], [-4.72629, 56.79267], [-4.72599, 56.79297], [-4.72565, 56.79335], [-4.72546, 56.79356], [-4.72531, 56.79381], [-4.72515, 56.79412], [-4.72502, 56.79433], [-4.72487, 56.7945], [-4.72471, 56.79466], [-4.72439, 56.79494], [-4.72416, 56.7952], [-4.72379, 56.79568], [-4.72329, 56.79632], [-4.72303, 56.79676], [-4.72253, 56.79762], [-4.72225, 56.798], [-4.72197, 56.79832], [-4.72164, 56.79867], [-4.72145, 56.79894], [-4.72135, 56.79912], [-4.72127, 56.79931], [-4.72123, 56.79949], [-4.72116, 56.79986], [-4.72107, 56.80013], [-4.72096, 56.80037], [-4.7206, 56.80104], [-4.72041, 56.80144], [-4.72021, 56.80189], [-4.72007, 56.8023], [-4.7199, 56.80279], [-4.71961, 56.80366], [-4.71941, 56.80424], [-4.71923, 56.80472], [-4.71889, 56.80525], [-4.71878, 56.80545], [-4.7187, 56.8057], [-4.71863, 56.80605], [-4.71857, 56.80638], [-4.71833, 56.80768], [-4.71813, 56.80902], [-4.71789, 56.81029], [-4.71759, 56.81115], [-4.71714, 56.81168], [-4.71654, 56.81219], [-4.71597, 56.81285], [-4.71539, 56.81424], [-4.71531, 56.81484], [-4.71517, 56.81541], [-4.71505, 56.81597], [-4.7149, 56.81639], [-4.71454, 56.81688], [-4.71426, 56.81744], [-4.7142, 56.81794], [-4.7141, 56.81846], [-4.71388, 56.81945], [-4.71363, 56.82024], [-4.71329, 56.82098], [-4.71321, 56.82154], [-4.71275, 56.82258], [-4.71269, 56.82392], [-4.71292, 56.82584], [-4.71296, 56.82747], [-4.71283, 56.82875], [-4.71303, 56.82968], [-4.71315, 56.83105], [-4.71328, 56.83205], [-4.71331, 56.83266], [-4.71325, 56.83402], [-4.71319, 56.83493], [-4.71283, 56.83655]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4360570", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.64778, 56.73005], [-4.64843, 56.73029], [-4.64917, 56.7306], [-4.64992, 56.73097], [-4.65055, 56.73133], [-4.65117, 56.73173], [-4.65155, 56.73201], [-4.65195, 56.73235], [-4.65226, 56.73263], [-4.65259, 56.73298], [-4.65298, 56.73346], [-4.65343, 56.73412], [-4.65386, 56.73471], [-4.65418, 56.73508], [-4.65447, 56.73538], [-4.65479, 56.73566], [-4.65503, 56.73587], [-4.65546, 56.73617], [-4.65589, 56.73647], [-4.65627, 56.7367], [-4.65668, 56.73693], [-4.6571, 56.73715], [-4.65746, 56.73731], [-4.65785, 56.73748], [-4.65826, 56.73765], [-4.65878, 56.73784], [-4.65935, 56.73804], [-4.66078, 56.73848], [-4.6617, 56.73879], [-4.66257, 56.73913]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4360587", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.7646, 56.51715], [-4.7647, 56.51734], [-4.76481, 56.51761], [-4.76487, 56.51824], [-4.76482, 56.51856], [-4.76468, 56.51889], [-4.76419, 56.51996], [-4.76401, 56.52047], [-4.76363, 56.52279], [-4.7635, 56.52427], [-4.76376, 56.52531], [-4.76372, 56.52602], [-4.76353, 56.52658], [-4.76339, 56.52685], [-4.7632, 56.52716], [-4.76294, 56.52758], [-4.76275, 56.52805], [-4.7627, 56.52838], [-4.76267, 56.52875], [-4.76306, 56.53055], [-4.76336, 56.53169], [-4.76342, 56.53208], [-4.76345, 56.53246], [-4.76339, 56.53307], [-4.76276, 56.53505], [-4.76262, 56.53549], [-4.76238, 56.53617], [-4.76212, 56.53676], [-4.76183, 56.53724], [-4.76161, 56.53756], [-4.75951, 56.54037]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361114", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.11798, 51.59483], [-0.1183, 51.59522], [-0.11867, 51.5957], [-0.1189, 51.59601], [-0.11906, 51.59623]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361224", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.73915, 56.4433], [-4.74113, 56.44382], [-4.74328, 56.44423], [-4.74761, 56.44511], [-4.75146, 56.44587], [-4.75342, 56.44627], [-4.75435, 56.44636], [-4.75517, 56.44638], [-4.76215, 56.44592], [-4.76549, 56.4457], [-4.76789, 56.44552], [-4.76901, 56.44533], [-4.77014, 56.44503], [-4.77124, 56.44467], [-4.77571, 56.44296], [-4.77732, 56.44244], [-4.78563, 56.44069], [-4.78899, 56.44009], [-4.79378, 56.43936], [-4.80017, 56.43838], [-4.80555, 56.43755], [-4.80693, 56.43729], [-4.81038, 56.43646], [-4.81329, 56.43576], [-4.81425, 56.4355], [-4.81516, 56.43519], [-4.81713, 56.43437], [-4.81875, 56.4337]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361225", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.70921, 56.45002], [-4.70953, 56.45054], [-4.71015, 56.45214]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361243", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.64312, 56.40385], [-4.64629, 56.40529], [-4.6503, 56.40709], [-4.65204, 56.40778], [-4.65327, 56.40821], [-4.65372, 56.40838], [-4.655, 56.40906], [-4.65654, 56.40995], [-4.6597, 56.4117]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361244", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.63511, 56.40713], [-4.63565, 56.4075]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361311", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32154, 55.88214], [-4.32205, 55.88228], [-4.32245, 55.88243], [-4.32279, 55.88258], [-4.32309, 55.88273], [-4.32335, 55.88289], [-4.32359, 55.88306], [-4.32388, 55.88327], [-4.32412, 55.88358], [-4.32425, 55.88371], [-4.32433, 55.88385], [-4.32444, 55.88407], [-4.32453, 55.88432], [-4.32465, 55.88474], [-4.32462, 55.88506], [-4.32457, 55.88528]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361312", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32457, 55.88528], [-4.32449, 55.88549], [-4.32439, 55.88568]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361313", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32439, 55.88568], [-4.32418, 55.88607], [-4.32392, 55.88646], [-4.32339, 55.88724], [-4.32228, 55.88884]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361315", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32209, 55.88921], [-4.32144, 55.89017]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361404", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.70116, 56.35132], [-4.70042, 56.35146], [-4.69979, 56.35154], [-4.69859, 56.35156], [-4.69818, 56.35153], [-4.69748, 56.35142], [-4.69698, 56.35136], [-4.69647, 56.35132], [-4.69605, 56.35131], [-4.69569, 56.35131], [-4.69533, 56.35133], [-4.69492, 56.35137], [-4.69432, 56.35148], [-4.69369, 56.35156], [-4.69329, 56.35159], [-4.69238, 56.3516], [-4.6918, 56.3516], [-4.69146, 56.35162], [-4.69091, 56.35169], [-4.69065, 56.35174], [-4.69028, 56.35184], [-4.68998, 56.35193], [-4.68968, 56.35204], [-4.68923, 56.35226], [-4.68895, 56.35243], [-4.68866, 56.35268], [-4.68853, 56.3528], [-4.68836, 56.353], [-4.68818, 56.35328], [-4.6879, 56.35368], [-4.68747, 56.3542], [-4.68661, 56.35507], [-4.68505, 56.35648], [-4.68447, 56.35682], [-4.68375, 56.35705], [-4.68299, 56.35726], [-4.68207, 56.35737], [-4.68127, 56.35757], [-4.68048, 56.35796], [-4.68022, 56.35816], [-4.67941, 56.35883], [-4.67894, 56.35921], [-4.67795, 56.35999], [-4.6766, 56.36099]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361405", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.72395, 56.34535], [-4.72342, 56.3455], [-4.72274, 56.34561], [-4.7221, 56.34564], [-4.72154, 56.34563], [-4.72068, 56.34551], [-4.71916, 56.34533], [-4.71805, 56.34527], [-4.71712, 56.34532], [-4.71622, 56.34543], [-4.71544, 56.34561]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361406", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.7281, 56.31211], [-4.72826, 56.31247]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361648", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.70598, 56.26659], [-4.70619, 56.26751], [-4.70665, 56.26814], [-4.70767, 56.2692], [-4.70798, 56.26995], [-4.70801, 56.27063], [-4.70793, 56.27104], [-4.70762, 56.27159], [-4.70739, 56.27198], [-4.70723, 56.27238]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361649", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.72159, 56.20383], [-4.71966, 56.20456], [-4.7191, 56.20474], [-4.71853, 56.20487], [-4.71341, 56.20593], [-4.71267, 56.20614], [-4.71208, 56.20635], [-4.71053, 56.20728], [-4.70999, 56.20756], [-4.70895, 56.20801], [-4.7072, 56.20853], [-4.70637, 56.2088], [-4.70561, 56.20918], [-4.70451, 56.20994], [-4.70249, 56.21198], [-4.70127, 56.21308], [-4.69941, 56.2144], [-4.69907, 56.21485], [-4.69888, 56.21542], [-4.69883, 56.21583], [-4.69895, 56.21628], [-4.69943, 56.21711], [-4.69984, 56.21791], [-4.69989, 56.21847], [-4.69981, 56.21889], [-4.69956, 56.21935], [-4.69868, 56.2203], [-4.69852, 56.22074], [-4.69842, 56.22129], [-4.69851, 56.22238], [-4.6987, 56.22392], [-4.6988, 56.22419], [-4.70002, 56.22636], [-4.7005, 56.22715], [-4.70104, 56.22801], [-4.70132, 56.22845], [-4.70164, 56.22877], [-4.70223, 56.22926], [-4.7024, 56.22945], [-4.70254, 56.22967], [-4.70264, 56.22989], [-4.70269, 56.23012], [-4.70278, 56.23032], [-4.70291, 56.23053], [-4.7033, 56.23095]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361664", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.78646, 56.14705], [-4.78609, 56.14757], [-4.78574, 56.14792], [-4.78493, 56.14869], [-4.78293, 56.15044], [-4.78184, 56.15141], [-4.78165, 56.15161], [-4.78124, 56.15204], [-4.78085, 56.15269], [-4.78073, 56.153], [-4.78057, 56.15353], [-4.78045, 56.1545], [-4.78037, 56.15524], [-4.78033, 56.15556], [-4.78021, 56.15589], [-4.78008, 56.15614], [-4.77992, 56.15638], [-4.77948, 56.15699], [-4.77937, 56.15718], [-4.77926, 56.15742], [-4.77921, 56.15762], [-4.77915, 56.15798]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361702", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.74573, 56.01642], [-4.74606, 56.01654], [-4.74651, 56.01666], [-4.74705, 56.01678], [-4.74787, 56.01689], [-4.75019, 56.01703], [-4.75157, 56.01713], [-4.75218, 56.0172], [-4.7532, 56.01735], [-4.75423, 56.01754], [-4.75663, 56.01802], [-4.75831, 56.01836], [-4.75956, 56.01858], [-4.76248, 56.01902], [-4.76349, 56.01918], [-4.76453, 56.01937], [-4.76546, 56.0196], [-4.76617, 56.01981], [-4.76679, 56.02002], [-4.76741, 56.02026], [-4.76828, 56.02066], [-4.76936, 56.02117], [-4.76978, 56.02136], [-4.77012, 56.0215], [-4.77055, 56.02162], [-4.77091, 56.0217], [-4.77133, 56.02177], [-4.77175, 56.02179], [-4.77226, 56.02181], [-4.77284, 56.02182], [-4.77349, 56.02188], [-4.77409, 56.02197], [-4.77459, 56.02211], [-4.77506, 56.02227], [-4.77549, 56.0225], [-4.77612, 56.02288], [-4.77667, 56.02328], [-4.77712, 56.02367]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4361703", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.71306, 55.99567], [-4.71278, 55.9954], [-4.71236, 55.99509], [-4.7121, 55.99492], [-4.71179, 55.99474], [-4.71124, 55.99449], [-4.71091, 55.99436], [-4.71053, 55.99423], [-4.70993, 55.99406], [-4.7094, 55.99395], [-4.70897, 55.99388], [-4.70874, 55.99385], [-4.70849, 55.99382], [-4.70775, 55.99377], [-4.70686, 55.99377], [-4.70638, 55.99377], [-4.70591, 55.99376], [-4.70561, 55.99376], [-4.70534, 55.99375]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361818", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.16214, 56.40692], [-5.16474, 56.40809], [-5.16808, 56.40995], [-5.171, 56.41167], [-5.17285, 56.41284], [-5.17372, 56.41312], [-5.17589, 56.41357], [-5.17781, 56.41407], [-5.17947, 56.41468], [-5.1814, 56.41549], [-5.18281, 56.41588], [-5.18438, 56.4163], [-5.18513, 56.41661], [-5.1857, 56.41698], [-5.18641, 56.41765], [-5.18673, 56.41843], [-5.1869, 56.41942], [-5.18714, 56.41985], [-5.18758, 56.42028], [-5.1881, 56.42061], [-5.18881, 56.42089], [-5.18954, 56.42106], [-5.19022, 56.42116], [-5.19128, 56.42121]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361829", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.31783, 56.45154], [-5.31883, 56.45113], [-5.31945, 56.45079], [-5.31952, 56.45075], [-5.32024, 56.45026], [-5.3207, 56.4499], [-5.32135, 56.44931], [-5.32202, 56.44879], [-5.32265, 56.44842], [-5.32322, 56.44814]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4361830", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.43424, 56.42426], [-5.43727, 56.42263], [-5.43896, 56.42175], [-5.4393, 56.4215], [-5.43963, 56.42115], [-5.43979, 56.42077], [-5.43978, 56.42036], [-5.4396, 56.41993], [-5.43913, 56.41891], [-5.43911, 56.4184], [-5.43919, 56.41817], [-5.43931, 56.41798], [-5.43963, 56.41763], [-5.44008, 56.41732], [-5.44049, 56.41712], [-5.44082, 56.41701], [-5.44143, 56.41687], [-5.44306, 56.41667], [-5.44353, 56.41661], [-5.44417, 56.41648], [-5.44464, 56.41631], [-5.44506, 56.41605], [-5.44545, 56.41573], [-5.4457, 56.4154], [-5.4458, 56.41515], [-5.44583, 56.41487], [-5.44575, 56.41447], [-5.44545, 56.41383], [-5.44541, 56.41372]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4362034", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.0691, 51.48997], [0.06931, 51.4899], [0.06958, 51.48982], [0.06983, 51.48976], [0.07022, 51.48967], [0.07052, 51.48961], [0.07084, 51.48955], [0.07101, 51.48953], [0.07126, 51.48949], [0.07149, 51.48947], [0.07174, 51.48945], [0.07214, 51.48941], [0.07267, 51.48938], [0.07286, 51.48938]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4362035", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.06235, 51.49175], [0.06272, 51.49174], [0.06313, 51.49172], [0.0635, 51.49169], [0.06383, 51.49165], [0.06428, 51.49159], [0.06469, 51.4915], [0.06523, 51.49137]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4362036", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.05334, 51.49139], [0.05386, 51.49126], [0.05435, 51.49118], [0.05468, 51.49113], [0.05505, 51.4911], [0.05557, 51.49105], [0.05602, 51.49103], [0.05653, 51.49103]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4362037", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.03733, 51.48853], [0.03808, 51.48879], [0.03877, 51.48904], [0.03913, 51.48917], [0.03947, 51.48929], [0.03971, 51.48939], [0.04006, 51.48952]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4362128", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.09655, 51.54549], [-2.09757, 51.54513]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4362241", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.30003, 51.52946], [-2.30585, 51.5297], [-2.31445, 51.53002], [-2.32159, 51.53028], [-2.33103, 51.53061], [-2.34002, 51.53092], [-2.34984, 51.53131], [-2.35835, 51.53161]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364071", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.07286, 51.48938], [0.07401, 51.48942], [0.08174, 51.48969], [0.08403, 51.48979], [0.08488, 51.48982]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364073", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.16801, 51.48753], [0.16893, 51.48677], [0.1719, 51.4842]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364074", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.05179, 51.49168], [0.05229, 51.49159], [0.05281, 51.4915], [0.05334, 51.49139]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364075", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.05653, 51.49103], [0.05709, 51.49105], [0.05765, 51.49109]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364076", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.06523, 51.49137], [0.06574, 51.49123], [0.06626, 51.49107]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4364086", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.01278, 51.44989], [0.01348, 51.44981], [0.01398, 51.44976], [0.01452, 51.4497], [0.01537, 51.44961], [0.01592, 51.44956], [0.01643, 51.4495], [0.01671, 51.44947], [0.01797, 51.44934], [0.01863, 51.44927], [0.01915, 51.44921], [0.01971, 51.44915], [0.02046, 51.44907], [0.02061, 51.44905], [0.0213, 51.44896], [0.02153, 51.44893], [0.02193, 51.44887], [0.02199, 51.44886], [0.02265, 51.44875], [0.02306, 51.44867], [0.02351, 51.44859], [0.02398, 51.44848], [0.02473, 51.44831], [0.02541, 51.44814], [0.02589, 51.44801], [0.02653, 51.44783], [0.02705, 51.44766], [0.02754, 51.44751], [0.02811, 51.44731], [0.0288, 51.44705], [0.02947, 51.44679], [0.02996, 51.4466], [0.03047, 51.44639]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4364815", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.8996, 51.9], [0.90039, 51.89993], [0.9013, 51.89985]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4364816", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.91973, 51.88937], [0.9197, 51.88921], [0.9196, 51.88894], [0.91945, 51.88868], [0.91924, 51.88844], [0.91897, 51.88823], [0.91874, 51.88808], [0.91848, 51.88796], [0.91814, 51.88785], [0.9178, 51.88778], [0.91754, 51.88773]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4364820", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.95591, 51.9106], [0.95485, 51.91013], [0.953, 51.90926], [0.95028, 51.90779], [0.94763, 51.90632], [0.94624, 51.9056], [0.94559, 51.90531], [0.94438, 51.90476], [0.9429, 51.90412], [0.94178, 51.90368], [0.94081, 51.90332], [0.9397, 51.90292], [0.93694, 51.90202], [0.9358, 51.90168], [0.93374, 51.90113], [0.93321, 51.901], [0.93247, 51.90083], [0.93073, 51.90048], [0.93005, 51.90035], [0.92937, 51.90023], [0.92787, 51.90001], [0.9271, 51.8999], [0.92632, 51.8998], [0.92409, 51.89957], [0.92184, 51.89938], [0.91996, 51.89927], [0.91875, 51.89922], [0.91734, 51.8992], [0.91614, 51.8992], [0.91427, 51.89921], [0.91341, 51.89923]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4364821", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.8996, 51.9], [0.89879, 51.90006]]}}, {"type": "Feature", "properties": {"osm_id": "4366535", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.96281, 52.59931], [-1.96543, 52.5993], [-1.96675, 52.59922], [-1.96772, 52.59914]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4367518", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.33871, 53.29489], [-1.33841, 53.2958], [-1.33806, 53.2972], [-1.33779, 53.29941], [-1.33783, 53.30063], [-1.33785, 53.30154], [-1.33794, 53.30221], [-1.33798, 53.30268], [-1.33808, 53.30312], [-1.33815, 53.30334], [-1.33831, 53.30406], [-1.3387, 53.3056]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4367552", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.04359, 51.4844], [-0.04367, 51.48458], [-0.04373, 51.48477], [-0.04376, 51.4849], [-0.04377, 51.48503], [-0.04378, 51.48513], [-0.04376, 51.48549], [-0.04376, 51.4856], [-0.04375, 51.48568], [-0.04374, 51.48577], [-0.04373, 51.48591], [-0.04373, 51.48606], [-0.04375, 51.48623], [-0.04378, 51.48641], [-0.04382, 51.48655], [-0.04387, 51.48669]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4367553", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.04332, 51.484], [-0.04318, 51.48371]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4367556", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01277, 51.47845], [-0.01256, 51.47853], [-0.01235, 51.47863], [-0.01214, 51.47875], [-0.01188, 51.47891], [-0.01161, 51.47908], [-0.01139, 51.4792], [-0.01116, 51.47932], [-0.01098, 51.47941], [-0.01077, 51.47951], [-0.01023, 51.47972], [-0.00981, 51.4799]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4369624", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.07541, 51.58175], [-0.07545, 51.58156]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4370475", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.05449, 52.1189], [0.05392, 52.11889], [0.05335, 52.11892], [0.05299, 52.119], [0.05264, 52.11914], [0.05215, 52.11947]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4371238", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12859, 51.89591], [-1.12878, 51.89597], [-1.13058, 51.89661]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4372150", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.18058, 51.27929], [0.1806, 51.27954], [0.1806, 51.27955], [0.18065, 51.2798], [0.18072, 51.28007], [0.18078, 51.28023], [0.18085, 51.28037]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4372160", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19881, 51.24134], [0.19914, 51.24054], [0.19976, 51.23898], [0.2001, 51.2381], [0.2007, 51.23676], [0.20107, 51.23602], [0.20145, 51.2353], [0.20171, 51.23477], [0.202, 51.23422], [0.20261, 51.23304], [0.20467, 51.22909], [0.20566, 51.22769], [0.2062, 51.22704], [0.20677, 51.22639], [0.20752, 51.22563], [0.20835, 51.2249], [0.21001, 51.22344], [0.21154, 51.22211], [0.21266, 51.2212], [0.21317, 51.22082], [0.21347, 51.22061], [0.21373, 51.22042], [0.21459, 51.21985], [0.21581, 51.2191], [0.21671, 51.21861], [0.21763, 51.21812]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4372173", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.21763, 51.21812], [0.21857, 51.21768], [0.21969, 51.2172], [0.2215, 51.21649], [0.22207, 51.2163], [0.22744, 51.21472], [0.22802, 51.21455], [0.22833, 51.21446], [0.22909, 51.21424], [0.23003, 51.21398], [0.23073, 51.21377], [0.23458, 51.21266], [0.23579, 51.21228], [0.23639, 51.21206], [0.23719, 51.21177]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4372174", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.24338, 51.20884], [0.24588, 51.20754], [0.25011, 51.20535]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4372176", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.28769, 51.18966], [0.2785, 51.19061]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4372959", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.97902, 56.4543], [-2.97919, 56.45425], [-2.97936, 56.4542], [-2.97948, 56.45417], [-2.9797, 56.45409], [-2.98007, 56.45397], [-2.98069, 56.45377], [-2.98101, 56.45368], [-2.98114, 56.45364], [-2.98172, 56.45349], [-2.9824, 56.45331], [-2.98307, 56.45313]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4373012", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19783, 51.30384], [0.19786, 51.30346], [0.19793, 51.30308], [0.198, 51.30275], [0.19814, 51.30243], [0.19839, 51.30201], [0.19874, 51.30162], [0.19904, 51.30136], [0.19938, 51.30112], [0.19985, 51.30085], [0.20038, 51.3006], [0.20102, 51.30037], [0.20165, 51.3002], [0.20304, 51.29999], [0.20447, 51.29983], [0.20879, 51.29936], [0.2133, 51.29888], [0.21629, 51.29855], [0.21762, 51.2984], [0.2202, 51.29813], [0.22231, 51.2979], [0.22335, 51.29779], [0.22439, 51.29767], [0.22545, 51.29757], [0.22674, 51.29749], [0.22739, 51.29746], [0.22804, 51.29744], [0.23178, 51.2974], [0.23837, 51.29735], [0.24742, 51.29727], [0.26209, 51.29715], [0.26355, 51.29711], [0.26427, 51.29706], [0.26497, 51.29699], [0.26646, 51.29682], [0.26792, 51.29661], [0.26922, 51.29639], [0.27043, 51.29613], [0.27179, 51.29577], [0.27307, 51.29537], [0.27431, 51.29493], [0.27551, 51.29446], [0.27663, 51.29403], [0.2781, 51.29355], [0.27948, 51.2932], [0.28103, 51.29288], [0.28266, 51.29263], [0.28354, 51.29253], [0.28444, 51.29244], [0.28538, 51.29238], [0.28635, 51.29233], [0.28739, 51.29232], [0.28845, 51.29235], [0.28999, 51.29243], [0.29151, 51.29255], [0.29247, 51.29259]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4373013", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.30186, 51.29309], [0.30619, 51.29316], [0.30667, 51.29317], [0.31144, 51.29329], [0.32302, 51.29356], [0.32406, 51.29362], [0.32527, 51.29375], [0.3264, 51.29393], [0.32748, 51.29416], [0.32838, 51.29438], [0.32921, 51.29464]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4373660", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.16871, 57.01149], [-2.16947, 57.01018], [-2.16968, 57.00974], [-2.16986, 57.00923], [-2.17001, 57.00876], [-2.17065, 57.00619], [-2.17095, 57.00544], [-2.17116, 57.005], [-2.17128, 57.00477], [-2.17139, 57.00454], [-2.17161, 57.00414], [-2.17187, 57.00374], [-2.17251, 57.00292], [-2.1736, 57.00156], [-2.17409, 57.00095], [-2.17464, 57.00028], [-2.17537, 56.99945], [-2.17806, 56.99671], [-2.17855, 56.9962], [-2.17918, 56.99551], [-2.1794, 56.99526], [-2.17962, 56.99498], [-2.18024, 56.99419], [-2.18059, 56.99375], [-2.18091, 56.99328], [-2.1811, 56.99301], [-2.18129, 56.99273], [-2.18151, 56.99239], [-2.18174, 56.99202], [-2.18225, 56.99112], [-2.18242, 56.99079], [-2.18258, 56.99044], [-2.18274, 56.9901], [-2.183, 56.9895], [-2.1833, 56.98876], [-2.18349, 56.98825], [-2.18374, 56.98752], [-2.18397, 56.98672], [-2.18413, 56.98599]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4373661", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.24437, 56.96027], [-2.24579, 56.96], [-2.24676, 56.95979], [-2.24801, 56.95948], [-2.25479, 56.95774], [-2.25607, 56.95743], [-2.25708, 56.95722], [-2.25784, 56.95705], [-2.25877, 56.95686], [-2.25962, 56.95668], [-2.26022, 56.95653], [-2.26079, 56.95637], [-2.26168, 56.95608], [-2.26241, 56.95583], [-2.26352, 56.95553], [-2.26425, 56.95536], [-2.26492, 56.95523], [-2.26577, 56.95511], [-2.26662, 56.95503], [-2.26765, 56.95495], [-2.26854, 56.95493], [-2.26944, 56.95493], [-2.27025, 56.95496], [-2.27117, 56.95503], [-2.27212, 56.95513], [-2.27296, 56.95526], [-2.27383, 56.95545], [-2.27867, 56.95647], [-2.28032, 56.95681], [-2.28109, 56.95694], [-2.2822, 56.95711], [-2.28317, 56.95722], [-2.28418, 56.95732], [-2.28538, 56.95739], [-2.28637, 56.95741], [-2.28777, 56.9574], [-2.28887, 56.95735], [-2.28958, 56.9573], [-2.29052, 56.95721], [-2.29121, 56.95713], [-2.2919, 56.95704], [-2.29278, 56.95688], [-2.29366, 56.95672], [-2.29505, 56.95646]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4373662", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.3214, 56.95186], [-2.32145, 56.9518], [-2.32158, 56.95161], [-2.32224, 56.95058], [-2.32262, 56.95009], [-2.32282, 56.94986], [-2.32306, 56.94962], [-2.32332, 56.94938], [-2.32363, 56.94913], [-2.32423, 56.94868], [-2.32485, 56.94829], [-2.32517, 56.9481], [-2.3255, 56.94793], [-2.32632, 56.94754], [-2.32862, 56.9466], [-2.33067, 56.94577], [-2.33298, 56.94483], [-2.33417, 56.94436], [-2.33498, 56.94409], [-2.33568, 56.94389], [-2.33655, 56.94367], [-2.33743, 56.94351], [-2.33862, 56.94331], [-2.33963, 56.94315]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4373665", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47568, 56.73901], [-2.47571, 56.73887], [-2.47579, 56.73857], [-2.47585, 56.73817], [-2.47585, 56.73783], [-2.47584, 56.73752]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4373685", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47943, 56.7043], [-2.47968, 56.70405], [-2.48002, 56.7036], [-2.48024, 56.70324], [-2.48045, 56.70283], [-2.48058, 56.70247], [-2.48066, 56.70211], [-2.48068, 56.70179], [-2.48064, 56.70138], [-2.48058, 56.70109]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4374705", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.19102, 51.38312], [0.196, 51.37698]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4374706", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.20214, 51.36901], [0.20166, 51.36985], [0.20095, 51.3709], [0.19995, 51.37215], [0.19899, 51.37331], [0.19805, 51.37447], [0.19691, 51.37583], [0.19643, 51.3764], [0.19595, 51.37696]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4375798", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.14585, 56.12343], [-3.14538, 56.12353], [-3.14484, 56.12363], [-3.14432, 56.12371], [-3.1438, 56.12379], [-3.14326, 56.12384], [-3.14255, 56.12389], [-3.14143, 56.12394], [-3.14082, 56.12393], [-3.14034, 56.12393], [-3.13976, 56.1239], [-3.1392, 56.12386], [-3.13854, 56.12383], [-3.13777, 56.12382], [-3.13715, 56.12383], [-3.13664, 56.12385], [-3.13615, 56.12388], [-3.13552, 56.12393], [-3.13499, 56.12399], [-3.13416, 56.12411], [-3.13358, 56.12421], [-3.13284, 56.12436], [-3.13215, 56.12452], [-3.13147, 56.1247], [-3.13081, 56.12491], [-3.13008, 56.12518], [-3.12948, 56.12542], [-3.12903, 56.12564], [-3.12849, 56.12591], [-3.12796, 56.12622], [-3.12752, 56.12651], [-3.12706, 56.12683], [-3.12611, 56.12759]]}}, {"type": "Feature", "properties": {"osm_id": "4378575", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.03116, 53.09651], [-3.03119, 53.09628], [-3.03121, 53.09601], [-3.03119, 53.09567], [-3.03114, 53.0952], [-3.03105, 53.09474], [-3.03095, 53.09434], [-3.03075, 53.09374], [-3.03062, 53.09342]]}}, {"type": "Feature", "properties": {"osm_id": "4378757", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.03094, 53.09804], [-3.03116, 53.09651]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4381567", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.56206, 50.85598], [0.57184, 50.85738]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4383012", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.04577, 54.99856], [-3.04641, 54.99907], [-3.04668, 54.99925]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4383021", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.23147, 54.98394], [-3.23342, 54.98378], [-3.23473, 54.98363], [-3.236, 54.98344], [-3.23688, 54.98328], [-3.23968, 54.98268], [-3.24224, 54.98208], [-3.24404, 54.98175], [-3.24498, 54.98161], [-3.24595, 54.9815], [-3.24717, 54.98141], [-3.24848, 54.98137], [-3.25016, 54.98138], [-3.2519, 54.98146], [-3.25321, 54.98159], [-3.25449, 54.98175], [-3.25664, 54.98215], [-3.25877, 54.9826], [-3.26317, 54.98358], [-3.26488, 54.98394], [-3.26679, 54.98434], [-3.26863, 54.9846]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4383332", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.43017, 56.36551], [-3.4294, 56.3663], [-3.42882, 56.36705], [-3.42841, 56.36766], [-3.42798, 56.36839], [-3.42755, 56.36924], [-3.42727, 56.36992], [-3.42707, 56.37062], [-3.42699, 56.37151], [-3.42696, 56.37217], [-3.42713, 56.37324], [-3.42735, 56.37409], [-3.42787, 56.37525]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4383542", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.51434, 55.91518], [-4.51192, 55.91299]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4383987", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.48796, 55.04159], [-3.49242, 55.04363]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385508", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.66511, 55.13378], [-3.66675, 55.13689], [-3.66749, 55.13798], [-3.66828, 55.13901], [-3.66895, 55.13977]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385509", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.73468, 55.22985], [-3.73475, 55.23076], [-3.73495, 55.2316], [-3.73552, 55.23305], [-3.7362, 55.23434], [-3.73744, 55.23664], [-3.73846, 55.23848], [-3.73986, 55.24101], [-3.74047, 55.24218], [-3.74112, 55.24323], [-3.74179, 55.24432], [-3.74264, 55.24541], [-3.74369, 55.24653], [-3.74488, 55.24761], [-3.74617, 55.24866], [-3.74757, 55.24962], [-3.74905, 55.2505]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385513", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.7719, 55.29797], [-3.7794, 55.30349], [-3.78371, 55.30728]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385514", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.78371, 55.30728], [-3.78483, 55.30808], [-3.78592, 55.30865], [-3.7868, 55.30903], [-3.78828, 55.30952], [-3.78923, 55.30982], [-3.78994, 55.31009], [-3.79068, 55.31042], [-3.79123, 55.31072], [-3.79165, 55.31099], [-3.79208, 55.31131], [-3.79241, 55.3116], [-3.79287, 55.31208], [-3.79325, 55.31257], [-3.79428, 55.31434], [-3.7948, 55.31504], [-3.79551, 55.31589], [-3.79617, 55.31657], [-3.79658, 55.31695], [-3.79704, 55.31732], [-3.7973, 55.31754], [-3.79762, 55.31776], [-3.79838, 55.31823], [-3.79908, 55.31861], [-3.79967, 55.31889], [-3.80019, 55.31911], [-3.80082, 55.31934]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385529", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.88061, 55.35239], [-3.88146, 55.35275], [-3.88198, 55.35296], [-3.88275, 55.35322], [-3.88348, 55.35346]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385574", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.18728, 55.40226], [-4.18823, 55.40228], [-4.18905, 55.40233], [-4.18976, 55.40237], [-4.19039, 55.40243], [-4.19124, 55.40253], [-4.19201, 55.40264], [-4.19281, 55.40278], [-4.19359, 55.40294], [-4.19439, 55.40311], [-4.19514, 55.4033], [-4.19584, 55.4035], [-4.19655, 55.40373], [-4.19781, 55.40418], [-4.20228, 55.40589], [-4.20305, 55.40618]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4385575", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.25827, 55.45916], [-4.25938, 55.45968], [-4.26049, 55.46015], [-4.26156, 55.46049], [-4.2632, 55.46088], [-4.26472, 55.46113], [-4.26687, 55.46146], [-4.26892, 55.46183], [-4.27027, 55.46214], [-4.27176, 55.46256], [-4.27288, 55.46294], [-4.27545, 55.46401], [-4.27916, 55.46559], [-4.28177, 55.46671], [-4.28403, 55.46765], [-4.28532, 55.46815], [-4.28643, 55.4685], [-4.28849, 55.46904], [-4.28999, 55.46932], [-4.29088, 55.46945], [-4.29288, 55.46962], [-4.29368, 55.46967]]}}, {"type": "Feature", "properties": {"electrified": "yes", "osm_id": "4385654", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19502, 51.43364], [-0.19493, 51.43387], [-0.19471, 51.43458], [-0.19451, 51.43493], [-0.1935, 51.4363], [-0.19293, 51.43718], [-0.19236, 51.4377], [-0.19215, 51.43788], [-0.19206, 51.43796], [-0.19174, 51.43824], [-0.19128, 51.43872]]}}, {"type": "Feature", "properties": {"osm_id": "4385655", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19493, 51.43387], [-0.19489, 51.43422], [-0.19488, 51.43437], [-0.19485, 51.43463], [-0.19484, 51.43464], [-0.1947, 51.435], [-0.19375, 51.43637], [-0.19345, 51.43683], [-0.19314, 51.43716], [-0.19297, 51.4373]]}}, {"type": "Feature", "properties": {"osm_id": "4385656", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19539, 51.43493], [-0.19522, 51.43518], [-0.19488, 51.43565], [-0.19467, 51.43594], [-0.19429, 51.4365], [-0.19408, 51.43674], [-0.19388, 51.4369], [-0.19364, 51.43708], [-0.19346, 51.4372], [-0.19324, 51.43735], [-0.19279, 51.43755], [-0.1924, 51.43772], [-0.19215, 51.43788]]}}, {"type": "Feature", "properties": {"osm_id": "4385657", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19552, 51.43499], [-0.19456, 51.43633], [-0.19436, 51.43658], [-0.19434, 51.43659], [-0.19429, 51.43666], [-0.19426, 51.43669], [-0.1939, 51.437], [-0.19347, 51.43725], [-0.19324, 51.43735]]}}, {"type": "Feature", "properties": {"osm_id": "4385658", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19562, 51.43501], [-0.19514, 51.43568], [-0.19491, 51.43601], [-0.19455, 51.43652], [-0.19444, 51.43664], [-0.19416, 51.43686], [-0.1939, 51.437]]}}, {"type": "Feature", "properties": {"osm_id": "4385659", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19684, 51.43317], [-0.19731, 51.43248], [-0.19742, 51.43231], [-0.1975, 51.43209], [-0.19757, 51.43173], [-0.19763, 51.43138], [-0.19761, 51.43121], [-0.19759, 51.43096], [-0.19757, 51.4307], [-0.19758, 51.43041], [-0.19769, 51.42988], [-0.19772, 51.42979]]}}, {"type": "Feature", "properties": {"osm_id": "4385660", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19668, 51.4332], [-0.19707, 51.43266], [-0.19743, 51.4321], [-0.19757, 51.43173]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4386420", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.40455, 55.52533], [-4.40779, 55.53069]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4386421", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.40779, 55.53069], [-4.40902, 55.53279], [-4.41083, 55.53581], [-4.41119, 55.53649], [-4.41144, 55.53715], [-4.41167, 55.53795], [-4.41177, 55.53863], [-4.41177, 55.53925], [-4.41174, 55.53978], [-4.41154, 55.54086], [-4.41128, 55.542], [-4.41113, 55.54275], [-4.41106, 55.54351], [-4.41108, 55.54406], [-4.41114, 55.54455], [-4.41122, 55.54503], [-4.41134, 55.54551], [-4.41152, 55.54602], [-4.41171, 55.5467], [-4.41186, 55.54746], [-4.4119, 55.54821], [-4.41183, 55.54903], [-4.41066, 55.55513], [-4.41003, 55.55845], [-4.40996, 55.55909], [-4.40995, 55.55969], [-4.41005, 55.56048], [-4.41017, 55.56103], [-4.41037, 55.56155], [-4.41077, 55.56237], [-4.41229, 55.56481]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4386517", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.467, 55.60342], [-4.46859, 55.60508]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4386518", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.5021, 55.61343], [-4.50248, 55.61356], [-4.50278, 55.61361], [-4.503, 55.61365], [-4.50332, 55.61369], [-4.50365, 55.61371], [-4.50394, 55.61371], [-4.5043, 55.6137], [-4.50483, 55.61364], [-4.50536, 55.61356], [-4.50566, 55.6135], [-4.50579, 55.61348], [-4.5062, 55.61336], [-4.5065, 55.61326], [-4.50678, 55.61314], [-4.50701, 55.61302], [-4.50741, 55.61273], [-4.50766, 55.61251], [-4.50783, 55.61228]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4386519", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.57329, 55.59706], [-4.57497, 55.59735], [-4.57828, 55.59759], [-4.58237, 55.59766], [-4.58606, 55.59755], [-4.58823, 55.5975], [-4.58966, 55.59748], [-4.59137, 55.59735], [-4.59408, 55.59685], [-4.59724, 55.59583], [-4.60184, 55.59475], [-4.603, 55.59448], [-4.60396, 55.59418], [-4.60465, 55.59391], [-4.60584, 55.59317], [-4.60991, 55.5902], [-4.61363, 55.58752], [-4.61791, 55.58434], [-4.62339, 55.58047], [-4.62555, 55.57885], [-4.62777, 55.57726], [-4.63097, 55.57498], [-4.63149, 55.5746], [-4.63363, 55.57304], [-4.63645, 55.571], [-4.63815, 55.56978], [-4.64037, 55.56816], [-4.64133, 55.56747], [-4.64199, 55.567], [-4.64322, 55.56608], [-4.64388, 55.56565], [-4.64487, 55.56508], [-4.64712, 55.56386], [-4.64872, 55.56302], [-4.64973, 55.56244], [-4.65015, 55.56211]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4389138", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.5876, 50.86509], [0.58805, 50.86533], [0.58994, 50.86626]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4389217", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.27323, 51.12135], [0.27615, 51.11987]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4389222", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.26515, 51.12653], [0.26543, 51.12616]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4389223", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.26309, 51.13074], [0.26306, 51.1301], [0.26309, 51.12976], [0.26313, 51.12958], [0.26328, 51.12926], [0.26363, 51.1287]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4389738", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.27743, 51.18589], [0.27814, 51.18236]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4392273", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.17568, 53.3873], [-2.17611, 53.38691]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4392274", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.18869, 53.3759], [-2.18848, 53.37609]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4392280", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.18092, 53.16503], [-2.18043, 53.16534], [-2.17987, 53.16567], [-2.17898, 53.16617], [-2.17802, 53.16665], [-2.17751, 53.16691], [-2.17684, 53.16723], [-2.17602, 53.1676], [-2.17542, 53.16788], [-2.17473, 53.16821], [-2.17405, 53.16857], [-2.17343, 53.1689], [-2.17273, 53.16931], [-2.17218, 53.16965], [-2.17173, 53.16993], [-2.17127, 53.17025], [-2.17084, 53.17055], [-2.17018, 53.17103], [-2.16954, 53.17155], [-2.16898, 53.17204], [-2.1684, 53.17256], [-2.16792, 53.17305], [-2.16737, 53.17363], [-2.16691, 53.17416], [-2.16661, 53.17455], [-2.16098, 53.18235]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4393639", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.65452, 52.56251], [-0.65469, 52.56155], [-0.65503, 52.56054], [-0.65575, 52.55873], [-0.65624, 52.55756], [-0.65654, 52.55698], [-0.65689, 52.55641]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4395751", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.94747, 51.20832], [0.94677, 51.20769], [0.94655, 51.20748]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4395752", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.90865, 51.1662], [0.90717, 51.16485], [0.90581, 51.16362], [0.90514, 51.163], [0.90445, 51.16237], [0.90359, 51.16159], [0.90304, 51.16108], [0.90106, 51.15927]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395761", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.80078, 56.13065], [-4.80051, 56.13087], [-4.80014, 56.13122], [-4.79925, 56.13204], [-4.79764, 56.13378], [-4.79555, 56.136], [-4.79327, 56.13821], [-4.79112, 56.14035], [-4.78961, 56.14194], [-4.78845, 56.14349], [-4.78728, 56.14488], [-4.78714, 56.14509], [-4.78698, 56.1454], [-4.78682, 56.14589], [-4.78669, 56.14646], [-4.78662, 56.14672], [-4.78646, 56.14705]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395763", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.81145, 56.06552], [-4.81138, 56.06611], [-4.8114, 56.06681], [-4.81148, 56.06758], [-4.81165, 56.06901], [-4.81175, 56.06995], [-4.81201, 56.0707], [-4.81239, 56.07127], [-4.81288, 56.0717]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395971", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.8255, 56.43018], [-4.82754, 56.42842], [-4.83022, 56.42613], [-4.83287, 56.4239], [-4.83337, 56.42352], [-4.83403, 56.42309], [-4.83542, 56.42238], [-4.83631, 56.4219], [-4.83703, 56.42155], [-4.83767, 56.4213], [-4.83815, 56.42114], [-4.83926, 56.42086], [-4.8397, 56.42068], [-4.84031, 56.42032], [-4.84076, 56.41988], [-4.84124, 56.41931], [-4.84181, 56.41852], [-4.84283, 56.41755], [-4.84519, 56.41563], [-4.84677, 56.41466], [-4.84861, 56.41372], [-4.84937, 56.4133], [-4.84997, 56.41292], [-4.85094, 56.41194], [-4.85289, 56.40988], [-4.8537, 56.40912], [-4.85441, 56.40855], [-4.85582, 56.40764]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395972", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.90778, 56.39477], [-4.90878, 56.39467], [-4.90998, 56.39466], [-4.91091, 56.39478], [-4.9125, 56.39517], [-4.91353, 56.39534], [-4.91647, 56.39538], [-4.91848, 56.39529], [-4.921, 56.39504], [-4.92311, 56.39487], [-4.92757, 56.39473], [-4.93035, 56.39468], [-4.93541, 56.39457], [-4.93665, 56.39458], [-4.93789, 56.39463], [-4.94185, 56.39491], [-4.94746, 56.39531], [-4.95088, 56.39557], [-4.95298, 56.39567], [-4.95426, 56.3957], [-4.95489, 56.39574], [-4.95545, 56.39581], [-4.95694, 56.39608], [-4.95743, 56.39614], [-4.95804, 56.3962], [-4.95859, 56.39623], [-4.95908, 56.39624], [-4.96077, 56.39617], [-4.96222, 56.39616], [-4.96383, 56.39625], [-4.96486, 56.39638], [-4.96638, 56.39666], [-4.96734, 56.39691], [-4.9683, 56.39721], [-4.97062, 56.39802], [-4.97197, 56.39849], [-4.97347, 56.39911], [-4.97503, 56.39995], [-4.97566, 56.40025], [-4.97603, 56.40039], [-4.97644, 56.40053], [-4.9771, 56.40069], [-4.97772, 56.40081], [-4.9783, 56.40089]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395973", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.01993, 56.40754], [-5.02165, 56.4085]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4395974", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.11444, 56.39459], [-5.11489, 56.39475], [-5.11521, 56.39487], [-5.11584, 56.39509], [-5.11626, 56.39521], [-5.11666, 56.3953], [-5.11704, 56.39538], [-5.11766, 56.39547], [-5.11867, 56.39557], [-5.12146, 56.39572], [-5.12225, 56.39581], [-5.12278, 56.39591], [-5.12328, 56.39603], [-5.12407, 56.39621], [-5.12557, 56.39654], [-5.12786, 56.39721], [-5.13058, 56.39808], [-5.13252, 56.39859], [-5.13349, 56.3987], [-5.13458, 56.39876], [-5.13735, 56.39897], [-5.14042, 56.39963], [-5.1448, 56.40029], [-5.14578, 56.40049], [-5.14843, 56.40129], [-5.15204, 56.40225], [-5.15375, 56.40284], [-5.15459, 56.40328], [-5.15553, 56.40389], [-5.15618, 56.40416], [-5.15737, 56.4046], [-5.15887, 56.40503], [-5.15953, 56.40531], [-5.16214, 56.40692]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4396048", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.81119, 56.90474], [-5.8124, 56.90513], [-5.81432, 56.90572], [-5.81603, 56.90629], [-5.81888, 56.90719], [-5.82024, 56.90766], [-5.82126, 56.90811], [-5.82186, 56.90865], [-5.82204, 56.90905]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4396049", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.75019, 56.89611], [-5.75076, 56.89642], [-5.75123, 56.89672], [-5.75169, 56.8971]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4396465", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.51422, 51.27793], [0.51522, 51.27771], [0.51564, 51.27761], [0.51596, 51.27753], [0.51606, 51.27751], [0.51614, 51.2775], [0.51623, 51.27748], [0.51631, 51.27747], [0.51647, 51.27745], [0.51662, 51.27743], [0.51677, 51.27742]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4396466", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.86253, 51.14824], [0.86302, 51.14791], [0.86328, 51.14775], [0.86357, 51.1476], [0.8638, 51.14748], [0.86406, 51.14737], [0.86432, 51.14727], [0.86458, 51.14717], [0.86491, 51.14706], [0.86521, 51.14697], [0.86571, 51.14685]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4396467", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.85946, 51.15251], [0.85973, 51.1519], [0.86001, 51.15133], [0.86026, 51.15091], [0.86041, 51.15064], [0.86054, 51.15042], [0.86081, 51.15003], [0.86105, 51.14972], [0.86128, 51.14943], [0.86145, 51.14922], [0.86159, 51.14908], [0.86187, 51.1488], [0.86219, 51.14851], [0.86253, 51.14824]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4396470", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.81809, 51.18942], [0.81733, 51.18985], [0.8161, 51.19056], [0.81454, 51.19145], [0.81094, 51.19352], [0.80877, 51.19475], [0.8076, 51.19534], [0.80641, 51.19591], [0.8046, 51.19676], [0.80377, 51.19715], [0.80305, 51.19754], [0.80227, 51.198], [0.80155, 51.19847], [0.8012, 51.19871], [0.80086, 51.19896], [0.80056, 51.19918], [0.80027, 51.19942], [0.79952, 51.20003], [0.79885, 51.20067], [0.79853, 51.20098], [0.79824, 51.20131], [0.7979, 51.20173], [0.79748, 51.20225], [0.79681, 51.20306], [0.79616, 51.20388], [0.79579, 51.2043], [0.79542, 51.2047], [0.795, 51.20511], [0.79455, 51.2055], [0.79367, 51.20614], [0.79276, 51.20678], [0.79195, 51.20723], [0.79147, 51.20748], [0.79097, 51.20772], [0.79041, 51.20797], [0.78986, 51.20819]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4396471", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.78986, 51.20819], [0.78926, 51.20841], [0.78865, 51.20861], [0.78757, 51.20894], [0.78525, 51.20963], [0.78182, 51.21065], [0.78009, 51.21116], [0.77837, 51.21167], [0.77132, 51.21375], [0.77027, 51.21407], [0.76923, 51.21438], [0.76781, 51.21483], [0.76434, 51.21598], [0.76243, 51.21661], [0.76148, 51.21692], [0.76045, 51.21726], [0.75733, 51.21829], [0.75426, 51.21929], [0.75258, 51.21984], [0.75094, 51.22038], [0.74928, 51.22093], [0.74844, 51.22121], [0.74756, 51.2215], [0.74428, 51.22258], [0.74265, 51.22312], [0.74166, 51.22347], [0.74095, 51.22372], [0.73928, 51.22434], [0.73765, 51.22497], [0.73591, 51.22564], [0.73514, 51.22594], [0.73403, 51.22637], [0.7324, 51.22701], [0.73158, 51.22733], [0.73076, 51.22763], [0.72986, 51.22797], [0.72894, 51.2283], [0.72775, 51.22872], [0.72657, 51.22912], [0.7253, 51.22953], [0.72411, 51.22991], [0.72379, 51.23001], [0.72321, 51.23018], [0.72231, 51.23045], [0.72128, 51.23075], [0.72025, 51.23103], [0.71919, 51.23131], [0.71822, 51.23156], [0.71229, 51.23312], [0.7106, 51.23356], [0.70887, 51.23402], [0.70848, 51.23412], [0.70739, 51.2344], [0.70723, 51.23445]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4397591", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.48434, 56.53292], [-3.49213, 56.53361], [-3.49688, 56.53403], [-3.50047, 56.53435], [-3.50265, 56.53454], [-3.50419, 56.53462], [-3.50611, 56.53471], [-3.50806, 56.53473], [-3.50941, 56.53469], [-3.51063, 56.53459], [-3.51382, 56.53417], [-3.51657, 56.53374], [-3.51841, 56.53343], [-3.52036, 56.53303]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4397592", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.60874, 56.56078], [-3.61029, 56.56128], [-3.61173, 56.56174], [-3.61336, 56.56225]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4397593", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.67031, 56.65258], [-3.67089, 56.65323], [-3.67142, 56.65398], [-3.67193, 56.65481], [-3.67223, 56.65548], [-3.6725, 56.65614], [-3.67293, 56.65724], [-3.67317, 56.65791], [-3.67332, 56.65846], [-3.67339, 56.65896], [-3.6734, 56.65941], [-3.67336, 56.65994], [-3.67316, 56.66084], [-3.67277, 56.66242], [-3.67263, 56.66302], [-3.67253, 56.66348], [-3.67257, 56.66399], [-3.67265, 56.66454], [-3.6728, 56.66497], [-3.67307, 56.66556], [-3.67329, 56.66595], [-3.67356, 56.6663], [-3.6739, 56.6667], [-3.67422, 56.66703], [-3.67462, 56.66739], [-3.67567, 56.66818], [-3.67705, 56.6692], [-3.67819, 56.67], [-3.68203, 56.67284], [-3.68312, 56.67361], [-3.68491, 56.67494], [-3.68654, 56.67609], [-3.6882, 56.6771], [-3.69295, 56.67992], [-3.69895, 56.68355], [-3.70154, 56.68512], [-3.70412, 56.68667], [-3.70567, 56.6876], [-3.70664, 56.68819]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4400087", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.30835, 55.86944], [-4.30702, 55.86903], [-4.30633, 55.8688], [-4.30584, 55.86857], [-4.30569, 55.86849], [-4.30552, 55.8684], [-4.30401, 55.86758]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4400089", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.30401, 55.86758], [-4.3027, 55.86685]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4401001", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.85381, 51.06747], [0.85452, 51.06817], [0.85524, 51.06887], [0.85708, 51.07067], [0.8671, 51.0805], [0.86754, 51.08096], [0.86792, 51.08142], [0.86831, 51.08193], [0.86919, 51.08309], [0.8696, 51.08366], [0.86994, 51.0842], [0.87028, 51.08475], [0.87067, 51.08543], [0.87101, 51.08603], [0.87133, 51.08664], [0.8716, 51.0872], [0.87189, 51.08785], [0.87299, 51.09075], [0.87437, 51.09438], [0.8753, 51.09681], [0.87784, 51.10356], [0.87979, 51.10871], [0.88004, 51.10943], [0.88021, 51.11003], [0.88034, 51.11075], [0.88043, 51.11138], [0.88047, 51.11205], [0.88047, 51.11274], [0.88041, 51.11344], [0.8797, 51.12654], [0.87952, 51.12934]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4401002", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.87639, 51.14268], [0.87725, 51.14224]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4401003", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.87725, 51.14224], [0.87781, 51.14197], [0.87835, 51.14168], [0.87889, 51.1414]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4401005", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.9282, 51.11653], [0.92754, 51.11688], [0.9263, 51.11751], [0.92396, 51.11869], [0.92281, 51.11928], [0.92144, 51.11998], [0.91898, 51.12123]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4401007", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.89255, 51.13449], [0.89377, 51.13387], [0.89498, 51.13326], [0.89634, 51.13256], [0.89976, 51.13083], [0.9025, 51.12943], [0.90526, 51.12804], [0.91082, 51.12522], [0.91509, 51.12305], [0.91695, 51.12211], [0.91862, 51.12126]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4401977", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.11466, 52.64033], [-1.11446, 52.64052]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402101", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15466, 51.90515], [-1.15964, 51.90697], [-1.16048, 51.90727], [-1.16234, 51.90793]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402102", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.16234, 51.90793], [-1.16266, 51.90804]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402104", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.16945, 51.91052], [-1.17014, 51.91078]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402105", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.16266, 51.90804], [-1.1671, 51.90962], [-1.16945, 51.91052]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4402199", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.85898, 51.16435], [0.85885, 51.16459], [0.85865, 51.16494], [0.85827, 51.16546], [0.85806, 51.16574], [0.85778, 51.16607], [0.85747, 51.1664], [0.85669, 51.16706], [0.85621, 51.16743], [0.85568, 51.16778]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4402200", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.85909, 51.15621], [0.85915, 51.15663]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402213", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.10261, 51.88337], [-1.10472, 51.88493], [-1.1061, 51.88587], [-1.10909, 51.88762]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402229", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.09284, 51.87654], [-1.09419, 51.87748]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4402230", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.03056, 51.83822], [-1.03143, 51.83889], [-1.03275, 51.83984], [-1.03519, 51.84158], [-1.03849, 51.84371], [-1.04186, 51.84567], [-1.04504, 51.84735], [-1.05172, 51.8505], [-1.05584, 51.85241], [-1.06004, 51.85447], [-1.06265, 51.85587], [-1.06744, 51.85871], [-1.07298, 51.86253], [-1.08638, 51.87202]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4402886", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.83413, 51.1802], [0.83332, 51.18068], [0.83278, 51.181]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405244", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.5294, 50.75642], [-3.53027, 50.75585], [-3.53065, 50.7556], [-3.53107, 50.75535], [-3.53166, 50.75502], [-3.53228, 50.75469], [-3.53301, 50.75433], [-3.53367, 50.75403], [-3.53444, 50.75372], [-3.53497, 50.75349], [-3.53578, 50.75321], [-3.53645, 50.75299], [-3.53739, 50.75272], [-3.53804, 50.75254], [-3.53876, 50.75236], [-3.53906, 50.7523]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405245", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.51833, 50.7016], [-3.51714, 50.70071], [-3.51476, 50.6991], [-3.5103, 50.69644], [-3.50587, 50.69381], [-3.50448, 50.69299], [-3.50311, 50.69218], [-3.50174, 50.69136], [-3.50039, 50.69057], [-3.49926, 50.68992], [-3.4975, 50.68885], [-3.49661, 50.68833], [-3.49571, 50.68779], [-3.4946, 50.68709], [-3.49351, 50.68638], [-3.49234, 50.68554], [-3.49171, 50.68504], [-3.49111, 50.68454], [-3.49042, 50.68394], [-3.48975, 50.68335], [-3.48924, 50.68284], [-3.48812, 50.68161], [-3.48699, 50.68035], [-3.4859, 50.6791], [-3.48481, 50.67785], [-3.48401, 50.67693], [-3.48218, 50.67484], [-3.48036, 50.67275], [-3.47817, 50.67025], [-3.47599, 50.66774], [-3.47532, 50.66698], [-3.47462, 50.66625], [-3.47388, 50.66553], [-3.47311, 50.66484], [-3.47236, 50.66422], [-3.47157, 50.66362], [-3.47085, 50.66309], [-3.47015, 50.66262], [-3.46939, 50.66214], [-3.4683, 50.66146], [-3.46717, 50.66075], [-3.46438, 50.65898], [-3.46156, 50.65721], [-3.45944, 50.65587], [-3.45836, 50.65514], [-3.4574, 50.65439], [-3.45663, 50.65373], [-3.45593, 50.65302], [-3.45559, 50.65265], [-3.45508, 50.65207], [-3.45452, 50.65145]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405246", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.45115, 50.63912], [-3.45104, 50.63891], [-3.45076, 50.63831], [-3.45049, 50.63771], [-3.45024, 50.63709], [-3.45012, 50.63674], [-3.45001, 50.6364], [-3.44989, 50.63596], [-3.44979, 50.63553], [-3.44972, 50.6351], [-3.44966, 50.63467], [-3.44961, 50.63412], [-3.44957, 50.63356], [-3.44955, 50.63298], [-3.44951, 50.63257]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405293", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.83614, 51.05378], [0.83687, 51.05421], [0.83762, 51.05462], [0.83929, 51.05553], [0.84165, 51.05685], [0.84225, 51.0572], [0.84285, 51.05758], [0.8435, 51.05801], [0.84418, 51.05848], [0.84487, 51.05899], [0.84552, 51.05951], [0.84622, 51.06007], [0.84684, 51.06064], [0.8506, 51.06432]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405294", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.85087, 51.06458], [0.8536, 51.06726]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405302", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.76522, 50.97203], [0.76484, 50.97169], [0.76424, 50.97118], [0.76361, 50.97058], [0.75683, 50.96431], [0.7563, 50.96383], [0.75573, 50.96332], [0.75503, 50.96275], [0.75427, 50.96218], [0.75387, 50.96188], [0.75344, 50.96157], [0.75279, 50.96114], [0.75211, 50.9607], [0.75139, 50.96027], [0.75062, 50.95984], [0.74983, 50.95942], [0.74905, 50.95903], [0.74829, 50.95868], [0.74762, 50.95837], [0.74689, 50.95807], [0.74616, 50.95778], [0.7454, 50.95749], [0.74471, 50.95724], [0.74397, 50.95698], [0.74321, 50.95674], [0.74247, 50.95652], [0.73947, 50.95566]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4405313", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.81698, 51.03378], [0.825, 51.04291], [0.8307, 51.04936], [0.83118, 51.04987]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4406139", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.31114, 51.36167], [-2.31127, 51.36141]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4407502", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.62218, 51.16602], [0.61983, 51.16622], [0.61941, 51.16625], [0.61789, 51.16637], [0.5505, 51.17151], [0.54879, 51.17164], [0.54684, 51.17179], [0.49299, 51.17542], [0.49118, 51.17554], [0.49023, 51.17561]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4407503", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.84471, 51.14879], [0.84116, 51.14907]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4407504", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.84068, 51.14911], [0.82794, 51.15011], [0.80885, 51.15162]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4407505", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.79224, 51.15291], [0.7592, 51.15549], [0.74726, 51.15642], [0.74483, 51.1566], [0.66525, 51.16275]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408026", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32144, 55.89017], [-4.32024, 55.8919], [-4.32012, 55.89211]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408027", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32064, 55.89701], [-4.32086, 55.8973], [-4.3212, 55.89766], [-4.32154, 55.89798], [-4.32199, 55.89836], [-4.32228, 55.89857], [-4.3226, 55.89879], [-4.323, 55.89904], [-4.32351, 55.89933], [-4.32418, 55.89967], [-4.32475, 55.89993], [-4.32542, 55.90019], [-4.32834, 55.90122], [-4.32898, 55.90146], [-4.32947, 55.90165]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408028", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.33458, 55.9046], [-4.33511, 55.90482], [-4.33567, 55.90504], [-4.33609, 55.90518], [-4.33657, 55.90534], [-4.33688, 55.90543]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408030", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.32032, 55.92015], [-4.31965, 55.92041], [-4.31914, 55.92065], [-4.31869, 55.92091], [-4.31816, 55.92126], [-4.31769, 55.92163], [-4.31585, 55.92332], [-4.31533, 55.92379], [-4.31477, 55.92427]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408112", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.3374, 55.90557], [-4.3381, 55.90575]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408114", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.3643, 55.90492], [-4.36492, 55.90501], [-4.36559, 55.90509], [-4.36629, 55.90517], [-4.36762, 55.90531], [-4.36892, 55.90543], [-4.37025, 55.90553]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408116", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.38478, 55.90473], [-4.38546, 55.90462], [-4.38638, 55.90448], [-4.38704, 55.9044], [-4.38744, 55.90434], [-4.38842, 55.90425], [-4.38941, 55.90418], [-4.3908, 55.90415], [-4.39216, 55.90416], [-4.39296, 55.90417], [-4.39389, 55.90421], [-4.39484, 55.90432], [-4.39556, 55.90441], [-4.39664, 55.90463], [-4.39768, 55.90488], [-4.39908, 55.90534], [-4.40074, 55.906], [-4.40255, 55.90672], [-4.40291, 55.90685], [-4.40329, 55.90695], [-4.40386, 55.90713], [-4.40411, 55.90719], [-4.40431, 55.90723], [-4.40476, 55.90733]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408118", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.40476, 55.90733], [-4.40685, 55.90782], [-4.40788, 55.90806], [-4.40893, 55.90831], [-4.41031, 55.90862], [-4.41091, 55.90872], [-4.41151, 55.90881], [-4.41215, 55.90888], [-4.41279, 55.90894], [-4.41399, 55.90903], [-4.41518, 55.90914], [-4.41643, 55.90931], [-4.41687, 55.90938], [-4.41708, 55.90943], [-4.41731, 55.90948], [-4.41859, 55.90977], [-4.42031, 55.9102], [-4.42182, 55.91059], [-4.42375, 55.91107], [-4.42461, 55.91128], [-4.42544, 55.91149], [-4.42607, 55.91167], [-4.42735, 55.91204], [-4.42863, 55.91248]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408122", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42898, 55.91261], [-4.42801, 55.91235], [-4.42679, 55.91213], [-4.42634, 55.91205], [-4.42582, 55.91194], [-4.42509, 55.91183], [-4.42417, 55.9117], [-4.42367, 55.91162], [-4.42325, 55.91153], [-4.4227, 55.9114], [-4.42219, 55.91125], [-4.42169, 55.91106], [-4.42122, 55.91087], [-4.42095, 55.91074], [-4.42069, 55.9106], [-4.42021, 55.9103]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408125", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.38651, 55.89264], [-4.38601, 55.89248], [-4.38567, 55.89237], [-4.38484, 55.89213], [-4.38438, 55.89201], [-4.38392, 55.8919], [-4.38289, 55.89166], [-4.38211, 55.89147], [-4.37483, 55.88987], [-4.37217, 55.88929], [-4.37095, 55.88902], [-4.36984, 55.88877], [-4.36803, 55.88836], [-4.36774, 55.88829], [-4.36624, 55.88797], [-4.36321, 55.88731]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408126", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.36321, 55.88731], [-4.36195, 55.88703], [-4.35932, 55.88645], [-4.35186, 55.88477]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408127", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.35186, 55.88477], [-4.35052, 55.88449], [-4.34828, 55.88398], [-4.34185, 55.88255]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408201", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.55414, 55.94263], [-4.55401, 55.94239], [-4.55391, 55.94213]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408202", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.49286, 55.93108], [-4.49139, 55.93109], [-4.49044, 55.93107], [-4.48919, 55.93097], [-4.48811, 55.93086], [-4.48608, 55.93059], [-4.48502, 55.93051], [-4.48388, 55.93049], [-4.4816, 55.93047], [-4.48088, 55.93046], [-4.47997, 55.93039], [-4.47878, 55.93024], [-4.47745, 55.93005], [-4.47054, 55.92895], [-4.46974, 55.92883], [-4.4677, 55.92857], [-4.46671, 55.92843], [-4.46572, 55.92827], [-4.46413, 55.92803], [-4.46256, 55.9278], [-4.46159, 55.92762], [-4.46072, 55.92744], [-4.45992, 55.92724], [-4.45915, 55.92703], [-4.45757, 55.92655], [-4.45689, 55.9263], [-4.45625, 55.92604], [-4.45558, 55.92576], [-4.45509, 55.92552], [-4.45461, 55.92527], [-4.45418, 55.92502], [-4.45377, 55.92477], [-4.45355, 55.92463]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408244", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.5861, 55.977], [-4.58627, 55.97603], [-4.58641, 55.975], [-4.5865, 55.97442], [-4.58651, 55.97436], [-4.58652, 55.97405], [-4.58656, 55.97355], [-4.58656, 55.97312], [-4.58655, 55.97251], [-4.58655, 55.97223], [-4.58655, 55.97196], [-4.58654, 55.97169], [-4.58652, 55.97141], [-4.58645, 55.97089], [-4.58639, 55.97061], [-4.58633, 55.97033], [-4.58606, 55.96884], [-4.58582, 55.96736], [-4.58576, 55.96526], [-4.58569, 55.96318], [-4.58564, 55.96227], [-4.58561, 55.96113], [-4.58552, 55.95996], [-4.58535, 55.95902], [-4.58529, 55.9587], [-4.58506, 55.95773], [-4.58467, 55.95652], [-4.58443, 55.95592], [-4.58419, 55.95533], [-4.584, 55.95493], [-4.5838, 55.95452], [-4.58361, 55.95412], [-4.58338, 55.95372]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408245", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.58356, 56.00272], [-4.58334, 56.00249], [-4.58262, 56.00154], [-4.58242, 56.0012], [-4.58147, 55.99937], [-4.58119, 55.99875], [-4.58065, 55.99747], [-4.58017, 55.99618], [-4.5789, 55.9925], [-4.57805, 55.99006], [-4.57781, 55.98924]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408246", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.57712, 55.986], [-4.57725, 55.98557], [-4.57731, 55.98537], [-4.5774, 55.98518], [-4.57759, 55.98483], [-4.5777, 55.98464]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408335", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.73217, 56.00405], [-4.73112, 56.00387], [-4.73065, 56.0038], [-4.73027, 56.00377], [-4.7295, 56.00373], [-4.72874, 56.00369], [-4.72826, 56.00369], [-4.72792, 56.00366], [-4.72762, 56.00363], [-4.72723, 56.00359], [-4.72691, 56.00354]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4408336", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.6288, 55.95223], [-4.62698, 55.95193], [-4.62583, 55.95179], [-4.6247, 55.95169], [-4.62408, 55.95162], [-4.62346, 55.95154], [-4.62277, 55.95143], [-4.62215, 55.95131], [-4.62138, 55.95116], [-4.62061, 55.95098], [-4.61995, 55.95082], [-4.61933, 55.95064], [-4.61873, 55.95047], [-4.61844, 55.95037], [-4.61813, 55.95029], [-4.61619, 55.94973]]}}, {"type": "Feature", "properties": {"osm_id": "4410898", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.06296, 53.29173], [-3.06267, 53.29135]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4412318", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.18817, 51.57113], [-0.18868, 51.57125], [-0.18887, 51.57131], [-0.18913, 51.57141], [-0.18922, 51.57143], [-0.18963, 51.57156], [-0.18991, 51.57167], [-0.19008, 51.57174], [-0.19026, 51.57183], [-0.19033, 51.57187], [-0.1905, 51.57192], [-0.19069, 51.57197], [-0.19104, 51.57205], [-0.19167, 51.5722]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4412319", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.1903, 51.57194], [-0.19049, 51.57211], [-0.19062, 51.57222], [-0.19076, 51.57234], [-0.19088, 51.57241], [-0.19108, 51.57251], [-0.19125, 51.57257], [-0.19143, 51.57261]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4412321", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19019, 51.57185], [-0.1903, 51.57194], [-0.19043, 51.57207], [-0.19052, 51.57225], [-0.19056, 51.57229], [-0.19059, 51.57233], [-0.19068, 51.57243], [-0.19072, 51.57248], [-0.19092, 51.57262], [-0.19119, 51.57275], [-0.19135, 51.57279], [-0.19173, 51.57289]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4412322", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19062, 51.57239], [-0.19073, 51.57255], [-0.19076, 51.57259], [-0.19089, 51.57276], [-0.19101, 51.57289], [-0.19105, 51.57293], [-0.19114, 51.57303], [-0.19128, 51.57312], [-0.19137, 51.57318], [-0.19147, 51.57323], [-0.19159, 51.57327], [-0.19173, 51.57331], [-0.19212, 51.5734], [-0.19257, 51.57351]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4412323", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.19052, 51.57225], [-0.19055, 51.57235], [-0.19065, 51.57254], [-0.19068, 51.57262], [-0.19071, 51.57272], [-0.19071, 51.57292], [-0.19074, 51.57306], [-0.1908, 51.57317], [-0.19092, 51.57332], [-0.19107, 51.57343], [-0.19124, 51.57351], [-0.19144, 51.57357], [-0.19176, 51.57364]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4412449", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.84109, 56.88869], [-4.8415, 56.88868]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4412451", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.70474, 56.88404], [-4.70601, 56.884], [-4.70686, 56.88388], [-4.7077, 56.88364], [-4.70926, 56.88306], [-4.70975, 56.88293], [-4.7108, 56.88281], [-4.7118, 56.88284], [-4.71277, 56.88299], [-4.71467, 56.88331], [-4.71635, 56.88348], [-4.71751, 56.88373], [-4.71921, 56.88432], [-4.72065, 56.88486], [-4.7213, 56.88515], [-4.72176, 56.88543], [-4.72213, 56.88573], [-4.72247, 56.88618], [-4.7228, 56.88681], [-4.723, 56.88718], [-4.72331, 56.8875], [-4.72386, 56.88792], [-4.72457, 56.88823], [-4.72509, 56.8884], [-4.72594, 56.88858], [-4.72663, 56.88863], [-4.72738, 56.88861], [-4.72843, 56.88843], [-4.73055, 56.88796], [-4.73206, 56.88769], [-4.7333, 56.88759], [-4.73459, 56.88761], [-4.73665, 56.88779], [-4.73813, 56.88786], [-4.73979, 56.88788], [-4.74064, 56.88782], [-4.74344, 56.88745], [-4.74488, 56.88728], [-4.74598, 56.88724], [-4.74762, 56.88727], [-4.74884, 56.88737], [-4.75011, 56.88754], [-4.7515, 56.88781], [-4.75247, 56.88803], [-4.75365, 56.88836], [-4.75613, 56.88877], [-4.75747, 56.88893], [-4.75818, 56.88897], [-4.76046, 56.88899], [-4.76144, 56.889], [-4.76198, 56.88904], [-4.76264, 56.88912], [-4.7633, 56.88926], [-4.76449, 56.88946], [-4.76493, 56.8895], [-4.76539, 56.8895], [-4.76775, 56.88938], [-4.76872, 56.88942], [-4.76933, 56.88953], [-4.77183, 56.89], [-4.77415, 56.89042], [-4.77533, 56.89054], [-4.77656, 56.89052], [-4.77762, 56.89041], [-4.77866, 56.89019], [-4.77942, 56.88997]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4412543", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.18106, 56.98085], [-4.18079, 56.98119], [-4.18054, 56.98155], [-4.18024, 56.98207], [-4.18012, 56.98252]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4412544", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.23902, 56.9137], [-4.23866, 56.91487], [-4.23828, 56.91616], [-4.23806, 56.91698], [-4.23799, 56.9175], [-4.23798, 56.91815], [-4.23812, 56.91886], [-4.23821, 56.91924], [-4.23836, 56.91963], [-4.23885, 56.9206]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4412720", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.07747, 51.28598], [1.07714, 51.28572], [1.07663, 51.2853], [1.07645, 51.28513], [1.07627, 51.28493], [1.07583, 51.28456], [1.07538, 51.28419]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4413174", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.00811, 51.09989], [1.00767, 51.09995]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4413176", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.79865, 51.01283], [0.79811, 51.01222], [0.79431, 51.0079], [0.78299, 50.99501], [0.78241, 50.99433], [0.78191, 50.99371], [0.78143, 50.99306], [0.76846, 50.97558], [0.76802, 50.97502], [0.76758, 50.97449], [0.7671, 50.97394], [0.76656, 50.97335], [0.76599, 50.97277], [0.76542, 50.97223], [0.76536, 50.97217]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4413862", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03692, 51.45544], [-0.03662, 51.45523]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4413864", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.03898, 51.45773], [-0.03872, 51.45733], [-0.03858, 51.4571], [-0.03844, 51.45689], [-0.03827, 51.45663], [-0.03805, 51.45638], [-0.03781, 51.45612], [-0.03753, 51.45586], [-0.03726, 51.45564], [-0.03692, 51.45544]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4414158", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.32524, 51.51308], [-0.33037, 51.51261], [-0.33294, 51.51235], [-0.3342, 51.51222], [-0.33485, 51.51216], [-0.33516, 51.51213], [-0.3355, 51.5121], [-0.33591, 51.51205], [-0.33636, 51.51201]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4414493", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.2084, 51.41962], [-0.21021, 51.41852], [-0.211, 51.41802], [-0.21145, 51.41773], [-0.21227, 51.4172], [-0.21286, 51.4168], [-0.21296, 51.41674], [-0.213, 51.41671]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4414761", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14421, 52.05056], [1.1445, 52.05048], [1.1448, 52.0504], [1.14531, 52.05024], [1.14595, 52.05003], [1.14623, 52.04993], [1.14657, 52.04979]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4414762", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14993, 52.04757], [1.14908, 52.04825], [1.14773, 52.04914], [1.14665, 52.04971]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4415277", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.02775, 51.47165], [-0.02693, 51.47114]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4416477", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.94231, 56.88659], [-4.94764, 56.88534], [-4.94881, 56.88505], [-4.94982, 56.88479], [-4.95145, 56.88427], [-4.95373, 56.88348], [-4.95638, 56.88254], [-4.95941, 56.88149], [-4.96311, 56.88018], [-4.96462, 56.87973], [-4.96721, 56.87924], [-4.96805, 56.87905], [-4.96904, 56.87878], [-4.97095, 56.87813], [-4.97488, 56.87674], [-4.97914, 56.87519], [-4.98374, 56.87354], [-4.98463, 56.87325], [-4.98564, 56.873], [-4.98717, 56.8727], [-4.98935, 56.87231], [-4.99043, 56.87204], [-4.99139, 56.8717], [-4.99318, 56.87101], [-4.99636, 56.86972], [-4.99978, 56.86823], [-5.00307, 56.86686], [-5.00479, 56.86627], [-5.00619, 56.86566], [-5.00744, 56.86503], [-5.00883, 56.86453], [-5.01213, 56.86332], [-5.01319, 56.86287], [-5.01415, 56.86237], [-5.01517, 56.8618], [-5.01614, 56.86132], [-5.01749, 56.86078], [-5.01889, 56.86029], [-5.02159, 56.85931], [-5.02413, 56.85837], [-5.02503, 56.85791], [-5.02584, 56.85739], [-5.02655, 56.85686], [-5.02737, 56.85633], [-5.02845, 56.85582], [-5.02985, 56.85525], [-5.03358, 56.85372], [-5.03603, 56.85272]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4418359", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01328, 51.46468], [-0.0132, 51.46454], [-0.01313, 51.46439], [-0.01306, 51.46423], [-0.01302, 51.46407], [-0.01297, 51.46381]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4420430", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.06586, 51.51117], [-0.06545, 51.5112], [-0.06477, 51.51124], [-0.06429, 51.51126], [-0.06328, 51.51132], [-0.06271, 51.51134], [-0.06238, 51.51136], [-0.06217, 51.51137], [-0.06196, 51.51139], [-0.06178, 51.51141], [-0.06163, 51.51143], [-0.06146, 51.51145], [-0.06109, 51.51149], [-0.06077, 51.51151], [-0.06052, 51.51153], [-0.06009, 51.51155], [-0.05958, 51.51157], [-0.05941, 51.51158], [-0.05913, 51.51159], [-0.05895, 51.51159], [-0.05833, 51.51163], [-0.05777, 51.51165], [-0.05722, 51.51167], [-0.05675, 51.5117], [-0.05644, 51.51172], [-0.05596, 51.51174], [-0.05539, 51.51178], [-0.05499, 51.51181], [-0.05474, 51.51183], [-0.05448, 51.51184], [-0.05371, 51.51187], [-0.05334, 51.51189], [-0.05301, 51.51189], [-0.05236, 51.51191], [-0.05199, 51.51192], [-0.05161, 51.51194], [-0.05087, 51.51196], [-0.04943, 51.51203], [-0.04899, 51.51205], [-0.04846, 51.51207], [-0.04789, 51.51209], [-0.04733, 51.51211], [-0.04664, 51.51213], [-0.04606, 51.51214], [-0.04452, 51.51219], [-0.04384, 51.51223], [-0.04315, 51.51225], [-0.04304, 51.51225], [-0.0424, 51.51221], [-0.0422, 51.51221], [-0.04166, 51.51223], [-0.04132, 51.51224], [-0.04106, 51.51226], [-0.0409, 51.51228], [-0.04073, 51.51231], [-0.0405, 51.51234], [-0.04029, 51.51237], [-0.04019, 51.51238], [-0.03999, 51.51238], [-0.03882, 51.51233], [-0.03851, 51.51232], [-0.03735, 51.51223], [-0.03659, 51.51216], [-0.03629, 51.51212], [-0.03593, 51.51207], [-0.03527, 51.51198], [-0.03501, 51.51194], [-0.03477, 51.5119], [-0.03441, 51.51184], [-0.03398, 51.51176], [-0.03355, 51.51168], [-0.03258, 51.51148], [-0.03178, 51.51127], [-0.03137, 51.51116], [-0.03028, 51.51083], [-0.02968, 51.51064], [-0.02875, 51.51029], [-0.02857, 51.51021], [-0.02735, 51.5097], [-0.02649, 51.50936], [-0.02623, 51.50927], [-0.02594, 51.50916], [-0.02542, 51.50898], [-0.02526, 51.50892]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4420521", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01804, 51.50779], [-0.01741, 51.50774], [-0.01642, 51.50763], [-0.01602, 51.50758], [-0.0157, 51.50755], [-0.01549, 51.50752], [-0.01517, 51.5075], [-0.01446, 51.50747], [-0.01416, 51.50746], [-0.01321, 51.50746], [-0.01294, 51.50747], [-0.01264, 51.50747], [-0.01239, 51.50749], [-0.01223, 51.50753], [-0.01213, 51.50757], [-0.01204, 51.50761], [-0.01194, 51.50767], [-0.01188, 51.50774], [-0.01183, 51.50781], [-0.01179, 51.50787], [-0.01178, 51.50796], [-0.01178, 51.50805], [-0.01182, 51.50817], [-0.01189, 51.50827], [-0.012, 51.50844], [-0.01225, 51.50877], [-0.01244, 51.50903], [-0.01255, 51.50921], [-0.01263, 51.5094], [-0.01268, 51.50953], [-0.01273, 51.50963], [-0.01281, 51.50982], [-0.01295, 51.51023], [-0.01304, 51.51058], [-0.01306, 51.51066], [-0.01312, 51.51092], [-0.01326, 51.51148], [-0.01332, 51.51192], [-0.01337, 51.51236], [-0.01343, 51.51269], [-0.01352, 51.51301], [-0.01373, 51.51377], [-0.01383, 51.51415], [-0.01394, 51.51453], [-0.01403, 51.51483], [-0.01426, 51.51562], [-0.01439, 51.51606], [-0.01462, 51.51678], [-0.01482, 51.51749], [-0.01492, 51.51782], [-0.01503, 51.51815], [-0.01518, 51.51856], [-0.01536, 51.51898]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4420522", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01455, 51.49517], [-0.01455, 51.49519], [-0.01443, 51.49618], [-0.01443, 51.4963], [-0.01441, 51.49651], [-0.0144, 51.49662], [-0.01437, 51.49673], [-0.01435, 51.49682], [-0.01432, 51.49691], [-0.01424, 51.49711], [-0.0141, 51.49744], [-0.01404, 51.4976], [-0.014, 51.49774], [-0.01394, 51.49811], [-0.01385, 51.49872], [-0.01377, 51.49926], [-0.01377, 51.49934], [-0.01379, 51.49941], [-0.01383, 51.4995], [-0.0139, 51.49957], [-0.01398, 51.49964], [-0.01407, 51.4997], [-0.01419, 51.49975], [-0.01431, 51.49978], [-0.01445, 51.49981], [-0.01533, 51.49991], [-0.01578, 51.49996], [-0.01676, 51.50007], [-0.017, 51.5001], [-0.01742, 51.50015], [-0.01756, 51.50017], [-0.01767, 51.5002], [-0.01775, 51.50022], [-0.01786, 51.50028], [-0.01812, 51.50043], [-0.01819, 51.50046], [-0.01828, 51.50049], [-0.01838, 51.50052], [-0.0185, 51.50054], [-0.01931, 51.50063], [-0.01945, 51.50064], [-0.01955, 51.50067], [-0.02021, 51.50081], [-0.02093, 51.50098], [-0.02126, 51.50105], [-0.02145, 51.5011], [-0.02154, 51.50112], [-0.02165, 51.50117], [-0.02176, 51.50125], [-0.02182, 51.50131], [-0.02188, 51.50139], [-0.02193, 51.5015], [-0.02195, 51.50162], [-0.02195, 51.50172], [-0.02194, 51.50182], [-0.02185, 51.50213], [-0.02171, 51.50262]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4420523", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.01462, 51.49052], [-0.01477, 51.49068], [-0.01484, 51.4908], [-0.01489, 51.49092], [-0.01492, 51.49104], [-0.01495, 51.49175], [-0.01494, 51.49179], [-0.01495, 51.49198], [-0.01494, 51.49212], [-0.01492, 51.49226], [-0.01484, 51.49254], [-0.01481, 51.49269], [-0.0148, 51.49275], [-0.01479, 51.49285], [-0.01477, 51.49309], [-0.01474, 51.49334]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4422020", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.57811, 51.22525], [-0.57856, 51.22746]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4422021", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.57788, 51.2241], [-0.57811, 51.22525]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4422025", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.07796, 51.51145], [-0.07783, 51.51142], [-0.07751, 51.51136], [-0.07705, 51.51127]]}}, {"type": "Feature", "properties": {"osm_id": "4424706", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-5.02427, 51.73567], [-5.02534, 51.73555], [-5.02626, 51.73558], [-5.02731, 51.73562], [-5.03085, 51.73569], [-5.0349, 51.73575], [-5.03775, 51.73596], [-5.04314, 51.73652], [-5.04741, 51.7369], [-5.04959, 51.73715], [-5.05239, 51.73768], [-5.05489, 51.73822], [-5.05615, 51.73817], [-5.05721, 51.73792], [-5.0582, 51.73719], [-5.05843, 51.73675], [-5.05852, 51.73659], [-5.05913, 51.73505], [-5.06007, 51.7332], [-5.06014, 51.73306], [-5.06064, 51.73208], [-5.06154, 51.73006]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4425408", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.18598, 51.26929], [0.1865, 51.26889], [0.18739, 51.26801], [0.18815, 51.26709], [0.18869, 51.26626], [0.18892, 51.26585], [0.18921, 51.26522], [0.18976, 51.26382], [0.19028, 51.26252], [0.19074, 51.26135], [0.19113, 51.2604], [0.19157, 51.25932], [0.19187, 51.25854], [0.19217, 51.2578], [0.19248, 51.25702], [0.19283, 51.25614], [0.19325, 51.25512], [0.19361, 51.2542], [0.19399, 51.25329], [0.19434, 51.25244], [0.19467, 51.2516], [0.19579, 51.24873], [0.19653, 51.24682], [0.19852, 51.24207]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4429281", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.22631, 53.32416], [-2.22629, 53.32438], [-2.22626, 53.3247], [-2.22624, 53.32538]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4430718", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.11728, 53.93207], [-1.12003, 53.92911], [-1.12297, 53.92607], [-1.12558, 53.92343], [-1.12835, 53.92062], [-1.1316, 53.91729], [-1.13363, 53.91526], [-1.13585, 53.91331], [-1.13765, 53.91187], [-1.13962, 53.91049], [-1.14916, 53.90393], [-1.15332, 53.90101], [-1.15452, 53.90018], [-1.15602, 53.89912], [-1.16141, 53.89533], [-1.16615, 53.89187]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433454", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.15416, 52.62364], [-1.15595, 52.62457]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433471", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27756, 52.63295], [-1.27961, 52.63275], [-1.28129, 52.63274], [-1.28223, 52.6328], [-1.28358, 52.63291], [-1.28407, 52.63297], [-1.28516, 52.63316], [-1.28624, 52.63342], [-1.28759, 52.63382], [-1.28932, 52.6345], [-1.29192, 52.63554], [-1.29438, 52.63651], [-1.29572, 52.63708], [-1.29682, 52.6376], [-1.29767, 52.63804], [-1.29858, 52.63857], [-1.29958, 52.63922], [-1.30036, 52.6398], [-1.30143, 52.64067], [-1.3022, 52.64141], [-1.30297, 52.64221], [-1.30363, 52.64306], [-1.30455, 52.64439], [-1.30603, 52.64658], [-1.30708, 52.6482], [-1.30888, 52.65059], [-1.31055, 52.65253], [-1.31173, 52.65393], [-1.31514, 52.65797], [-1.31672, 52.6599], [-1.31887, 52.66244], [-1.32093, 52.66459], [-1.3221, 52.66571]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433472", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.36039, 52.71802], [-1.36159, 52.7186], [-1.36373, 52.71966], [-1.36501, 52.72037], [-1.36621, 52.72109], [-1.36739, 52.72183], [-1.36847, 52.72261], [-1.36971, 52.72354], [-1.37082, 52.72448], [-1.37163, 52.72527], [-1.37195, 52.7256], [-1.37227, 52.72592], [-1.37288, 52.72659], [-1.37347, 52.72727], [-1.37394, 52.72781]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433473", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.43292, 52.73659], [-1.43455, 52.73698], [-1.43613, 52.73741], [-1.43796, 52.7381], [-1.43997, 52.73913], [-1.44213, 52.74039], [-1.44388, 52.74115], [-1.44516, 52.74162], [-1.44621, 52.74192], [-1.44748, 52.74224], [-1.44872, 52.74247], [-1.45, 52.74265], [-1.45108, 52.74276], [-1.45211, 52.74283], [-1.45299, 52.74286], [-1.45432, 52.74286], [-1.45463, 52.74286], [-1.45498, 52.74286]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433474", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.5772, 52.75672], [-1.57798, 52.75686], [-1.57839, 52.75692], [-1.57848, 52.75693], [-1.57878, 52.75697], [-1.57959, 52.75705], [-1.58021, 52.75709], [-1.58084, 52.75711], [-1.58121, 52.75711], [-1.5817, 52.7571], [-1.58236, 52.75708]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433475", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.70589, 52.75092], [-1.70473, 52.75238], [-1.70251, 52.75518], [-1.70098, 52.75701], [-1.69896, 52.75927], [-1.69814, 52.76015], [-1.69757, 52.76075], [-1.69716, 52.76118], [-1.69651, 52.76184], [-1.69576, 52.76261], [-1.69415, 52.76417], [-1.69258, 52.76567], [-1.69105, 52.76705], [-1.68973, 52.76819], [-1.68778, 52.76975], [-1.68659, 52.77072], [-1.68392, 52.77286], [-1.68182, 52.77454], [-1.67795, 52.77762], [-1.67566, 52.77947], [-1.6728, 52.78174], [-1.67029, 52.78373], [-1.66801, 52.78554], [-1.66661, 52.78668], [-1.66614, 52.78706], [-1.66468, 52.7882]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4433476", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.64799, 52.80152], [-1.64746, 52.80195], [-1.64734, 52.80204], [-1.64691, 52.80237], [-1.64669, 52.80257], [-1.64645, 52.80276], [-1.64607, 52.80306]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4435835", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.58911, 53.73756], [-2.58995, 53.73745], [-2.59085, 53.7373], [-2.59151, 53.73718], [-2.59226, 53.73702], [-2.59318, 53.7368], [-2.59407, 53.73655], [-2.59476, 53.73633], [-2.59535, 53.73613], [-2.59597, 53.73589], [-2.59708, 53.73544], [-2.60101, 53.73378], [-2.60435, 53.73239]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4437171", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.89481, 51.90035], [0.89524, 51.90032]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4437172", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.89231, 51.90058], [0.89349, 51.90045], [0.89382, 51.90043], [0.8944, 51.90038], [0.89481, 51.90035]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4438950", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.43774, 56.38918], [-3.43785, 56.38938], [-3.43789, 56.38947], [-3.43818, 56.39004], [-3.43821, 56.39011], [-3.43826, 56.39027], [-3.4383, 56.39042], [-3.43832, 56.39052], [-3.43833, 56.39073], [-3.43829, 56.39092], [-3.43824, 56.39106], [-3.43813, 56.39127], [-3.438, 56.39145], [-3.43783, 56.39162], [-3.43774, 56.39168], [-3.4376, 56.39179], [-3.43738, 56.39193], [-3.4372, 56.39203]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4438951", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.42624, 56.39243], [-3.42557, 56.39239], [-3.42516, 56.39234], [-3.4248, 56.39228], [-3.42446, 56.3922], [-3.42408, 56.39209], [-3.42378, 56.39199], [-3.42341, 56.39187], [-3.42305, 56.39171], [-3.42255, 56.39146], [-3.42221, 56.39125], [-3.42198, 56.39107], [-3.42164, 56.39078], [-3.42136, 56.39045], [-3.42129, 56.39033], [-3.42122, 56.3902], [-3.42114, 56.39003]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4439682", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.31208, 55.93711], [-4.31292, 55.93857]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4439683", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.31192, 55.93683], [-4.31208, 55.93711]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4444086", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.88633, 53.28719], [-3.88685, 53.287], [-3.89303, 53.28438], [-3.89392, 53.28399], [-3.89817, 53.28201]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4444087", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.1827, 53.21388], [-4.18799, 53.21759]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4444107", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.55965, 53.27808], [-4.5601, 53.27858], [-4.56074, 53.27925], [-4.5615, 53.27994], [-4.56235, 53.28071], [-4.56307, 53.28126], [-4.56348, 53.28157], [-4.56467, 53.28241], [-4.5659, 53.28323], [-4.56693, 53.28386], [-4.56843, 53.28468], [-4.56948, 53.28523], [-4.57072, 53.2858], [-4.57181, 53.28628], [-4.57336, 53.2869], [-4.57458, 53.28733], [-4.57547, 53.28763]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4444471", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.88837, 53.35797], [-2.88786, 53.35774], [-2.8876, 53.35761], [-2.88738, 53.35752], [-2.88702, 53.3574], [-2.88658, 53.35728], [-2.88608, 53.35718], [-2.88556, 53.3571]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4445482", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.3817, 51.30102], [0.38303, 51.30109], [0.38345, 51.30111], [0.38392, 51.30113], [0.38499, 51.30113], [0.38599, 51.30112], [0.38638, 51.30111], [0.38675, 51.3011], [0.38746, 51.30106], [0.38787, 51.30104], [0.38827, 51.30101], [0.38906, 51.30095], [0.38995, 51.30085], [0.3908, 51.30074], [0.3917, 51.30062], [0.39256, 51.30047], [0.39384, 51.30023], [0.39451, 51.30008], [0.39519, 51.29992]]}}, {"type": "Feature", "properties": {"osm_id": "4451911", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.9992, 51.74188], [-4.99935, 51.74183], [-5.00091, 51.74117], [-5.00118, 51.74103], [-5.00227, 51.74048], [-5.00331, 51.73976], [-5.0042, 51.73917], [-5.00567, 51.73815], [-5.00695, 51.73709], [-5.00762, 51.73636], [-5.00834, 51.73542], [-5.00878, 51.73457], [-5.00914, 51.73355], [-5.00935, 51.73259], [-5.00938, 51.73175], [-5.00928, 51.73089], [-5.00913, 51.73023], [-5.00883, 51.72951], [-5.00827, 51.72841], [-5.00752, 51.7274], [-5.0063, 51.72621], [-5.00486, 51.72523], [-5.00346, 51.72448], [-5.00044, 51.72315], [-4.99861, 51.7221], [-4.99742, 51.72124], [-4.99619, 51.72017], [-4.99496, 51.71883], [-4.99412, 51.71764], [-4.99333, 51.71612], [-4.9927, 51.71492], [-4.99162, 51.71282], [-4.99143, 51.71244], [-4.99086, 51.71149], [-4.99081, 51.7114], [-4.99071, 51.71122], [-4.99058, 51.71076], [-4.99049, 51.71045], [-4.99045, 51.71022], [-4.99047, 51.70997], [-4.99055, 51.70972], [-4.99072, 51.70949], [-4.99078, 51.70941], [-4.99146, 51.70866], [-4.9934, 51.70665], [-4.99357, 51.7065]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4453647", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.18977, 51.49851], [-0.19057, 51.49901], [-0.19075, 51.49913]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4453689", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.14894, 51.52328], [-0.15051, 51.5231], [-0.15118, 51.52308], [-0.15237, 51.52301], [-0.15333, 51.52283], [-0.15549, 51.52246]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4471205", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.41586, 52.99601], [-0.41676, 52.9961], [-0.41715, 52.99614], [-0.41763, 52.99619], [-0.42069, 52.99651], [-0.42107, 52.99654], [-0.4219, 52.9966], [-0.42248, 52.99664], [-0.42288, 52.99665], [-0.42325, 52.99666], [-0.42358, 52.99667], [-0.42389, 52.99667], [-0.42425, 52.99666], [-0.42471, 52.99665], [-0.4249, 52.99665], [-0.42532, 52.99663], [-0.42561, 52.99661], [-0.42597, 52.99659], [-0.42632, 52.99656], [-0.42666, 52.99653], [-0.4269, 52.99651], [-0.42722, 52.99647], [-0.42758, 52.99643], [-0.42793, 52.99638], [-0.42821, 52.99634], [-0.42844, 52.9963], [-0.42907, 52.99619], [-0.42938, 52.99613], [-0.42967, 52.99607], [-0.42994, 52.99601], [-0.43023, 52.99595], [-0.43052, 52.99588], [-0.43078, 52.99581], [-0.43104, 52.99574], [-0.43181, 52.99551], [-0.43242, 52.99532], [-0.4327, 52.99523], [-0.43301, 52.99511], [-0.43338, 52.99498], [-0.43419, 52.99465], [-0.43508, 52.99426], [-0.44714, 52.98906], [-0.45525, 52.98555], [-0.45636, 52.98507], [-0.45652, 52.985], [-0.45654, 52.98499], [-0.45958, 52.98368], [-0.46088, 52.98312], [-0.46218, 52.98256], [-0.46327, 52.98208], [-0.46426, 52.98167], [-0.46546, 52.98121], [-0.46657, 52.98081], [-0.46749, 52.98051], [-0.46846, 52.9802], [-0.46937, 52.97996], [-0.47031, 52.97971], [-0.47518, 52.97846], [-0.48657, 52.97555], [-0.48666, 52.97552], [-0.48817, 52.97515], [-0.48866, 52.97504], [-0.4892, 52.97494], [-0.48962, 52.97486], [-0.49012, 52.97479], [-0.49087, 52.9747], [-0.4918, 52.97464], [-0.49231, 52.97462], [-0.49311, 52.97462], [-0.49371, 52.97465], [-0.49437, 52.97469], [-0.49518, 52.97477], [-0.4959, 52.97488], [-0.49657, 52.97501], [-0.49733, 52.97518], [-0.49787, 52.97533], [-0.49845, 52.97551], [-0.49888, 52.97566], [-0.49946, 52.97588], [-0.50021, 52.97619], [-0.50085, 52.97643], [-0.50149, 52.97668], [-0.50211, 52.97691], [-0.50411, 52.97771], [-0.50503, 52.97813], [-0.50566, 52.97844], [-0.50593, 52.9786], [-0.50627, 52.9788], [-0.50659, 52.97899], [-0.50699, 52.97925], [-0.50745, 52.97958], [-0.5078, 52.97983], [-0.50802, 52.98001], [-0.50825, 52.9802], [-0.50848, 52.9804], [-0.5087, 52.98059], [-0.50889, 52.98078], [-0.50906, 52.98096], [-0.50929, 52.9812], [-0.50948, 52.98141], [-0.5097, 52.98166], [-0.51029, 52.98233], [-0.5109, 52.98298], [-0.51111, 52.98319], [-0.51139, 52.98344], [-0.51167, 52.98367], [-0.51229, 52.98413], [-0.51258, 52.98433], [-0.51293, 52.98457], [-0.51331, 52.9848], [-0.51381, 52.98508], [-0.51455, 52.98547], [-0.51495, 52.98567], [-0.51543, 52.9859], [-0.51594, 52.9861], [-0.51629, 52.98625], [-0.51668, 52.98639], [-0.51721, 52.98658], [-0.51777, 52.98675], [-0.51876, 52.98704], [-0.51929, 52.98717], [-0.52026, 52.98741], [-0.52117, 52.98758], [-0.52213, 52.98772], [-0.52298, 52.98782], [-0.52401, 52.98791], [-0.52488, 52.98796], [-0.52564, 52.98797], [-0.52635, 52.98797], [-0.52705, 52.98796], [-0.53269, 52.98778]]}}, {"type": "Feature", "properties": {"osm_id": "4471404", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.08279, 52.96133], [-1.08329, 52.96126], [-1.08423, 52.96114], [-1.08482, 52.96105], [-1.08514, 52.96099], [-1.0857, 52.96087], [-1.08608, 52.96076], [-1.0864, 52.96066], [-1.08666, 52.96059], [-1.08684, 52.96052], [-1.08698, 52.96047], [-1.08719, 52.96039], [-1.08741, 52.96031], [-1.08788, 52.96011]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4473045", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.5764, 55.92286], [-4.5748, 55.92276], [-4.57267, 55.92268], [-4.57156, 55.92266], [-4.57042, 55.92266], [-4.56926, 55.92269], [-4.56813, 55.92273], [-4.56738, 55.92277], [-4.56665, 55.92283]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4474123", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.24038, 55.85963], [-4.24017, 55.85948], [-4.23997, 55.85934], [-4.23975, 55.85921], [-4.23951, 55.85907], [-4.23941, 55.85901], [-4.2393, 55.85896], [-4.23907, 55.85884], [-4.23886, 55.85874], [-4.23867, 55.85865], [-4.23849, 55.85858], [-4.23832, 55.85851], [-4.23813, 55.85845], [-4.23792, 55.85837], [-4.23772, 55.8583], [-4.23752, 55.85824], [-4.23733, 55.85819], [-4.2371, 55.85813], [-4.23677, 55.85805]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4475017", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.25094, 51.55093], [-0.25076, 51.5511], [-0.25059, 51.55128], [-0.25043, 51.55151], [-0.25038, 51.55161], [-0.25032, 51.55173], [-0.25028, 51.55183], [-0.25025, 51.55194], [-0.25023, 51.55206], [-0.25022, 51.55218], [-0.25023, 51.55229], [-0.25023, 51.55241], [-0.25025, 51.55251], [-0.25028, 51.55263], [-0.25032, 51.55274], [-0.25042, 51.55296], [-0.25049, 51.55306], [-0.25056, 51.55316], [-0.25067, 51.5533], [-0.2508, 51.55343], [-0.25097, 51.55357], [-0.25114, 51.55373], [-0.25135, 51.55387], [-0.25158, 51.55399], [-0.25184, 51.55412], [-0.25212, 51.55425], [-0.25241, 51.55435], [-0.25297, 51.5545], [-0.25349, 51.55465], [-0.2537, 51.55472], [-0.25401, 51.55482], [-0.25433, 51.55491]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4477206", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.66542, 53.57698], [-1.66481, 53.57634], [-1.66397, 53.57509], [-1.66361, 53.57406], [-1.66335, 53.57322], [-1.6632, 53.57287], [-1.66307, 53.57252], [-1.66291, 53.57222], [-1.66283, 53.57209]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4477207", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.62417, 53.52946], [-1.62415, 53.5293], [-1.62412, 53.52908], [-1.62404, 53.52867], [-1.62394, 53.52828], [-1.62382, 53.52791], [-1.62365, 53.52749], [-1.62348, 53.52716], [-1.62328, 53.52683]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4477208", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.62105, 53.52453], [-1.6195, 53.52354], [-1.61873, 53.52304], [-1.61783, 53.52254], [-1.61725, 53.52225], [-1.6166, 53.52197], [-1.61585, 53.52169], [-1.61505, 53.52143], [-1.61424, 53.5212], [-1.61285, 53.52085], [-1.61281, 53.52084]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4477209", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.60431, 53.5202], [-1.60398, 53.52027], [-1.6038, 53.52029], [-1.60316, 53.52044], [-1.60262, 53.52058], [-1.60208, 53.52076]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478240", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.05214, 51.2755], [1.05313, 51.27545], [1.05552, 51.27537], [1.05621, 51.2754], [1.05687, 51.27543], [1.05742, 51.27548], [1.05793, 51.27553], [1.05844, 51.27559]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478286", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.82764, 51.32812], [0.8281, 51.32795], [0.82855, 51.32778], [0.829, 51.3276], [0.82944, 51.32742], [0.83029, 51.32704], [0.83095, 51.32672], [0.83163, 51.32638], [0.83303, 51.3256]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478287", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.83873, 51.32281], [0.83903, 51.3227], [0.83952, 51.32253], [0.8405, 51.32222], [0.84114, 51.32204], [0.84181, 51.32187], [0.84228, 51.32176], [0.84275, 51.32165], [0.84326, 51.32155], [0.84403, 51.3214], [0.8454, 51.32119], [0.8468, 51.32099], [0.84846, 51.32075], [0.84917, 51.32064], [0.84985, 51.32052], [0.85088, 51.32032], [0.85187, 51.32009], [0.85247, 51.31994], [0.85304, 51.31979], [0.85362, 51.31963], [0.85416, 51.31947], [0.85469, 51.3193], [0.8552, 51.31912], [0.85623, 51.31874]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478289", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.96729, 51.26733], [0.96902, 51.26726], [0.97186, 51.26716], [0.97248, 51.26713], [0.97602, 51.26702], [0.97726, 51.26697], [0.97848, 51.26692], [0.97911, 51.26689], [0.9797, 51.26685], [0.9809, 51.26677], [0.98164, 51.26671], [0.98235, 51.26665], [0.98364, 51.26653], [0.98405, 51.26648], [0.98447, 51.26644], [0.9849, 51.26639], [0.98531, 51.26633], [0.98615, 51.26623], [0.98697, 51.26612], [0.98773, 51.26601], [0.98846, 51.26589], [0.98922, 51.26577], [0.98994, 51.26564], [0.99094, 51.26546], [0.99144, 51.26536], [0.99192, 51.26525], [0.99296, 51.26503], [0.99388, 51.26482], [0.99766, 51.26394]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478290", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.99788, 51.26389], [0.99964, 51.26347], [1.00142, 51.26306], [1.00422, 51.26241], [1.00494, 51.26224], [1.00569, 51.26206], [1.00645, 51.26191], [1.00721, 51.26177], [1.00781, 51.26168], [1.00842, 51.2616], [1.00905, 51.26152], [1.0097, 51.26146], [1.01058, 51.26141], [1.01119, 51.26139], [1.01184, 51.26138], [1.01241, 51.26138], [1.01297, 51.26139], [1.01397, 51.26144], [1.01477, 51.26149], [1.01556, 51.26158], [1.01651, 51.2617]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478291", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.03403, 51.27078], [1.0356, 51.27191], [1.036, 51.27218], [1.03641, 51.27244], [1.03683, 51.27269], [1.03726, 51.27293], [1.03777, 51.27321], [1.03831, 51.27348], [1.03887, 51.27373], [1.03943, 51.27396]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478369", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.23999, 51.16816], [1.23952, 51.16908], [1.23745, 51.17312], [1.23633, 51.1753], [1.23526, 51.17742], [1.23377, 51.1803], [1.2324, 51.18288], [1.23048, 51.18661]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478370", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.21169, 51.22092], [1.21157, 51.22128], [1.2113, 51.22207], [1.21118, 51.22245], [1.21076, 51.2237], [1.2106, 51.22431]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478371", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.29245, 51.13701], [1.29223, 51.13719], [1.29161, 51.13765]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478373", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.13352, 51.26237], [1.13287, 51.26255], [1.13226, 51.26274], [1.13187, 51.26287], [1.13136, 51.26304], [1.13092, 51.26319], [1.13035, 51.26341], [1.12969, 51.26367], [1.12926, 51.26386], [1.12887, 51.26403], [1.12853, 51.26419], [1.12806, 51.26442], [1.12751, 51.26469], [1.12723, 51.26484], [1.12659, 51.2652], [1.12607, 51.26551], [1.12545, 51.26587], [1.12502, 51.2661], [1.12452, 51.26633], [1.12429, 51.26644], [1.12378, 51.26668], [1.12323, 51.2669], [1.12284, 51.26707], [1.1224, 51.26724], [1.12195, 51.2674], [1.12125, 51.26764], [1.1206, 51.26785], [1.12007, 51.26801], [1.11948, 51.26816], [1.11909, 51.26826], [1.11866, 51.26838], [1.11801, 51.26854], [1.1176, 51.26863], [1.11696, 51.26879], [1.11623, 51.26897], [1.11531, 51.26919], [1.11454, 51.26937], [1.11383, 51.26955], [1.11322, 51.2697], [1.11263, 51.26984], [1.11218, 51.26996], [1.11125, 51.27018], [1.1105, 51.27037], [1.10981, 51.27053], [1.10895, 51.27073], [1.10814, 51.27093], [1.10782, 51.27101], [1.10696, 51.27121], [1.10636, 51.27136], [1.10578, 51.2715], [1.10511, 51.27166], [1.10471, 51.27176], [1.10314, 51.27214], [1.10237, 51.27233], [1.10146, 51.27255]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478528", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.68652, 51.35545], [0.68541, 51.35547], [0.68471, 51.35545], [0.68351, 51.35537], [0.68283, 51.35527], [0.68172, 51.3551], [0.6804, 51.35483], [0.67833, 51.35423], [0.67712, 51.35389], [0.67631, 51.35368], [0.6753, 51.35348], [0.67456, 51.35338], [0.67349, 51.35326], [0.67289, 51.35322], [0.67194, 51.3532], [0.67091, 51.35322], [0.6699, 51.35328]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478805", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.31717, 51.32915], [1.31503, 51.32926], [1.31429, 51.32931], [1.30979, 51.32959]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478806", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.31371, 51.37819], [1.31482, 51.37826], [1.31592, 51.37836], [1.31677, 51.37846], [1.3176, 51.37857], [1.32801, 51.37994], [1.33461, 51.38082], [1.3376, 51.38123], [1.3383, 51.38132], [1.3391, 51.38139], [1.33996, 51.38144], [1.34127, 51.38148], [1.34512, 51.38161], [1.35399, 51.38193], [1.3585, 51.38209], [1.35921, 51.38216], [1.36125, 51.38243], [1.36249, 51.38265], [1.36369, 51.38289], [1.36445, 51.38308], [1.36518, 51.38328], [1.36672, 51.38376], [1.36814, 51.38427], [1.36845, 51.38439]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4478808", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.11909, 51.36448], [1.11956, 51.36448], [1.12008, 51.36446], [1.12091, 51.36444], [1.12278, 51.36432], [1.124, 51.36423], [1.12509, 51.36413], [1.12687, 51.36398], [1.12874, 51.36382], [1.13162, 51.36359]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4478916", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.59095, 52.02905], [-0.58903, 52.03053], [-0.58816, 52.03111], [-0.58758, 52.03146], [-0.58709, 52.03175], [-0.58607, 52.03228], [-0.58503, 52.03277], [-0.58208, 52.03399], [-0.57958, 52.03501], [-0.57799, 52.03567], [-0.57718, 52.03599], [-0.57641, 52.03628], [-0.57576, 52.0365], [-0.57509, 52.03672], [-0.57391, 52.03704], [-0.57374, 52.03708], [-0.57358, 52.03712], [-0.57264, 52.03735], [-0.57162, 52.03759], [-0.56997, 52.03799], [-0.56829, 52.03839], [-0.56646, 52.03884], [-0.56524, 52.0392], [-0.56402, 52.03961], [-0.56285, 52.04006], [-0.56171, 52.04051], [-0.56098, 52.0408], [-0.55912, 52.04156], [-0.55881, 52.04169], [-0.55657, 52.04259], [-0.55543, 52.04305], [-0.55469, 52.04332], [-0.55404, 52.04355], [-0.55323, 52.0438], [-0.5507, 52.04453], [-0.54742, 52.04561], [-0.54515, 52.04648], [-0.5441, 52.04692], [-0.54357, 52.04715], [-0.54306, 52.04739], [-0.54066, 52.04857], [-0.53959, 52.04915], [-0.53856, 52.04975], [-0.53665, 52.05096], [-0.53576, 52.05158], [-0.53489, 52.05222], [-0.53299, 52.05373], [-0.53241, 52.05425], [-0.53167, 52.05494], [-0.53022, 52.05644], [-0.52955, 52.05721], [-0.52901, 52.05786], [-0.52807, 52.05906], [-0.52639, 52.0614], [-0.52471, 52.06369], [-0.5223, 52.06692], [-0.52084, 52.06899], [-0.52049, 52.06949], [-0.51684, 52.07447], [-0.51653, 52.07491], [-0.51482, 52.07724], [-0.51288, 52.07989], [-0.51262, 52.08026], [-0.51212, 52.08094], [-0.51184, 52.08133], [-0.508, 52.08657], [-0.50418, 52.09179], [-0.50373, 52.09241], [-0.50199, 52.0948]]}}, {"type": "Feature", "properties": {"osm_id": "4478999", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.59714, 53.90677], [-1.59639, 53.9069], [-1.59564, 53.90702], [-1.59472, 53.90715], [-1.59382, 53.9073], [-1.59352, 53.90736]]}}, {"type": "Feature", "properties": {"osm_id": "4479000", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.6024, 53.90467], [-1.60173, 53.90511], [-1.60137, 53.90531], [-1.60077, 53.90562], [-1.60035, 53.90581], [-1.5999, 53.90598], [-1.5989, 53.90633], [-1.59813, 53.90655], [-1.59714, 53.90677]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4479020", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.67624, 51.24421], [-0.67645, 51.2442]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4479916", "railway": "rail", "voltage": "660"}, "geometry": {"type": "LineString", "coordinates": [[-0.38915, 51.64748], [-0.39033, 51.64749], [-0.39108, 51.6475], [-0.39171, 51.64751], [-0.3922, 51.64753], [-0.39269, 51.64758], [-0.39304, 51.64763], [-0.39333, 51.6477], [-0.39362, 51.64779], [-0.39389, 51.64789], [-0.39412, 51.64799]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4480806", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.15085, 51.55514], [-0.15122, 51.55531], [-0.15152, 51.55542], [-0.15168, 51.55548], [-0.15186, 51.55555], [-0.15218, 51.55564], [-0.15271, 51.5558], [-0.15304, 51.55589], [-0.15346, 51.55599], [-0.15374, 51.55604], [-0.15413, 51.55609], [-0.15451, 51.55615], [-0.15484, 51.55618], [-0.1551, 51.5562], [-0.1555, 51.55622]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4480807", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.12325, 51.54139], [-0.12365, 51.5413], [-0.12422, 51.54118], [-0.12458, 51.54112], [-0.12494, 51.54107]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4481486", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.99195, 51.34446], [0.99285, 51.34484], [0.9936, 51.34512], [0.99423, 51.34535], [0.9949, 51.34555], [0.99561, 51.34578], [0.99636, 51.34598], [0.99783, 51.34635], [0.99945, 51.34673], [1.00214, 51.34737], [1.0039, 51.34781], [1.00503, 51.34815], [1.00618, 51.34856], [1.00739, 51.34908], [1.00858, 51.34963], [1.01011, 51.35033], [1.01086, 51.35065], [1.01147, 51.35086], [1.01258, 51.3512], [1.0138, 51.35151], [1.01993, 51.35295], [1.02169, 51.35337], [1.02332, 51.35375], [1.02402, 51.35393], [1.02456, 51.35408], [1.02511, 51.35427], [1.02561, 51.35446]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4481650", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.32568, 51.32863], [1.32524, 51.32863], [1.32502, 51.32862], [1.32485, 51.32861], [1.32462, 51.32858], [1.32437, 51.32855], [1.32415, 51.3285], [1.32392, 51.32845], [1.3236, 51.32835], [1.32337, 51.32826], [1.32319, 51.32818], [1.32306, 51.32812], [1.32297, 51.32806], [1.32285, 51.32799], [1.32275, 51.32793], [1.32258, 51.32781], [1.32248, 51.32773], [1.32239, 51.32765], [1.32228, 51.32754], [1.32217, 51.32742], [1.3221, 51.32733], [1.32204, 51.32724], [1.32198, 51.32715], [1.32193, 51.32705], [1.32188, 51.32694], [1.32184, 51.32682], [1.32181, 51.32672], [1.3218, 51.32664], [1.32178, 51.3264], [1.32178, 51.32629], [1.32179, 51.32618], [1.32181, 51.32609], [1.32185, 51.32593], [1.3219, 51.32577], [1.32197, 51.32562], [1.32213, 51.32536], [1.3228, 51.32455], [1.32456, 51.32259], [1.32458, 51.32256], [1.32459, 51.32255], [1.32794, 51.31878], [1.32866, 51.31797], [1.32939, 51.31716], [1.33085, 51.31553], [1.33183, 51.3144], [1.3328, 51.31325]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4481651", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.32207, 51.32534], [1.32119, 51.32633], [1.32027, 51.32739], [1.3197, 51.32805], [1.3193, 51.32849], [1.31905, 51.32869], [1.31881, 51.32881], [1.31857, 51.32892], [1.31834, 51.329], [1.3181, 51.32905], [1.31758, 51.32912]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484080", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.06988, 51.27537], [1.07088, 51.27521], [1.07239, 51.27496], [1.07272, 51.27489], [1.07304, 51.27483], [1.07357, 51.27471], [1.07367, 51.27468]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484081", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.06168, 51.27614], [1.0623, 51.27622], [1.06278, 51.27624], [1.06326, 51.27624], [1.0638, 51.27623]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484086", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.0663, 51.27593], [1.06672, 51.27586]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484087", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.0638, 51.27623], [1.06424, 51.27621], [1.06465, 51.27617], [1.06513, 51.27611], [1.06558, 51.27604], [1.0663, 51.27593]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484088", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.07581, 51.27417], [1.07483, 51.27439], [1.07399, 51.27457]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484089", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.07367, 51.27468], [1.07401, 51.27461]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484152", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.03992, 51.27414], [1.04041, 51.27432], [1.04065, 51.27441], [1.0409, 51.27449], [1.04136, 51.27463], [1.04177, 51.27474], [1.04218, 51.27485], [1.04256, 51.27494], [1.04338, 51.27512], [1.04386, 51.27521], [1.04433, 51.27529], [1.0448, 51.27537], [1.04525, 51.27543], [1.04578, 51.27549], [1.04631, 51.27555], [1.04726, 51.27561], [1.04764, 51.27563], [1.04825, 51.27564], [1.04901, 51.27564], [1.04978, 51.27563]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484153", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.05124, 51.27555], [1.05214, 51.2755]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4484154", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.03943, 51.27396], [1.03992, 51.27414]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4484155", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42379, 55.8401], [-4.42181, 55.8403], [-4.42136, 55.84034], [-4.42101, 55.84036], [-4.4205, 55.84037], [-4.4203, 55.84036], [-4.42, 55.84035], [-4.41969, 55.84032], [-4.4193, 55.84028], [-4.41902, 55.84022], [-4.41865, 55.84015], [-4.41838, 55.84008], [-4.4181, 55.84], [-4.41782, 55.83989], [-4.4175, 55.83976], [-4.41724, 55.83964], [-4.41681, 55.83942], [-4.41592, 55.83892], [-4.41557, 55.83877], [-4.41526, 55.83863], [-4.41498, 55.83853], [-4.4147, 55.83844], [-4.41399, 55.83826], [-4.41345, 55.83815], [-4.41315, 55.8381], [-4.41283, 55.83807], [-4.41244, 55.83805], [-4.41199, 55.83804], [-4.41157, 55.83804], [-4.41116, 55.83806], [-4.41075, 55.8381], [-4.41029, 55.83816], [-4.40998, 55.83822], [-4.40965, 55.83828], [-4.40929, 55.83837], [-4.40897, 55.83846], [-4.40863, 55.83858], [-4.40836, 55.83869], [-4.40809, 55.8388], [-4.40791, 55.83889], [-4.40769, 55.839], [-4.40755, 55.83909], [-4.4074, 55.83919], [-4.40726, 55.83928], [-4.4071, 55.8394], [-4.4069, 55.83954], [-4.40677, 55.83966], [-4.40661, 55.8398]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4486002", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.21222, 54.70152], [-1.21212, 54.70013], [-1.21207, 54.6994], [-1.21203, 54.69868]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4486725", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.05742, 51.642], [0.05721, 51.64196]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4486726", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.00661, 51.55577], [-0.00691, 51.55548], [-0.0071, 51.5553], [-0.00727, 51.55511], [-0.00748, 51.55483], [-0.00762, 51.55461], [-0.00771, 51.55444], [-0.00778, 51.55424], [-0.00784, 51.55403], [-0.00789, 51.55378], [-0.00791, 51.55353], [-0.0079, 51.55333], [-0.00788, 51.55315], [-0.00784, 51.55298], [-0.00779, 51.5528], [-0.0077, 51.55259], [-0.00759, 51.55237], [-0.00749, 51.55221], [-0.00737, 51.55205]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4486842", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.20019, 54.65912], [-1.20028, 54.65877]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4486843", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.20028, 54.65877], [-1.20043, 54.65828], [-1.20051, 54.658], [-1.20069, 54.65747], [-1.2008, 54.65718], [-1.20112, 54.65635], [-1.2017, 54.65505], [-1.202, 54.6544], [-1.20233, 54.65376], [-1.20285, 54.65294], [-1.20338, 54.65212], [-1.20368, 54.65171], [-1.20398, 54.65132], [-1.2044, 54.65077], [-1.205, 54.65004], [-1.20568, 54.64928], [-1.2063, 54.64863], [-1.2064, 54.64852], [-1.20681, 54.64813], [-1.20726, 54.64771], [-1.20767, 54.64733], [-1.20815, 54.64689], [-1.20908, 54.64611], [-1.21005, 54.64534], [-1.2111, 54.64459], [-1.21187, 54.64406], [-1.21219, 54.64385], [-1.21278, 54.64347], [-1.2134, 54.64309], [-1.21403, 54.64272], [-1.21432, 54.64254], [-1.21465, 54.64235], [-1.22361, 54.63731], [-1.22424, 54.63695], [-1.22506, 54.63648], [-1.2295, 54.63398], [-1.23186, 54.63265], [-1.23304, 54.63199], [-1.23425, 54.63132], [-1.23627, 54.63016], [-1.23832, 54.62901], [-1.24091, 54.62754], [-1.24601, 54.62465], [-1.25117, 54.62175], [-1.25626, 54.61887], [-1.25749, 54.61817], [-1.25883, 54.6174], [-1.2614, 54.61595], [-1.26897, 54.61165], [-1.27178, 54.61007]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4487886", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.0086, 51.56853], [0.00821, 51.56811], [0.00801, 51.5679], [0.00783, 51.56769], [0.00619, 51.56527], [0.00549, 51.56441], [0.00472, 51.56361], [0.00408, 51.56299], [0.00363, 51.56263]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4487987", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.74274, 52.41945], [0.74253, 52.41949]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4488849", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13799, 51.89924], [-1.13848, 51.89941]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4489287", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.22113, 55.94484], [-3.22055, 55.94494], [-3.21953, 55.9451], [-3.2189, 55.94521], [-3.21831, 55.94533], [-3.21738, 55.94553]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4494585", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.22601, 55.84895], [-4.22588, 55.8489], [-4.22571, 55.84882], [-4.22558, 55.84876], [-4.22545, 55.84869], [-4.22527, 55.84859], [-4.22517, 55.84853], [-4.22505, 55.84846], [-4.2249, 55.84837], [-4.2247, 55.84822], [-4.22449, 55.84807], [-4.22414, 55.8478]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4494587", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.23245, 55.85081], [-4.23203, 55.85074], [-4.23157, 55.85063], [-4.23111, 55.8505], [-4.22698, 55.8493], [-4.22646, 55.84913], [-4.22601, 55.84895]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4494588", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.22414, 55.8478], [-4.22112, 55.84551], [-4.21865, 55.84368], [-4.21817, 55.84329], [-4.21798, 55.84309], [-4.2178, 55.84287], [-4.21768, 55.8427], [-4.21761, 55.84259], [-4.21754, 55.8424]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4494642", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.2151, 55.83528], [-4.21443, 55.83363]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4494887", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.08, 51.5796], [-0.08065, 51.57927], [-0.08143, 51.57883], [-0.08238, 51.57814], [-0.0851, 51.57552], [-0.08566, 51.57496], [-0.08631, 51.57446], [-0.08703, 51.57394], [-0.08789, 51.57351], [-0.08883, 51.57312], [-0.09401, 51.57137], [-0.09558, 51.57085], [-0.0969, 51.57052], [-0.09878, 51.5701], [-0.10326, 51.5694], [-0.10393, 51.56922], [-0.10447, 51.569], [-0.10491, 51.56872], [-0.10524, 51.56845], [-0.10553, 51.56806], [-0.10578, 51.56738], [-0.10601, 51.56556]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4495189", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.02858, 51.59635], [0.02839, 51.59582]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4495190", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.02839, 51.59582], [0.02803, 51.59465], [0.02748, 51.59192], [0.02716, 51.59059], [0.02704, 51.59015], [0.02667, 51.58915], [0.02613, 51.58803], [0.02558, 51.58699], [0.02509, 51.58617], [0.02422, 51.58481], [0.02411, 51.58463], [0.02292, 51.58284], [0.02231, 51.5818], [0.02191, 51.58117]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4495417", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.56517, 51.24072], [-0.5656, 51.2408], [-0.56597, 51.24089], [-0.5662, 51.24095], [-0.56653, 51.24106], [-0.56665, 51.2411], [-0.56716, 51.24132], [-0.56744, 51.24145], [-0.56774, 51.24162], [-0.56839, 51.24202]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4495860", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.05793, 51.51824], [-0.05804, 51.51833], [-0.05814, 51.51844], [-0.05834, 51.51855], [-0.05983, 51.51955]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4495865", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.07575, 51.51444], [-0.07559, 51.51429], [-0.07552, 51.51421], [-0.07549, 51.51417]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4496507", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.06261, 51.61942], [0.06151, 51.61945]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4496508", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.09249, 51.61312], [0.09233, 51.61322], [0.09217, 51.61331], [0.09196, 51.61342], [0.09173, 51.61352], [0.09153, 51.6136], [0.09133, 51.61368], [0.09114, 51.61375], [0.09073, 51.61388], [0.08918, 51.61435]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4496509", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.09334, 51.60332], [0.0935, 51.60382], [0.09355, 51.60399]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4496510", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.06677, 51.5766], [0.06742, 51.57654], [0.06819, 51.57642], [0.06899, 51.57622], [0.06969, 51.57599], [0.07065, 51.57565], [0.07558, 51.57321], [0.07742, 51.5723], [0.07911, 51.57146], [0.0808, 51.57062], [0.08141, 51.57039], [0.08185, 51.57025], [0.08232, 51.57012], [0.08275, 51.57005], [0.08345, 51.56994], [0.08406, 51.56988], [0.08477, 51.56984], [0.08544, 51.56985], [0.08594, 51.56987], [0.08632, 51.56991], [0.08673, 51.56998], [0.08708, 51.57006], [0.08737, 51.57015], [0.08764, 51.57026], [0.08787, 51.57037], [0.08815, 51.57054], [0.08834, 51.57067], [0.08847, 51.57079], [0.08879, 51.57113], [0.08913, 51.57171], [0.08942, 51.57242], [0.08965, 51.57313]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4497339", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25045, 55.86421], [-4.25024, 55.86448], [-4.24501, 55.87224]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4497358", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.18492, 51.09885], [0.18426, 51.1009], [0.18388, 51.10206], [0.18338, 51.1033], [0.18295, 51.10421], [0.18232, 51.10514], [0.18193, 51.10557], [0.18154, 51.10594], [0.18104, 51.10638]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4497359", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.16206, 51.11703], [0.1612, 51.11775], [0.16035, 51.11846], [0.15778, 51.12064], [0.15718, 51.12113], [0.15662, 51.12163], [0.15557, 51.12261], [0.15531, 51.12289], [0.1551, 51.12314], [0.15469, 51.12366], [0.1543, 51.12418], [0.15395, 51.12474], [0.15365, 51.12531], [0.15341, 51.12588], [0.15319, 51.12645], [0.153, 51.127], [0.15284, 51.12765], [0.15267, 51.12815], [0.15249, 51.12864], [0.15217, 51.12944]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4498856", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.1072, 51.35731], [0.10571, 51.35826], [0.10156, 51.3609], [0.10036, 51.36166], [0.09925, 51.36242], [0.09811, 51.36325], [0.09703, 51.36412], [0.09596, 51.36505], [0.09497, 51.366]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4498857", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.09497, 51.366], [0.09442, 51.36651]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4499986", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.00151, 51.24797], [0.00195, 51.24719], [0.00247, 51.2464], [0.00262, 51.2461], [0.00309, 51.24551], [0.00345, 51.24509], [0.00388, 51.24465], [0.00425, 51.24429], [0.00479, 51.24381], [0.005, 51.24365], [0.00526, 51.24345], [0.00542, 51.24331], [0.00546, 51.24328], [0.00602, 51.24282], [0.00657, 51.24242]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4499988", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.00079, 51.25229], [0.00065, 51.24945], [0.00089, 51.24902], [0.00151, 51.24797]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4500000", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.00224, 51.25492], [-0.00186, 51.25428], [-0.00159, 51.2538], [-0.00132, 51.25327], [-0.00079, 51.25229]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4500036", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11565, 51.33599], [-0.11574, 51.33583], [-0.11585, 51.33563], [-0.11589, 51.33547], [-0.11592, 51.33524], [-0.11593, 51.33501], [-0.11591, 51.33477], [-0.11582, 51.3345], [-0.11574, 51.33428], [-0.11566, 51.33412], [-0.11555, 51.33397], [-0.1154, 51.33381], [-0.11532, 51.33372], [-0.1151, 51.33353], [-0.11488, 51.33336], [-0.11444, 51.33308], [-0.1141, 51.33286], [-0.11372, 51.33261], [-0.11339, 51.33236], [-0.11316, 51.33218], [-0.11287, 51.33193], [-0.11259, 51.33165], [-0.11236, 51.33141], [-0.11187, 51.33079], [-0.11171, 51.33056], [-0.11119, 51.32977], [-0.11099, 51.32944], [-0.11067, 51.32903], [-0.11033, 51.32864], [-0.11018, 51.32851], [-0.10987, 51.32822], [-0.10949, 51.32793], [-0.10906, 51.32762], [-0.10869, 51.32739], [-0.10832, 51.32718], [-0.10783, 51.32693], [-0.10738, 51.32672], [-0.10693, 51.32654], [-0.10637, 51.32635], [-0.10561, 51.32613], [-0.10451, 51.32582], [-0.10426, 51.32575], [-0.10307, 51.32542], [-0.10231, 51.3252], [-0.10176, 51.32505], [-0.10143, 51.32496], [-0.10074, 51.32476], [-0.10044, 51.32468], [-0.10006, 51.32457], [-0.09938, 51.32438], [-0.09905, 51.32427], [-0.09856, 51.32411], [-0.09787, 51.32386], [-0.09744, 51.32369], [-0.09689, 51.32345], [-0.09646, 51.32324], [-0.09599, 51.32301], [-0.09547, 51.32273], [-0.09504, 51.32248], [-0.0946, 51.3222], [-0.0941, 51.32189], [-0.09365, 51.32158], [-0.0935, 51.32149], [-0.09307, 51.32119], [-0.09222, 51.32062], [-0.09157, 51.32019], [-0.09096, 51.31978], [-0.09014, 51.31923], [-0.08951, 51.31881], [-0.08887, 51.31838], [-0.08809, 51.31787], [-0.08766, 51.31757], [-0.08725, 51.3173], [-0.0869, 51.31706], [-0.0864, 51.31673], [-0.08594, 51.31642], [-0.08565, 51.31622], [-0.08528, 51.31597], [-0.08501, 51.31577], [-0.08464, 51.31549], [-0.08428, 51.31519], [-0.08402, 51.31496], [-0.08377, 51.31474], [-0.08361, 51.31459], [-0.08324, 51.31421], [-0.08306, 51.314], [-0.08281, 51.31374], [-0.08253, 51.31341], [-0.08227, 51.31301], [-0.08209, 51.31276], [-0.08195, 51.31255], [-0.08177, 51.31222], [-0.08152, 51.3117], [-0.08131, 51.31115], [-0.08121, 51.31085], [-0.08107, 51.31033], [-0.08099, 51.30994], [-0.08095, 51.30968], [-0.0809, 51.30936], [-0.08089, 51.30926], [-0.08085, 51.30901], [-0.0808, 51.30877], [-0.08058, 51.30802], [-0.08048, 51.30773], [-0.08033, 51.30743], [-0.07991, 51.30675], [-0.07934, 51.30607], [-0.07719, 51.30374], [-0.07662, 51.30312], [-0.07349, 51.29976], [-0.07316, 51.29942], [-0.07285, 51.29904], [-0.07262, 51.29868], [-0.0724, 51.29828], [-0.07219, 51.29774], [-0.07203, 51.29712], [-0.07197, 51.29677], [-0.07194, 51.29641], [-0.07193, 51.29598], [-0.07201, 51.29554], [-0.07212, 51.29512], [-0.07227, 51.29472], [-0.07247, 51.29429], [-0.07273, 51.29386], [-0.07292, 51.2936], [-0.07312, 51.29334], [-0.07333, 51.29309], [-0.07358, 51.29282], [-0.07458, 51.29206], [-0.07526, 51.29165], [-0.07627, 51.29107], [-0.07702, 51.29066], [-0.07843, 51.28942], [-0.07907, 51.28864], [-0.07958, 51.28768], [-0.07971, 51.28737], [-0.07979, 51.28717], [-0.07984, 51.28696], [-0.0799, 51.28657], [-0.07993, 51.28618], [-0.07994, 51.28605], [-0.07995, 51.28586], [-0.07995, 51.28565], [-0.07991, 51.28531], [-0.07986, 51.28507], [-0.07979, 51.28481], [-0.07973, 51.28458], [-0.07969, 51.28442], [-0.07961, 51.2842], [-0.0795, 51.28395], [-0.0794, 51.28376], [-0.07929, 51.28359], [-0.07913, 51.28334], [-0.07892, 51.28305], [-0.07825, 51.2822]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4500100", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07561, 51.30488], [-0.07423, 51.30347], [-0.07321, 51.30245]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4500118", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.04374, 51.28197], [-0.04347, 51.28104], [-0.04323, 51.28024], [-0.04302, 51.27954], [-0.04267, 51.27864], [-0.04233, 51.27777], [-0.04188, 51.27685], [-0.04155, 51.27629], [-0.04111, 51.27566], [-0.04083, 51.27529], [-0.04034, 51.27471], [-0.03998, 51.2743], [-0.03953, 51.27386]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4500196", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.07826, 51.31023], [-0.07821, 51.31004]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500266", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.0461, 51.61747], [0.04388, 51.61709], [0.04378, 51.61707], [0.04343, 51.617], [0.04329, 51.61696], [0.04318, 51.61694], [0.043, 51.61689], [0.04281, 51.61683], [0.04262, 51.61677], [0.04249, 51.61673], [0.04233, 51.61667], [0.04219, 51.61661], [0.04208, 51.61656], [0.0417, 51.61638], [0.04087, 51.61586]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500267", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.07551, 51.61767], [0.07456, 51.61786], [0.0727, 51.61816], [0.0682, 51.61883], [0.06673, 51.61905], [0.06541, 51.61922], [0.06448, 51.61932], [0.06342, 51.61938]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500268", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.06342, 51.61938], [0.06261, 51.61942]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500269", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.08635, 51.61519], [0.08402, 51.61586], [0.08221, 51.61632], [0.07551, 51.61767]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500270", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.08918, 51.61435], [0.08635, 51.61519]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4500271", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[0.09111, 51.59595], [0.09168, 51.59771], [0.09221, 51.59947], [0.09257, 51.6008]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4515337", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.1987, 54.54449], [-1.19834, 54.54422], [-1.1974, 54.54353], [-1.19679, 54.54308], [-1.19489, 54.54175], [-1.19361, 54.54089], [-1.19209, 54.53993], [-1.19082, 54.53921]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4515338", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.22747, 54.57754], [-1.22639, 54.57701], [-1.22587, 54.57671], [-1.22513, 54.57625], [-1.22467, 54.57592], [-1.22386, 54.57536], [-1.22195, 54.57406], [-1.22133, 54.57362], [-1.22071, 54.57316], [-1.2201, 54.57265], [-1.21965, 54.57224], [-1.21932, 54.57191], [-1.21864, 54.57118], [-1.21818, 54.57068], [-1.21732, 54.56976], [-1.21624, 54.5685], [-1.21585, 54.56783], [-1.21552, 54.56717], [-1.21533, 54.5665], [-1.21526, 54.5661], [-1.21522, 54.56578], [-1.21521, 54.56547], [-1.21519, 54.56491], [-1.21528, 54.5644], [-1.2154, 54.56395], [-1.21579, 54.56295], [-1.21595, 54.56241], [-1.21603, 54.5619], [-1.21613, 54.56094], [-1.21597, 54.55996], [-1.21581, 54.5591], [-1.2156, 54.55847], [-1.21525, 54.55783], [-1.21492, 54.55733], [-1.2145, 54.55679], [-1.21377, 54.55607], [-1.21292, 54.55537], [-1.20988, 54.55297], [-1.20852, 54.55201], [-1.20708, 54.55105], [-1.20584, 54.55022], [-1.20417, 54.54899], [-1.20284, 54.5479], [-1.20174, 54.54689], [-1.2001, 54.54554], [-1.1989, 54.54463]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4517532", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.29732, 55.91117], [-3.30056, 55.91041]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4517533", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.29696, 55.91125], [-3.29732, 55.91117]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4518788", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.52354, 55.97837], [-3.522, 55.97826], [-3.5212, 55.97819], [-3.52032, 55.97809], [-3.51951, 55.978], [-3.51872, 55.97789], [-3.51727, 55.97766]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4518789", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.59621, 55.97633], [-3.59602, 55.97636]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4522431", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.56988, 51.24273], [-0.57016, 51.24279], [-0.57122, 51.24302]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4527406", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.15549, 51.52246], [-0.15582, 51.5224], [-0.15665, 51.52226], [-0.15746, 51.52211], [-0.16366, 51.52094], [-0.16499, 51.52073]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4533574", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53255, 53.65865], [-1.53367, 53.65813], [-1.53425, 53.65782]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534135", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.50892, 51.43502], [-0.50873, 51.43488]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534150", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.5118, 51.43045], [-0.51045, 51.43092]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534165", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.51457, 51.43007], [-0.51402, 51.43008], [-0.51366, 51.43011], [-0.51332, 51.43014], [-0.51301, 51.43018], [-0.51274, 51.43022], [-0.51249, 51.43027], [-0.51228, 51.43032]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534166", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.51473, 51.43007], [-0.51457, 51.43007]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534621", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.50873, 51.43488], [-0.50854, 51.43475], [-0.50812, 51.43446], [-0.50775, 51.43422], [-0.50717, 51.43388], [-0.50694, 51.43375]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534630", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.51045, 51.43092], [-0.51024, 51.431], [-0.51004, 51.43108], [-0.5098, 51.43119], [-0.50964, 51.43127], [-0.50947, 51.43135], [-0.50925, 51.43151], [-0.50913, 51.4316], [-0.509, 51.4317], [-0.50864, 51.43196], [-0.50846, 51.43207], [-0.50823, 51.4322], [-0.50804, 51.4323], [-0.50782, 51.43239], [-0.50758, 51.43249], [-0.50728, 51.43259], [-0.50703, 51.43266], [-0.50676, 51.43272], [-0.50657, 51.43275], [-0.50638, 51.43278], [-0.50618, 51.4328], [-0.50596, 51.43281], [-0.50576, 51.43282], [-0.50554, 51.43281], [-0.50532, 51.4328], [-0.50497, 51.43275], [-0.50475, 51.43271], [-0.50423, 51.43259]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534631", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.50679, 51.43366], [-0.5063, 51.43341], [-0.50578, 51.43319], [-0.50457, 51.43269], [-0.50423, 51.43259]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4534632", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.50679, 51.43366], [-0.50694, 51.43375]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4538300", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.23687, 51.48175], [0.23686, 51.48197], [0.23687, 51.48216], [0.23689, 51.48235], [0.23691, 51.48253], [0.23694, 51.48274], [0.23699, 51.48294], [0.23707, 51.48315], [0.23717, 51.48337], [0.23734, 51.48373], [0.23754, 51.48412], [0.23772, 51.48449], [0.23792, 51.48487], [0.23816, 51.48536], [0.23823, 51.48551], [0.23829, 51.48568], [0.23838, 51.48601], [0.23842, 51.48631], [0.23845, 51.48665], [0.23841, 51.4871], [0.23839, 51.48735], [0.23835, 51.48757], [0.23825, 51.48786], [0.23817, 51.48808], [0.23805, 51.48834], [0.23791, 51.48859]]}}, {"type": "Feature", "properties": {"osm_id": "4542575", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[1.12591, 51.30134], [1.12579, 51.30131], [1.12573, 51.30128], [1.12569, 51.30124], [1.12568, 51.30119], [1.1257, 51.30113], [1.12586, 51.30095], [1.12598, 51.30091], [1.12614, 51.30091], [1.12625, 51.30101], [1.12625, 51.30111], [1.12638, 51.30117], [1.12654, 51.30118], [1.12665, 51.30118], [1.12677, 51.30121], [1.12685, 51.30127], [1.12682, 51.30132], [1.1268, 51.30138], [1.12672, 51.30144], [1.12661, 51.30146], [1.12649, 51.30144], [1.12591, 51.30134]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4543362", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.43933, 55.84718], [-4.43902, 55.84721]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4543363", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.44019, 55.84707], [-4.4396, 55.84714]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4543365", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42628, 55.8475], [-4.42575, 55.84749]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4543367", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.43478, 55.84741], [-4.43382, 55.84742], [-4.4326, 55.84741], [-4.43122, 55.84741], [-4.43089, 55.84741], [-4.43052, 55.84741], [-4.42983, 55.84741]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4544090", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.23104, 53.31435], [-2.23098, 53.31446]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4544182", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.4285, 55.84741], [-4.42805, 55.84741]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4544184", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42394, 55.84747], [-4.42367, 55.84747]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4544186", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42255, 55.84745], [-4.42221, 55.84746]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4544188", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42191, 55.84747], [-4.4216, 55.84748]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4545988", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.74277, 55.94233], [-4.74232, 55.94234], [-4.74188, 55.94237], [-4.74129, 55.94243], [-4.74087, 55.94248], [-4.74019, 55.94259], [-4.73962, 55.9427], [-4.73903, 55.94279], [-4.73844, 55.94286], [-4.73786, 55.94291], [-4.73759, 55.94293], [-4.7373, 55.94293], [-4.73674, 55.94294], [-4.73601, 55.9429], [-4.73521, 55.94282], [-4.73449, 55.94271], [-4.73381, 55.94258], [-4.73325, 55.94246], [-4.7327, 55.94232], [-4.73165, 55.94201]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4546032", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.74486, 55.93828], [-4.74307, 55.93807], [-4.74049, 55.93775]]}}, {"type": "Feature", "properties": {"osm_id": "4547955", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.02361, 54.05073], [-2.02564, 54.04947], [-2.02634, 54.04895], [-2.02691, 54.04842], [-2.02755, 54.04767], [-2.02765, 54.04757], [-2.02856, 54.04617], [-2.02905, 54.04542], [-2.02973, 54.04457], [-2.03024, 54.04405], [-2.03053, 54.0438], [-2.03134, 54.04317], [-2.034, 54.04148], [-2.03613, 54.04007], [-2.03916, 54.03815], [-2.04002, 54.0376], [-2.04058, 54.03725], [-2.04106, 54.03698], [-2.04148, 54.03677], [-2.04189, 54.03657]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4548260", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25908, 55.85465], [-4.25904, 55.8549], [-4.25903, 55.855], [-4.259, 55.85512], [-4.2589, 55.8554]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4548309", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.21892, 55.85653], [-4.21831, 55.85657], [-4.21738, 55.85662]]}}, {"type": "Feature", "properties": {"osm_id": "4548366", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.00048, 53.97108], [-2.0008, 53.97058], [-2.00102, 53.9701]]}}, {"type": "Feature", "properties": {"osm_id": "4549537", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.5823, 53.91542], [-1.58188, 53.91608], [-1.58148, 53.91681], [-1.58119, 53.91746], [-1.58099, 53.9181], [-1.58087, 53.91858], [-1.5808, 53.91911], [-1.58077, 53.91973], [-1.58079, 53.92034], [-1.58082, 53.9206], [-1.58091, 53.92119], [-1.58106, 53.92178], [-1.58116, 53.92227], [-1.58121, 53.92247]]}}, {"type": "Feature", "properties": {"osm_id": "4549538", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53264, 53.95843], [-1.53161, 53.95881], [-1.53056, 53.95919], [-1.52972, 53.9595], [-1.52887, 53.9598], [-1.52708, 53.96046], [-1.52618, 53.96079], [-1.52529, 53.96111], [-1.52405, 53.96158], [-1.5235, 53.9618], [-1.52298, 53.96203], [-1.52223, 53.96238], [-1.52149, 53.96274], [-1.52065, 53.96316], [-1.52001, 53.96348], [-1.51937, 53.9638]]}}, {"type": "Feature", "properties": {"osm_id": "4549539", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53739, 53.99556], [-1.53728, 53.99583]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4551547", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.02527, 51.69824], [-0.02503, 51.6985], [-0.02476, 51.69887]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4551548", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.04383, 51.68255], [-0.04353, 51.68313]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4552653", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.23392, 55.85108], [-4.23381, 55.85105], [-4.23368, 55.85103], [-4.23345, 55.85099], [-4.23245, 55.85081]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4552654", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.23392, 55.85108], [-4.23404, 55.85111], [-4.23416, 55.85114], [-4.2343, 55.85119], [-4.23441, 55.85125], [-4.23451, 55.85131], [-4.24305, 55.85603], [-4.24373, 55.85643], [-4.24387, 55.85651], [-4.24403, 55.85659], [-4.24418, 55.85665], [-4.24442, 55.85674], [-4.24473, 55.85683], [-4.24493, 55.85688], [-4.24512, 55.85692], [-4.24536, 55.85696], [-4.25062, 55.85761], [-4.25663, 55.85827], [-4.25744, 55.85836], [-4.25788, 55.8584], [-4.25885, 55.8585]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4552657", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.28163, 55.86066], [-4.28196, 55.86078], [-4.2822, 55.86087], [-4.2828, 55.86111], [-4.28307, 55.86121], [-4.28347, 55.86136], [-4.28367, 55.86143], [-4.28394, 55.8615], [-4.28434, 55.86159], [-4.28477, 55.86167], [-4.28589, 55.86186], [-4.28744, 55.86213], [-4.28766, 55.86218], [-4.2891, 55.86249], [-4.29026, 55.86277], [-4.29086, 55.8629], [-4.29142, 55.86301], [-4.292, 55.8631], [-4.29263, 55.86316], [-4.29306, 55.8632], [-4.29353, 55.86322], [-4.29461, 55.86323]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4554167", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.62306, 53.52653], [-1.62301, 53.52646], [-1.62295, 53.52634], [-1.62291, 53.52622], [-1.62286, 53.52604], [-1.62278, 53.52586], [-1.62266, 53.52567], [-1.62254, 53.52551], [-1.62234, 53.52532]]}}, {"type": "Feature", "properties": {"osm_id": "4555329", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53768, 53.99455], [-1.53765, 53.99474]]}}, {"type": "Feature", "properties": {"osm_id": "4555330", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.53765, 53.99474], [-1.53757, 53.99499], [-1.5375, 53.99522], [-1.53739, 53.99556]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4558036", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.75706, 51.24723], [-0.75803, 51.24697], [-0.75866, 51.24678], [-0.75909, 51.24663], [-0.75959, 51.24643], [-0.7601, 51.24622], [-0.76066, 51.24596], [-0.76104, 51.24577], [-0.76141, 51.24558], [-0.76194, 51.24527], [-0.76228, 51.24504], [-0.76251, 51.24488], [-0.76275, 51.24469], [-0.76328, 51.24427], [-0.76371, 51.24391]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4558427", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.04353, 51.68313], [-0.04315, 51.68382], [-0.04283, 51.68435], [-0.04227, 51.6853], [-0.04192, 51.68581], [-0.04155, 51.68632], [-0.04133, 51.68661], [-0.04112, 51.68688], [-0.0409, 51.68715], [-0.04069, 51.6874], [-0.04036, 51.6878], [-0.04005, 51.68816], [-0.03975, 51.68848], [-0.03952, 51.68874], [-0.03925, 51.68906], [-0.03893, 51.68941]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565013", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.28787, 55.83268], [-4.28602, 55.83331], [-4.28416, 55.83398], [-4.28345, 55.83423], [-4.283, 55.83438], [-4.28236, 55.83461], [-4.28188, 55.83477], [-4.28003, 55.8354], [-4.27889, 55.83581], [-4.27765, 55.83624], [-4.27624, 55.83674], [-4.27414, 55.83748], [-4.27329, 55.83778]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4565016", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29293, 55.83053], [-4.29258, 55.8295], [-4.29246, 55.82923], [-4.29229, 55.82893], [-4.29193, 55.82838]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565434", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.49699, 53.7368], [-2.49797, 53.73643], [-2.49806, 53.7364]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565454", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.48284, 53.74337], [-2.48318, 53.74314], [-2.48448, 53.74227], [-2.48542, 53.74169], [-2.4857, 53.74154], [-2.48602, 53.74136], [-2.48779, 53.74052], [-2.48824, 53.74031], [-2.4886, 53.74011], [-2.48894, 53.73989], [-2.48924, 53.73967], [-2.48954, 53.73942], [-2.48982, 53.73913], [-2.49008, 53.73884], [-2.49013, 53.73878], [-2.49028, 53.73857], [-2.49049, 53.7383]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565455", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.49077, 53.73583], [-2.49064, 53.73551]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565719", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.30105, 51.86093], [-1.30091, 51.86158]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565942", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.3015, 51.85557], [-1.30157, 51.85632], [-1.30158, 51.85699], [-1.30157, 51.85778], [-1.3015, 51.85852], [-1.30141, 51.85916], [-1.30132, 51.85973], [-1.30105, 51.86093]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565943", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.30145, 51.8552], [-1.3015, 51.85557]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565950", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29912, 51.84768], [-1.29929, 51.84847], [-1.2997, 51.8498], [-1.29983, 51.85012], [-1.29994, 51.85039], [-1.30022, 51.85099], [-1.30051, 51.85161], [-1.30073, 51.85219], [-1.3009, 51.85265], [-1.30102, 51.85309], [-1.30125, 51.85397], [-1.30136, 51.85458], [-1.30145, 51.8552]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4565951", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29904, 51.84726], [-1.29912, 51.84768]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4566117", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29848, 51.82127], [-1.29869, 51.8221]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4566513", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29463, 51.7923], [-1.29475, 51.79242]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4566514", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.29438, 51.79202], [-1.29463, 51.7923]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4566795", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.06628, 51.3602], [1.06662, 51.36023]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4567874", "railway": "rail", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-1.1657, 50.65011], [-1.16572, 50.64934], [-1.16575, 50.64899], [-1.1658, 50.64863], [-1.16586, 50.64828], [-1.16592, 50.648], [-1.16598, 50.64773], [-1.16606, 50.64742], [-1.16622, 50.64686]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4570205", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.25378, 51.95741], [-1.25612, 51.9587], [-1.25773, 51.95966], [-1.25958, 51.96077], [-1.26166, 51.96225], [-1.26319, 51.96356], [-1.26406, 51.96433]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4570206", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28015, 51.99907], [-1.28012, 51.99877], [-1.28, 51.99796], [-1.27986, 51.99744], [-1.27969, 51.99691], [-1.27948, 51.99646], [-1.27936, 51.99619], [-1.2792, 51.9959], [-1.27898, 51.99554], [-1.27874, 51.99517], [-1.27855, 51.99491], [-1.27713, 51.99305], [-1.27669, 51.99247], [-1.2761, 51.99169], [-1.27552, 51.99094], [-1.27505, 51.99032], [-1.27473, 51.98989], [-1.27447, 51.98956], [-1.2742, 51.98921], [-1.27404, 51.98899], [-1.27365, 51.98846]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4570207", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.27368, 51.98844], [-1.27396, 51.98881], [-1.27431, 51.98924], [-1.27462, 51.98955], [-1.27525, 51.99013], [-1.27572, 51.99053], [-1.27636, 51.991], [-1.27717, 51.99159]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4570687", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.20021, 55.85605], [-4.19955, 55.85596]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4571594", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.22009, 55.76194], [-4.22055, 55.76191], [-4.2216, 55.76184], [-4.22241, 55.76182], [-4.22312, 55.7618], [-4.22437, 55.76182], [-4.22558, 55.76188], [-4.22701, 55.76192], [-4.22798, 55.76191], [-4.22832, 55.76191], [-4.22986, 55.76181], [-4.23125, 55.76163], [-4.23164, 55.76157], [-4.23221, 55.76147], [-4.23324, 55.76124], [-4.2342, 55.76098], [-4.23534, 55.7607], [-4.23622, 55.76054], [-4.2372, 55.76045], [-4.23841, 55.76043], [-4.23867, 55.76045], [-4.23932, 55.7605], [-4.24027, 55.76063], [-4.24117, 55.76082], [-4.24134, 55.76088], [-4.24218, 55.76117], [-4.24298, 55.76155], [-4.24379, 55.76204], [-4.24435, 55.76252], [-4.24487, 55.76312], [-4.24522, 55.7637], [-4.24593, 55.7652], [-4.24628, 55.76578], [-4.24666, 55.76615], [-4.24722, 55.76654], [-4.24775, 55.76684], [-4.24955, 55.76768], [-4.25091, 55.76846]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4571665", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.25091, 55.76846], [-4.25318, 55.76975], [-4.25367, 55.77003], [-4.25694, 55.77188], [-4.25856, 55.77278], [-4.25945, 55.77335], [-4.26077, 55.77431], [-4.26147, 55.77483], [-4.2619, 55.77521], [-4.2622, 55.77557], [-4.26246, 55.77596], [-4.26264, 55.77639], [-4.26275, 55.77681], [-4.26275, 55.7773], [-4.2626, 55.77792]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4571686", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.31172, 55.81106], [-4.31204, 55.81138], [-4.31221, 55.81158], [-4.31236, 55.81178], [-4.31253, 55.81209], [-4.31266, 55.81234], [-4.31277, 55.8126], [-4.31301, 55.81333], [-4.31359, 55.81513], [-4.31364, 55.81528], [-4.31371, 55.81552], [-4.31374, 55.81576], [-4.31374, 55.81599], [-4.31372, 55.81622], [-4.31367, 55.8164], [-4.31358, 55.81664], [-4.31348, 55.81681], [-4.31338, 55.81698]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4573430", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25849, 55.85626], [-4.25821, 55.8566]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4573978", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.84307, 52.52562], [-1.8441, 52.52484], [-1.84449, 52.52452], [-1.84486, 52.5242], [-1.84538, 52.52371], [-1.84588, 52.5232], [-1.84648, 52.52254], [-1.84716, 52.52175], [-1.84866, 52.52004]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4573979", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.83993, 52.5279], [-1.84005, 52.5278]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4574107", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42627, 55.84737], [-4.42571, 55.84735]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4574108", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42221, 55.84746], [-4.42191, 55.84747]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4574109", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42367, 55.84747], [-4.42255, 55.84745]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4574447", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.68023, 51.29726], [-0.68051, 51.29713]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4575646", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.4764, 53.74788], [-2.47586, 53.74822], [-2.47484, 53.74879], [-2.47172, 53.75023]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4575660", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.53425, 53.73157], [-2.53548, 53.7315]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4575661", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.53548, 53.7315], [-2.5356, 53.73149], [-2.53696, 53.73142], [-2.54435, 53.73102], [-2.5488, 53.73077], [-2.55173, 53.7306], [-2.55308, 53.73053], [-2.55447, 53.73049], [-2.55529, 53.7305], [-2.5561, 53.73053], [-2.55668, 53.73057], [-2.55715, 53.73061], [-2.5576, 53.73065], [-2.55813, 53.73071], [-2.55866, 53.73078], [-2.55972, 53.73095], [-2.5608, 53.73116], [-2.56142, 53.73132], [-2.56202, 53.73147], [-2.56252, 53.73161], [-2.56301, 53.73176], [-2.5635, 53.73191], [-2.56399, 53.73209]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4576825", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.50746, 53.68471], [-1.50709, 53.68424], [-1.50642, 53.68339], [-1.50591, 53.68276], [-1.50541, 53.68212], [-1.50524, 53.68191], [-1.50489, 53.68144]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4578311", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.16065, 51.81678], [0.16063, 51.81596], [0.1606, 51.8155], [0.1605, 51.81443], [0.16048, 51.81416], [0.16041, 51.81364], [0.16025, 51.81291], [0.15985, 51.81138], [0.15923, 51.80966], [0.15848, 51.80803], [0.15772, 51.80647], [0.1572, 51.80546], [0.15698, 51.80502], [0.15625, 51.80354], [0.15559, 51.80219], [0.15514, 51.80129], [0.15431, 51.80017], [0.15307, 51.79877], [0.15179, 51.79757], [0.15062, 51.79669], [0.14888, 51.79563], [0.14783, 51.79507], [0.14677, 51.79457], [0.14563, 51.7941], [0.14448, 51.79366], [0.1433, 51.79328], [0.14216, 51.79295], [0.13941, 51.79226], [0.13637, 51.79149], [0.13311, 51.79068], [0.13212, 51.79043], [0.13154, 51.79029], [0.13066, 51.79007], [0.13001, 51.7899], [0.12935, 51.78975], [0.12826, 51.78946], [0.12604, 51.78891], [0.12362, 51.78841], [0.12176, 51.7881], [0.12039, 51.78792], [0.11899, 51.78776], [0.11832, 51.78768], [0.11742, 51.78759], [0.11642, 51.78746], [0.11551, 51.78732], [0.11462, 51.78716], [0.11254, 51.7867], [0.11101, 51.78631], [0.10926, 51.78576], [0.10761, 51.78519], [0.10619, 51.78463], [0.10463, 51.78397], [0.10295, 51.78335], [0.10183, 51.78297], [0.10061, 51.78259]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4578767", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.56399, 53.73209], [-2.56442, 53.73225], [-2.56492, 53.73243]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4579179", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.00555, 51.76936], [0.0056, 51.76923], [0.00566, 51.76908], [0.00573, 51.76887], [0.00579, 51.76862], [0.00583, 51.76841], [0.00586, 51.76816], [0.00589, 51.76792], [0.0059, 51.76761], [0.00593, 51.76725], [0.00603, 51.76492], [0.00607, 51.76407], [0.00606, 51.76391], [0.00602, 51.76371], [0.00596, 51.76349], [0.00588, 51.76331], [0.00578, 51.76313], [0.00564, 51.76291], [0.00545, 51.76271], [0.00525, 51.76253], [0.00492, 51.76228]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4582502", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.18787, 51.86893], [-0.18744, 51.86796], [-0.18706, 51.8671], [-0.18674, 51.86639]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4582530", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19218, 51.88286], [-0.19205, 51.88276]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4582531", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.1736, 51.87508], [-0.17579, 51.87555], [-0.17879, 51.87622], [-0.17995, 51.87651], [-0.18108, 51.87684], [-0.18207, 51.87716], [-0.18295, 51.8775], [-0.18364, 51.87777], [-0.18433, 51.87807], [-0.18489, 51.87832], [-0.18532, 51.87854], [-0.1857, 51.87875], [-0.18758, 51.87982], [-0.18942, 51.88094], [-0.19083, 51.88179], [-0.19153, 51.88221], [-0.19233, 51.88269]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4585302", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.18563, 51.86183], [-0.18564, 51.8617]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4585303", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.18671, 51.86631], [-0.18641, 51.86555], [-0.18624, 51.86506], [-0.18594, 51.86408], [-0.18563, 51.86183]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4585304", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.18674, 51.86639], [-0.18671, 51.86631]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4586634", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.80678, 51.77653], [-0.8065, 51.77587], [-0.8063, 51.77533], [-0.80615, 51.77478], [-0.80606, 51.77434], [-0.80597, 51.77375], [-0.80592, 51.77289], [-0.80595, 51.77226], [-0.80599, 51.77187], [-0.80602, 51.77164], [-0.80611, 51.7711], [-0.80622, 51.77056], [-0.80637, 51.76979], [-0.80649, 51.7691], [-0.8066, 51.76854], [-0.8067, 51.76804], [-0.80677, 51.76769], [-0.80691, 51.76701], [-0.80702, 51.76639], [-0.80713, 51.76582], [-0.80722, 51.76529], [-0.80732, 51.76471], [-0.80745, 51.76419], [-0.80749, 51.76389], [-0.80759, 51.76332], [-0.80771, 51.76272], [-0.80782, 51.76214], [-0.80792, 51.76166], [-0.808, 51.76121], [-0.80805, 51.76096], [-0.80813, 51.76035], [-0.80824, 51.75974], [-0.80836, 51.75912], [-0.80856, 51.75805], [-0.80871, 51.75726], [-0.80877, 51.75694], [-0.80888, 51.75636], [-0.80891, 51.75552]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4586635", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.80891, 51.75552], [-0.80889, 51.75523]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4587150", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12123, 51.89325], [-1.12365, 51.89416], [-1.12745, 51.8955]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4587157", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.09419, 51.87748], [-1.09908, 51.88091], [-1.10261, 51.88337]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4587742", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83092, 53.36436], [-2.85546, 53.36072]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4588409", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.36544, 53.75666], [-2.36498, 53.75693], [-2.36455, 53.75718], [-2.36415, 53.75738], [-2.36374, 53.75756], [-2.36279, 53.75798], [-2.36188, 53.75843], [-2.36142, 53.75868], [-2.36098, 53.75893], [-2.36013, 53.75947], [-2.35985, 53.75967], [-2.35933, 53.76005], [-2.35907, 53.76025], [-2.35883, 53.76045], [-2.35855, 53.76071], [-2.35829, 53.76096], [-2.35802, 53.76122], [-2.35781, 53.76149], [-2.35726, 53.76218], [-2.357, 53.76253], [-2.35678, 53.76288], [-2.35605, 53.76399], [-2.35568, 53.7645], [-2.35532, 53.76496], [-2.35464, 53.76573], [-2.35426, 53.76611], [-2.35389, 53.76647], [-2.35302, 53.76725], [-2.35174, 53.7683]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4588410", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.47172, 53.75023], [-2.47157, 53.7503], [-2.46976, 53.75118], [-2.46921, 53.75149], [-2.46841, 53.75195], [-2.46818, 53.75207]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4588421", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44728, 53.76093], [-2.44661, 53.76123]]}}, {"type": "Feature", "properties": {"osm_id": "4592306", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.03235, 53.21811], [-3.03267, 53.21782], [-3.03281, 53.2177], [-3.03311, 53.2174], [-3.03455, 53.21603]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4592307", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.03557, 53.24167], [-3.0351, 53.24086], [-3.02964, 53.23147], [-3.02787, 53.22841], [-3.02684, 53.2266], [-3.02665, 53.2263], [-3.02653, 53.22607]]}}, {"type": "Feature", "properties": {"osm_id": "4592308", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.03455, 53.21603], [-3.03683, 53.21389]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4592330", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.07611, 51.5147], [-0.07602, 51.51466], [-0.07587, 51.51461], [-0.07566, 51.51456], [-0.07552, 51.51454], [-0.07533, 51.51452], [-0.07506, 51.51451], [-0.07449, 51.5145], [-0.0741, 51.51451], [-0.07392, 51.51451], [-0.07376, 51.51455], [-0.07369, 51.51461]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4592331", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.08432, 51.51064], [-0.08408, 51.51063], [-0.08384, 51.51063], [-0.08362, 51.51062], [-0.08315, 51.51056], [-0.08269, 51.51045], [-0.0816, 51.51008], [-0.08045, 51.50968], [-0.0804, 51.50966], [-0.08035, 51.50966], [-0.07963, 51.50965], [-0.07901, 51.50961], [-0.07866, 51.50959], [-0.07846, 51.50959], [-0.07832, 51.50961], [-0.0782, 51.50967], [-0.07792, 51.50978], [-0.07775, 51.50981], [-0.07664, 51.50987], [-0.07651, 51.50989], [-0.07639, 51.50993], [-0.07623, 51.50999], [-0.07613, 51.51004], [-0.07601, 51.51013], [-0.07587, 51.51026], [-0.07579, 51.51034]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4594092", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.31339, 51.37818], [1.31371, 51.37819]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4596559", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.29485, 51.37716], [1.29616, 51.37727], [1.29747, 51.37734], [1.30023, 51.37748], [1.30092, 51.37752]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4596560", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.29448, 51.37712], [1.29485, 51.37716]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4596869", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.27383, 52.39581], [0.27239, 52.39498], [0.27057, 52.39382], [0.26905, 52.39276]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4596870", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.27437, 52.3961], [0.27383, 52.39581]]}}, {"type": "Feature", "properties": {"osm_id": "4598749", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.0716, 51.51202], [0.07164, 51.51195], [0.07166, 51.51188], [0.07167, 51.51184], [0.07168, 51.51173], [0.07171, 51.51165], [0.07181, 51.51155], [0.0719, 51.5115], [0.07202, 51.51145], [0.07214, 51.51143], [0.07217, 51.51142], [0.07222, 51.51142], [0.07236, 51.51142], [0.07249, 51.51145], [0.07263, 51.5115], [0.07278, 51.51159], [0.07314, 51.51181], [0.07343, 51.51198], [0.07344, 51.51199], [0.07366, 51.51213]]}}, {"type": "Feature", "properties": {"osm_id": "4598750", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07172, 51.51038], [0.07174, 51.51046], [0.07176, 51.51052], [0.07175, 51.51066], [0.07175, 51.51073], [0.07176, 51.5108], [0.07179, 51.51086], [0.07184, 51.51092], [0.07193, 51.51101], [0.07201, 51.51106], [0.07227, 51.51125], [0.07239, 51.51132], [0.07259, 51.51141], [0.07271, 51.51147], [0.07289, 51.51159], [0.07307, 51.5117], [0.07326, 51.51182], [0.07345, 51.51193], [0.07355, 51.51201], [0.07366, 51.51213], [0.07374, 51.51221], [0.07386, 51.51228], [0.07395, 51.51233], [0.07407, 51.51238], [0.0742, 51.51243], [0.07437, 51.51248], [0.07438, 51.51249], [0.07449, 51.51252], [0.07458, 51.51254], [0.07467, 51.51254], [0.07479, 51.51254], [0.0749, 51.51252], [0.07503, 51.51249], [0.0751, 51.51246], [0.07518, 51.51242], [0.07534, 51.51234], [0.07543, 51.5123], [0.07572, 51.51223], [0.07581, 51.51221], [0.07589, 51.5122], [0.07598, 51.51219], [0.07623, 51.51217], [0.07651, 51.51215], [0.07676, 51.51213], [0.07791, 51.51205], [0.07806, 51.51204], [0.07819, 51.51204], [0.07842, 51.51206], [0.07892, 51.5121], [0.07904, 51.51209], [0.0792, 51.51208], [0.07931, 51.51207], [0.07941, 51.51205], [0.07952, 51.51202], [0.07959, 51.51198], [0.07964, 51.51195], [0.07971, 51.5119]]}}, {"type": "Feature", "properties": {"osm_id": "4598751", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07374, 51.51221], [0.07381, 51.51228], [0.07386, 51.51233], [0.07397, 51.5124], [0.07409, 51.51246], [0.07435, 51.51255], [0.07447, 51.5126], [0.07458, 51.51261], [0.07467, 51.51262], [0.07479, 51.51262], [0.07496, 51.51261], [0.07512, 51.51259], [0.07531, 51.51256], [0.07571, 51.51252], [0.07596, 51.5125], [0.07634, 51.51247], [0.07693, 51.51243], [0.07773, 51.51237], [0.0781, 51.51234], [0.07829, 51.51233], [0.07844, 51.51233], [0.07859, 51.51235], [0.07878, 51.51234], [0.07904, 51.51232], [0.07908, 51.51231], [0.07924, 51.51229], [0.07933, 51.51227], [0.07942, 51.51223], [0.0795, 51.51218], [0.07956, 51.51213], [0.07963, 51.51203], [0.07971, 51.5119], [0.07979, 51.51177], [0.07989, 51.51162], [0.07999, 51.51146], [0.08009, 51.51132]]}}, {"type": "Feature", "properties": {"osm_id": "4598753", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07409, 51.51246], [0.07417, 51.51252], [0.07435, 51.51263], [0.07447, 51.51267], [0.07459, 51.51271], [0.0747, 51.51273], [0.07483, 51.51274], [0.07496, 51.51274], [0.07509, 51.51273], [0.07562, 51.5127], [0.07618, 51.51265], [0.07696, 51.51259], [0.07779, 51.51253], [0.07841, 51.51248], [0.07867, 51.51247], [0.07878, 51.51247], [0.07892, 51.51248], [0.07905, 51.51247], [0.07916, 51.51244], [0.07927, 51.51241], [0.07935, 51.51236], [0.07946, 51.51228], [0.07956, 51.51213]]}}, {"type": "Feature", "properties": {"osm_id": "4598754", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07435, 51.51263], [0.07451, 51.51272], [0.07466, 51.51277], [0.07486, 51.51281], [0.07504, 51.51281], [0.07521, 51.5128], [0.07544, 51.51279], [0.07559, 51.5128], [0.07589, 51.51282], [0.07604, 51.51283], [0.07614, 51.51284], [0.07624, 51.51283], [0.07706, 51.51277], [0.07784, 51.51272], [0.07851, 51.51266], [0.07891, 51.51263]]}}, {"type": "Feature", "properties": {"osm_id": "4598755", "railway": "light_rail"}, "geometry": {"type": "LineString", "coordinates": [[0.07509, 51.51273], [0.07523, 51.51274], [0.07534, 51.51275], [0.07542, 51.51275], [0.07562, 51.51273], [0.07577, 51.51274], [0.07587, 51.51275], [0.07617, 51.51273], [0.07697, 51.51267], [0.07777, 51.51261], [0.07819, 51.51258], [0.07836, 51.51255], [0.07851, 51.51251], [0.07892, 51.51248]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4598858", "railway": "light_rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.04153, 51.5039], [0.04136, 51.50387], [0.04122, 51.50383], [0.04111, 51.5038], [0.04099, 51.50374], [0.04089, 51.50369], [0.04069, 51.50357], [0.04019, 51.50327], [0.03983, 51.50305], [0.03953, 51.50285], [0.03924, 51.50269], [0.03903, 51.50261], [0.03882, 51.50254], [0.03858, 51.50248], [0.03841, 51.50244], [0.03822, 51.50241], [0.03797, 51.50238], [0.03771, 51.50237], [0.03733, 51.50237], [0.03709, 51.50238], [0.03677, 51.5024], [0.03635, 51.50242], [0.03557, 51.5024], [0.03501, 51.50236], [0.03453, 51.50231], [0.03432, 51.50229], [0.03408, 51.50228], [0.03375, 51.50226], [0.0327, 51.50221], [0.03227, 51.50219], [0.03187, 51.50218], [0.03104, 51.50214], [0.02938, 51.50206], [0.02859, 51.50204], [0.02805, 51.50204], [0.02751, 51.50206], [0.02697, 51.50208], [0.02619, 51.50215], [0.02584, 51.50219], [0.02539, 51.50225]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599078", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29996, 55.79157], [-4.29935, 55.79165], [-4.29874, 55.79172], [-4.29808, 55.79182], [-4.29742, 55.79191], [-4.29704, 55.79198], [-4.2965, 55.79209], [-4.2957, 55.79224], [-4.29413, 55.79261], [-4.2937, 55.79272], [-4.29324, 55.79285]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599260", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.26947, 55.81384], [-4.26903, 55.8141]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599262", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.26201, 55.81721], [-4.26155, 55.81733], [-4.26122, 55.81746], [-4.26068, 55.81771], [-4.26022, 55.81797]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599264", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.26022, 55.81797], [-4.25974, 55.81826]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599266", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.25974, 55.81826], [-4.2591, 55.81876], [-4.2589, 55.81896], [-4.25868, 55.81926], [-4.25858, 55.81949], [-4.2585, 55.81969], [-4.25846, 55.8199], [-4.25845, 55.82013]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599269", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.27154, 55.81245], [-4.27128, 55.81265]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "0", "osm_id": "4599492", "railway": "light_rail", "voltage": "1500"}, "geometry": {"type": "LineString", "coordinates": [[-1.62047, 55.01179], [-1.62131, 55.0119]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599493", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.43085, 55.78154], [-4.42997, 55.78197], [-4.42905, 55.78234]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599496", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.40492, 55.78674], [-4.40414, 55.78683], [-4.40355, 55.78687], [-4.40282, 55.7869], [-4.40187, 55.78689], [-4.40128, 55.78686], [-4.40078, 55.78681], [-4.40032, 55.78677], [-4.39983, 55.7867], [-4.39877, 55.78648], [-4.39827, 55.78636]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599498", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.34853, 55.78838], [-4.34729, 55.78841], [-4.34708, 55.78841]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599499", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.34708, 55.78841], [-4.3458, 55.78846], [-4.3444, 55.78853], [-4.34356, 55.7886], [-4.34274, 55.7887], [-4.34159, 55.7889], [-4.34093, 55.78907], [-4.34084, 55.78909], [-4.34007, 55.7893], [-4.33661, 55.79028], [-4.3361, 55.79041], [-4.33555, 55.79054]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599504", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.33555, 55.79054], [-4.3351, 55.79062], [-4.33424, 55.79076], [-4.33396, 55.79079], [-4.33335, 55.79084], [-4.33278, 55.79087], [-4.33213, 55.79088]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4599508", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.3079, 55.7907], [-4.30718, 55.79088], [-4.30647, 55.79104], [-4.30558, 55.7912], [-4.30537, 55.79122], [-4.30446, 55.7913], [-4.30222, 55.79141], [-4.30132, 55.79146], [-4.30052, 55.79152], [-4.30035, 55.79154]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4602384", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.27446, 55.83787], [-4.27527, 55.83778], [-4.276, 55.83771], [-4.2775, 55.83756], [-4.27809, 55.83751], [-4.27845, 55.83749], [-4.27882, 55.83749], [-4.28019, 55.83752], [-4.28219, 55.83758], [-4.28333, 55.83761], [-4.2861, 55.83768], [-4.28683, 55.83771], [-4.28737, 55.83775], [-4.28754, 55.83775], [-4.28773, 55.83776], [-4.28797, 55.83775], [-4.28817, 55.83774], [-4.28837, 55.83773], [-4.28857, 55.83771], [-4.28882, 55.83768], [-4.28896, 55.83766], [-4.28914, 55.83763], [-4.28927, 55.83761], [-4.28949, 55.83757], [-4.28969, 55.83752], [-4.28988, 55.83747], [-4.29, 55.83743], [-4.29017, 55.83738], [-4.2904, 55.8373], [-4.29066, 55.8372], [-4.29077, 55.83715], [-4.2915, 55.83683], [-4.29202, 55.83656], [-4.29246, 55.8363], [-4.29291, 55.83598], [-4.29308, 55.83581], [-4.29325, 55.83563], [-4.29336, 55.83551], [-4.29348, 55.83536], [-4.29358, 55.83521], [-4.29362, 55.83514], [-4.29368, 55.83505], [-4.29377, 55.83488], [-4.29384, 55.83472], [-4.29389, 55.83458]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4602386", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29296, 55.83077], [-4.29286, 55.83055]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4603715", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.67635, 53.18292], [-0.67545, 53.18325], [-0.67455, 53.18358], [-0.67253, 53.18425], [-0.67167, 53.18451], [-0.67081, 53.18476], [-0.67016, 53.18493], [-0.66955, 53.1851], [-0.66897, 53.18525], [-0.66784, 53.18551], [-0.66682, 53.18573], [-0.66606, 53.18588], [-0.66531, 53.18602], [-0.66441, 53.1862], [-0.66351, 53.18635], [-0.66258, 53.18647], [-0.66019, 53.18679], [-0.65731, 53.18714], [-0.65151, 53.18789], [-0.65068, 53.188]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4604499", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.05513, 51.70363], [-4.05536, 51.70366], [-4.05557, 51.7037], [-4.05578, 51.70374], [-4.05599, 51.70379]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4604607", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.24871, 55.92415], [-3.24988, 55.92359], [-3.25107, 55.92301]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4604611", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.25107, 55.92301], [-3.25201, 55.92255], [-3.25297, 55.9221], [-3.25454, 55.92148], [-3.2562, 55.92092], [-3.25727, 55.92061], [-3.25835, 55.92034], [-3.26023, 55.91989], [-3.26159, 55.91958]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4604617", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.23293, 55.94221], [-3.23333, 55.94211], [-3.23366, 55.94202], [-3.23382, 55.94198]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4604662", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83726, 52.44116], [-2.83732, 52.44138], [-2.83751, 52.44199], [-2.83767, 52.44249]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4604962", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.11734, 51.89171], [-1.12097, 51.89316]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4604963", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12097, 51.89316], [-1.12123, 51.89325]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4605483", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.04517, 52.21464], [-1.05552, 52.21874]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4605484", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.06268, 52.22156], [-1.06692, 52.22324], [-1.06966, 52.22432], [-1.0705, 52.22467], [-1.07118, 52.22499], [-1.07188, 52.22535], [-1.07249, 52.22572], [-1.07312, 52.22614], [-1.07375, 52.22662], [-1.07423, 52.22705], [-1.07454, 52.22736]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4605485", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.07546, 52.22842], [-1.07558, 52.22859], [-1.0759, 52.22907], [-1.07623, 52.22958], [-1.07707, 52.23085]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4606341", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.36682, 55.84192], [-4.36538, 55.84223], [-4.36485, 55.84234], [-4.3644, 55.84244], [-4.36365, 55.8426]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4606474", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.21401, 53.42431], [-2.21391, 53.4245]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4606484", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.21488, 53.4227], [-2.21479, 53.42287]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4606991", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.13234, 51.67038], [-4.13173, 51.67034]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607066", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.05484, 51.70361], [-4.05174, 51.70341]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607068", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.06937, 51.69859], [-4.06892, 51.69891], [-4.06878, 51.69901], [-4.06847, 51.69922], [-4.06813, 51.69943], [-4.06714, 51.70004], [-4.06612, 51.70064], [-4.0655, 51.70102], [-4.06507, 51.70128], [-4.06467, 51.70152], [-4.06426, 51.70175], [-4.06398, 51.70191], [-4.06367, 51.70207], [-4.06341, 51.7022], [-4.06311, 51.70233], [-4.06277, 51.70248], [-4.06246, 51.7026], [-4.06212, 51.70273], [-4.06185, 51.70282], [-4.06155, 51.70291], [-4.06108, 51.70305], [-4.06075, 51.70314], [-4.06035, 51.70323], [-4.05989, 51.70333]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607682", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.0476, 53.49078], [-2.04821, 53.48983], [-2.04854, 53.4894], [-2.04887, 53.48905], [-2.04922, 53.4887], [-2.04963, 53.48835]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607683", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.05023, 53.48789], [-2.05098, 53.48742], [-2.05181, 53.48702], [-2.0532, 53.48644], [-2.05461, 53.48603], [-2.05583, 53.48578], [-2.05631, 53.48568], [-2.05827, 53.48539]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607684", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.03973, 53.51965], [-2.04029, 53.51909], [-2.04054, 53.51878], [-2.04088, 53.51833], [-2.04131, 53.51754], [-2.04155, 53.51673], [-2.04163, 53.51623], [-2.04162, 53.51567], [-2.04145, 53.51488], [-2.04138, 53.51455], [-2.04127, 53.51414], [-2.04105, 53.5134], [-2.04086, 53.51251], [-2.04077, 53.51172], [-2.04075, 53.51124], [-2.04079, 53.51071], [-2.04086, 53.51032], [-2.04096, 53.50995], [-2.04109, 53.50962], [-2.04123, 53.50939]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607685", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.04123, 53.50939], [-2.04225, 53.50794]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607686", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.94034, 53.60398], [-1.94056, 53.60395], [-1.94086, 53.60389], [-1.94124, 53.6038], [-1.94162, 53.6037], [-1.94197, 53.60358], [-1.94228, 53.60345]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607687", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.94228, 53.60345], [-1.94259, 53.60329], [-1.94291, 53.60307], [-1.94318, 53.6029], [-1.94361, 53.60262], [-1.98889, 53.57068], [-1.98925, 53.57043], [-1.98959, 53.57015], [-1.98993, 53.56985]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4607735", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.72969, 53.68021], [-1.72786, 53.68075], [-1.72659, 53.68104], [-1.7256, 53.68121], [-1.72468, 53.68129], [-1.72365, 53.68132], [-1.72255, 53.68126]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4607963", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.27188, 53.48059], [-2.27255, 53.48115], [-2.27358, 53.48206], [-2.2743, 53.4828], [-2.27493, 53.48348], [-2.27529, 53.484]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4608092", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.28559, 55.79609], [-4.28571, 55.79618], [-4.28589, 55.7963]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4608093", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.28589, 55.7963], [-4.28683, 55.79697]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4608404", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.92751, 50.72431], [-1.92716, 50.72436]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4611076", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.42805, 55.84741], [-4.42739, 55.84739], [-4.42627, 55.84737]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4611077", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.4396, 55.84714], [-4.43933, 55.84718]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4613532", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.09202, 51.79677], [-0.09198, 51.79649], [-0.09194, 51.79592], [-0.09183, 51.79474]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4614736", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.40631, 55.84017], [-4.40595, 55.84045], [-4.40577, 55.8406], [-4.4056, 55.84073], [-4.40545, 55.84084], [-4.40526, 55.84096], [-4.40506, 55.84107], [-4.40483, 55.84119], [-4.40459, 55.8413], [-4.4045, 55.84134], [-4.40433, 55.8414], [-4.40409, 55.84149], [-4.40382, 55.84158], [-4.40347, 55.84168], [-4.40324, 55.84173], [-4.40296, 55.84179], [-4.4026, 55.84185], [-4.40231, 55.84189], [-4.40202, 55.84192], [-4.40077, 55.84201], [-4.39922, 55.8421], [-4.39864, 55.84214], [-4.39821, 55.84217], [-4.39695, 55.84224], [-4.39659, 55.84225], [-4.39619, 55.84224], [-4.39581, 55.84223], [-4.39538, 55.84221], [-4.39501, 55.84217], [-4.39464, 55.84213], [-4.39415, 55.84207], [-4.39371, 55.842], [-4.39324, 55.84192], [-4.39287, 55.84184], [-4.39247, 55.84175], [-4.392, 55.84163], [-4.3915, 55.84148], [-4.39106, 55.84134], [-4.3906, 55.84117], [-4.39008, 55.84098], [-4.3894, 55.84071], [-4.38892, 55.84053], [-4.38824, 55.84026], [-4.38772, 55.84006], [-4.38701, 55.83978], [-4.38638, 55.83953], [-4.38589, 55.83936], [-4.38545, 55.83921], [-4.385, 55.83909], [-4.3845, 55.83896], [-4.38361, 55.83879], [-4.38304, 55.8387], [-4.3826, 55.83865], [-4.38216, 55.8386], [-4.38165, 55.83856], [-4.38108, 55.83854], [-4.38056, 55.83853], [-4.38007, 55.83852], [-4.3796, 55.83854], [-4.37912, 55.83857], [-4.37864, 55.8386], [-4.37807, 55.83866], [-4.37715, 55.83879], [-4.37664, 55.83888], [-4.37622, 55.83897], [-4.37582, 55.83906], [-4.37533, 55.83919], [-4.37491, 55.83931], [-4.37451, 55.83945], [-4.37412, 55.83959], [-4.37363, 55.83977], [-4.37312, 55.83999], [-4.37258, 55.84023], [-4.37217, 55.8404], [-4.3718, 55.84056], [-4.37147, 55.8407], [-4.37108, 55.84084], [-4.3707, 55.84097], [-4.37035, 55.84109], [-4.37002, 55.84119], [-4.36965, 55.84129], [-4.36928, 55.84138], [-4.36887, 55.84148], [-4.3684, 55.84158], [-4.36682, 55.84192]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4614746", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.26128, 55.82653], [-4.26128, 55.82642], [-4.26129, 55.82632], [-4.26128, 55.8262], [-4.26126, 55.82607], [-4.26124, 55.82593], [-4.26122, 55.8258], [-4.2612, 55.82573], [-4.26118, 55.82565], [-4.26114, 55.82554], [-4.26109, 55.8254], [-4.26095, 55.82514], [-4.26076, 55.82489]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4614784", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.69602, 50.4331], [-3.69725, 50.43307], [-3.69783, 50.43305], [-3.69827, 50.43301], [-3.69869, 50.43296], [-3.69903, 50.43291], [-3.69997, 50.43273]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4615953", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.59432, 50.52231], [-3.59382, 50.52195], [-3.59357, 50.52175], [-3.59325, 50.52147], [-3.59283, 50.52105]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4617335", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.99041, 52.58016], [-1.98994, 52.58061], [-1.98943, 52.58103], [-1.98909, 52.58126], [-1.98881, 52.58143], [-1.98822, 52.58185], [-1.98792, 52.58204], [-1.9876, 52.58225], [-1.98742, 52.58236], [-1.9872, 52.58251], [-1.98693, 52.58276], [-1.98653, 52.58307]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4617336", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.96725, 52.73361], [-1.96694, 52.73396], [-1.96672, 52.73422], [-1.96627, 52.73499], [-1.96611, 52.73524], [-1.96591, 52.73558], [-1.96559, 52.73619], [-1.96498, 52.73733], [-1.96465, 52.73798], [-1.9644, 52.73849], [-1.96409, 52.73903], [-1.96383, 52.73957]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4619400", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.87167, 51.14495], [0.87229, 51.14469], [0.87267, 51.14453], [0.8732, 51.14429], [0.87377, 51.14401], [0.87467, 51.14356]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4622371", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.0072, 51.58526], [-0.00699, 51.58533], [-0.00669, 51.58541], [-0.00642, 51.58548], [-0.00616, 51.58553], [-0.0057, 51.58562], [-0.00533, 51.58569], [-0.00497, 51.58576], [-0.00463, 51.58581], [-0.00438, 51.58586], [-0.00405, 51.58594], [-0.00385, 51.586], [-0.00353, 51.58611], [-0.0032, 51.58624], [-0.00289, 51.58636]]}}, {"type": "Feature", "properties": {"osm_id": "4623027", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.42604, 53.57456], [-2.42619, 53.57475], [-2.42627, 53.57489], [-2.42634, 53.57507], [-2.42637, 53.57525], [-2.42636, 53.57544], [-2.42633, 53.57565], [-2.42621, 53.57594]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4623028", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.40974, 53.62775], [-2.40989, 53.62797]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4623245", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13667, 52.58215], [-1.13623, 52.58215], [-1.13517, 52.5821], [-1.13417, 52.58209], [-1.13291, 52.58217], [-1.1318, 52.58231], [-1.13132, 52.58239], [-1.12929, 52.58272], [-1.12886, 52.58279], [-1.12809, 52.5829], [-1.12776, 52.58293], [-1.12735, 52.58294], [-1.12695, 52.58293], [-1.12643, 52.58289], [-1.12609, 52.58285], [-1.12577, 52.58279], [-1.12555, 52.58274], [-1.12523, 52.58269], [-1.12493, 52.58259], [-1.12443, 52.58241], [-1.12412, 52.58225], [-1.12387, 52.5821], [-1.12357, 52.58185]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4625354", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.65038, 51.25399], [0.64883, 51.25484], [0.64807, 51.25526], [0.64729, 51.25568]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627373", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16241, 55.92915], [-3.16204, 55.92904]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627374", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16204, 55.92904], [-3.16192, 55.92901], [-3.16169, 55.92895], [-3.16132, 55.92887], [-3.16112, 55.92883], [-3.16094, 55.9288]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627375", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-3.16094, 55.9288], [-3.1607, 55.92876], [-3.16047, 55.92874]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627777", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.80677, 53.63581], [-2.80683, 53.63575]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627778", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.80631, 53.6363], [-2.80677, 53.63581]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627779", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.78455, 53.6607], [-2.78793, 53.6572], [-2.78983, 53.65523], [-2.79078, 53.65422], [-2.79392, 53.65089], [-2.79467, 53.65005], [-2.79731, 53.6471], [-2.80249, 53.64088], [-2.80631, 53.6363]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4627780", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.78325, 53.66206], [-2.78339, 53.6619]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628310", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28988, 51.93743], [-1.28985, 51.93769]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628311", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28985, 51.93769], [-1.28984, 51.93786], [-1.28962, 51.93914], [-1.28936, 51.94042], [-1.28881, 51.94293], [-1.28861, 51.9438], [-1.28842, 51.94464], [-1.28806, 51.9463]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628312", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.28806, 51.9463], [-1.28798, 51.94665], [-1.28788, 51.94707]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628358", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.71787, 53.57811], [-2.71763, 53.57802], [-2.71736, 53.5779], [-2.71714, 53.5778], [-2.71691, 53.57769], [-2.71668, 53.57758], [-2.71647, 53.57747], [-2.71607, 53.57725], [-2.71565, 53.57697], [-2.71527, 53.57669], [-2.71494, 53.5764], [-2.71462, 53.57612], [-2.71433, 53.57578], [-2.71418, 53.57561], [-2.71404, 53.57541], [-2.71394, 53.57524], [-2.71383, 53.57504], [-2.71365, 53.57464], [-2.71355, 53.57435], [-2.71348, 53.57404], [-2.71343, 53.57376], [-2.71341, 53.57345], [-2.71333, 53.57236], [-2.7133, 53.57183], [-2.71328, 53.57156], [-2.71324, 53.57126], [-2.71319, 53.57104], [-2.71312, 53.57081], [-2.71302, 53.5706], [-2.7129, 53.57037], [-2.71262, 53.56991], [-2.71245, 53.56966], [-2.71224, 53.5694], [-2.71205, 53.56921], [-2.7118, 53.56899], [-2.71157, 53.56879], [-2.71129, 53.56857], [-2.71064, 53.56811], [-2.70996, 53.56763], [-2.70983, 53.56753], [-2.70971, 53.56745], [-2.70907, 53.56699], [-2.70843, 53.56654], [-2.70747, 53.56585], [-2.7065, 53.56517], [-2.70537, 53.56436], [-2.70484, 53.56397], [-2.70425, 53.56355], [-2.70374, 53.56321], [-2.70314, 53.56285], [-2.70235, 53.5624], [-2.70156, 53.562], [-2.70073, 53.56159]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628359", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.66072, 53.55398], [-2.65964, 53.55366], [-2.65856, 53.55333], [-2.65802, 53.55316], [-2.65748, 53.55298], [-2.65643, 53.55262], [-2.65515, 53.55214], [-2.65455, 53.55191], [-2.65395, 53.55167], [-2.64883, 53.54946], [-2.64628, 53.54836], [-2.64375, 53.54727]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628360", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.66142, 53.55417], [-2.66072, 53.55398]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628361", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.6616, 53.55422], [-2.66142, 53.55417]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628362", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.6971, 53.56023], [-2.69496, 53.55965]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628363", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.69952, 53.56107], [-2.69834, 53.56063], [-2.69771, 53.56043], [-2.6971, 53.56023]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628364", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.70013, 53.56133], [-2.69952, 53.56107]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628367", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.71828, 53.57828], [-2.71787, 53.57811]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628371", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.88084, 53.56962], [-2.87996, 53.57039], [-2.8792, 53.571], [-2.87775, 53.57218], [-2.87627, 53.57334], [-2.87467, 53.57438], [-2.87303, 53.5754], [-2.87135, 53.5764], [-2.86957, 53.57737], [-2.86719, 53.57867], [-2.86485, 53.57999], [-2.85996, 53.58297], [-2.85855, 53.58385], [-2.85718, 53.58471], [-2.85146, 53.58864], [-2.84586, 53.59295], [-2.84061, 53.59737], [-2.83724, 53.60047]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628372", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83699, 53.6007], [-2.83724, 53.60047]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628373", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83329, 53.60451], [-2.83456, 53.60319]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628374", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.83456, 53.60319], [-2.83538, 53.60234]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628377", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.82039, 53.61969], [-2.83037, 53.60774]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4628378", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.81751, 53.62301], [-2.82039, 53.61969]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4628753", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01895, 51.58302], [-0.0182, 51.5831], [-0.01746, 51.58319], [-0.01543, 51.5834], [-0.01217, 51.58377], [-0.01188, 51.5838], [-0.01171, 51.58383], [-0.0114, 51.58388]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4628754", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.03135, 51.58144], [-0.03099, 51.58152], [-0.03052, 51.58163], [-0.02997, 51.58174], [-0.02937, 51.58185], [-0.02874, 51.58194], [-0.02831, 51.58199]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4630185", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.90111, 53.78745], [-2.90003, 53.78786], [-2.89939, 53.78803], [-2.89882, 53.78816], [-2.89825, 53.78825], [-2.89761, 53.78833], [-2.89694, 53.78837], [-2.89633, 53.78837], [-2.89569, 53.78835], [-2.89516, 53.78831], [-2.89441, 53.78823]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4631455", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.96339, 51.86565], [-4.96268, 51.86434], [-4.96225, 51.86381]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4631456", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.96225, 51.86381], [-4.96036, 51.86222], [-4.95918, 51.86156], [-4.95803, 51.86109], [-4.95651, 51.86067], [-4.95469, 51.86036], [-4.95216, 51.86021], [-4.94979, 51.86034]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633408", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.24505, 55.92595], [-3.24557, 55.9257]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633409", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.24557, 55.9257], [-3.24715, 55.92491], [-3.24871, 55.92415]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633410", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.2621, 55.91946], [-3.26325, 55.91919], [-3.26444, 55.91891], [-3.26503, 55.91876], [-3.26545, 55.91867]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633411", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.26159, 55.91958], [-3.2621, 55.91946]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633545", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.6394, 53.54747], [-2.63894, 53.54685], [-2.63839, 53.54627], [-2.63771, 53.5457]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633546", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.63951, 53.54765], [-2.6394, 53.54747]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633550", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.62976, 53.54207], [-2.62888, 53.54167], [-2.62832, 53.54139]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633551", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.6339, 53.54368], [-2.63205, 53.54297]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633552", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.64032, 53.55168], [-2.6402, 53.54964], [-2.6401, 53.5491], [-2.63993, 53.54857], [-2.63978, 53.54814], [-2.63951, 53.54765]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633553", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.64034, 53.55189], [-2.64032, 53.55168]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633554", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.64053, 53.55651], [-2.64034, 53.55189]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633555", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.64054, 53.55664], [-2.64053, 53.55651]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4633969", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.91931, 52.19337], [-0.91986, 52.19469]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4636444", "railway": "subway", "voltage": "630"}, "geometry": {"type": "LineString", "coordinates": [[-0.25365, 51.52214], [-0.25312, 51.52191], [-0.2528, 51.52172], [-0.25248, 51.52151], [-0.25224, 51.52134], [-0.25179, 51.52099], [-0.25059, 51.51979]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4638774", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.77154, 54.13094], [-2.77159, 54.13113], [-2.77161, 54.13122], [-2.77163, 54.13134], [-2.77162, 54.13143], [-2.77162, 54.1315], [-2.77159, 54.13162], [-2.77155, 54.13174], [-2.77149, 54.13188], [-2.7714, 54.13208], [-2.77129, 54.13225], [-2.77117, 54.13244], [-2.77107, 54.13256], [-2.77096, 54.13265], [-2.77082, 54.13275], [-2.77064, 54.13285]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4638776", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.77624, 54.13545], [-2.77474, 54.135], [-2.77301, 54.13447], [-2.77198, 54.13416]]}}, {"type": "Feature", "properties": {"osm_id": "4640002", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13685, 51.88207], [-1.13634, 51.8818], [-1.13612, 51.88159], [-1.13592, 51.88124], [-1.13588, 51.88089]]}}, {"type": "Feature", "properties": {"osm_id": "4640004", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13893, 51.8828], [-1.13792, 51.88239], [-1.13685, 51.88207], [-1.13621, 51.88185], [-1.13594, 51.88163], [-1.13568, 51.88127], [-1.13557, 51.8809]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4640985", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.2503, 55.93832], [-3.25044, 55.93829]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4641313", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.03477, 51.69241], [-0.03403, 51.6927]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4641961", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.92224, 52.20195], [-0.9223, 52.2026]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4641964", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.91922, 52.19315], [-0.91931, 52.19337]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4642317", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.92893, 51.69273], [-4.9272, 51.69244], [-4.92682, 51.69234], [-4.9258, 51.69206]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4642322", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.91843, 51.68367], [-4.91824, 51.68333], [-4.91801, 51.68298], [-4.9174, 51.68239], [-4.91683, 51.68191], [-4.9163, 51.68161], [-4.91368, 51.68045]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4643425", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.81238, 54.37226], [-2.81181, 54.37197], [-2.81082, 54.37148], [-2.80941, 54.37084], [-2.80674, 54.36971], [-2.80657, 54.36964], [-2.80624, 54.3695], [-2.80472, 54.36877], [-2.8028, 54.36782], [-2.80069, 54.36657], [-2.79933, 54.36575], [-2.79809, 54.36513], [-2.79661, 54.36455], [-2.79573, 54.36427], [-2.79483, 54.364], [-2.79408, 54.3638], [-2.7931, 54.36358], [-2.79212, 54.36339], [-2.79111, 54.36323], [-2.7893, 54.36299], [-2.78676, 54.36264], [-2.78451, 54.36232], [-2.78259, 54.36204], [-2.77892, 54.36151], [-2.77807, 54.36136], [-2.77734, 54.36119], [-2.7765, 54.36097], [-2.77582, 54.36073], [-2.77522, 54.36051], [-2.77454, 54.3602], [-2.77349, 54.35968], [-2.77296, 54.35933]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4644491", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.9258, 51.69206], [-4.92459, 51.69158], [-4.9233, 51.69093], [-4.92176, 51.68976], [-4.92102, 51.68888], [-4.92056, 51.68802], [-4.92022, 51.68729]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4644492", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.92022, 51.68729], [-4.91843, 51.68367]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647087", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08013, 51.46189], [-0.08039, 51.46156]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647089", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08039, 51.46156], [-0.08103, 51.46081]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647293", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.08833, 51.45418], [-0.08852, 51.45407], [-0.08871, 51.45397]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647294", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09061, 51.45285], [-0.09002, 51.45322], [-0.08871, 51.45397]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647295", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.09105, 51.4526], [-0.09061, 51.45285]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647296", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10044, 51.45119], [-0.10054, 51.45141], [-0.10073, 51.45175], [-0.10077, 51.45179]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647297", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10139, 51.4526], [-0.1012, 51.45241]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4647298", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10842, 51.45925], [-0.10886, 51.45964], [-0.10939, 51.46007], [-0.11114, 51.46151], [-0.11154, 51.46182]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4649541", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.41914, 53.24044], [-1.41956, 53.23885]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4649542", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.4206, 53.23408], [-1.42065, 53.2339]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4649673", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.42131, 53.23087], [-1.42139, 53.23021]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4649703", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.42028, 53.22045], [-1.42023, 53.2203]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4652231", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.0538, 51.47916], [-0.05402, 51.47883], [-0.05418, 51.4786], [-0.05436, 51.47829], [-0.05481, 51.47757], [-0.05506, 51.47717], [-0.05532, 51.47677], [-0.05547, 51.47653], [-0.05577, 51.47607], [-0.05601, 51.47569], [-0.0564, 51.47505], [-0.05689, 51.47423], [-0.05699, 51.47406], [-0.0571, 51.47389], [-0.05719, 51.47376], [-0.05728, 51.47363]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4658664", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.22382, 51.98174], [-0.21817, 51.98325], [-0.21724, 51.9835], [-0.21336, 51.98454], [-0.21155, 51.98502], [-0.21012, 51.9854], [-0.20854, 51.98583], [-0.20815, 51.98594], [-0.20787, 51.98602], [-0.20687, 51.98634], [-0.20592, 51.98669], [-0.20447, 51.98727], [-0.20378, 51.98756], [-0.20282, 51.98801], [-0.20173, 51.98856], [-0.20047, 51.9892], [-0.19982, 51.98951], [-0.19918, 51.98982], [-0.19858, 51.99008]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4661059", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.09437, 52.13742], [0.09257, 52.13673], [0.08998, 52.13571], [0.08839, 52.13505], [0.08704, 52.13444], [0.0865, 52.13418], [0.08555, 52.13371], [0.08429, 52.13304], [0.08237, 52.1319], [0.08098, 52.13099], [0.07975, 52.13011], [0.07859, 52.1292], [0.07698, 52.12782], [0.07557, 52.12663], [0.07458, 52.1259], [0.07363, 52.12525], [0.073, 52.12485], [0.07236, 52.12446], [0.07175, 52.1241], [0.07075, 52.12357], [0.06959, 52.123], [0.06862, 52.12256], [0.06789, 52.12226], [0.06742, 52.12206], [0.06676, 52.12183], [0.06599, 52.12153], [0.06513, 52.12125], [0.06425, 52.12098], [0.06333, 52.12071], [0.06227, 52.12042], [0.06091, 52.12008], [0.05981, 52.11986], [0.05853, 52.11962], [0.05674, 52.1193], [0.05613, 52.11918], [0.05601, 52.11916], [0.05578, 52.11912], [0.05536, 52.11904], [0.05469, 52.11891], [0.05196, 52.11841], [0.04892, 52.11784], [0.04536, 52.11718], [0.0426, 52.11666], [0.04068, 52.11631], [0.03762, 52.11574], [0.03678, 52.11559], [0.03484, 52.11523], [0.03377, 52.11503], [0.03319, 52.1149], [0.03272, 52.11478], [0.03222, 52.11463]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4661087", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.93307, 50.85106], [-0.92546, 50.85023], [-0.92393, 50.85005], [-0.91794, 50.8494], [-0.9155, 50.84913], [-0.9101, 50.84854], [-0.90829, 50.84833], [-0.90725, 50.84822], [-0.905, 50.84797], [-0.90315, 50.84778], [-0.90219, 50.84769], [-0.90163, 50.84764], [-0.90078, 50.84759], [-0.89983, 50.84754], [-0.8986, 50.84747], [-0.89755, 50.84739], [-0.89631, 50.84728], [-0.89277, 50.84697], [-0.89177, 50.84688], [-0.8881, 50.84655], [-0.88492, 50.84626], [-0.88365, 50.84614], [-0.88273, 50.84606], [-0.8742, 50.84528], [-0.86511, 50.84447], [-0.86252, 50.84423], [-0.85265, 50.84335]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4662387", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.61376, 51.19051], [-0.61317, 51.19077]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663598", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14486, 52.03236], [1.14516, 52.03259]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663599", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14516, 52.03259], [1.1458, 52.03313], [1.1461, 52.03339], [1.14642, 52.03367], [1.14673, 52.03402], [1.14702, 52.03432], [1.14731, 52.03462]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663600", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14731, 52.03462], [1.14744, 52.03477]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663601", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14744, 52.03477], [1.14768, 52.03506], [1.1479, 52.03537], [1.14812, 52.03568], [1.14823, 52.03584], [1.14833, 52.03601], [1.14869, 52.03662], [1.14884, 52.03694], [1.14892, 52.0371], [1.149, 52.03728], [1.14908, 52.03743], [1.14912, 52.03751], [1.14916, 52.03759]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663602", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14916, 52.03759], [1.1492, 52.03768]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663603", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.12985, 52.02597], [1.13609, 52.02829], [1.14037, 52.02986], [1.14122, 52.03022], [1.14203, 52.0306], [1.1429, 52.03107], [1.14371, 52.03155], [1.14429, 52.03195], [1.14486, 52.03236]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663604", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.12586, 52.02464], [1.12608, 52.02471]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663620", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.1259, 52.06253], [1.12595, 52.06313], [1.12601, 52.06349], [1.12604, 52.06369], [1.12605, 52.06381]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663621", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.12605, 52.06381], [1.12616, 52.06419]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663622", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.12616, 52.06419], [1.12635, 52.06474], [1.12651, 52.06516], [1.1273, 52.06654]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663623", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.1273, 52.06654], [1.1276, 52.06693]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663624", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.1276, 52.06693], [1.12806, 52.06742], [1.12952, 52.06882]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663625", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.12952, 52.06882], [1.13002, 52.06925]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663626", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.13002, 52.06925], [1.13057, 52.06968], [1.13256, 52.07103]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663627", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.13256, 52.07103], [1.133, 52.0713], [1.13346, 52.07161]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663628", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.13433, 52.07214], [1.13469, 52.07235]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663629", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.13346, 52.07161], [1.13433, 52.07214]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663638", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.18025, 52.05364], [1.17969, 52.05409], [1.17891, 52.05464], [1.17831, 52.05503], [1.17756, 52.05551]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663639", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.17506, 52.0574], [1.17462, 52.05782]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663650", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.20729, 52.03541], [1.20662, 52.03553], [1.20598, 52.03569], [1.20538, 52.03587], [1.2045, 52.03616], [1.20363, 52.03649]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4663651", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.2077, 52.03533], [1.20729, 52.03541]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663711", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.142, 52.051], [1.143, 52.05081], [1.14421, 52.05056]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663712", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.14173, 52.05105], [1.142, 52.051]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4663759", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.11765, 52.06431], [1.11752, 52.0644]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672389", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.23628, 52.02547], [1.2325, 52.02685], [1.22997, 52.02755]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672390", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.31795, 51.97747], [1.31673, 51.97816], [1.31647, 51.97831], [1.31603, 51.97855], [1.31461, 51.97934], [1.31367, 51.97986], [1.31256, 51.98048]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672479", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.97057, 50.91448], [0.97032, 50.91459], [0.97018, 50.91467], [0.97, 50.91479], [0.96995, 50.91483], [0.96983, 50.91493], [0.9697, 50.91506], [0.9696, 50.91518], [0.96951, 50.91534], [0.96945, 50.91549], [0.96941, 50.91566], [0.9694, 50.91581], [0.96942, 50.91597], [0.96946, 50.91614], [0.9695, 50.91623], [0.96957, 50.91636], [0.96967, 50.9165], [0.96976, 50.9166], [0.96992, 50.91674], [0.97007, 50.91686], [0.97027, 50.91698], [0.9704, 50.91704], [0.97058, 50.91712], [0.9708, 50.91719], [0.97101, 50.91725], [0.9713, 50.91731], [0.97223, 50.9175], [0.97252, 50.91756], [0.97274, 50.91761], [0.97298, 50.9177], [0.97318, 50.91779], [0.9734, 50.91792], [0.97351, 50.918], [0.97358, 50.91806], [0.97366, 50.91813], [0.9737, 50.91817], [0.9738, 50.91829], [0.97394, 50.9185], [0.97402, 50.91869], [0.97407, 50.91887], [0.97409, 50.91904], [0.97408, 50.9193], [0.97407, 50.9195], [0.97408, 50.91969]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672480", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.98062, 51.01649], [0.98169, 51.01736], [0.98347, 51.01882], [0.98561, 51.02061], [0.9871, 51.02184], [0.98804, 51.02269], [0.98841, 51.02307], [0.98881, 51.02363], [0.98917, 51.02408], [0.98952, 51.02447], [0.98988, 51.02475], [0.99047, 51.02521], [0.99055, 51.02528], [0.99081, 51.02548], [0.99091, 51.02556]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672481", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.9684, 51.00538], [0.96893, 51.00664], [0.9696, 51.00817], [0.97001, 51.00869], [0.97057, 51.00915], [0.97151, 51.00959], [0.97217, 51.00991], [0.97327, 51.0106], [0.97421, 51.01126], [0.97448, 51.01148], [0.97527, 51.01208], [0.97647, 51.01303], [0.97754, 51.01391], [0.97887, 51.01502], [0.97979, 51.0158], [0.98026, 51.0162], [0.98053, 51.01641]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672482", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.95377, 50.98548], [0.95384, 50.98555], [0.95398, 50.98573], [0.95417, 50.98597], [0.95459, 50.98641], [0.95476, 50.98659], [0.95481, 50.98665], [0.95508, 50.98697], [0.9554, 50.98736], [0.95548, 50.98747], [0.95578, 50.98786], [0.95612, 50.98836], [0.95758, 50.99045], [0.95836, 50.99179]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672483", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.96306, 50.95927], [0.96309, 50.95916], [0.96312, 50.95901], [0.96314, 50.95892], [0.96317, 50.95873], [0.9632, 50.95855], [0.96324, 50.95818], [0.96326, 50.95801], [0.96328, 50.95779], [0.96334, 50.95744], [0.96339, 50.95704], [0.96344, 50.95669], [0.96348, 50.95638], [0.96356, 50.9559], [0.96361, 50.95558], [0.96369, 50.95526], [0.96377, 50.95493], [0.96386, 50.95459], [0.96401, 50.95407], [0.96415, 50.95363], [0.96428, 50.95319], [0.96445, 50.9526], [0.96456, 50.95223], [0.96465, 50.9519], [0.96476, 50.95154], [0.96492, 50.95101], [0.96497, 50.95084], [0.96506, 50.95053], [0.96515, 50.95022], [0.96526, 50.94985], [0.9654, 50.94942], [0.96549, 50.94916], [0.96567, 50.94865], [0.96577, 50.94842], [0.96597, 50.94797], [0.9662, 50.94742], [0.96648, 50.94679], [0.96677, 50.94618], [0.96702, 50.94559], [0.96739, 50.94464], [0.96755, 50.94426], [0.96775, 50.94377], [0.96806, 50.94299], [0.96821, 50.94262], [0.9687, 50.94141], [0.96921, 50.94014], [0.96957, 50.93924], [0.96984, 50.93857], [0.96997, 50.93822], [0.97029, 50.93742], [0.97057, 50.93671], [0.97079, 50.93616], [0.97078, 50.9362], [0.97096, 50.93576], [0.9711, 50.93541], [0.97125, 50.93503], [0.97135, 50.93477], [0.97171, 50.93392], [0.97184, 50.93361], [0.97201, 50.93321], [0.97222, 50.93272], [0.97231, 50.9325], [0.97235, 50.93241], [0.97252, 50.93201], [0.97271, 50.93157], [0.97292, 50.93107], [0.9731, 50.93061], [0.9733, 50.93007], [0.97344, 50.92968], [0.97351, 50.92944], [0.97359, 50.92909], [0.97365, 50.92888], [0.97373, 50.92857], [0.97379, 50.92834], [0.97386, 50.92807], [0.97393, 50.92777], [0.97398, 50.92747], [0.974, 50.92727], [0.97402, 50.92695], [0.97404, 50.9265], [0.97404, 50.92614], [0.97399, 50.92569], [0.97392, 50.92516], [0.97384, 50.92457], [0.97378, 50.92403], [0.97376, 50.92354], [0.97375, 50.92301], [0.97377, 50.92237], [0.97379, 50.9222], [0.97386, 50.92151], [0.97394, 50.9209], [0.97402, 50.92035], [0.97407, 50.91986], [0.97408, 50.91969]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4672484", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[0.97408, 50.91969], [0.9741, 50.91951], [0.97411, 50.9193], [0.97413, 50.91895], [0.97416, 50.91862], [0.97419, 50.91831], [0.97422, 50.9177], [0.97426, 50.91723], [0.97432, 50.91634], [0.97437, 50.91576], [0.97435, 50.91562], [0.97432, 50.91545], [0.97419, 50.91519], [0.97406, 50.915], [0.97394, 50.91489], [0.97379, 50.91476], [0.97365, 50.91467], [0.97341, 50.91453], [0.97315, 50.91442], [0.97286, 50.91433], [0.97249, 50.91426], [0.97215, 50.91421], [0.97199, 50.91421], [0.97188, 50.91421], [0.97173, 50.91421], [0.9716, 50.91423], [0.97144, 50.91425], [0.97115, 50.9143], [0.97092, 50.91435], [0.97078, 50.9144], [0.97057, 50.91448]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675261", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11753, 51.43381], [-0.1173, 51.43396], [-0.11686, 51.43423], [-0.1164, 51.43449], [-0.11584, 51.4348], [-0.11539, 51.43502], [-0.11487, 51.43526], [-0.11404, 51.4356]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675262", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10618, 51.43889], [-0.10585, 51.43913]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675281", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10377, 51.44276], [-0.10397, 51.4432], [-0.10411, 51.44347], [-0.10425, 51.44378], [-0.10435, 51.44407], [-0.10442, 51.44433], [-0.10445, 51.44457], [-0.10445, 51.44481], [-0.10443, 51.445], [-0.1044, 51.44521], [-0.1043, 51.44554], [-0.10418, 51.44579], [-0.10404, 51.44604], [-0.10389, 51.44626], [-0.10367, 51.44651], [-0.10341, 51.44676], [-0.10315, 51.44697], [-0.10286, 51.44719], [-0.10208, 51.44774], [-0.10175, 51.44796]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675291", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10175, 51.44796], [-0.10152, 51.44813]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675292", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10152, 51.44813], [-0.10126, 51.44835], [-0.10106, 51.44853], [-0.10089, 51.44872], [-0.10074, 51.44892], [-0.10063, 51.44911], [-0.10051, 51.44931], [-0.10043, 51.44952], [-0.10036, 51.44972], [-0.10031, 51.44996], [-0.10029, 51.45021]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4675293", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.10029, 51.45021], [-0.10028, 51.45037]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4677010", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.63347, 51.26321], [0.63332, 51.26328]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4677048", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.74088, 53.149], [-0.73913, 53.14994], [-0.73785, 53.15062], [-0.73304, 53.15318], [-0.73146, 53.15401], [-0.73038, 53.15459], [-0.72781, 53.15597], [-0.72453, 53.15772], [-0.72119, 53.1595], [-0.71057, 53.16516], [-0.70794, 53.16656], [-0.70533, 53.16795], [-0.70337, 53.16899], [-0.7029, 53.16924], [-0.70242, 53.1695], [-0.68994, 53.17614], [-0.685, 53.17876], [-0.68452, 53.17902], [-0.68137, 53.18071], [-0.68, 53.18137], [-0.67886, 53.18188], [-0.67771, 53.18237], [-0.67635, 53.18292]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4677200", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.74922, 51.43593], [0.74936, 51.43604], [0.74952, 51.43615], [0.74972, 51.43628], [0.74994, 51.4364], [0.75022, 51.43653], [0.75036, 51.43659], [0.75054, 51.43666], [0.75076, 51.43673], [0.75091, 51.43678], [0.75103, 51.43681], [0.75142, 51.43691], [0.75186, 51.43701], [0.75225, 51.43709], [0.75262, 51.43717], [0.75291, 51.43724], [0.75331, 51.43736], [0.75367, 51.4375], [0.75399, 51.43765], [0.75429, 51.43783], [0.75455, 51.438], [0.7549, 51.43826], [0.75526, 51.43851], [0.75543, 51.43864], [0.7557, 51.43884], [0.75597, 51.43905], [0.75626, 51.43923], [0.75648, 51.43937], [0.75667, 51.4395], [0.75704, 51.43977], [0.75746, 51.44007], [0.75862, 51.44088]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4677202", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.75187, 51.3913], [0.75229, 51.39147], [0.75245, 51.39154], [0.75264, 51.39165], [0.75282, 51.39175], [0.75299, 51.39186], [0.75317, 51.39199], [0.75334, 51.39212], [0.7535, 51.39226], [0.75363, 51.39238], [0.75383, 51.39258], [0.75401, 51.39279], [0.75417, 51.39301], [0.75424, 51.39312], [0.75431, 51.39324], [0.75443, 51.3935], [0.75449, 51.39365], [0.75453, 51.39374], [0.7546, 51.39403], [0.75463, 51.39421], [0.75464, 51.39442], [0.75464, 51.39459], [0.7546, 51.39494], [0.75431, 51.39622], [0.75382, 51.39835], [0.75357, 51.39944], [0.75333, 51.40052], [0.75303, 51.40181], [0.75186, 51.40694], [0.75091, 51.41111], [0.7502, 51.41423], [0.75011, 51.41457], [0.75001, 51.41489]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4677225", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.72256, 51.34792], [0.72335, 51.34915], [0.72418, 51.35042], [0.72453, 51.35095], [0.72502, 51.35169], [0.72533, 51.35214], [0.72568, 51.35262], [0.72632, 51.3534], [0.7272, 51.35435], [0.72807, 51.3552], [0.72905, 51.35613], [0.73003, 51.35705], [0.73279, 51.35959], [0.73409, 51.3608], [0.73496, 51.36174], [0.73593, 51.36289], [0.73659, 51.36389], [0.73691, 51.36443], [0.73777, 51.36613], [0.73831, 51.36731], [0.73885, 51.36849], [0.73937, 51.36967], [0.73986, 51.3708], [0.7404, 51.37237], [0.74099, 51.37395], [0.74207, 51.37707], [0.74418, 51.38309], [0.74531, 51.38623], [0.74561, 51.38698], [0.74583, 51.38757], [0.74605, 51.38803], [0.74621, 51.38828], [0.7464, 51.38851], [0.74662, 51.38876], [0.74685, 51.38897], [0.7473, 51.38931], [0.74752, 51.38948], [0.74778, 51.38963], [0.74811, 51.38977]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4677228", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.74811, 51.38977], [0.7498, 51.39047]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4677447", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.23471, 55.85764], [-4.2349, 55.85762], [-4.23506, 55.8576], [-4.23521, 55.85758], [-4.2354, 55.85754]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4678066", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[0.15915, 52.20093], [0.1598, 52.20014]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4678642", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.52255, 51.61311], [0.52353, 51.61263], [0.52367, 51.61255]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4680595", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.1282, 51.89577], [-1.12838, 51.89583]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4680596", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.12838, 51.89583], [-1.12859, 51.89591]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4683429", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.09545, 51.75887], [-0.09571, 51.7579], [-0.09605, 51.75581], [-0.09624, 51.7542], [-0.09641, 51.75228]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684130", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.18233, 53.85563], [-2.18204, 53.85517], [-2.1818, 53.8547], [-2.18163, 53.85428]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684137", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.12021, 53.7277], [-2.12117, 53.72768]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684140", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.18732, 53.7473], [-2.18949, 53.74843], [-2.19057, 53.74901], [-2.19109, 53.7493], [-2.19158, 53.74959]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684141", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.18465, 53.7459], [-2.18732, 53.7473]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684142", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.94822, 53.7225], [-1.94925, 53.72342], [-1.95014, 53.7241], [-1.95074, 53.72451], [-1.95134, 53.72487], [-1.95261, 53.72558], [-1.95402, 53.7263], [-1.95519, 53.72681], [-1.95669, 53.72737], [-1.95725, 53.72755], [-1.95784, 53.72771]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4684143", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.11611, 53.7277], [-2.11659, 53.72774], [-2.11735, 53.72776], [-2.11832, 53.72776], [-2.12021, 53.7277]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686375", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.17332, 51.87507], [-0.17263, 51.87491], [-0.16863, 51.87404]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686376", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.16863, 51.87404], [-0.16844, 51.874]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686377", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19498, 51.8842], [-0.19415, 51.88284], [-0.1941, 51.88276]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686378", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.1941, 51.88276], [-0.19402, 51.88262]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686379", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19205, 51.88276], [-0.19072, 51.88185], [-0.18989, 51.8813], [-0.18938, 51.88096], [-0.18755, 51.87985], [-0.18568, 51.87877], [-0.18517, 51.8785], [-0.18447, 51.87817], [-0.18361, 51.8778], [-0.18285, 51.87749], [-0.18203, 51.87719], [-0.18104, 51.87686], [-0.17992, 51.87654], [-0.17877, 51.87625], [-0.17578, 51.87558], [-0.17367, 51.87514]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686380", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.19233, 51.88269], [-0.19245, 51.88277]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686855", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.12939, 52.02581], [1.12957, 52.02588], [1.12985, 52.02597]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4686856", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.12608, 52.02471], [1.12711, 52.02504], [1.12813, 52.02538], [1.12939, 52.02581]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4687037", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.24007, 52.02396], [1.23944, 52.02422], [1.23673, 52.0253]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4687038", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.23673, 52.0253], [1.23628, 52.02547]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4688551", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.25598, 51.15703], [1.25481, 51.158], [1.25415, 51.15856], [1.2536, 51.15901], [1.25291, 51.15957], [1.25224, 51.1601], [1.25158, 51.16063], [1.25108, 51.16104], [1.25086, 51.16122], [1.25033, 51.16162], [1.24982, 51.16198], [1.24943, 51.16223], [1.24901, 51.1625], [1.24837, 51.16285], [1.24795, 51.16306], [1.2459, 51.16401], [1.24508, 51.16438], [1.24461, 51.1646], [1.24391, 51.16492], [1.24327, 51.16524], [1.24295, 51.16544], [1.24247, 51.16573], [1.24214, 51.16597], [1.24164, 51.16631], [1.24143, 51.16648], [1.24121, 51.16667], [1.241, 51.16687], [1.24077, 51.16714], [1.24049, 51.16748], [1.24022, 51.16782]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4692072", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.89337, 53.35712], [-2.89451, 53.35714], [-2.90559, 53.35744]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4692073", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.90559, 53.35744], [-2.90672, 53.35746]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4693980", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.75242, 51.63241], [-0.75206, 51.63218], [-0.75162, 51.63188], [-0.75106, 51.63152]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4693981", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.75323, 51.63287], [-0.7528, 51.63264], [-0.75242, 51.63241]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4696259", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.5113, 52.16544], [-0.51111, 52.16526]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4696412", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.52191, 52.17851], [-0.52163, 52.17775], [-0.52111, 52.1765], [-0.52079, 52.17586], [-0.52043, 52.17525], [-0.51961, 52.17404], [-0.51902, 52.17327], [-0.51846, 52.17249], [-0.51788, 52.17173], [-0.51729, 52.17104], [-0.51655, 52.17026], [-0.51576, 52.16949], [-0.51354, 52.16746], [-0.5113, 52.16544]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4696413", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.52226, 52.17971], [-0.52191, 52.17851]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4696460", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.52511, 52.20138], [-0.52488, 52.19952], [-0.52466, 52.19769], [-0.52438, 52.195], [-0.52403, 52.19232]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4696462", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.52524, 52.20259], [-0.52511, 52.20138]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4698194", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.10924, 51.88771], [-1.1132, 51.88985], [-1.11734, 51.89171]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4698195", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.10909, 51.88762], [-1.10924, 51.88771]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4699554", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.17615, 53.56794], [-2.176, 53.56766]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4702055", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.78601, 53.98442], [-2.78425, 53.98221], [-2.78341, 53.9812], [-2.78225, 53.97972], [-2.78151, 53.9788], [-2.77964, 53.97644], [-2.77872, 53.97531], [-2.77725, 53.97347], [-2.77652, 53.97254], [-2.77582, 53.9716]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4702056", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.77582, 53.9716], [-2.77571, 53.97144]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4702106", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.41228, 54.10625], [-2.41202, 54.10617], [-2.41179, 54.10609], [-2.41134, 54.10591], [-2.41087, 54.10565], [-2.41045, 54.10539], [-2.40978, 54.10495]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4702107", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.41228, 54.10625], [-2.41261, 54.10632], [-2.41291, 54.10637], [-2.41319, 54.10642], [-2.41352, 54.10645], [-2.41393, 54.10647], [-2.41433, 54.10648], [-2.41533, 54.1065], [-2.41649, 54.10653], [-2.41831, 54.10661], [-2.42014, 54.10667], [-2.4211, 54.10671], [-2.42205, 54.10673], [-2.42266, 54.10671], [-2.42326, 54.10668], [-2.42396, 54.10662], [-2.42461, 54.10654], [-2.42556, 54.10638], [-2.42621, 54.10624], [-2.42684, 54.10608], [-2.42743, 54.10591], [-2.42801, 54.10573], [-2.42872, 54.10547], [-2.42928, 54.1053], [-2.42986, 54.10514], [-2.43039, 54.10501], [-2.43097, 54.10489], [-2.43165, 54.10479], [-2.43237, 54.10469], [-2.43294, 54.10464], [-2.43303, 54.10463], [-2.43375, 54.10457], [-2.43434, 54.10456], [-2.43494, 54.10455], [-2.43539, 54.10456], [-2.43589, 54.10458], [-2.43634, 54.1046], [-2.43685, 54.10466], [-2.4379, 54.10477], [-2.43892, 54.10489], [-2.44086, 54.10512], [-2.44282, 54.10535], [-2.44355, 54.10544], [-2.44432, 54.10555], [-2.44563, 54.10577], [-2.44934, 54.10654]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4704563", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.28612, 54.04151], [-2.28619, 54.04219], [-2.28639, 54.04392], [-2.28648, 54.0448], [-2.28657, 54.04563], [-2.28677, 54.04734], [-2.28686, 54.04819], [-2.28692, 54.04862], [-2.287, 54.04905], [-2.28716, 54.04949], [-2.28735, 54.04992], [-2.28775, 54.05057], [-2.2881, 54.05105], [-2.28851, 54.05151], [-2.28891, 54.05191], [-2.28932, 54.05226], [-2.29038, 54.05302], [-2.29141, 54.05374], [-2.29242, 54.05445]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4704564", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.29242, 54.05445], [-2.29306, 54.0549]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4705200", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.05895, 52.15023], [1.05882, 52.1503]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4705735", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.4731, 52.13167], [-0.47388, 52.13214]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4705736", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.47582, 52.1328], [-0.47637, 52.13293], [-0.47686, 52.13311], [-0.47713, 52.13325], [-0.47742, 52.13343], [-0.47772, 52.13369], [-0.47797, 52.13394], [-0.47828, 52.13438]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4705737", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.47739, 52.1302], [-0.47749, 52.13099], [-0.47768, 52.13176], [-0.47782, 52.13226], [-0.47801, 52.13276], [-0.4782, 52.13326], [-0.47843, 52.13374], [-0.47859, 52.13405], [-0.47888, 52.13461], [-0.47912, 52.13499], [-0.47938, 52.1354], [-0.4796, 52.1357], [-0.47983, 52.13602], [-0.48004, 52.13628]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4706063", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80532, 52.43964], [-1.80589, 52.44041], [-1.80617, 52.44074], [-1.80647, 52.44108], [-1.80672, 52.44136], [-1.80721, 52.44186], [-1.8077, 52.44233], [-1.8083, 52.44288], [-1.80889, 52.4434], [-1.8094, 52.44383], [-1.81, 52.44429]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4706064", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80264, 52.43554], [-1.80242, 52.43508]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4706067", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80379, 52.43738], [-1.80393, 52.43759]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706222", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.16364, 53.39863], [-2.1639, 53.39822]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706808", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.05656, 51.4829], [-1.05771, 51.48312], [-1.05828, 51.48322], [-1.05882, 51.48331], [-1.06001, 51.48349], [-1.06065, 51.48357], [-1.06143, 51.48367], [-1.06275, 51.48384], [-1.06312, 51.48388], [-1.06354, 51.48392], [-1.06398, 51.48396], [-1.0646, 51.48403], [-1.06528, 51.48409], [-1.06605, 51.48416], [-1.06687, 51.48422], [-1.06764, 51.48427], [-1.06853, 51.48431], [-1.06935, 51.48435], [-1.06998, 51.48437], [-1.07057, 51.48438], [-1.07201, 51.48441], [-1.0734, 51.4844], [-1.07403, 51.48439], [-1.07466, 51.48437], [-1.0761, 51.48433], [-1.07748, 51.48428], [-1.07893, 51.48425], [-1.07971, 51.48425], [-1.08047, 51.48426], [-1.08138, 51.48429], [-1.08226, 51.48434], [-1.08342, 51.48439], [-1.08467, 51.48449], [-1.0854, 51.48456], [-1.08619, 51.48464]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706809", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.08619, 51.48464], [-1.08633, 51.48465]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706810", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.08875, 51.48494], [-1.08903, 51.48498]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706811", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.08633, 51.48465], [-1.0869, 51.4847], [-1.08749, 51.48477], [-1.08817, 51.48487], [-1.08875, 51.48494]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706813", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.12767, 51.5113], [-1.1283, 51.51205]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706814", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.22206, 51.6044], [-1.22314, 51.60477], [-1.22424, 51.60515], [-1.22551, 51.60558], [-1.22864, 51.6066]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706816", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.14212, 51.55751], [-1.14274, 51.55814], [-1.14313, 51.55853], [-1.1434, 51.55879]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4706823", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.9734, 51.4591], [-0.9743, 51.45921], [-0.97495, 51.4593]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4707120", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.19971, 51.26632], [-2.19915, 51.2668], [-2.19871, 51.26719], [-2.19847, 51.2674], [-2.19797, 51.26785]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4707121", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.19491, 51.2937], [-2.19492, 51.29386]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4707483", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.19861, 51.30607], [-2.19887, 51.3065], [-2.1996, 51.30763], [-2.19994, 51.30809], [-2.20083, 51.30926], [-2.20149, 51.31005], [-2.20225, 51.31077], [-2.20313, 51.31145], [-2.20401, 51.31201], [-2.20585, 51.31304], [-2.20718, 51.31376], [-2.20816, 51.31429], [-2.20867, 51.31459], [-2.20971, 51.31527], [-2.2102, 51.31564], [-2.21068, 51.31607], [-2.21161, 51.31703], [-2.21193, 51.31743], [-2.21223, 51.31785], [-2.2127, 51.31851]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4708625", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.82486, 53.60197], [-2.82237, 53.60146], [-2.81374, 53.59969], [-2.8088, 53.59867], [-2.80441, 53.59775], [-2.80382, 53.59763], [-2.8013, 53.59712]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4708626", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.96398, 53.63688], [-2.96259, 53.6365]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4708628", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.96598, 53.63742], [-2.96398, 53.63688]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4708631", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-3.00284, 53.64662], [-3.00141, 53.64574], [-3.00104, 53.64547]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4708635", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.96259, 53.6365], [-2.96007, 53.63583], [-2.95756, 53.63517], [-2.95523, 53.63455], [-2.95404, 53.63423], [-2.95347, 53.63407], [-2.95292, 53.63391], [-2.95234, 53.63372], [-2.95174, 53.63353], [-2.95079, 53.63326], [-2.94956, 53.63293], [-2.94717, 53.63232]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4708636", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.94717, 53.63232], [-2.94548, 53.63189]]}}, {"type": "Feature", "properties": {"osm_id": "4708904", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[-1.54919, 55.18976], [-1.54959, 55.18975], [-1.55018, 55.18973], [-1.55066, 55.18977], [-1.55115, 55.18983], [-1.55133, 55.18986], [-1.5515, 55.18996], [-1.55158, 55.19004], [-1.55163, 55.19012], [-1.55165, 55.19022], [-1.55163, 55.19039], [-1.55165, 55.19056], [-1.55223, 55.19299], [-1.55225, 55.19316], [-1.55223, 55.19324], [-1.55214, 55.19339], [-1.55195, 55.19367], [-1.55176, 55.19388], [-1.5516, 55.19398], [-1.55143, 55.19407], [-1.55113, 55.19411], [-1.55096, 55.19418], [-1.55083, 55.19429], [-1.55079, 55.19446], [-1.55075, 55.19469], [-1.55068, 55.19481], [-1.55038, 55.19512], [-1.55021, 55.19529], [-1.55015, 55.19544], [-1.55017, 55.19557], [-1.55023, 55.19567], [-1.5504, 55.19577], [-1.55057, 55.19583], [-1.55169, 55.19615]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4711343", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.43456, 53.08076], [-2.43492, 53.08063]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713134", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.28032, 55.86039], [-4.28079, 55.86048]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713305", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.21501, 55.85745], [-4.21487, 55.85749], [-4.21479, 55.85753]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713306", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.21293, 55.85846], [-4.21267, 55.85864], [-4.21249, 55.85876], [-4.21233, 55.85889], [-4.21203, 55.85915], [-4.21156, 55.85964], [-4.21138, 55.85985], [-4.21123, 55.86008], [-4.21105, 55.86038], [-4.2109, 55.86069], [-4.21079, 55.861], [-4.2107, 55.8613], [-4.21063, 55.86165], [-4.21061, 55.86201], [-4.21062, 55.86313]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713309", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.17796, 55.8549], [-4.1777, 55.8549], [-4.17742, 55.85489], [-4.17714, 55.85488], [-4.17684, 55.85486], [-4.17653, 55.85484], [-4.17625, 55.85482], [-4.17596, 55.85479], [-4.1756, 55.85476], [-4.17526, 55.85473], [-4.17489, 55.85469], [-4.17446, 55.85463], [-4.1741, 55.85457], [-4.17179, 55.85421]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713310", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.19955, 55.85596], [-4.1984, 55.8558], [-4.1962, 55.85548], [-4.19218, 55.85494], [-4.19172, 55.85489], [-4.1913, 55.85484], [-4.19084, 55.8548], [-4.19041, 55.85477], [-4.18999, 55.85474], [-4.18958, 55.85472], [-4.18922, 55.85471], [-4.18894, 55.8547], [-4.18858, 55.85469], [-4.18818, 55.85469]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4713442", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29389, 55.83442], [-4.29393, 55.83424], [-4.29395, 55.83408], [-4.29393, 55.83391], [-4.29391, 55.83353], [-4.29382, 55.83314], [-4.29368, 55.83273], [-4.29348, 55.83217]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4713847", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.11471, 53.47453], [-2.11523, 53.47449], [-2.11565, 53.47442], [-2.11636, 53.47424], [-2.11706, 53.47399], [-2.11752, 53.47378], [-2.11798, 53.47347], [-2.11837, 53.4731], [-2.11906, 53.47222], [-2.12158, 53.46889], [-2.12252, 53.46762], [-2.12353, 53.46627], [-2.12367, 53.46608]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4714403", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.11226, 52.93027], [-4.10162, 52.92996]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4714404", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.05614, 52.92505], [-4.05594, 52.92476], [-4.05588, 52.92463]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4714722", "railway": "narrow_gauge"}, "geometry": {"type": "LineString", "coordinates": [[-4.11962, 53.1164], [-4.11987, 53.11602], [-4.11992, 53.11594], [-4.12007, 53.11571], [-4.12018, 53.11555], [-4.12037, 53.11523], [-4.12049, 53.11508], [-4.12065, 53.11494], [-4.12087, 53.11482], [-4.12103, 53.11475], [-4.12113, 53.11471], [-4.12131, 53.11464], [-4.12149, 53.11454], [-4.1217, 53.11437], [-4.12177, 53.11433], [-4.12194, 53.11422], [-4.12213, 53.11413]]}}, {"type": "Feature", "properties": {"osm_id": "4715042", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.18098, 53.58431], [-2.181, 53.5844], [-2.18103, 53.58448], [-2.18106, 53.58456]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4718792", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.24889, 55.85366], [-4.24896, 55.8536], [-4.2501, 55.85253]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4718795", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.2501, 55.85253], [-4.25028, 55.85236], [-4.25048, 55.85218], [-4.25107, 55.85147], [-4.25118, 55.85135], [-4.25137, 55.85115], [-4.25175, 55.85079], [-4.25221, 55.85035], [-4.25254, 55.85005], [-4.25279, 55.84984], [-4.25318, 55.84954]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4718919", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.35036, 51.96701], [1.3485, 51.967], [1.34694, 51.96701], [1.34565, 51.96694], [1.34282, 51.96668], [1.34169, 51.96658], [1.34054, 51.96655], [1.33933, 51.96662], [1.33815, 51.96681], [1.33722, 51.96704], [1.33636, 51.96733], [1.33528, 51.96781]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4718920", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.32764, 51.97209], [1.32673, 51.97258]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719327", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.74189, 51.51429], [-0.74395, 51.51372], [-0.74498, 51.51343], [-0.74552, 51.51328], [-0.74603, 51.51314], [-0.74708, 51.51284], [-0.74813, 51.51252], [-0.74919, 51.5122], [-0.74994, 51.51198], [-0.75066, 51.51175], [-0.7514, 51.51151], [-0.75202, 51.51131], [-0.7529, 51.51103], [-0.75373, 51.51077], [-0.75811, 51.50935], [-0.76042, 51.5086], [-0.76156, 51.50824], [-0.76225, 51.50802], [-0.76289, 51.50782]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719347", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.68001, 51.52355], [-0.68038, 51.52352]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719365", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.67528, 51.5238], [-0.67823, 51.52364], [-0.68001, 51.52355]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719366", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.67514, 51.52381], [-0.67528, 51.5238]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719367", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.67156, 51.52399], [-0.67177, 51.52398]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719368", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.67177, 51.52398], [-0.67343, 51.52391], [-0.67514, 51.52381]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719369", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.66745, 51.52411], [-0.6694, 51.52406], [-0.67077, 51.52402], [-0.67156, 51.52399]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719370", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.66725, 51.52411], [-0.66745, 51.52411]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719371", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.66002, 51.52408], [-0.66271, 51.52413], [-0.66419, 51.52413], [-0.66562, 51.52413], [-0.66725, 51.52411]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719372", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.65971, 51.52408], [-0.66002, 51.52408]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719413", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.46818, 53.75207], [-2.46723, 53.75266]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719414", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.45053, 53.75972], [-2.44965, 53.76006]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719415", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44965, 53.76006], [-2.44841, 53.76055]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719416", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44794, 53.76068], [-2.44728, 53.76093]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719417", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44661, 53.76123], [-2.44732, 53.76096]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719418", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44732, 53.76096], [-2.44796, 53.76071]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4719419", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.44796, 53.76071], [-2.44841, 53.76055]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719458", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.69439, 51.52198], [-0.69729, 51.52165], [-0.69883, 51.52149], [-0.70025, 51.52135]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4719459", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.6939, 51.52204], [-0.69439, 51.52198]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4720938", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.6939, 51.52204], [-0.69347, 51.52208], [-0.69274, 51.52216]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4720989", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.72148, 51.51852], [-0.72093, 51.51862]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4720990", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.74163, 51.51428], [-0.73431, 51.51606], [-0.72754, 51.51745], [-0.72374, 51.51812], [-0.72148, 51.51852]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4720991", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.74163, 51.51432], [-0.74188, 51.51425]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4721266", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.70598, 53.74886], [-2.70576, 53.74768], [-2.70569, 53.74732], [-2.70514, 53.74434]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4721267", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.70598, 53.74886], [-2.70618, 53.74987]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4721268", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.70655, 53.75208], [-2.70635, 53.75075]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4722099", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.59193, 51.51225], [-0.5924, 51.51232], [-0.59311, 51.51243], [-0.59419, 51.51258], [-0.5953, 51.51274], [-0.59668, 51.51298], [-0.59891, 51.51341], [-0.60128, 51.51391], [-0.60307, 51.51428], [-0.60535, 51.51478]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4722100", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.52923, 51.50762], [-0.53184, 51.50765], [-0.53442, 51.5077], [-0.53711, 51.50773], [-0.53808, 51.50775], [-0.53915, 51.5078], [-0.54107, 51.50789], [-0.54208, 51.5079], [-0.54242, 51.50791]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4722101", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.47754, 51.50996], [-0.47932, 51.51001], [-0.4804, 51.51002], [-0.48185, 51.51003], [-0.4827, 51.51003], [-0.48368, 51.51002], [-0.4852, 51.51], [-0.48582, 51.50999], [-0.48641, 51.50998], [-0.48761, 51.50995], [-0.48834, 51.50993], [-0.48918, 51.5099], [-0.49163, 51.5098], [-0.49331, 51.5097], [-0.49501, 51.5096], [-0.49658, 51.50949], [-0.49816, 51.50938], [-0.49972, 51.50924], [-0.50059, 51.50916], [-0.50137, 51.50908], [-0.50207, 51.50901], [-0.50417, 51.5088], [-0.50522, 51.5087], [-0.50579, 51.50866], [-0.50636, 51.50862], [-0.50682, 51.50859], [-0.50782, 51.5085], [-0.50794, 51.50849], [-0.50844, 51.50844], [-0.50978, 51.50833], [-0.51127, 51.50823], [-0.51277, 51.50813], [-0.51422, 51.50805], [-0.51566, 51.50797], [-0.51698, 51.50792], [-0.52104, 51.50781], [-0.52293, 51.50773], [-0.52404, 51.5077], [-0.52515, 51.50769], [-0.52682, 51.50764], [-0.52796, 51.50764], [-0.52888, 51.50763]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4723894", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.39443, 51.44125], [0.39329, 51.44123], [0.39161, 51.44113], [0.39028, 51.44099], [0.38939, 51.44087]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4723900", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.3978, 51.18694], [0.39772, 51.18667], [0.39707, 51.18481], [0.39697, 51.18453], [0.39684, 51.18426], [0.39666, 51.18399], [0.39647, 51.18375], [0.39623, 51.1835], [0.39592, 51.18327], [0.39565, 51.18309], [0.39535, 51.18293], [0.39499, 51.18276]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4725665", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.77111, 50.74207], [-1.76861, 50.74255]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4725666", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-1.7804, 50.74024], [-1.77991, 50.74035], [-1.7795, 50.74044], [-1.77907, 50.74053]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4726040", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.78381, 53.6498], [-1.78399, 53.6496], [-1.78411, 53.64945], [-1.78439, 53.64905], [-1.78479, 53.64851]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4729762", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.4975, 53.57196], [-2.49873, 53.57167], [-2.49917, 53.57158], [-2.5001, 53.57141], [-2.50167, 53.57115], [-2.50311, 53.571], [-2.50461, 53.57089], [-2.50627, 53.57081], [-2.50801, 53.57081], [-2.5084, 53.57082], [-2.5093, 53.57086], [-2.50977, 53.57089], [-2.51065, 53.57096], [-2.51118, 53.57102], [-2.51214, 53.57114], [-2.51385, 53.57135], [-2.51452, 53.57144], [-2.51601, 53.57165], [-2.51758, 53.57189], [-2.51832, 53.57202], [-2.51893, 53.57213], [-2.52246, 53.57283], [-2.52511, 53.57347], [-2.52676, 53.5739], [-2.52766, 53.57415], [-2.52874, 53.57446], [-2.52979, 53.57479], [-2.53118, 53.57522], [-2.5331, 53.57584], [-2.53746, 53.57724], [-2.53891, 53.57771], [-2.53979, 53.57799], [-2.54796, 53.58057], [-2.549, 53.58092], [-2.55318, 53.58233], [-2.5576, 53.58414], [-2.56011, 53.58536], [-2.56231, 53.58652], [-2.56366, 53.58728], [-2.56655, 53.58907], [-2.56887, 53.59053], [-2.56987, 53.59121], [-2.5704, 53.5916], [-2.57166, 53.59246], [-2.57293, 53.59339], [-2.57354, 53.59386], [-2.57376, 53.59402], [-2.57495, 53.59496], [-2.57703, 53.59671], [-2.58163, 53.60019], [-2.58567, 53.60292], [-2.58747, 53.60405], [-2.59265, 53.60709], [-2.59362, 53.60763], [-2.59849, 53.61047], [-2.60081, 53.61181], [-2.60218, 53.61262], [-2.60295, 53.61312], [-2.60388, 53.61379], [-2.60507, 53.61473], [-2.60572, 53.61535], [-2.60624, 53.6159], [-2.60667, 53.61636], [-2.6072, 53.61698], [-2.60764, 53.6176], [-2.6083, 53.61864], [-2.60866, 53.61927], [-2.60901, 53.62006], [-2.60936, 53.62107], [-2.60953, 53.62177], [-2.60966, 53.62244], [-2.60976, 53.62328], [-2.60979, 53.62364], [-2.60977, 53.62404], [-2.60975, 53.6246], [-2.60971, 53.625], [-2.60962, 53.62565], [-2.60948, 53.62626], [-2.60931, 53.62692], [-2.60906, 53.62816], [-2.60899, 53.62918], [-2.60902, 53.63002], [-2.60921, 53.63124], [-2.60939, 53.63187], [-2.60962, 53.63262], [-2.60968, 53.63283], [-2.60971, 53.63296]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729763", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.54467, 53.54849], [-2.5453, 53.54828], [-2.54576, 53.54814], [-2.54662, 53.54787], [-2.54806, 53.54742], [-2.55159, 53.5463], [-2.55239, 53.54605], [-2.5535, 53.54571], [-2.55485, 53.54529], [-2.55583, 53.54502], [-2.55665, 53.5448], [-2.5573, 53.54464], [-2.55796, 53.54449], [-2.55906, 53.54424], [-2.56007, 53.54404], [-2.56278, 53.54361], [-2.56303, 53.54358], [-2.56362, 53.54351]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729764", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.54425, 53.54862], [-2.54467, 53.54849]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729769", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.58694, 53.54043], [-2.58809, 53.54013]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729770", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.59339, 53.53841], [-2.59423, 53.53816]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729771", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.59423, 53.53816], [-2.59594, 53.53785], [-2.59745, 53.53768], [-2.59852, 53.53765], [-2.60067, 53.5377], [-2.60197, 53.53779], [-2.60331, 53.53792], [-2.60374, 53.53797], [-2.6066, 53.53833], [-2.60946, 53.53864], [-2.61104, 53.53884], [-2.61277, 53.53901], [-2.61455, 53.53926], [-2.61791, 53.53967]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729774", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.58809, 53.54013], [-2.59245, 53.53871]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4729775", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.59245, 53.53871], [-2.59339, 53.53841]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730531", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.5495, 51.38642], [0.54929, 51.38637], [0.54873, 51.3862], [0.54822, 51.38605], [0.54706, 51.38557], [0.54587, 51.38499], [0.54528, 51.38465], [0.54468, 51.38435]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730541", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.51047, 51.38564], [0.51034, 51.38573], [0.51014, 51.38587], [0.5097, 51.38613], [0.50936, 51.38637], [0.50916, 51.38652], [0.50908, 51.38659], [0.50882, 51.38682], [0.50859, 51.38704], [0.50839, 51.38728], [0.50816, 51.3876], [0.50804, 51.38777], [0.50799, 51.38786]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730591", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.49919, 51.39379], [0.49899, 51.39402], [0.49881, 51.39424], [0.49868, 51.39443], [0.49841, 51.39482]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730661", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.49953, 51.39352], [0.49947, 51.39359], [0.49942, 51.39365], [0.49936, 51.39373], [0.4993, 51.39382]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730662", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.46872, 51.42484], [0.46734, 51.42592], [0.46702, 51.42616], [0.46675, 51.42637], [0.46641, 51.42662], [0.46638, 51.42664], [0.46617, 51.4268], [0.46574, 51.42713], [0.46535, 51.42743], [0.46527, 51.42749], [0.46501, 51.4277], [0.46496, 51.42774], [0.46386, 51.42863], [0.46328, 51.4291], [0.46133, 51.43059], [0.46082, 51.43102], [0.46029, 51.43144], [0.45981, 51.43179], [0.45867, 51.43253], [0.45765, 51.43308], [0.45706, 51.43336], [0.45329, 51.43458], [0.45195, 51.43483], [0.45114, 51.43496], [0.45045, 51.43506], [0.44652, 51.43551], [0.44385, 51.43582], [0.44286, 51.4359], [0.44188, 51.43602], [0.44102, 51.43612], [0.44004, 51.43624], [0.43962, 51.43628], [0.43869, 51.43637], [0.43727, 51.43653], [0.43675, 51.43659], [0.43273, 51.43704], [0.4306, 51.43728], [0.42994, 51.43736], [0.42742, 51.43763]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730681", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.50068, 51.39968], [0.499, 51.40092], [0.49609, 51.4032], [0.49392, 51.405], [0.49371, 51.40514], [0.49207, 51.40643], [0.48759, 51.41001], [0.48168, 51.41474]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4730682", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[0.42742, 51.43763], [0.42593, 51.43781], [0.4254, 51.43788], [0.41929, 51.43856], [0.41856, 51.43865], [0.41198, 51.43941], [0.40458, 51.44028], [0.39865, 51.44094], [0.39733, 51.44112], [0.39559, 51.44123], [0.39443, 51.44125]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4732208", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.13837, 52.61639], [-1.13992, 52.61703]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4732343", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.36673, 50.97413], [-1.36721, 50.97421]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4732376", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.36721, 50.97421], [-1.3676, 50.97427], [-1.36827, 50.97439], [-1.36902, 50.97455], [-1.36992, 50.97476], [-1.37052, 50.97492], [-1.37124, 50.97513], [-1.37183, 50.97532], [-1.37228, 50.97548], [-1.37302, 50.97575], [-1.37355, 50.97597], [-1.37425, 50.97626], [-1.3747, 50.97647], [-1.37513, 50.97669], [-1.37582, 50.97704], [-1.37632, 50.97733], [-1.37686, 50.97767], [-1.37741, 50.97803], [-1.37796, 50.9784], [-1.37876, 50.97896], [-1.38047, 50.98022], [-1.38249, 50.9817], [-1.38395, 50.98278], [-1.38422, 50.98298], [-1.3844, 50.98311], [-1.38466, 50.98329], [-1.38496, 50.98352], [-1.38546, 50.98388], [-1.38622, 50.98443], [-1.39091, 50.98787], [-1.3921, 50.98874]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4732518", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.86167, 51.14953], [0.86113, 51.14983], [0.85583, 51.1531]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4734133", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.01708, 50.72686], [-2.01657, 50.72712], [-2.01611, 50.72734], [-2.01547, 50.72761], [-2.01484, 50.72785], [-2.01427, 50.72805]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4734232", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.13522, 50.68135], [-2.1354, 50.68107], [-2.13553, 50.68083], [-2.13563, 50.68053], [-2.1357, 50.68022], [-2.13571, 50.6799], [-2.13569, 50.67956], [-2.13561, 50.67923], [-2.13548, 50.67892], [-2.1353, 50.6786], [-2.13506, 50.67831], [-2.1348, 50.67803], [-2.13382, 50.67717]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4742667", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.30086, 53.59858], [-1.28535, 53.59484], [-1.27682, 53.5928]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4744076", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[1.33528, 51.96781], [1.33689, 51.96687], [1.33824, 51.9659], [1.33917, 51.9649], [1.33976, 51.96391], [1.34001, 51.96319], [1.34016, 51.96256], [1.34019, 51.96162], [1.34002, 51.96074], [1.33988, 51.96025], [1.33969, 51.95977], [1.33907, 51.95883], [1.33864, 51.9583], [1.3383, 51.95792], [1.33752, 51.95707], [1.33646, 51.95588], [1.33556, 51.95489], [1.3348, 51.95404], [1.33394, 51.95308], [1.3334, 51.95249], [1.33293, 51.95205], [1.33239, 51.95153], [1.33233, 51.95147], [1.33213, 51.95131], [1.33191, 51.95107], [1.33169, 51.95085], [1.33146, 51.95062], [1.33128, 51.95048], [1.33104, 51.95029], [1.3307, 51.95006], [1.3304, 51.94987], [1.33003, 51.9497], [1.32948, 51.94949], [1.3289, 51.94932], [1.32835, 51.9492], [1.32784, 51.9491], [1.32783, 51.9491], [1.32735, 51.94897], [1.32668, 51.9489], [1.32621, 51.9489], [1.32577, 51.94894], [1.32529, 51.94903], [1.32484, 51.94915], [1.32341, 51.94946], [1.3229, 51.94959], [1.32207, 51.94993], [1.32169, 51.95017], [1.32066, 51.95084], [1.32016, 51.95118], [1.3192, 51.95219], [1.31896, 51.95239], [1.31855, 51.95265], [1.3176, 51.9538], [1.31717, 51.95448], [1.31654, 51.95496], [1.3164, 51.95502], [1.31565, 51.95536], [1.31494, 51.95567], [1.31284, 51.95662], [1.31266, 51.95674], [1.31252, 51.95686], [1.3124, 51.95698], [1.31232, 51.95709], [1.31222, 51.95725], [1.3122, 51.95731], [1.31219, 51.95736], [1.31216, 51.95748], [1.31215, 51.95767], [1.31214, 51.95783], [1.31213, 51.95793], [1.31209, 51.95809]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4744758", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.10637, 52.64802], [-1.10506, 52.64921], [-1.10397, 52.65025], [-1.10293, 52.65132], [-1.10194, 52.65239], [-1.10101, 52.65347]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4744759", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.09924, 52.65574], [-1.09901, 52.65607]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4746584", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.06662, 51.36023], [1.06696, 51.36026], [1.06942, 51.36046], [1.07024, 51.36053], [1.07117, 51.36061], [1.07294, 51.36076], [1.07541, 51.36097], [1.07894, 51.36126], [1.08288, 51.36158], [1.08595, 51.36184], [1.08833, 51.36204], [1.0902, 51.3622], [1.09515, 51.36261]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4746585", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[1.11875, 51.36448], [1.11909, 51.36448]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4754040", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.6645, 51.5599], [-2.66456, 51.55968], [-2.66458, 51.5596], [-2.6647, 51.55913], [-2.66491, 51.55834], [-2.66531, 51.5568], [-2.6654, 51.55645], [-2.66613, 51.55377], [-2.66621, 51.55345]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4754988", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80393, 52.43759], [-1.80418, 52.43796], [-1.80449, 52.43841], [-1.80465, 52.43866], [-1.8048, 52.43887], [-1.80521, 52.43948]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4754991", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.80521, 52.43948], [-1.80532, 52.43964]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4755794", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.73025, 56.05708], [-2.7309, 56.05667], [-2.73138, 56.05639], [-2.73203, 56.05603]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4756078", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.69637, 51.51262], [-2.69679, 51.51142], [-2.69704, 51.51068], [-2.69729, 51.50993], [-2.69754, 51.50919], [-2.69768, 51.50877], [-2.69781, 51.50845], [-2.69809, 51.50794], [-2.69842, 51.50746], [-2.70087, 51.50449], [-2.70092, 51.50444], [-2.70111, 51.5042], [-2.70124, 51.50405], [-2.70132, 51.50394], [-2.70138, 51.50386], [-2.70146, 51.50371], [-2.70153, 51.50352], [-2.70157, 51.50335], [-2.70158, 51.50323], [-2.70157, 51.50311], [-2.70155, 51.50291], [-2.70146, 51.50269], [-2.70137, 51.50253], [-2.7012, 51.5023]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4756093", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.63652, 51.46994], [-2.63603, 51.46985], [-2.62051, 51.46607], [-2.61512, 51.46474]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4756494", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.94405, 52.18359], [-0.94614, 52.18449], [-0.94696, 52.18484], [-0.9476, 52.18511], [-0.94803, 52.18529]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4756496", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.93644, 52.18088], [-0.93592, 52.18074]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4758479", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.5965, 51.51561], [-2.59276, 51.51649]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4761272", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.03694, 51.77543], [0.03661, 51.77543], [0.03552, 51.77544], [0.03431, 51.77539], [0.0323, 51.77522], [0.03132, 51.77509], [0.03058, 51.77497], [0.02938, 51.77471], [0.02834, 51.77444], [0.02725, 51.7741], [0.02631, 51.77376], [0.02529, 51.77335], [0.02378, 51.77261], [0.02168, 51.77149], [0.01964, 51.77038], [0.01805, 51.76952], [0.01707, 51.76899], [0.01597, 51.76839]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4761273", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-0.01167, 51.74555], [-0.01144, 51.74586], [-0.01134, 51.74598], [-0.01099, 51.74645], [-0.01068, 51.74685], [-0.01026, 51.74739], [-0.00994, 51.74783], [-0.00962, 51.74823], [-0.00926, 51.7487], [-0.00889, 51.7492]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4761320", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[0.00141, 51.77695], [0.00146, 51.7766], [0.0016, 51.7758], [0.00164, 51.77559], [0.00168, 51.77545], [0.00175, 51.77518], [0.00182, 51.77497], [0.00208, 51.77428], [0.00224, 51.77392], [0.00251, 51.77342], [0.00304, 51.77261], [0.0034, 51.77215], [0.00375, 51.77174], [0.00404, 51.77142], [0.00453, 51.77091], [0.00477, 51.77064], [0.00491, 51.77046], [0.00508, 51.77022], [0.00519, 51.77005], [0.00529, 51.76988], [0.00542, 51.76965], [0.00555, 51.76936]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4761651", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.05549, 52.15263], [1.0552, 52.15287], [1.05427, 52.1537], [1.0537, 52.15423], [1.0532, 52.15474], [1.0523, 52.15571], [1.05138, 52.15668]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4761652", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[1.05138, 52.15668], [1.05095, 52.15711]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762549", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.19284, 52.74494], [-0.18831, 52.75051], [-0.18706, 52.75207], [-0.18507, 52.75451], [-0.18442, 52.75531], [-0.18318, 52.75683], [-0.18196, 52.75832], [-0.1814, 52.75902], [-0.1808, 52.75976], [-0.18021, 52.76048], [-0.18007, 52.76065]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762550", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-0.28865, 52.61344], [-0.28929, 52.61385], [-0.28958, 52.61407], [-0.28974, 52.61421], [-0.28989, 52.61434], [-0.29027, 52.61471], [-0.29057, 52.61507], [-0.29077, 52.61534], [-0.29092, 52.61556], [-0.29105, 52.61577], [-0.29119, 52.61604], [-0.29134, 52.61641], [-0.29149, 52.61679], [-0.29159, 52.61714], [-0.29167, 52.61754], [-0.29171, 52.6179], [-0.29172, 52.61821], [-0.29171, 52.61857], [-0.29167, 52.61888], [-0.2916, 52.61927], [-0.29149, 52.61968], [-0.29132, 52.62013], [-0.29115, 52.62046], [-0.29095, 52.62083]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4762688", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.62552, 53.53923], [-2.62499, 53.53863], [-2.62438, 53.53791], [-2.62375, 53.53717], [-2.6232, 53.53654], [-2.6229, 53.53619], [-2.62254, 53.53578], [-2.62163, 53.53474], [-2.62066, 53.53362], [-2.61984, 53.53264]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762691", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.6234, 53.54032], [-2.62413, 53.54043]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762692", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.62413, 53.54043], [-2.6245, 53.54049], [-2.62508, 53.54061], [-2.62575, 53.54076], [-2.62654, 53.54096], [-2.62726, 53.54117], [-2.62781, 53.54136], [-2.62821, 53.54151], [-2.62852, 53.54164], [-2.62883, 53.54177]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762696", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.66376, 53.53169], [-2.66472, 53.53143], [-2.66577, 53.53119], [-2.66658, 53.53101], [-2.66744, 53.53084], [-2.66848, 53.53068], [-2.66954, 53.53054], [-2.67037, 53.53045], [-2.67042, 53.53044]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4762697", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.61798, 53.53971], [-2.61665, 53.53955], [-2.61516, 53.53938], [-2.61351, 53.53925], [-2.61269, 53.53917], [-2.61191, 53.53904], [-2.61085, 53.53886], [-2.60996, 53.53874], [-2.60802, 53.53852], [-2.60498, 53.53816], [-2.60322, 53.53795], [-2.602, 53.53783], [-2.60061, 53.53773], [-2.59853, 53.53769], [-2.59747, 53.53773], [-2.59598, 53.53789], [-2.59431, 53.5382], [-2.59343, 53.53845], [-2.59249, 53.53875], [-2.58814, 53.54016], [-2.58697, 53.54047], [-2.58491, 53.54094], [-2.58363, 53.5412], [-2.58174, 53.54152], [-2.57874, 53.54194], [-2.57557, 53.54233], [-2.57341, 53.54256], [-2.57165, 53.5427], [-2.56983, 53.54288], [-2.56795, 53.54307], [-2.5668, 53.54319], [-2.56524, 53.54336], [-2.56358, 53.54355]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4762719", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.59925, 53.46233], [-2.59937, 53.46178]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4762720", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.59859, 53.45783], [-2.59835, 53.45756], [-2.59827, 53.45743], [-2.59816, 53.45717], [-2.5981, 53.45695], [-2.59808, 53.45677], [-2.59807, 53.4566], [-2.59809, 53.45643], [-2.59817, 53.45608], [-2.59832, 53.45578], [-2.59851, 53.45551], [-2.59883, 53.45518], [-2.59908, 53.455], [-2.59939, 53.45479], [-2.59976, 53.45461], [-2.60013, 53.45447], [-2.60026, 53.45442], [-2.60044, 53.45437], [-2.60062, 53.45433], [-2.60078, 53.45429], [-2.60092, 53.45426], [-2.60104, 53.45423], [-2.60118, 53.45421], [-2.60128, 53.45419], [-2.60135, 53.45418], [-2.60144, 53.45416]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4762750", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.61608, 53.52447], [-2.61581, 53.52477], [-2.61565, 53.525], [-2.61549, 53.52526], [-2.61538, 53.5255], [-2.61531, 53.52569], [-2.61526, 53.52589], [-2.61521, 53.52612], [-2.61519, 53.52634], [-2.6152, 53.52651], [-2.61523, 53.5267], [-2.61529, 53.5269], [-2.61533, 53.52703], [-2.61537, 53.52714], [-2.61544, 53.52727], [-2.61551, 53.52739], [-2.61567, 53.52763], [-2.61571, 53.52768], [-2.61575, 53.52773], [-2.61579, 53.52779]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4762751", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.61619, 53.52436], [-2.61608, 53.52447]]}}, {"type": "Feature", "properties": {"electrified": "4th_rail", "frequency": "0", "osm_id": "4766701", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.30114, 51.46338], [-0.29978, 51.46349], [-0.29966, 51.4635], [-0.29954, 51.46351], [-0.29941, 51.46351], [-0.29929, 51.46351]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4773545", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.67326, 53.7272], [-2.67407, 53.72712], [-2.67527, 53.72699], [-2.67608, 53.72689], [-2.67726, 53.72669], [-2.67858, 53.72642], [-2.67917, 53.72628], [-2.67986, 53.72611], [-2.68034, 53.72598], [-2.68123, 53.72572], [-2.68194, 53.72552], [-2.68278, 53.72527], [-2.6836, 53.72504], [-2.68427, 53.72488], [-2.68537, 53.72464], [-2.6864, 53.72444], [-2.68717, 53.7243], [-2.68835, 53.72411], [-2.68934, 53.72398], [-2.69218, 53.72364], [-2.69453, 53.72335]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4773547", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.67304, 53.72722], [-2.67326, 53.7272]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4776405", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.72148, 52.52419], [-1.72005, 52.52493], [-1.71286, 52.52873], [-1.70846, 52.53104], [-1.70209, 52.53438], [-1.69797, 52.53655]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4776406", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.72428, 52.52272], [-1.7236, 52.52308]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4776597", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.73109, 55.69023], [-3.73039, 55.69], [-3.72999, 55.68984], [-3.72945, 55.68952], [-3.72896, 55.68912], [-3.72877, 55.68889]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4776841", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.99337, 55.80343], [-3.99342, 55.80332], [-3.99355, 55.80298], [-3.99372, 55.80255], [-3.99389, 55.80214], [-3.99432, 55.80132], [-3.99465, 55.80077], [-3.99481, 55.80055], [-3.99547, 55.79961], [-3.99591, 55.7991], [-3.99688, 55.79812], [-3.99708, 55.79794], [-3.99727, 55.79771], [-3.99745, 55.79746], [-3.99761, 55.79719], [-3.99777, 55.79692], [-3.99787, 55.79658], [-3.99792, 55.79626], [-3.99793, 55.79599], [-3.99787, 55.79563], [-3.99782, 55.79539], [-3.99773, 55.79509], [-3.99768, 55.795]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4776842", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.07631, 55.82366], [-4.07226, 55.82328], [-4.07175, 55.82323], [-4.07126, 55.82315], [-4.07063, 55.82304], [-4.07003, 55.82291], [-4.06873, 55.82259], [-4.0649, 55.82166], [-4.05891, 55.82021]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4776873", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.21754, 55.8424], [-4.21753, 55.84235], [-4.21752, 55.84231], [-4.21751, 55.84223], [-4.21748, 55.8421], [-4.21741, 55.8415], [-4.21725, 55.84001], [-4.2172, 55.83959], [-4.21718, 55.83947], [-4.21716, 55.83935], [-4.21712, 55.8392], [-4.21707, 55.83903], [-4.21703, 55.83884], [-4.217, 55.83872], [-4.21696, 55.83861], [-4.21689, 55.83842], [-4.21681, 55.83826], [-4.21672, 55.83809], [-4.21661, 55.83792], [-4.21651, 55.83778], [-4.2164, 55.83761], [-4.21622, 55.8374], [-4.21604, 55.83718], [-4.2159, 55.83701], [-4.21585, 55.83693], [-4.21581, 55.83687], [-4.21576, 55.83679], [-4.21569, 55.83667], [-4.21564, 55.83656], [-4.21558, 55.83645], [-4.2155, 55.83628]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4776874", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.2155, 55.83628], [-4.2151, 55.83528]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777238", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.91553, 52.51667], [-1.91547, 52.51685], [-1.91539, 52.517], [-1.91531, 52.51712], [-1.91524, 52.51723], [-1.91516, 52.51732], [-1.91506, 52.51743], [-1.91494, 52.51753], [-1.91485, 52.51761], [-1.91478, 52.51767], [-1.91465, 52.51775], [-1.91454, 52.51782], [-1.91443, 52.51789], [-1.91429, 52.51796], [-1.91415, 52.51802], [-1.91401, 52.51809], [-1.91386, 52.51815], [-1.91372, 52.51819], [-1.9136, 52.51823], [-1.91343, 52.51827], [-1.91325, 52.51831], [-1.91308, 52.51835], [-1.9129, 52.51838], [-1.91272, 52.51841], [-1.91254, 52.51843], [-1.91236, 52.51844], [-1.91213, 52.51845], [-1.91197, 52.51845], [-1.9118, 52.51844], [-1.91162, 52.51843], [-1.91145, 52.51842], [-1.91123, 52.51839]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777441", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.99687, 55.79382], [-3.99652, 55.79348], [-3.99645, 55.79341], [-3.99631, 55.79328], [-3.99611, 55.79307], [-3.99582, 55.79278], [-3.99565, 55.79259], [-3.99521, 55.79214], [-3.99497, 55.79189], [-3.99464, 55.79153], [-3.99442, 55.79127], [-3.99423, 55.79097], [-3.99415, 55.7908], [-3.99407, 55.79057], [-3.99401, 55.79033], [-3.99391, 55.79003]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777442", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-3.99819, 55.77903], [-3.99857, 55.77883], [-3.99868, 55.77878], [-3.99878, 55.77873], [-3.99914, 55.77859], [-3.99933, 55.77851], [-3.99951, 55.77845]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777444", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.01777, 55.76732], [-4.01803, 55.76727], [-4.01905, 55.7671], [-4.02006, 55.76699], [-4.02079, 55.76697], [-4.0215, 55.76702], [-4.02216, 55.76708], [-4.02302, 55.76723]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777445", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.02302, 55.76723], [-4.02331, 55.7673]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777498", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.03881, 55.77313], [-4.04026, 55.77291], [-4.04084, 55.77282], [-4.04145, 55.77274], [-4.04223, 55.77269], [-4.04264, 55.77269], [-4.04333, 55.77273], [-4.04364, 55.77276], [-4.04391, 55.7728], [-4.04462, 55.77293], [-4.04503, 55.77303], [-4.04544, 55.77315], [-4.04621, 55.77338], [-4.04699, 55.77364], [-4.04852, 55.77415], [-4.04924, 55.7744], [-4.04971, 55.77457], [-4.05001, 55.77469], [-4.05016, 55.77476], [-4.05029, 55.77483], [-4.05089, 55.77513], [-4.05108, 55.77524], [-4.05127, 55.77536], [-4.05145, 55.77547], [-4.05162, 55.77559], [-4.05193, 55.77584], [-4.05222, 55.77607], [-4.0524, 55.77623], [-4.05257, 55.7764], [-4.05287, 55.77672], [-4.05341, 55.77736], [-4.05366, 55.77763]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777691", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.1401, 55.81881], [-4.1412, 55.81873], [-4.14221, 55.81866], [-4.14311, 55.81858], [-4.14366, 55.81852], [-4.14426, 55.81845], [-4.14653, 55.8181], [-4.14794, 55.81786], [-4.14899, 55.81761], [-4.14977, 55.81737], [-4.15053, 55.81711], [-4.1513, 55.81679], [-4.15176, 55.81657]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777692", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.26201, 55.81721], [-4.26113, 55.81737], [-4.26035, 55.81758], [-4.25987, 55.81774]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777870", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.46117, 55.84047], [-4.46049, 55.84061], [-4.45938, 55.84087], [-4.45832, 55.84116], [-4.4578, 55.8413]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4777871", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.5104, 55.83301], [-4.50893, 55.83321], [-4.5081, 55.83333], [-4.50748, 55.83342], [-4.50682, 55.83352], [-4.50616, 55.83364], [-4.50549, 55.83376], [-4.50485, 55.83388], [-4.50398, 55.83407], [-4.50311, 55.83429]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4779469", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.78235, 51.56664], [-1.78251, 51.56659]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4779531", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.72178, 53.53069], [-2.73485, 53.52916]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4781904", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.70954, 55.65698], [-4.7095, 55.65685], [-4.70945, 55.65665], [-4.70924, 55.65585], [-4.70915, 55.65556], [-4.70905, 55.65527], [-4.70883, 55.65463], [-4.70861, 55.65405], [-4.70824, 55.65316], [-4.70776, 55.65214], [-4.70717, 55.65106], [-4.70671, 55.6503]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4781941", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.61452, 55.50106], [-4.6147, 55.50037], [-4.61489, 55.49968], [-4.61531, 55.49831], [-4.61549, 55.49781], [-4.61569, 55.49731], [-4.61614, 55.49625], [-4.61642, 55.49565], [-4.61677, 55.49494]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4781974", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.78458, 55.63389], [-4.78395, 55.63374], [-4.78308, 55.63358], [-4.78243, 55.63349], [-4.78207, 55.63346], [-4.78174, 55.63344], [-4.7813, 55.63342], [-4.78085, 55.63341], [-4.77941, 55.63342], [-4.77878, 55.6334], [-4.77815, 55.63337], [-4.77691, 55.6333], [-4.77442, 55.63315], [-4.76826, 55.63276], [-4.76209, 55.63241], [-4.76123, 55.63241], [-4.76082, 55.63242], [-4.76038, 55.63244], [-4.75995, 55.63247], [-4.75955, 55.63251], [-4.75873, 55.63261], [-4.75808, 55.63271], [-4.75744, 55.63282], [-4.75617, 55.63308], [-4.75551, 55.6332], [-4.75376, 55.63354], [-4.75138, 55.63402], [-4.75008, 55.63427], [-4.74986, 55.63432], [-4.74851, 55.63458], [-4.74697, 55.63489], [-4.74403, 55.63547], [-4.74234, 55.63581], [-4.74062, 55.63615], [-4.73889, 55.63648], [-4.73845, 55.63657], [-4.7372, 55.63682], [-4.73604, 55.63709], [-4.73545, 55.63725], [-4.73489, 55.63742], [-4.73402, 55.63771], [-4.73354, 55.63789], [-4.73309, 55.63809], [-4.73226, 55.63847], [-4.73142, 55.63887], [-4.72678, 55.64107], [-4.72643, 55.64123]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4781994", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.80246, 55.64185], [-4.80344, 55.64209], [-4.80438, 55.64218], [-4.8057, 55.64222], [-4.8064, 55.6422], [-4.80713, 55.64214], [-4.80763, 55.64208], [-4.80844, 55.64194], [-4.8091, 55.64177], [-4.81011, 55.64147], [-4.81092, 55.64108], [-4.81159, 55.64066], [-4.81195, 55.64037], [-4.81221, 55.64015], [-4.8125, 55.63987], [-4.81287, 55.63949], [-4.81333, 55.63913], [-4.81385, 55.63883], [-4.81441, 55.63857], [-4.81461, 55.63851], [-4.81484, 55.63846], [-4.81528, 55.63838], [-4.81566, 55.63833], [-4.81622, 55.63831], [-4.81677, 55.63834], [-4.81732, 55.63843], [-4.81784, 55.63857], [-4.81815, 55.63867], [-4.81889, 55.63893], [-4.81957, 55.63923], [-4.8213, 55.64001]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4781999", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.80246, 55.64185], [-4.80336, 55.64231], [-4.80417, 55.64285], [-4.80467, 55.64331], [-4.80496, 55.64359], [-4.8052, 55.64386], [-4.80542, 55.64409], [-4.8056, 55.64435], [-4.80575, 55.64463], [-4.8059, 55.64493], [-4.80605, 55.64529], [-4.80633, 55.64594], [-4.8065, 55.64635]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782053", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.85153, 55.69623], [-4.85029, 55.6991], [-4.84987, 55.70095], [-4.84986, 55.70247]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782054", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.85312, 55.75196], [-4.85313, 55.75249], [-4.85318, 55.753]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782055", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.8545, 55.76108], [-4.85496, 55.76198], [-4.85528, 55.76288], [-4.85533, 55.76315], [-4.85538, 55.76349], [-4.85544, 55.76405], [-4.8555, 55.76632], [-4.85564, 55.76955]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782087", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.15837, 55.85363], [-4.15476, 55.85358]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782268", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.04513, 55.86622], [-4.04303, 55.86646], [-4.04218, 55.8666], [-4.04141, 55.86673], [-4.04059, 55.8669], [-4.03974, 55.86708], [-4.03861, 55.86735], [-4.03745, 55.86766], [-4.0369, 55.8678], [-4.03634, 55.86791], [-4.03587, 55.86799], [-4.03541, 55.86807]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4782297", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.21062, 55.86313], [-4.21064, 55.86345], [-4.21066, 55.86361], [-4.21067, 55.86369], [-4.21069, 55.86376], [-4.21073, 55.86392], [-4.21079, 55.86409], [-4.21096, 55.86442], [-4.21113, 55.86468], [-4.21134, 55.86494], [-4.21155, 55.86517], [-4.21182, 55.86539], [-4.21215, 55.86564], [-4.2126, 55.86591], [-4.21298, 55.86611], [-4.21342, 55.86629], [-4.2144, 55.86668], [-4.21502, 55.86694], [-4.21538, 55.86711], [-4.21581, 55.86734]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4782361", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.27297, 55.89312], [-4.27191, 55.89271], [-4.27064, 55.89227], [-4.26959, 55.89196], [-4.26861, 55.89169], [-4.26795, 55.8915], [-4.26723, 55.89134], [-4.26592, 55.89104], [-4.2648, 55.89083], [-4.26365, 55.89064], [-4.26251, 55.89047], [-4.2611, 55.89032], [-4.25979, 55.89023], [-4.25832, 55.89014], [-4.25739, 55.89009], [-4.25664, 55.89003], [-4.25571, 55.88994], [-4.2548, 55.88984], [-4.25403, 55.88973], [-4.25325, 55.88963], [-4.25244, 55.88948], [-4.25174, 55.88935], [-4.25026, 55.88907], [-4.24879, 55.88889], [-4.24791, 55.8888], [-4.24689, 55.88873], [-4.24569, 55.88869]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4782362", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.30304, 55.89678], [-4.30428, 55.89633]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4782443", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.32556, 55.81321], [-4.32507, 55.81334], [-4.32423, 55.81357], [-4.32345, 55.8138], [-4.32232, 55.81419], [-4.32156, 55.81446], [-4.3204, 55.81494], [-4.31966, 55.81526], [-4.31783, 55.81612], [-4.3168, 55.81657], [-4.31575, 55.81699], [-4.31505, 55.81726], [-4.31435, 55.81752], [-4.31335, 55.81787], [-4.31212, 55.81828], [-4.31083, 55.81867], [-4.31046, 55.81878]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4782460", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.39774, 55.80372], [-4.39744, 55.80386]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4783800", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-2.44118, 53.07836], [-2.44131, 53.07831]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4784393", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.12336, 51.41184], [-0.12233, 51.4116], [-0.12203, 51.41153], [-0.12166, 51.41142], [-0.12118, 51.41128], [-0.12077, 51.41114], [-0.12043, 51.41102], [-0.12014, 51.4109], [-0.11979, 51.41076], [-0.11768, 51.40983], [-0.11662, 51.40935], [-0.11554, 51.40884]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4784394", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-0.11554, 51.40884], [-0.1154, 51.40877]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4785225", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.95927, 53.4673], [-2.95973, 53.4666]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4785226", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.95973, 53.4666], [-2.96077, 53.46495], [-2.96301, 53.46146], [-2.96506, 53.45826], [-2.96536, 53.45776], [-2.96565, 53.45723], [-2.96603, 53.45638], [-2.96616, 53.45607], [-2.96633, 53.45577], [-2.96648, 53.45556], [-2.96679, 53.45512], [-2.9679, 53.45402], [-2.96863, 53.45329], [-2.969, 53.45294]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4785227", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.96904, 53.45295], [-2.96863, 53.45329], [-2.96785, 53.454], [-2.96707, 53.45471], [-2.96658, 53.45518], [-2.96635, 53.45541], [-2.96615, 53.45558], [-2.96569, 53.45598]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4785254", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-3.06598, 53.54225], [-3.06734, 53.54462], [-3.06818, 53.54612], [-3.06901, 53.54756], [-3.06947, 53.5484], [-3.06992, 53.54924], [-3.07042, 53.55051], [-3.0706, 53.55119], [-3.07078, 53.55285], [-3.07082, 53.5534]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4785921", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.21138, 54.68925], [-1.21134, 54.68888], [-1.21128, 54.6883], [-1.21123, 54.68814], [-1.21115, 54.68796], [-1.21111, 54.68788], [-1.21103, 54.68776], [-1.21089, 54.6876], [-1.21064, 54.68739], [-1.21043, 54.68727], [-1.21014, 54.68712], [-1.20995, 54.68705], [-1.20971, 54.68697], [-1.20942, 54.6869], [-1.20912, 54.68685], [-1.20879, 54.68682], [-1.20847, 54.68681], [-1.20807, 54.68682], [-1.20774, 54.68685], [-1.2074, 54.68689], [-1.2071, 54.68694], [-1.20669, 54.68702], [-1.20608, 54.68719], [-1.20576, 54.68727], [-1.2055, 54.68732], [-1.20524, 54.68736], [-1.2051, 54.68738], [-1.20498, 54.68739], [-1.20485, 54.6874], [-1.20473, 54.6874], [-1.20459, 54.68739], [-1.20446, 54.68739], [-1.20416, 54.68737], [-1.20401, 54.68735], [-1.20384, 54.68732], [-1.20355, 54.68725], [-1.20338, 54.68719], [-1.20313, 54.68709], [-1.20288, 54.68697], [-1.20265, 54.68684], [-1.20252, 54.68676], [-1.20244, 54.68669], [-1.20233, 54.68661], [-1.20222, 54.6865], [-1.20212, 54.68639], [-1.20205, 54.68629], [-1.20197, 54.68619], [-1.2019, 54.68606], [-1.20184, 54.68593]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4785924", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-1.21203, 54.69868], [-1.21199, 54.69806]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786066", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.77529, 52.68368], [-1.77438, 52.68357], [-1.77375, 52.68348], [-1.77311, 52.68338], [-1.77263, 52.6833], [-1.77145, 52.68306], [-1.77016, 52.6828], [-1.76889, 52.68248], [-1.76775, 52.68218], [-1.76652, 52.6818], [-1.76518, 52.68132], [-1.76429, 52.68099], [-1.76135, 52.67972]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786067", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.77724, 52.68387], [-1.7768, 52.68383]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786068", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.77801, 52.68391], [-1.77763, 52.68389], [-1.77724, 52.68387]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786069", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-1.77838, 52.68393], [-1.77801, 52.68391]]}}, {"type": "Feature", "properties": {"osm_id": "4786092", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.91511, 53.40561], [-2.91629, 53.40564], [-2.9189, 53.4056], [-2.91917, 53.40561], [-2.91944, 53.40563], [-2.91967, 53.40567]]}}, {"type": "Feature", "properties": {"osm_id": "4786093", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.97955, 53.44088], [-2.98047, 53.4405]]}}, {"type": "Feature", "properties": {"osm_id": "4786094", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-2.98441, 53.43902], [-2.98466, 53.43895], [-2.98517, 53.43881], [-2.98553, 53.43873], [-2.98603, 53.43866], [-2.98646, 53.43863]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786095", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.9758, 53.44633], [-2.97236, 53.44978]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786096", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.9758, 53.44633], [-2.97662, 53.44556]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786097", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.97662, 53.44556], [-2.97811, 53.44404]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786108", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.98883, 53.43318], [-2.9885, 53.43351]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786109", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.98883, 53.43312], [-2.98942, 53.43253], [-2.98955, 53.4324], [-2.99021, 53.43174], [-2.9905, 53.43146]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786110", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.988, 53.43418], [-2.98762, 53.43458], [-2.98746, 53.43474], [-2.98718, 53.43504], [-2.98702, 53.43526], [-2.98691, 53.43549], [-2.98685, 53.43568], [-2.98681, 53.43586], [-2.9868, 53.43604], [-2.98687, 53.43668], [-2.98704, 53.437], [-2.98718, 53.43717], [-2.98772, 53.43769], [-2.98804, 53.43795], [-2.98832, 53.43817], [-2.98871, 53.43843], [-2.98996, 53.43919], [-2.99001, 53.43923], [-2.99038, 53.43952], [-2.99077, 53.43985], [-2.99285, 53.44165]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786112", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.99585, 53.44854], [-2.99585, 53.44873]]}}, {"type": "Feature", "properties": {"electrified": "rail", "frequency": "0", "osm_id": "4786113", "railway": "rail", "voltage": "750"}, "geometry": {"type": "LineString", "coordinates": [[-2.99465, 53.45378], [-2.99468, 53.45394]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786386", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29193, 55.82838], [-4.29174, 55.82808], [-4.29151, 55.82775]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786387", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.29146, 55.82776], [-4.29128, 55.82753], [-4.29094, 55.82722], [-4.29053, 55.82692], [-4.29, 55.82661], [-4.28888, 55.82593], [-4.28837, 55.82561]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786391", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.2545, 55.84879], [-4.25476, 55.84869], [-4.25501, 55.84861], [-4.25536, 55.84848], [-4.25561, 55.84841], [-4.25577, 55.84838], [-4.25606, 55.84832], [-4.25627, 55.84827], [-4.25647, 55.84824], [-4.25668, 55.84821], [-4.25688, 55.84819], [-4.25717, 55.84816]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786393", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.26118, 55.84865], [-4.26275, 55.84886], [-4.26355, 55.84894], [-4.26472, 55.84903], [-4.26511, 55.84906]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786409", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.2664, 55.84018], [-4.26566, 55.84043]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786413", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.23185, 55.83295], [-4.23261, 55.83317]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786419", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.53244, 55.71191], [-4.53281, 55.71093], [-4.53319, 55.71002]]}}, {"type": "Feature", "properties": {"electrified": "contact_line", "frequency": "50", "osm_id": "4786421", "railway": "rail", "voltage": "25000"}, "geometry": {"type": "LineString", "coordinates": [[-4.62575, 55.45824], [-4.62608, 55.4578], [-4.62622, 55.45758], [-4.62639, 55.45726], [-4.62657, 55.45692], [-4.62673, 55.45656], [-4.62678, 55.45641], [-4.6269, 55.4557], [-4.62692, 55.455], [-4.6268, 55.45436], [-4.62664, 55.45371], [-4.62628, 55.45227], [-4.62584, 55.45102]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786422", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.68586, 55.35457], [-4.68684, 55.35415], [-4.68758, 55.35379], [-4.68798, 55.35357], [-4.68839, 55.35332], [-4.68887, 55.353], [-4.68942, 55.35257], [-4.68987, 55.35218], [-4.69081, 55.35127], [-4.69152, 55.35056], [-4.69202, 55.35009], [-4.69245, 55.34954], [-4.69265, 55.34925], [-4.69287, 55.34883], [-4.69297, 55.34844], [-4.69312, 55.34798], [-4.69312, 55.34756], [-4.69311, 55.34696], [-4.69299, 55.34654], [-4.69283, 55.34613], [-4.69254, 55.3456], [-4.69224, 55.34517], [-4.69183, 55.34473], [-4.69147, 55.34442], [-4.69118, 55.34419], [-4.69079, 55.34391], [-4.68994, 55.3434]]}}, {"type": "Feature", "properties": {"electrified": "no", "osm_id": "4786430", "railway": "rail"}, "geometry": {"type": "LineString", "coordinates": [[-4.84862, 55.2471], [-4.84848, 55.24681], [-4.8483, 55.24651], [-4.84809, 55.24624], [-4.84776, 55.24587], [-4.8475, 55.24558], [-4.84716, 55.24538], [-4.84689, 55.24523], [-4.84639, 55.24498], [-4.84522, 55.24432]]}}, {"type": "Feature", "
View raw

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

View raw

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

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